2017-04-20 18:23:59 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2017-09-09 00:42:18 +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"
|
2017-09-09 00:42:18 +02:00
|
|
|
package="jp.juggler.subwaytooter"
|
|
|
|
>
|
2017-04-20 18:23:59 +02:00
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.INTERNET"/>
|
2017-04-29 22:51:04 +02:00
|
|
|
<uses-permission android:name="android.permission.WAKE_LOCK"/>
|
|
|
|
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
|
2017-05-02 12:18:01 +02:00
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
|
2017-09-07 21:44:13 +02:00
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
|
2018-11-18 22:08:37 +01:00
|
|
|
<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
|
|
|
|
|
|
|
<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"
|
2017-04-20 18:23:59 +02:00
|
|
|
android:supportsRtl="true"
|
2017-04-27 11:15:14 +02:00
|
|
|
android:theme="@style/AppTheme.Light"
|
2017-04-20 18:23:59 +02:00
|
|
|
>
|
2017-08-24 13:44:06 +02:00
|
|
|
|
|
|
|
<receiver android:name=".EventReceiver">
|
2017-04-25 08:54:05 +02:00
|
|
|
<intent-filter>
|
2017-04-29 22:51:04 +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>
|
|
|
|
<action android:name="android.intent.action.ACTION_MY_PACKAGE_REPLACED"/>
|
2017-08-24 13:44:06 +02:00
|
|
|
<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
|
|
|
|
android:name=".PollingService"
|
|
|
|
android:permission="android.permission.BIND_JOB_SERVICE"
|
|
|
|
/>
|
2017-09-07 21:44:13 +02:00
|
|
|
|
|
|
|
<service
|
|
|
|
android:name=".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
|
|
|
|
2017-04-28 07:19:49 +02:00
|
|
|
android:windowSoftInputMode="adjustResize|stateAlwaysHidden"
|
2017-04-20 18:23:59 +02:00
|
|
|
>
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
|
|
|
</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>
|
|
|
|
<action android:name="android.intent.action.VIEW"/>
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
|
|
<category android:name="android.intent.category.BROWSABLE"/>
|
|
|
|
|
|
|
|
<data
|
2017-12-20 17:03:05 +01:00
|
|
|
android:host="*"
|
|
|
|
android:pathPattern=".*"
|
2018-08-15 12:22:19 +02:00
|
|
|
android:scheme="subwaytooter"
|
2017-09-09 00:42:18 +02:00
|
|
|
/>
|
2017-04-29 22:51:04 +02:00
|
|
|
</intent-filter>
|
2017-05-05 13:00:20 +02:00
|
|
|
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.VIEW"/>
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
|
|
<category android:name="android.intent.category.BROWSABLE"/>
|
|
|
|
|
2017-05-06 08:10:05 +02:00
|
|
|
<data
|
|
|
|
android:host="*"
|
|
|
|
android:pathPrefix="/@"
|
2018-08-15 12:22:19 +02:00
|
|
|
android:scheme="https"
|
2017-09-09 00:42:18 +02:00
|
|
|
/>
|
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>
|
|
|
|
<action android:name="android.intent.action.SEND"/>
|
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
2017-09-10 20:54:38 +02:00
|
|
|
<data android:mimeType="text/plain"/>
|
2017-05-06 08:10:05 +02:00
|
|
|
</intent-filter>
|
|
|
|
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.SEND"/>
|
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
2017-09-10 20:54:38 +02:00
|
|
|
<data android:mimeType="image/*"/>
|
2017-05-05 13:00:20 +02:00
|
|
|
</intent-filter>
|
2017-05-06 08:10:05 +02:00
|
|
|
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.SEND_MULTIPLE"/>
|
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
|
|
<data android:mimeType="image/*"/>
|
|
|
|
</intent-filter>
|
|
|
|
|
2017-09-10 20:54:38 +02:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.SEND"/>
|
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
|
|
<data android:mimeType="video/*"/>
|
|
|
|
</intent-filter>
|
|
|
|
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.SEND_MULTIPLE"/>
|
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
|
|
<data android:mimeType="video/*"/>
|
|
|
|
</intent-filter>
|
|
|
|
|
2019-07-19 10:58:05 +02:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.SEND"/>
|
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
|
|
<data android:mimeType="audio/*"/>
|
|
|
|
</intent-filter>
|
|
|
|
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.SEND_MULTIPLE"/>
|
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
|
|
<data android:mimeType="audio/*"/>
|
|
|
|
</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
|
|
|
|
2017-04-21 14:45:40 +02:00
|
|
|
android:windowSoftInputMode="adjustResize"
|
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
|
|
|
|
2017-08-24 13:44:06 +02:00
|
|
|
android:windowSoftInputMode="adjustResize|stateAlwaysHidden"
|
2017-04-22 16:45:26 +02:00
|
|
|
/>
|
|
|
|
|
|
|
|
<activity
|
|
|
|
android:name=".ActAppSetting"
|
|
|
|
android:label="@string/app_setting"
|
2017-04-27 11:15:14 +02:00
|
|
|
|
2018-12-03 09:07:07 +01:00
|
|
|
android:windowSoftInputMode="adjustResize|stateAlwaysHidden"
|
|
|
|
/>
|
|
|
|
<activity
|
|
|
|
android:name=".ActAppSettingChild"
|
|
|
|
android:label="@string/app_setting"
|
|
|
|
|
2017-05-13 00:53:42 +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
|
|
|
|
2017-04-22 16:45:26 +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"
|
|
|
|
android:label="@string/muted_app"
|
2017-05-07 20:16:41 +02:00
|
|
|
/>
|
2017-05-08 03:16:43 +02:00
|
|
|
<activity
|
2019-08-23 03:04:30 +02:00
|
|
|
android:name=".ActMutedPseudoAccount"
|
2019-08-23 03:31:43 +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"
|
|
|
|
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"
|
2018-03-21 15:43:04 +01: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"
|
2018-07-08 19:00:47 +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"
|
|
|
|
android:label="@string/highlight_word"
|
|
|
|
/>
|
|
|
|
<activity
|
|
|
|
android:name=".ActHighlightWordEdit"
|
|
|
|
android:label="@string/highlight_word"
|
|
|
|
/>
|
|
|
|
|
2017-05-07 20:16:41 +02:00
|
|
|
<activity
|
|
|
|
android:name=".ActColumnCustomize"
|
|
|
|
android:label="@string/color_and_background"
|
2017-05-15 15:15:00 +02:00
|
|
|
android:windowSoftInputMode="adjustResize|stateAlwaysHidden"
|
2017-04-29 22:51:04 +02:00
|
|
|
/>
|
2017-05-07 20:16:41 +02: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"
|
2017-05-03 01:42: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"
|
|
|
|
android:windowSoftInputMode="adjustResize|stateAlwaysHidden"
|
|
|
|
/>
|
2017-09-09 00:42:18 +02:00
|
|
|
|
2017-12-21 12:33:35 +01:00
|
|
|
<activity
|
|
|
|
android:name=".ActMediaViewer"
|
2018-12-06 09:31:50 +01:00
|
|
|
android:theme="@style/AppTheme.Dark.NoActionBar"
|
2017-12-21 12:33:35 +01:00
|
|
|
/>
|
|
|
|
|
2017-04-24 13:04:56 +02:00
|
|
|
<meta-data
|
|
|
|
android:name="android.max_aspect"
|
2017-09-09 00:42:18 +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"
|
2017-05-18 07:42:14 +02:00
|
|
|
android:grantUriPermissions="true"
|
2017-09-09 00:42:18 +02:00
|
|
|
>
|
2017-05-18 07:42:14 +02:00
|
|
|
<meta-data
|
|
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
2017-09-09 00:42:18 +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>
|
2018-08-15 12:22:19 +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>
|
|
|
|
|
2019-06-25 22:28:02 +02:00
|
|
|
<receiver android:name=".ChooseReceiver" android:exported="false"/>
|
|
|
|
|
2017-05-22 18:19:49 +02:00
|
|
|
<!-- okhttp3クライアントを指定する必要があるため、マニフェスト経由での組み込みは行わない -->
|
2017-05-19 01:20:42 +02:00
|
|
|
<!--<meta-data-->
|
2017-09-09 00:42:18 +02:00
|
|
|
<!--android:name="com.bumptech.glide.integration.okhttp3.OkHttpGlideModule"-->
|
|
|
|
<!--android:value="GlideModule" />-->
|
2017-05-19 01:20:42 +02:00
|
|
|
|
2017-05-24 11:20:56 +02:00
|
|
|
<service
|
2017-12-15 23:09:59 +01:00
|
|
|
android:name=".MyFirebaseMessagingService"
|
|
|
|
tools:ignore="ExportedService"
|
|
|
|
>
|
2017-05-24 11:20:56 +02:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="com.google.firebase.MESSAGING_EVENT"/>
|
|
|
|
</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"
|
2017-09-09 00:42:18 +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"
|
2017-09-09 00:42:18 +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"
|
|
|
|
android:value="true"
|
|
|
|
/>
|
|
|
|
|
2017-04-20 18:23:59 +02:00
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|