Move Android JPS plugin tests to android-jps-plugin module

This commit is contained in:
Yan Zhulanow
2014-11-06 15:19:16 +03:00
parent 94af8302ec
commit b7f8496e5b
8 changed files with 11 additions and 7 deletions
@@ -0,0 +1,16 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.myapp"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="17"/>
<application android:label="app_name" >
<activity android:name=".MyActivity"
android:label="app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
</application>
</manifest>