Refactoring: rename android-jps-plugin to android-extensions-jps

This commit is contained in:
Natalia Ukhorskaya
2016-03-11 16:04:52 +03:00
parent bf4c92d903
commit 78d4860215
15 changed files with 18 additions and 18 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>