Initial commit of application

This commit is contained in:
Branden Archer
2016-01-30 20:50:30 -05:00
parent 439e226a80
commit 265d24c95d
51 changed files with 1748 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
package protect.card_locker;
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);
}
}