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

200 lines
8.1 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
2020-02-18 08:09:33 +01:00
<uses-permission android:name="android.permission.INTERNET" />
2020-04-05 12:40:43 +02:00
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
2020-01-25 10:25:02 +01:00
<application
android:allowBackup="false"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme"
2020-02-18 12:25:20 +01:00
android:usesCleartextTraffic="true"
2020-03-29 12:17:10 +02:00
tools:ignore="GoogleAppIndexingWarning,UnusedAttribute">
2020-02-18 08:09:33 +01:00
2020-01-25 10:25:02 +01:00
<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>
2020-02-18 08:09:33 +01:00
2020-02-17 13:59:11 +01:00
<activity
android:name=".TransformActivity"
2020-02-18 12:25:20 +01:00
android:noHistory="true"
android:theme="@style/Theme.AppCompat.Translucent">
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-04 11:46:04 +02:00
<!-- SHORTENED URLs -->
<data android:host="t.co" />
<data android:host="nyti.ms" />
<data android:host="bit.ly" />
<data android:host="tinyurl.com" />
<data android:host="goo.gl" />
<data android:host="ow.ly" />
<data android:host="bl.ink" />
<data android:host="buff.ly" />
2020-04-03 12:33:16 +02:00
2020-04-04 11:46:04 +02:00
<!-- INSTAGRAM URLs -->
<data android:host="instagram.com" />
<data android:host="www.instagram.com" />
<data android:host="m.instagram.com" />
2020-04-03 12:33:16 +02:00
2020-04-04 11:46:04 +02:00
<!-- 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" />
2020-04-10 12:27:43 +02:00
<data android:host="pic.twitter.com" />
2020-04-03 12:33:16 +02:00
2020-04-04 11:46:04 +02:00
<!-- 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-02-18 12:25:20 +01:00
2020-04-04 11:46:04 +02:00
<!-- INVIDIOUS INSTANCES -->
<data android:host="invidio.us" />
<data android:host="invidious.snopyta.org" />
<data android:host="invidiou.sh" />
<data android:host="invidious.toot.koeln" />
<data android:host="invidious.ggc-project.de" />
2020-02-18 12:25:20 +01:00
2020-04-04 11:46:04 +02:00
<!-- NITTER INSTANCES -->
<data android:host="nitter.net" />
<data android:host="nitter.snopyta.org" />
<data android:host="nitter.42l.fr" />
<data android:host="nitter.nixnet.services" />
<data android:host="nitter.13ad.de" />
2020-04-04 14:49:47 +02:00
<data android:host="tw.openalgeria.org" />
2020-04-04 11:46:04 +02:00
<data android:host="nitter.pussthecat.org" />
2020-02-18 12:25:20 +01:00
2020-04-04 11:46:04 +02:00
<!-- BIBLIOGRAM INSTANCES -->
<data android:host="bibliogram.art" />
<data android:host="bibliogram.snopyta.org" />
<data android:host="bibliogram.dsrev.ru" />
<data android:host="bibliogram.pussthecat.org" />
2020-03-29 12:17:10 +02:00
2020-04-04 11:46:04 +02:00
<data android:pathPattern=".*" />
<data android:scheme="https" />
<data android:scheme="http" />
2020-03-29 12:17:10 +02:00
</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-04 11:46:04 +02:00
<!-- SHORTENED URLs -->
<data android:host="t.co" />
<data android:host="nyti.ms" />
<data android:host="bit.ly" />
<data android:host="tinyurl.com" />
<data android:host="goo.gl" />
<data android:host="ow.ly" />
<data android:host="bl.ink" />
<data android:host="buff.ly" />
2020-03-29 16:01:29 +02:00
2020-04-04 11:46:04 +02:00
<!-- INSTAGRAM URLs -->
<data android:host="instagram.com" />
<data android:host="www.instagram.com" />
<data android:host="m.instagram.com" />
2020-03-29 16:01:29 +02:00
2020-04-04 11:46:04 +02:00
<!-- 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" />
2020-02-19 08:17:34 +01:00
2020-04-04 11:46:04 +02:00
<!-- 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-02-19 08:17:34 +01:00
2020-04-04 11:46:04 +02:00
<data android:mimeType="text/plain" />
2020-02-19 08:17:34 +01:00
</intent-filter>
2020-02-18 12:25:20 +01:00
2020-02-17 11:57:14 +01:00
2020-02-18 08:09:33 +01:00
<!-- MAPS URLs -->
2020-02-17 15:34:09 +01:00
<!-- /maps/ -->
2020-01-29 12:58:26 +01:00
<intent-filter>
<action android:name="android.intent.action.VIEW" />
2020-02-18 12:25:20 +01:00
2020-01-29 12:58:26 +01:00
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
2020-02-18 12:25:20 +01:00
2020-04-04 11:46:04 +02:00
<data android:host="*" />
<data android:pathPattern="/maps/place/.*" />
<data android:scheme="https" />
<data android:scheme="http" />
2020-01-29 12:58:26 +01:00
</intent-filter>
2020-02-17 11:57:14 +01:00
<intent-filter>
<action android:name="android.intent.action.SEND" />
2020-02-18 12:25:20 +01:00
<category android:name="android.intent.category.DEFAULT" />
<data
android:host="*"
android:mimeType="text/plain"
android:pathPattern="/maps/place/.*" />
2020-02-17 11:57:14 +01:00
</intent-filter>
2020-04-02 15:46:04 +02:00
2020-04-04 11:46:04 +02:00
<!-- AMP URLs -->
<!-- /amp/ -->
2020-04-02 15:46:04 +02:00
<intent-filter>
<action android:name="android.intent.action.VIEW" />
2020-04-03 12:33:16 +02:00
2020-04-02 15:46:04 +02: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-04 11:46:04 +02:00
<data android:host="*" />
<data android:pathPattern="/amp/s/.*" />
<data android:scheme="https" />
<data android:scheme="http" />
2020-04-02 15:46:04 +02:00
</intent-filter>
<intent-filter>
2020-04-04 11:46:04 +02:00
<action android:name="android.intent.action.SEND" />
2020-04-02 15:46:04 +02:00
<category android:name="android.intent.category.DEFAULT" />
<data
2020-04-04 11:46:04 +02:00
android:host="*"
android:mimeType="text/plain"
android:pathPattern="/amp/s/.*" />
2020-04-02 15:46:04 +02:00
</intent-filter>
2020-01-25 10:25:02 +01:00
</activity>
2020-02-20 11:20:30 +01:00
<activity
android:name="app.fedilab.nitterizeme.InstanceActivity"
android:excludeFromRecents="true"
2020-04-10 17:25:19 +02:00
android:theme="@style/AppThemeDialog" />
2020-01-25 11:00:55 +01:00
<activity
android:name=".AboutActivity"
android:configChanges="orientation|screenSize"
2020-02-18 12:25:20 +01:00
android:label="@string/app_name"
android:theme="@style/AppTheme" />
2020-04-04 19:09:17 +02:00
2020-04-10 17:25:19 +02:00
<activity
android:name="app.fedilab.nitterizeme.WebviewPlayerActivity"
android:configChanges="keyboardHidden|orientation|screenSize"
2020-04-04 19:09:17 +02:00
android:label="@string/app_name"
2020-04-05 12:40:43 +02:00
android:launchMode="singleTask"
2020-04-10 17:25:19 +02:00
android:theme="@style/AppTheme" />
2020-01-25 10:25:02 +01:00
</application>
</manifest>