diff options
Diffstat (limited to 'Android/02-Intents/IntentsLab/AndroidManifest.xml')
-rw-r--r-- | Android/02-Intents/IntentsLab/AndroidManifest.xml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/Android/02-Intents/IntentsLab/AndroidManifest.xml b/Android/02-Intents/IntentsLab/AndroidManifest.xml new file mode 100644 index 0000000..3b7fda7 --- /dev/null +++ b/Android/02-Intents/IntentsLab/AndroidManifest.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="course.labs.intentslab" + android:versionCode="1" + android:versionName="1.0"> + <uses-sdk + android:minSdkVersion="13" + android:targetSdkVersion="18" /> + <application android:label="@string/app_name" android:icon="@drawable/ic_launcher"> + <activity android:name="ActivityLoaderActivity" + android:label="@string/app_name"> + <intent-filter> + <action android:name="android.intent.action.MAIN" /> + <category android:name="android.intent.category.LAUNCHER" /> + </intent-filter> + </activity> + <activity + android:name="ExplicitlyLoadedActivity" + android:label="@string/title_explicit" > + </activity> + </application> +</manifest> |