Skip to content
Snippets Groups Projects
Commit 2a6588a3 authored by Leo Ma's avatar Leo Ma
Browse files

Fix bug


Signed-off-by: default avatarLeo Ma <begeekmyfriend@gmail.com>
parent b02909de
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -3,7 +3,7 @@
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
tools:context="net.ossrs.yasea.MainActivity">
tools:context="net.ossrs.yasea.demo.MainActivity">
<net.ossrs.yasea.SrsCameraView
android:layout_width="match_parent"
Loading
Loading
package net.ossrs.yasea;
import android.app.Application;
import android.test.ApplicationTestCase;
/**
* <a href="http://d.android.com/tools/testing/testing_android.html">Testing Fundamentals</a>
*/
public class ApplicationTest extends ApplicationTestCase<Application> {
public ApplicationTest() {
super(Application.class);
}
}
package net.ossrs.yasea;
import org.junit.Test;
import static org.junit.Assert.*;
/**
* To work on unit tests, switch the Test Artifact in the Build Variants view.
*/
public class ExampleUnitTest {
@Test
public void addition_isCorrect() throws Exception {
assertEquals(4, 2 + 2);
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment