diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2014-03-16 18:16:21 +0100 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2016-11-10 17:40:55 +0100 |
commit | d8c875ed2a82ce24c96101845a5f5fafb27ed5cc (patch) | |
tree | 078931a9da3210db1559b5e4e360f83f087881e4 /Android/07-Graphics/GraphicsLab/AndroidManifest.xml | |
parent | 1e33c4940ea43093a80077fbb7249b013e35a1f1 (diff) | |
download | coursera-d8c875ed2a82ce24c96101845a5f5fafb27ed5cc.zip coursera-d8c875ed2a82ce24c96101845a5f5fafb27ed5cc.tar.gz |
Android : 07-Graphics: add
Diffstat (limited to 'Android/07-Graphics/GraphicsLab/AndroidManifest.xml')
-rw-r--r-- | Android/07-Graphics/GraphicsLab/AndroidManifest.xml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Android/07-Graphics/GraphicsLab/AndroidManifest.xml b/Android/07-Graphics/GraphicsLab/AndroidManifest.xml new file mode 100644 index 0000000..c4440e7 --- /dev/null +++ b/Android/07-Graphics/GraphicsLab/AndroidManifest.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="utf-8"?> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="course.labs.GraphicsLab" + android:versionCode="1" + android:versionName="1.0"> + <application + android:allowBackup="false" + android:label="@string/app_name" + android:icon="@drawable/ic_launcher"> + <activity android:name="course.labs.GraphicsLab.BubbleActivity" + android:label="@string/app_name" + android:theme="@android:style/Theme.NoTitleBar.Fullscreen" > + <intent-filter> + <action android:name="android.intent.action.MAIN" /> + <category android:name="android.intent.category.LAUNCHER" /> + </intent-filter> + </activity> + </application> +</manifest> |