2018-07-26 17:04:44 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
package="ml.docilealligator.infinityforreddit">
|
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
2018-07-30 17:27:52 +02:00
|
|
|
|
2018-07-26 17:04:44 +02:00
|
|
|
<uses-permission-sdk-23 android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
2018-07-30 17:27:52 +02:00
|
|
|
|
|
|
|
<uses-permission
|
|
|
|
android:name="android.permission.WRITE_EXTERNAL_STORAGE"
|
2018-07-26 17:04:44 +02:00
|
|
|
android:maxSdkVersion="22" />
|
|
|
|
|
|
|
|
<application
|
2018-10-12 17:52:23 +02:00
|
|
|
android:name=".Infinity"
|
2019-02-22 06:34:24 +01:00
|
|
|
android:allowBackup="true"
|
2018-07-26 17:04:44 +02:00
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
|
|
android:supportsRtl="true"
|
2019-01-07 12:03:49 +01:00
|
|
|
android:theme="@style/AppTheme"
|
|
|
|
android:usesCleartextTraffic="true">
|
2019-02-22 06:34:24 +01:00
|
|
|
<activity android:name=".SearchActivity"
|
|
|
|
android:theme="@style/AppTheme.NoActionBar"
|
|
|
|
android:label="@string/search_activity_label"
|
|
|
|
android:parentActivityName=".MainActivity">
|
|
|
|
</activity>
|
2018-07-26 17:04:44 +02:00
|
|
|
<activity
|
|
|
|
android:name=".MainActivity"
|
|
|
|
android:label="@string/app_name"
|
2019-02-22 06:34:24 +01:00
|
|
|
android:theme="@style/AppTheme.NoActionBarWithTransparentStatusBar">
|
2018-07-26 17:04:44 +02:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<activity
|
|
|
|
android:name=".LoginActivity"
|
|
|
|
android:label="@string/login_activity_label"
|
|
|
|
android:parentActivityName=".MainActivity" />
|
|
|
|
<activity
|
|
|
|
android:name=".ViewImageActivity"
|
|
|
|
android:parentActivityName=".MainActivity"
|
2019-06-09 08:59:39 +02:00
|
|
|
android:theme="@style/AppTheme.ActionBar.Transparent" />
|
2018-07-26 17:04:44 +02:00
|
|
|
<activity
|
|
|
|
android:name=".ViewVideoActivity"
|
|
|
|
android:parentActivityName=".MainActivity"
|
2019-06-09 08:59:39 +02:00
|
|
|
android:theme="@style/AppTheme.ActionBar.Transparent" />
|
2018-07-26 17:04:44 +02:00
|
|
|
<activity
|
|
|
|
android:name=".ViewPostDetailActivity"
|
|
|
|
android:parentActivityName=".MainActivity" />
|
2018-07-30 17:27:52 +02:00
|
|
|
<activity
|
|
|
|
android:name=".ViewSubredditDetailActivity"
|
2018-09-21 17:35:57 +02:00
|
|
|
android:parentActivityName=".MainActivity"
|
2019-02-22 06:34:24 +01:00
|
|
|
android:theme="@style/AppTheme.NoActionBarWithTranslucentWindow" />
|
2018-09-21 17:35:57 +02:00
|
|
|
<activity
|
|
|
|
android:name=".ViewUserDetailActivity"
|
2019-01-11 04:33:32 +01:00
|
|
|
android:parentActivityName=".MainActivity"
|
2019-02-22 06:34:24 +01:00
|
|
|
android:theme="@style/AppTheme.NoActionBarWithTranslucentWindow" />
|
2018-07-26 17:04:44 +02:00
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|