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
|
|
|
|
android:allowBackup="true"
|
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
|
|
android:supportsRtl="true"
|
|
|
|
android:theme="@style/AppTheme">
|
|
|
|
<activity
|
|
|
|
android:name=".MainActivity"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:theme="@style/AppTheme.NoActionBar">
|
|
|
|
<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"
|
|
|
|
android:theme="@style/Theme.AppCompat.Transparent" />
|
|
|
|
<activity
|
|
|
|
android:name=".ViewVideoActivity"
|
|
|
|
android:parentActivityName=".MainActivity"
|
|
|
|
android:theme="@style/Theme.AppCompat.Transparent" />
|
|
|
|
<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"
|
|
|
|
android:theme="@style/AppTheme.NoActionBarWithTranslucentStatusBar" />
|
|
|
|
<activity
|
|
|
|
android:name=".ViewUserDetailActivity"
|
|
|
|
android:label="@string/title_activity_view_user_detail"
|
|
|
|
android:theme="@style/AppTheme.NoActionBar" />
|
2018-07-26 17:04:44 +02:00
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|