aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorDavid Walter Seikel2014-06-11 01:25:53 +1000
committerDavid Walter Seikel2014-06-11 01:25:53 +1000
commitfaabf404ec6064956a08e825bed5d91e51fbdbbb (patch)
tree4aee2014b62efc93c5ab46fd73dcde8d250d9aa0 /AndroidManifest.xml
parentAdded .gitignore and LICENSE files. (diff)
downloadtoyboxInstaller-faabf404ec6064956a08e825bed5d91e51fbdbbb.zip
toyboxInstaller-faabf404ec6064956a08e825bed5d91e51fbdbbb.tar.gz
toyboxInstaller-faabf404ec6064956a08e825bed5d91e51fbdbbb.tar.bz2
toyboxInstaller-faabf404ec6064956a08e825bed5d91e51fbdbbb.tar.xz
Roughed out a skeleton of the UI.
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml25
1 files changed, 25 insertions, 0 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
new file mode 100644
index 0000000..d48beef
--- /dev/null
+++ b/AndroidManifest.xml
@@ -0,0 +1,25 @@
1<?xml version="1.0" encoding="utf-8"?>
2<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3 package="net.onefang.toyboxInstaller"
4 android:versionCode="1"
5 android:versionName="0.4.8" >
6
7 <uses-sdk
8 android:minSdkVersion="4"
9 android:targetSdkVersion="16" />
10
11 <application
12 android:icon="@drawable/ic_launch_placitas_green_pillow"
13 android:label="@string/app_name" >
14 <activity
15 android:label="@string/app_name"
16 android:name=".MainActivity" >
17 <intent-filter >
18 <action android:name="android.intent.action.MAIN" />
19
20 <category android:name="android.intent.category.LAUNCHER" />
21 </intent-filter>
22 </activity>
23 </application>
24
25</manifest>