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-07-11 10:32:27 +02:00
|
|
|
<activity
|
|
|
|
android:name=".SubscribedThingListingActivity"
|
2019-07-10 09:59:47 +02:00
|
|
|
android:label="@string/subscriptions"
|
|
|
|
android:parentActivityName=".MainActivity"
|
|
|
|
android:theme="@style/AppTheme.NoActionBar" />
|
|
|
|
<activity
|
|
|
|
android:name=".SubredditSelectionActivity"
|
|
|
|
android:label="@string/subreddit_selection_activity_label"
|
|
|
|
android:parentActivityName=".MainActivity" />
|
|
|
|
<activity
|
|
|
|
android:name=".PostTextActivity"
|
|
|
|
android:label="@string/post_text_activity_label"
|
2019-07-11 10:32:27 +02:00
|
|
|
android:parentActivityName=".MainActivity"
|
|
|
|
android:windowSoftInputMode="adjustResize" />
|
2019-06-13 06:16:04 +02:00
|
|
|
<activity
|
|
|
|
android:name=".CommentActivity"
|
|
|
|
android:label="@string/comment_activity_label"
|
2019-07-09 11:47:40 +02:00
|
|
|
android:theme="@style/AppTheme.NoActionBar"
|
2019-06-13 06:16:04 +02:00
|
|
|
android:windowSoftInputMode="adjustResize" />
|
|
|
|
<activity
|
|
|
|
android:name=".SearchActivity"
|
2019-02-22 06:34:24 +01:00
|
|
|
android:label="@string/search_activity_label"
|
2019-06-13 06:16:04 +02:00
|
|
|
android:parentActivityName=".MainActivity"
|
|
|
|
android:theme="@style/AppTheme.NoActionBar" />
|
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" />
|
2019-06-13 06:16:04 +02:00
|
|
|
|
2018-07-26 17:04:44 +02:00
|
|
|
<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"
|
2019-06-13 06:16:04 +02:00
|
|
|
android:parentActivityName=".MainActivity"
|
2019-07-09 11:47:40 +02:00
|
|
|
android:theme="@style/AppTheme.NoActionBar" />
|
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>
|