diff options
Diffstat (limited to '')
| -rw-r--r-- | AndroidManifest.xml | 42 |
1 files changed, 24 insertions, 18 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml index bfd6400..35e0ff7 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml | |||
| @@ -1,25 +1,31 @@ | |||
| 1 | <?xml version="1.0" encoding="utf-8"?> | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" | 2 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 3 | package="net.onefang.toyboxInstaller" | 3 | package="net.onefang.toyboxInstaller" |
| 4 | android:versionCode="1" | 4 | android:versionCode="1" |
| 5 | android:versionName="0.4.9" > | 5 | android:versionName="0.4.9" > |
| 6 | 6 | ||
| 7 | <uses-sdk | 7 | <!-- min versien used to be 4, 9 is needed for DownloadManager. --> |
| 8 | android:minSdkVersion="4" | 8 | <uses-sdk |
| 9 | android:targetSdkVersion="16" /> | 9 | android:minSdkVersion="9" |
| 10 | android:targetSdkVersion="16" /> | ||
| 10 | 11 | ||
| 11 | <application | 12 | <!--uses-permission android:name="android.permission.READ_PHONE_STATE"></uses-permission--> |
| 12 | android:icon="@drawable/ic_launch_placitas_green_pillow" | 13 | <!--uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"></uses-permission--> |
| 13 | android:label="@string/app_name" > | 14 | <!--uses-permission android:name="android.permission.INTERNET"></uses-permission--> |
| 14 | <activity | 15 | <!--uses-permission android:name="android.permission.WRITE_EXTERNAL_STOROGE"></uses-permission--> |
| 15 | android:label="@string/app_name" | ||
| 16 | android:name=".MainActivity" > | ||
| 17 | <intent-filter > | ||
| 18 | <action android:name="android.intent.action.MAIN" /> | ||
| 19 | 16 | ||
| 20 | <category android:name="android.intent.category.LAUNCHER" /> | 17 | <application |
| 21 | </intent-filter> | 18 | android:icon="@drawable/ic_launch_placitas_green_pillow" |
| 22 | </activity> | 19 | android:label="@string/app_name" > |
| 23 | </application> | 20 | <activity |
| 21 | android:label="@string/app_name" | ||
| 22 | android:name=".MainActivity" > | ||
| 23 | <intent-filter > | ||
| 24 | <action android:name="android.intent.action.MAIN" /> | ||
| 25 | |||
| 26 | <category android:name="android.intent.category.LAUNCHER" /> | ||
| 27 | </intent-filter> | ||
| 28 | </activity> | ||
| 29 | </application> | ||
| 24 | 30 | ||
| 25 | </manifest> | 31 | </manifest> |
