UntrackMe-app-android-redir.../app/src/main/AndroidManifest.xml

265 lines
11 KiB
XML
Raw Normal View History

2020-01-25 10:25:02 +01:00
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="app.fedilab.nitterizeme">
2020-02-18 12:25:20 +01:00
2022-01-27 18:32:37 +01:00
<uses-permission
android:name="android.permission.QUERY_ALL_PACKAGES"
tools:ignore="QueryAllPackagesPermission" />
2020-02-18 08:09:33 +01:00
<uses-permission android:name="android.permission.INTERNET" />
2022-01-27 18:32:37 +01:00
2020-04-05 12:40:43 +02:00
2020-01-25 10:25:02 +01:00
<application
android:allowBackup="false"
2020-05-04 17:27:41 +02:00
android:icon="@mipmap/ic_launcher_lite"
2020-05-04 11:33:58 +02:00
android:label="@string/app_name_lite"
2020-05-04 17:27:41 +02:00
android:roundIcon="@mipmap/ic_launcher_lite_round"
2020-01-25 10:25:02 +01:00
android:supportsRtl="true"
android:theme="@style/AppTheme"
2020-02-18 12:25:20 +01:00
android:usesCleartextTraffic="true"
2020-08-30 17:01:26 +02:00
tools:ignore="GoogleAppIndexingWarning,UnusedAttribute"
tools:node="replace">
2020-02-18 08:09:33 +01:00
2020-01-25 10:25:02 +01:00
<activity
2020-04-15 17:51:18 +02:00
android:name=".activities.MainActivity"
2020-05-04 11:33:58 +02:00
android:label="@string/app_name_lite"
2022-01-27 18:32:37 +01:00
android:theme="@style/AppTheme.NoActionBar"
android:exported="true">
2020-01-25 10:25:02 +01:00
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
2020-02-18 08:09:33 +01:00
2020-02-17 13:59:11 +01:00
<activity
2020-04-15 17:51:18 +02:00
android:name=".activities.TransformActivity"
2020-02-18 12:25:20 +01:00
android:noHistory="true"
2022-01-27 18:32:37 +01:00
android:theme="@style/Theme.AppCompat.Translucent"
android:exported="true">
2020-02-17 13:59:28 +01:00
<!-- The app should handle these domains, more can be added here -->
2020-02-18 08:09:33 +01:00
2020-02-17 11:57:14 +01:00
<intent-filter>
<action android:name="android.intent.action.VIEW" />
2020-04-03 12:33:16 +02:00
2020-02-17 11:57:14 +01:00
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
2020-04-03 12:33:16 +02:00
2020-04-20 17:56:49 +02:00
<!-- SHORTENED URLs -->
<data android:host="t.co" />
<data android:host="vxtwitter.com" />
2020-04-20 17:56:49 +02:00
<data android:host="nyti.ms" />
<data android:host="bit.ly" />
2020-12-12 18:12:53 +01:00
<data android:host="aspedrom.com" />
<data android:host="is.gd" />
<data android:host="fb.me" />
<data android:host="rb.gy" />
<data android:host="cutt.ly" />
<data android:host="bit.do" />
2020-10-04 13:49:40 +02:00
<data android:host="amp.gs" />
2020-04-20 17:56:49 +02:00
<data android:host="tinyurl.com" />
<data android:host="goo.gl" />
<data android:host="nzzl.us" />
<data android:host="ift.tt" />
2020-04-20 17:56:49 +02:00
<data android:host="ow.ly" />
<data android:host="bl.ink" />
<data android:host="buff.ly" />
<data android:host="maps.app.goo.gl" />
2022-05-17 07:43:13 +02:00
<data android:host="vm.tiktok.com" />
2022-07-12 15:42:19 +02:00
<data android:host="vt.tiktok.com" />
2020-04-20 17:56:49 +02:00
<!-- INSTAGRAM URLs -->
<data android:host="instagram.com" />
<data android:host="www.instagram.com" />
<data android:host="m.instagram.com" />
<!-- TWITTER URLs -->
<data android:host="mobile.twitter.com" />
<data android:host="www.twitter.com" />
<data android:host="twitter.com" />
<data android:host="pbs.twimg.com" />
<data android:host="pic.twitter.com" />
<!-- YOUTUBE URLs -->
<data android:host="www.youtube.com" />
<data android:host="m.youtube.com" />
<data android:host="youtube.com" />
<data android:host="youtu.be" />
<data android:host="youtube-nocookie.com" />
2020-11-30 18:59:29 +01:00
<!-- REDDIT URLs -->
<data android:host="www.reddit.com" />
<data android:host="reddit.com" />
<data android:host="i.reddit.com" />
<data android:host="i.redd.it" />
<data android:host="old.reddit.com" />
2020-11-30 18:59:29 +01:00
<data android:host="preview.redd.it" />
2022-05-17 07:43:13 +02:00
<!-- TIKTOK URLs -->
<data android:host="tiktok.com" />
<data android:host="www.tiktok.com" />
<data android:host="us.tiktok.com" />
<!-- MEDIUM URLs -->
<data android:host="www.medium.com" />
2021-10-25 14:50:06 +02:00
<data android:host="medium.com" />
<data android:host="*.medium.com" />
<!-- WIKIPEDIA URLs -->
<data android:host="wikipedia.org" />
<data android:host="www.wikipedia.org" />
<data android:host="*.wikipedia.org" />
<data android:pathPattern=".*" />
2021-10-25 14:50:06 +02:00
<data android:scheme="https" />
<data android:scheme="http" />
</intent-filter>
2020-04-04 11:46:04 +02:00
<!-- SHARING HANDLE -->
2020-03-29 12:17:10 +02:00
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
2020-03-29 16:01:29 +02:00
2020-04-20 17:56:49 +02:00
<!-- SHORTENED URLs -->
<data android:host="t.co" />
<data android:host="vxtwitter.com" />
2020-04-20 17:56:49 +02:00
<data android:host="nyti.ms" />
<data android:host="bit.ly" />
2020-12-12 18:12:53 +01:00
<data android:host="is.gd" />
<data android:host="fb.me" />
<data android:host="rb.gy" />
<data android:host="cutt.ly" />
<data android:host="bit.do" />
<data android:host="aspedrom.com" />
2020-10-04 13:49:40 +02:00
<data android:host="amp.gs" />
2020-04-20 17:56:49 +02:00
<data android:host="tinyurl.com" />
<data android:host="goo.gl" />
<data android:host="nzzl.us" />
<data android:host="ift.tt" />
2020-04-20 17:56:49 +02:00
<data android:host="ow.ly" />
<data android:host="bl.ink" />
<data android:host="buff.ly" />
<data android:host="maps.app.goo.gl" />
2022-05-17 07:43:13 +02:00
<data android:host="vm.tiktok.com" />
2022-07-12 15:42:19 +02:00
<data android:host="vt.tiktok.com" />
2020-04-20 17:56:49 +02:00
<!-- INSTAGRAM URLs -->
<data android:host="instagram.com" />
<data android:host="www.instagram.com" />
<data android:host="m.instagram.com" />
<!-- TWITTER URLs -->
<data android:host="mobile.twitter.com" />
<data android:host="www.twitter.com" />
<data android:host="twitter.com" />
<data android:host="pbs.twimg.com" />
<!-- YOUTUBE URLs -->
<data android:host="www.youtube.com" />
<data android:host="m.youtube.com" />
<data android:host="youtube.com" />
<data android:host="youtu.be" />
<data android:host="youtube-nocookie.com" />
2020-11-30 18:59:29 +01:00
<!-- REDDIT URLs -->
<data android:host="www.reddit.com" />
<data android:host="reddit.com" />
<data android:host="i.reddit.com" />
<data android:host="i.redd.it" />
<data android:host="old.reddit.com" />
2020-11-30 18:59:29 +01:00
<data android:host="preview.redd.it" />
2022-05-17 07:43:13 +02:00
<!-- TIKTOK URLs -->
<data android:host="tiktok.com" />
<data android:host="www.tiktok.com" />
<data android:host="us.tiktok.com" />
<!-- MEDIUM URLs -->
<data android:host="www.medium.com" />
<data android:host="medium.com" />
<data android:host="*.medium.com" />
<!-- WIKIPEDIA URLs -->
<data android:host="wikipedia.org" />
<data android:host="www.wikipedia.org" />
<data android:host="*.wikipedia.org" />
2020-04-04 11:46:04 +02:00
<data android:mimeType="text/plain" />
2020-02-19 08:17:34 +01:00
</intent-filter>
2020-04-20 17:56:49 +02:00
<!-- MAPS URLs -->
<!-- /maps/ -->
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:host="*" />
<data android:pathPattern="/maps/place/.*" />
<data android:scheme="https" />
<data android:scheme="http" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data
android:host="*"
android:mimeType="text/plain"
android:pathPattern="/maps/place/.*" />
</intent-filter>
<!-- AMP URLs -->
<!-- /amp/ -->
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:host="*" />
<data android:pathPattern="/amp/s/.*" />
<data android:scheme="https" />
<data android:scheme="http" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data
android:host="*"
android:mimeType="text/plain"
android:pathPattern="/amp/s/.*" />
</intent-filter>
2020-01-25 10:25:02 +01:00
</activity>
2020-02-20 11:20:30 +01:00
<activity
2020-04-19 17:31:07 +02:00
android:name=".activities.AppsPickerActivity"
android:noHistory="true"
2020-05-04 11:33:58 +02:00
android:theme="@style/Theme.AppCompat.Translucent" />
2020-04-19 17:31:07 +02:00
<activity
android:name=".activities.InstanceActivity"
2020-02-20 11:20:30 +01:00
android:excludeFromRecents="true"
2020-04-10 17:25:19 +02:00
android:theme="@style/AppThemeDialog" />
2020-01-25 11:00:55 +01:00
<activity
2020-04-15 17:51:18 +02:00
android:name=".activities.AboutActivity"
2020-01-25 11:00:55 +01:00
android:configChanges="orientation|screenSize"
2020-05-04 11:33:58 +02:00
android:label="@string/app_name_lite"
2020-02-18 12:25:20 +01:00
android:theme="@style/AppTheme" />
<activity
android:name=".activities.CheckAppActivity"
android:configChanges="orientation|screenSize"
2020-05-04 11:33:58 +02:00
android:label="@string/app_name_lite"
android:theme="@style/AppTheme" />
2020-04-20 17:56:49 +02:00
<activity
android:name=".activities.DefaultAppActivity"
android:configChanges="orientation|screenSize"
2020-05-04 11:33:58 +02:00
android:label="@string/app_name_lite"
2020-04-20 17:56:49 +02:00
android:theme="@style/AppTheme" />
2020-05-30 11:07:50 +02:00
<activity
android:name=".activities.InvidiousSettingsActivity"
android:configChanges="orientation|screenSize"
android:label="@string/invidious_settings"
android:theme="@style/AppTheme" />
2020-01-25 10:25:02 +01:00
</application>
</manifest>