2017-04-20 18:23:59 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-09-08 23:57:07 +02:00
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2017-12-15 23:09:59 +01:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2020-09-08 23:57:07 +02:00
|
|
|
package="jp.juggler.subwaytooter">
|
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
|
|
|
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
2021-05-22 11:07:23 +02:00
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"
|
|
|
|
tools:ignore="ScopedStorage" />
|
2021-05-08 07:56:34 +02:00
|
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
2020-09-08 23:57:07 +02:00
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
|
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
|
2017-09-10 13:23:42 +02:00
|
|
|
<!-- CAMERAパーミッションをつけるとPlayストアにプライバシーポリシーを記載する必要がある -->
|
|
|
|
<!--<uses-permission android:name="android.permission.CAMERA"/>-->
|
2017-04-20 18:23:59 +02:00
|
|
|
|
2020-09-08 23:57:07 +02:00
|
|
|
<queries>
|
2020-09-09 00:22:54 +02:00
|
|
|
|
2020-09-09 20:13:11 +02:00
|
|
|
<!-- (自アプリ以外で)指定URLを開けるアプリの存在確認 -->
|
2020-09-08 23:57:07 +02:00
|
|
|
<intent>
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
</intent>
|
|
|
|
|
2020-12-19 07:46:42 +01:00
|
|
|
<intent>
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
<data android:scheme="https" />
|
|
|
|
</intent>
|
|
|
|
|
|
|
|
<intent>
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
<data android:scheme="http" />
|
|
|
|
</intent>
|
|
|
|
|
2020-09-09 20:13:11 +02:00
|
|
|
<!-- Chrome Custom Tabs の存在確認 -->
|
2020-09-09 00:22:54 +02:00
|
|
|
<intent>
|
|
|
|
<action android:name="android.support.customtabs.action.CustomTabsService" />
|
|
|
|
</intent>
|
|
|
|
|
2020-09-09 20:13:11 +02:00
|
|
|
<!-- カスタム共有ボタンのアプリ選択 -->
|
2020-09-09 00:22:54 +02:00
|
|
|
<intent>
|
|
|
|
<action android:name="android.intent.action.SEND" />
|
|
|
|
<data android:mimeType="text/plain" />
|
|
|
|
</intent>
|
|
|
|
|
2020-09-09 20:13:11 +02:00
|
|
|
<!-- TTS読み上げに必要 -->
|
2020-09-09 01:21:37 +02:00
|
|
|
<intent>
|
|
|
|
<action android:name="android.intent.action.TTS_SERVICE" />
|
|
|
|
</intent>
|
|
|
|
|
2020-09-09 20:13:11 +02:00
|
|
|
<!-- Simejiマッシュルームプラグインの存在確認 -->
|
2020-09-09 10:28:26 +02:00
|
|
|
<intent>
|
|
|
|
<action android:name="com.adamrocker.android.simeji.ACTION_INTERCEPT" />
|
|
|
|
</intent>
|
|
|
|
|
2020-09-09 20:13:11 +02:00
|
|
|
<!-- <intent>-->
|
|
|
|
<!-- <action android:name="android.intent.action.SEND" />-->
|
|
|
|
<!-- <data android:mimeType="video/*" />-->
|
|
|
|
<!-- </intent>-->
|
|
|
|
<!-- <intent>-->
|
|
|
|
<!-- <action android:name="android.intent.action.VIEW" />-->
|
|
|
|
<!-- <data android:mimeType="video/*" />-->
|
|
|
|
<!-- </intent>-->
|
2020-09-08 23:57:07 +02:00
|
|
|
</queries>
|
|
|
|
|
2017-04-20 18:23:59 +02:00
|
|
|
<application
|
2017-04-24 13:04:56 +02:00
|
|
|
android:name=".App1"
|
2017-04-20 18:23:59 +02:00
|
|
|
android:allowBackup="true"
|
2017-09-09 00:42:18 +02:00
|
|
|
android:fullBackupContent="@xml/backup_spec"
|
2017-04-20 18:23:59 +02:00
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
android:label="@string/app_name"
|
2017-09-09 00:42:18 +02:00
|
|
|
android:largeHeap="true"
|
2020-09-08 23:57:07 +02:00
|
|
|
android:maxAspectRatio="100"
|
|
|
|
android:resizeableActivity="true"
|
2017-04-20 18:23:59 +02:00
|
|
|
android:supportsRtl="true"
|
2017-04-27 11:15:14 +02:00
|
|
|
android:theme="@style/AppTheme.Light"
|
2019-10-31 01:44:41 +01:00
|
|
|
tools:ignore="UnusedAttribute">
|
2017-08-24 13:44:06 +02:00
|
|
|
|
|
|
|
<receiver android:name=".EventReceiver">
|
2017-04-25 08:54:05 +02:00
|
|
|
<intent-filter>
|
2020-09-08 23:57:07 +02:00
|
|
|
<action android:name="android.intent.action.BOOT_COMPLETED" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
2017-04-25 08:54:05 +02:00
|
|
|
</intent-filter>
|
2017-05-02 12:18:01 +02:00
|
|
|
|
|
|
|
<intent-filter>
|
2020-09-08 23:57:07 +02:00
|
|
|
<action android:name="android.intent.action.ACTION_MY_PACKAGE_REPLACED" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
2017-05-02 12:18:01 +02:00
|
|
|
</intent-filter>
|
|
|
|
|
2017-04-25 08:54:05 +02:00
|
|
|
</receiver>
|
|
|
|
|
2017-08-24 13:44:06 +02:00
|
|
|
<service
|
2020-12-11 18:30:10 +01:00
|
|
|
android:name=".notification.PollingService"
|
2020-09-08 23:57:07 +02:00
|
|
|
android:permission="android.permission.BIND_JOB_SERVICE" />
|
2017-09-07 21:44:13 +02:00
|
|
|
|
2020-12-11 18:30:10 +01:00
|
|
|
<service android:name=".notification.PollingForegrounder" />
|
2017-04-20 18:23:59 +02:00
|
|
|
|
|
|
|
<activity
|
|
|
|
android:name=".ActMain"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:launchMode="singleTask"
|
2017-04-27 11:15:14 +02:00
|
|
|
|
2020-09-08 23:57:07 +02:00
|
|
|
android:windowSoftInputMode="adjustResize|stateAlwaysHidden">
|
2017-04-20 18:23:59 +02:00
|
|
|
<intent-filter>
|
2020-09-08 23:57:07 +02:00
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
2017-04-20 18:23:59 +02:00
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2017-04-22 16:45:26 +02:00
|
|
|
|
2017-04-29 22:51:04 +02:00
|
|
|
<activity
|
2017-05-05 13:00:20 +02:00
|
|
|
android:name=".ActCallback"
|
2017-04-29 22:51:04 +02:00
|
|
|
android:label="@string/app_name"
|
|
|
|
|
|
|
|
>
|
|
|
|
<intent-filter>
|
2020-09-08 23:57:07 +02:00
|
|
|
<action android:name="android.intent.action.VIEW" />
|
2017-04-29 22:51:04 +02:00
|
|
|
|
2020-09-08 23:57:07 +02:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
2017-04-29 22:51:04 +02:00
|
|
|
|
|
|
|
<data
|
2017-12-20 17:03:05 +01:00
|
|
|
android:host="*"
|
|
|
|
android:pathPattern=".*"
|
2020-09-08 23:57:07 +02:00
|
|
|
android:scheme="subwaytooter" />
|
2017-04-29 22:51:04 +02:00
|
|
|
</intent-filter>
|
2017-05-05 13:00:20 +02:00
|
|
|
|
|
|
|
<intent-filter>
|
2020-09-08 23:57:07 +02:00
|
|
|
<action android:name="android.intent.action.VIEW" />
|
2017-05-05 13:00:20 +02:00
|
|
|
|
2020-09-08 23:57:07 +02:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
2017-05-05 13:00:20 +02:00
|
|
|
|
2017-05-06 08:10:05 +02:00
|
|
|
<data
|
|
|
|
android:host="*"
|
|
|
|
android:pathPrefix="/@"
|
2020-09-08 23:57:07 +02:00
|
|
|
android:scheme="https" />
|
2017-05-06 08:10:05 +02:00
|
|
|
</intent-filter>
|
|
|
|
|
2017-06-09 16:21:05 +02:00
|
|
|
<!-- https://mstdn.kemono-friends.info/users/tocchi/updates/695489 -->
|
|
|
|
<!-- URLの数字部分はstatus_id「ではない」ようだ。謎なのでまだ対応できない。。。 -->
|
|
|
|
<!--<intent-filter>-->
|
2017-09-09 00:42:18 +02:00
|
|
|
<!--<action android:name="android.intent.action.VIEW"/>-->
|
2017-06-09 16:21:05 +02:00
|
|
|
|
2017-09-09 00:42:18 +02:00
|
|
|
<!--<category android:name="android.intent.category.DEFAULT"/>-->
|
|
|
|
<!--<category android:name="android.intent.category.BROWSABLE"/>-->
|
2017-06-09 16:21:05 +02:00
|
|
|
|
2017-09-09 00:42:18 +02:00
|
|
|
<!--<data-->
|
|
|
|
<!--android:host="*"-->
|
|
|
|
<!--android:pathPrefix="/users/"-->
|
|
|
|
<!--android:scheme="https"/>-->
|
2017-06-09 16:21:05 +02:00
|
|
|
<!--</intent-filter>-->
|
|
|
|
|
2017-05-06 08:10:05 +02:00
|
|
|
<intent-filter>
|
2020-09-08 23:57:07 +02:00
|
|
|
<action android:name="android.intent.action.SEND" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<data android:mimeType="text/plain" />
|
2017-05-06 08:10:05 +02:00
|
|
|
</intent-filter>
|
|
|
|
|
|
|
|
<intent-filter>
|
2020-09-08 23:57:07 +02:00
|
|
|
<action android:name="android.intent.action.SEND" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<data android:mimeType="image/*" />
|
2017-05-05 13:00:20 +02:00
|
|
|
</intent-filter>
|
2017-05-06 08:10:05 +02:00
|
|
|
|
|
|
|
<intent-filter>
|
2020-09-08 23:57:07 +02:00
|
|
|
<action android:name="android.intent.action.SEND_MULTIPLE" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<data android:mimeType="image/*" />
|
2017-05-06 08:10:05 +02:00
|
|
|
</intent-filter>
|
|
|
|
|
2017-09-10 20:54:38 +02:00
|
|
|
<intent-filter>
|
2020-09-08 23:57:07 +02:00
|
|
|
<action android:name="android.intent.action.SEND" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<data android:mimeType="video/*" />
|
2017-09-10 20:54:38 +02:00
|
|
|
</intent-filter>
|
|
|
|
|
|
|
|
<intent-filter>
|
2020-09-08 23:57:07 +02:00
|
|
|
<action android:name="android.intent.action.SEND_MULTIPLE" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<data android:mimeType="video/*" />
|
2017-09-10 20:54:38 +02:00
|
|
|
</intent-filter>
|
|
|
|
|
2019-07-19 10:58:05 +02:00
|
|
|
<intent-filter>
|
2020-09-08 23:57:07 +02:00
|
|
|
<action android:name="android.intent.action.SEND" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<data android:mimeType="audio/*" />
|
2019-07-19 10:58:05 +02:00
|
|
|
</intent-filter>
|
|
|
|
|
|
|
|
<intent-filter>
|
2020-09-08 23:57:07 +02:00
|
|
|
<action android:name="android.intent.action.SEND_MULTIPLE" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<data android:mimeType="audio/*" />
|
2019-07-19 10:58:05 +02:00
|
|
|
</intent-filter>
|
|
|
|
|
2017-04-29 22:51:04 +02:00
|
|
|
</activity>
|
|
|
|
|
2017-04-21 14:45:40 +02:00
|
|
|
<activity
|
|
|
|
android:name=".ActPost"
|
|
|
|
android:label="@string/act_post"
|
2017-04-27 11:15:14 +02:00
|
|
|
|
2021-05-30 04:01:12 +02:00
|
|
|
android:windowSoftInputMode="adjustResize" >
|
|
|
|
|
|
|
|
<!--suppress AndroidElementNotAllowed -->
|
|
|
|
<layout
|
|
|
|
android:defaultWidth="320dp"
|
|
|
|
android:defaultHeight="480dp"
|
|
|
|
android:gravity="center"
|
|
|
|
android:minWidth="64dp"
|
|
|
|
android:minHeight="64dp"
|
|
|
|
tools:ignore="UnusedAttribute" />
|
|
|
|
|
|
|
|
</activity>
|
2017-04-22 16:45:26 +02:00
|
|
|
|
|
|
|
<activity
|
|
|
|
android:name=".ActAccountSetting"
|
|
|
|
android:label="@string/account_setting"
|
2017-04-27 11:15:14 +02:00
|
|
|
|
2020-09-08 23:57:07 +02:00
|
|
|
android:windowSoftInputMode="adjustResize|stateAlwaysHidden" />
|
2017-04-22 16:45:26 +02:00
|
|
|
|
|
|
|
<activity
|
|
|
|
android:name=".ActAppSetting"
|
|
|
|
android:label="@string/app_setting"
|
2020-09-08 23:57:07 +02:00
|
|
|
android:windowSoftInputMode="adjustResize|stateAlwaysHidden" />
|
2017-04-22 16:45:26 +02:00
|
|
|
|
|
|
|
<activity
|
|
|
|
android:name=".ActColumnList"
|
|
|
|
android:label="@string/column_list"
|
2017-04-27 11:15:14 +02:00
|
|
|
|
2020-09-08 23:57:07 +02:00
|
|
|
android:windowSoftInputMode="adjustResize" />
|
2017-04-24 13:04:56 +02:00
|
|
|
<activity
|
|
|
|
android:name=".ActAbout"
|
|
|
|
android:label="@string/app_about"
|
2017-04-27 11:15:14 +02:00
|
|
|
|
2017-04-24 13:04:56 +02:00
|
|
|
/>
|
|
|
|
<activity
|
|
|
|
android:name=".ActOSSLicense"
|
|
|
|
android:label="@string/oss_license"
|
2017-04-27 11:15:14 +02:00
|
|
|
|
2017-04-24 13:04:56 +02:00
|
|
|
/>
|
2017-04-24 17:11:58 +02:00
|
|
|
<activity
|
2017-04-29 22:51:04 +02:00
|
|
|
android:name=".ActMutedApp"
|
2020-09-08 23:57:07 +02:00
|
|
|
android:label="@string/muted_app" />
|
2017-05-08 03:16:43 +02:00
|
|
|
<activity
|
2019-08-23 03:04:30 +02:00
|
|
|
android:name=".ActMutedPseudoAccount"
|
2020-09-08 23:57:07 +02:00
|
|
|
android:label="@string/muted_users_from_pseudo_account" />
|
2019-08-23 03:04:30 +02:00
|
|
|
|
|
|
|
<activity
|
2017-05-08 03:16:43 +02:00
|
|
|
android:name=".ActMutedWord"
|
2020-09-08 23:57:07 +02:00
|
|
|
android:label="@string/muted_word" />
|
2018-01-03 23:53:37 +01:00
|
|
|
|
2018-03-15 17:23:43 +01:00
|
|
|
<activity
|
|
|
|
android:name=".ActFavMute"
|
2020-09-08 23:57:07 +02:00
|
|
|
android:label="@string/fav_muted_user_long" />
|
2018-03-15 17:23:43 +01:00
|
|
|
|
2018-07-07 07:15:16 +02:00
|
|
|
<activity
|
|
|
|
android:name=".ActKeywordFilter"
|
|
|
|
android:label="@string/keyword_filter_new"
|
2020-09-08 23:57:07 +02:00
|
|
|
android:windowSoftInputMode="adjustResize|stateAlwaysHidden" />
|
2018-07-07 07:15:16 +02:00
|
|
|
|
2018-01-03 23:53:37 +01:00
|
|
|
<activity
|
|
|
|
android:name=".ActHighlightWordList"
|
2020-09-08 23:57:07 +02:00
|
|
|
android:label="@string/highlight_word" />
|
2018-01-03 23:53:37 +01:00
|
|
|
<activity
|
|
|
|
android:name=".ActHighlightWordEdit"
|
2020-09-08 23:57:07 +02:00
|
|
|
android:label="@string/highlight_word" />
|
2018-01-03 23:53:37 +01:00
|
|
|
|
2017-05-07 20:16:41 +02:00
|
|
|
<activity
|
|
|
|
android:name=".ActColumnCustomize"
|
|
|
|
android:label="@string/color_and_background"
|
2020-09-08 23:57:07 +02:00
|
|
|
android:windowSoftInputMode="adjustResize|stateAlwaysHidden" />
|
2017-05-07 20:16:41 +02:00
|
|
|
|
2019-12-13 15:48:38 +01:00
|
|
|
<activity
|
|
|
|
android:name=".ActLanguageFilter"
|
|
|
|
android:label="@string/language_filter"
|
2020-09-08 23:57:07 +02:00
|
|
|
android:windowSoftInputMode="adjustResize|stateAlwaysHidden" />
|
2019-12-13 15:48:38 +01:00
|
|
|
|
2019-12-15 13:26:20 +01:00
|
|
|
<activity
|
|
|
|
android:name=".ActDrawableList"
|
|
|
|
android:label="@string/drawable_list"
|
2020-09-08 23:57:07 +02:00
|
|
|
android:windowSoftInputMode="adjustResize|stateAlwaysHidden" />
|
2019-12-15 13:26:20 +01:00
|
|
|
|
2017-05-03 01:42:07 +02:00
|
|
|
<activity
|
|
|
|
android:name=".ActNickname"
|
2017-07-27 09:33:34 +02:00
|
|
|
android:label="@string/nickname_and_color_and_notification_sound"
|
2020-09-08 23:57:07 +02:00
|
|
|
android:windowSoftInputMode="adjustResize|stateAlwaysHidden" />
|
2017-05-26 05:48:06 +02:00
|
|
|
|
2017-05-08 03:16:43 +02:00
|
|
|
<activity
|
|
|
|
android:name=".ActText"
|
|
|
|
android:label="@string/select_and_copy"
|
2020-09-08 23:57:07 +02:00
|
|
|
android:windowSoftInputMode="adjustResize|stateAlwaysHidden" />
|
2017-09-09 00:42:18 +02:00
|
|
|
|
2017-12-21 12:33:35 +01:00
|
|
|
<activity
|
|
|
|
android:name=".ActMediaViewer"
|
2020-09-08 23:57:07 +02:00
|
|
|
android:theme="@style/AppTheme.Dark.NoActionBar" />
|
2017-12-21 12:33:35 +01:00
|
|
|
|
2020-09-09 03:51:51 +02:00
|
|
|
<activity
|
|
|
|
android:name=".ActExitReasons"
|
|
|
|
android:label="@string/exit_reasons"
|
|
|
|
android:windowSoftInputMode="adjustResize|stateAlwaysHidden" />
|
|
|
|
|
2017-04-24 13:04:56 +02:00
|
|
|
<meta-data
|
|
|
|
android:name="android.max_aspect"
|
2020-09-08 23:57:07 +02:00
|
|
|
android:value="100.0" />
|
2017-05-09 20:21:50 +02:00
|
|
|
|
2017-05-18 07:42:14 +02:00
|
|
|
<provider
|
2019-02-15 02:51:22 +01:00
|
|
|
android:name="androidx.core.content.FileProvider"
|
2017-05-18 07:42:14 +02:00
|
|
|
android:authorities="jp.juggler.subwaytooter.FileProvider"
|
2017-09-09 00:42:18 +02:00
|
|
|
android:exported="false"
|
2020-09-08 23:57:07 +02:00
|
|
|
android:grantUriPermissions="true">
|
2017-05-18 07:42:14 +02:00
|
|
|
<meta-data
|
|
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
2020-09-08 23:57:07 +02:00
|
|
|
android:resource="@xml/file_provider_path" />
|
2017-05-18 07:42:14 +02:00
|
|
|
</provider>
|
|
|
|
|
2017-12-21 12:33:35 +01:00
|
|
|
<receiver android:name=".DownloadReceiver">
|
|
|
|
<intent-filter>
|
2020-09-08 23:57:07 +02:00
|
|
|
<action android:name="android.intent.action.DOWNLOAD_NOTIFICATION_CLICKED" />
|
|
|
|
<action android:name="android.intent.action.DOWNLOAD_COMPLETE" />
|
2017-12-21 12:33:35 +01:00
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
|
|
|
|
2017-05-24 11:20:56 +02:00
|
|
|
<service
|
2017-12-15 23:09:59 +01:00
|
|
|
android:name=".MyFirebaseMessagingService"
|
2020-09-08 23:57:07 +02:00
|
|
|
tools:ignore="ExportedService">
|
2017-05-24 11:20:56 +02:00
|
|
|
<intent-filter>
|
2020-09-08 23:57:07 +02:00
|
|
|
<action android:name="com.google.firebase.MESSAGING_EVENT" />
|
2017-05-24 11:20:56 +02:00
|
|
|
</intent-filter>
|
|
|
|
</service>
|
|
|
|
|
|
|
|
<!-- Set custom default icon. This is used when no icon is set for incoming notification messages.
|
2018-08-15 12:22:19 +02:00
|
|
|
See README(https://goo.gl/l4GJaQ) for more. -->
|
2017-05-24 11:20:56 +02:00
|
|
|
<meta-data
|
|
|
|
android:name="com.google.firebase.messaging.default_notification_icon"
|
2020-09-08 23:57:07 +02:00
|
|
|
android:resource="@drawable/ic_notification" />
|
2017-05-24 11:20:56 +02:00
|
|
|
|
|
|
|
<!-- Set color used with incoming notification messages. This is used when no color is set for the incoming
|
|
|
|
notification message. See README(https://goo.gl/6BKBk7) for more. -->
|
|
|
|
<meta-data
|
|
|
|
android:name="com.google.firebase.messaging.default_notification_color"
|
2020-09-08 23:57:07 +02:00
|
|
|
android:resource="@color/Light_colorAccent" />
|
2017-05-24 11:20:56 +02:00
|
|
|
|
2018-11-18 22:08:37 +01:00
|
|
|
<!--https://android-developers.googleblog.com/2018/11/get-your-app-ready-for-foldable-phones.html-->
|
|
|
|
<meta-data
|
|
|
|
android:name="android.allow_multiple_resumed_activities"
|
2020-09-08 23:57:07 +02:00
|
|
|
android:value="true" />
|
2018-11-18 22:08:37 +01:00
|
|
|
|
2017-04-20 18:23:59 +02:00
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|