summaryrefslogtreecommitdiffstats
path: root/samples/browseable/CommitContentSampleApp/AndroidManifest.xml
diff options
context:
space:
mode:
Diffstat (limited to 'samples/browseable/CommitContentSampleApp/AndroidManifest.xml')
-rw-r--r--samples/browseable/CommitContentSampleApp/AndroidManifest.xml18
1 files changed, 18 insertions, 0 deletions
diff --git a/samples/browseable/CommitContentSampleApp/AndroidManifest.xml b/samples/browseable/CommitContentSampleApp/AndroidManifest.xml
new file mode 100644
index 000000000..16c93b117
--- /dev/null
+++ b/samples/browseable/CommitContentSampleApp/AndroidManifest.xml
@@ -0,0 +1,18 @@
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ package="com.example.android.commitcontent.app">
+
+ <application
+ android:allowBackup="true"
+ android:icon="@mipmap/ic_launcher"
+ android:label="@string/app_name"
+ android:supportsRtl="true"
+ android:theme="@style/AppTheme">
+ <activity android:name=".MainActivity">
+ <intent-filter>
+ <action android:name="android.intent.action.MAIN" />
+
+ <category android:name="android.intent.category.LAUNCHER" />
+ </intent-filter>
+ </activity>
+ </application>
+</manifest>