aboutsummaryrefslogtreecommitdiff
path: root/libs/editor/example/src/main/AndroidManifest.xml
diff options
context:
space:
mode:
Diffstat (limited to 'libs/editor/example/src/main/AndroidManifest.xml')
-rw-r--r--libs/editor/example/src/main/AndroidManifest.xml24
1 files changed, 24 insertions, 0 deletions
diff --git a/libs/editor/example/src/main/AndroidManifest.xml b/libs/editor/example/src/main/AndroidManifest.xml
new file mode 100644
index 000000000..d6b56a50a
--- /dev/null
+++ b/libs/editor/example/src/main/AndroidManifest.xml
@@ -0,0 +1,24 @@
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ package="org.wordpress.android.editor.example" >
+
+ <application
+ android:allowBackup="true"
+ android:icon="@mipmap/ic_launcher"
+ android:label="@string/app_name"
+ android:theme="@style/AppTheme" >
+ <activity
+ android:name=".MainExampleActivity"
+ android:label="@string/title_activity_example">
+ <intent-filter>
+ <action android:name="android.intent.action.MAIN" />
+ <category android:name="android.intent.category.LAUNCHER" />
+ </intent-filter>
+ </activity>
+ <activity
+ android:name=".EditorExampleActivity"
+ android:configChanges="orientation|keyboardHidden|screenSize">
+ </activity>
+ </application>
+
+</manifest>