2017-05-27 23:05:27 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2017-05-28 02:29:42 +02:00
|
|
|
package="apps.amine.bou.readerforselfoss">
|
2017-05-27 23:05:27 +02:00
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
|
2017-05-28 15:29:59 +02:00
|
|
|
<!-- For firebase only -->
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
|
|
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
|
|
|
|
2017-05-27 23:05:27 +02:00
|
|
|
<application
|
|
|
|
android:name=".MyApp"
|
|
|
|
android:allowBackup="true"
|
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:supportsRtl="true"
|
2017-07-02 17:12:02 +02:00
|
|
|
android:theme="@style/NoBar">
|
2017-05-27 23:05:27 +02:00
|
|
|
<activity
|
|
|
|
android:name=".MainActivity"
|
|
|
|
android:theme="@style/SplashTheme">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2017-05-28 02:29:42 +02:00
|
|
|
<activity
|
|
|
|
android:name=".IntroActivity"
|
|
|
|
android:theme="@style/Theme.Intro">
|
|
|
|
</activity>
|
2017-10-21 20:10:19 +02:00
|
|
|
<activity
|
|
|
|
android:name=".LoginActivity"
|
2017-05-28 02:29:42 +02:00
|
|
|
android:label="@string/title_activity_login">
|
|
|
|
</activity>
|
2017-07-02 17:12:02 +02:00
|
|
|
<activity android:name=".HomeActivity">
|
2017-05-28 02:29:42 +02:00
|
|
|
</activity>
|
|
|
|
<activity
|
|
|
|
android:name=".settings.SettingsActivity"
|
|
|
|
android:label="@string/title_activity_settings"
|
|
|
|
android:parentActivityName=".HomeActivity">
|
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
|
|
|
android:value="apps.amine.bou.readerforselfoss.HomeActivity" />
|
|
|
|
</activity>
|
2017-10-21 20:10:19 +02:00
|
|
|
<activity
|
|
|
|
android:name=".SourcesActivity"
|
2017-05-28 02:29:42 +02:00
|
|
|
android:parentActivityName=".HomeActivity">
|
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
|
|
|
android:value=".HomeActivity" />
|
|
|
|
</activity>
|
2017-10-21 20:10:19 +02:00
|
|
|
<activity
|
|
|
|
android:name=".AddSourceActivity"
|
2017-05-28 02:29:42 +02:00
|
|
|
android:parentActivityName=".SourcesActivity">
|
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
|
|
|
android:value=".SourcesActivity" />
|
2017-05-27 23:05:27 +02:00
|
|
|
|
2017-05-28 02:29:42 +02:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.SEND" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
|
|
|
|
<data android:mimeType="text/plain" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2017-10-21 20:10:19 +02:00
|
|
|
<activity
|
2017-11-11 20:39:56 +01:00
|
|
|
android:name=".ReaderActivity">
|
2017-05-28 02:29:42 +02:00
|
|
|
</activity>
|
2017-10-21 20:10:19 +02:00
|
|
|
|
2017-09-02 13:58:35 +02:00
|
|
|
<meta-data
|
|
|
|
android:name="apps.amine.bou.readerforselfoss.utils.glide.SelfSignedGlideModule"
|
|
|
|
android:value="GlideModule" />
|
2017-12-10 17:45:34 +01:00
|
|
|
|
|
|
|
<meta-data android:name="android.webkit.WebView.MetricsOptOut"
|
|
|
|
android:value="true" />
|
|
|
|
|
|
|
|
<meta-data android:name="android.webkit.WebView.EnableSafeBrowsing"
|
|
|
|
android:value="true" />
|
2017-05-27 23:05:27 +02:00
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|