summaryrefslogtreecommitdiff
path: root/org.fox.epube/src/main/AndroidManifest.xml
diff options
context:
space:
mode:
Diffstat (limited to 'org.fox.epube/src/main/AndroidManifest.xml')
-rw-r--r--org.fox.epube/src/main/AndroidManifest.xml14
1 files changed, 11 insertions, 3 deletions
diff --git a/org.fox.epube/src/main/AndroidManifest.xml b/org.fox.epube/src/main/AndroidManifest.xml
index 45bc158..a482b2c 100644
--- a/org.fox.epube/src/main/AndroidManifest.xml
+++ b/org.fox.epube/src/main/AndroidManifest.xml
@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:tools="http://schemas.android.com/tools"
package="org.fox.epube">
<uses-permission android:name="android.permission.INTERNET"/>
@@ -12,16 +13,23 @@
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
- android:theme="@style/AppTheme">
+ android:theme="@style/AppTheme"
+ tools:ignore="GoogleAppIndexingWarning">
+
<activity
- android:name=".MainActivity"
- android:configChanges="orientation|screenSize">
+ android:name=".LaunchActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
+
+ <activity
+ android:name=".MainActivity"
+ android:theme="@style/AppTheme"
+ android:configChanges="orientation|screenSize">
+ </activity>
</application>
</manifest> \ No newline at end of file