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

434 lines
17 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-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-01-25 10:25:02 +01:00
tools:ignore="GoogleAppIndexingWarning">
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
<!-- SHORTENED URLs -->
2020-02-17 11:57:14 +01:00
<!-- t.co -->
<intent-filter>
<action android:name="android.intent.action.VIEW" />
2020-02-18 12:25:20 +01:00
2020-02-17 11:57:14 +01:00
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
2020-02-18 12:25:20 +01:00
<data
2020-02-17 11:57:14 +01:00
android:host="t.co"
2020-02-18 12:25:20 +01:00
android:pathPattern=".*"
android:scheme="https" />
<data
2020-02-18 12:19:01 +01:00
android:host="t.co"
2020-02-18 12:25:20 +01:00
android:pathPattern=".*"
android:scheme="http" />
2020-02-17 11:57:14 +01:00
</intent-filter>
<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="t.co"
android:mimeType="text/plain" />
2020-02-17 11:57:14 +01:00
</intent-filter>
2020-02-18 08:56:43 +01:00
<!-- nyti.ms -->
<intent-filter>
<action android:name="android.intent.action.VIEW" />
2020-02-18 12:25:20 +01:00
2020-02-18 08:56:43 +01:00
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
2020-02-18 12:25:20 +01:00
<data
2020-02-18 08:56:43 +01:00
android:host="nyti.ms"
2020-02-18 12:25:20 +01:00
android:pathPattern=".*"
android:scheme="https" />
<data
2020-02-18 12:19:01 +01:00
android:host="nyti.ms"
2020-02-18 12:25:20 +01:00
android:pathPattern=".*"
android:scheme="http" />
2020-02-18 08:56:43 +01:00
</intent-filter>
<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="nyti.ms"
android:mimeType="text/plain" />
2020-02-18 08:56:43 +01:00
</intent-filter>
<!-- bit.ly -->
<intent-filter>
<action android:name="android.intent.action.VIEW" />
2020-02-18 12:25:20 +01:00
2020-02-18 08:56:43 +01:00
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
2020-02-18 12:25:20 +01:00
<data
2020-02-18 08:56:43 +01:00
android:host="bit.ly"
2020-02-18 12:25:20 +01:00
android:pathPattern=".*"
android:scheme="https" />
<data
2020-02-18 12:19:01 +01:00
android:host="bit.ly"
2020-02-18 12:25:20 +01:00
android:pathPattern=".*"
android:scheme="http" />
2020-02-18 08:56:43 +01:00
</intent-filter>
<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="bit.ly"
android:mimeType="text/plain" />
2020-02-18 08:56:43 +01:00
</intent-filter>
<!-- tinyurl.com -->
<intent-filter>
<action android:name="android.intent.action.VIEW" />
2020-02-18 12:25:20 +01:00
2020-02-18 08:56:43 +01:00
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
2020-02-18 12:25:20 +01:00
<data
2020-02-18 08:56:43 +01:00
android:host="tinyurl.com"
2020-02-18 12:25:20 +01:00
android:pathPattern=".*"
android:scheme="https" />
<data
2020-02-18 12:19:01 +01:00
android:host="tinyurl.com"
2020-02-18 12:25:20 +01:00
android:pathPattern=".*"
android:scheme="http" />
2020-02-18 08:56:43 +01:00
</intent-filter>
<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="tinyurl.com"
android:mimeType="text/plain" />
2020-02-18 08:56:43 +01:00
</intent-filter>
<!-- goo.gl -->
<intent-filter>
<action android:name="android.intent.action.VIEW" />
2020-02-18 12:25:20 +01:00
2020-02-18 08:56:43 +01:00
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
2020-02-18 12:25:20 +01:00
<data
2020-02-18 08:56:43 +01:00
android:host="goo.gl"
2020-02-18 12:25:20 +01:00
android:pathPattern=".*"
android:scheme="https" />
<data
2020-02-18 12:19:01 +01:00
android:host="goo.gl"
2020-02-18 12:25:20 +01:00
android:pathPattern=".*"
android:scheme="http" />
2020-02-18 08:56:43 +01:00
</intent-filter>
<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="goo.gl"
android:mimeType="text/plain" />
2020-02-18 08:56:43 +01:00
</intent-filter>
2020-02-17 11:57:14 +01:00
2020-02-19 08:17:34 +01:00
<!-- INSTAGRAM URLs -->
<!-- instagram.com -->
<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="instagram.com"
android:pathPattern=".*"
android:scheme="https" />
<data
android:host="instagram.com"
android:pathPattern=".*"
android:scheme="http" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data
android:host="instagram.com"
android:mimeType="text/plain" />
</intent-filter>
<!-- www.instagram.com -->
<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="www.instagram.com"
android:pathPattern=".*"
android:scheme="https" />
<data
android:host="www.instagram.com"
android:pathPattern=".*"
android:scheme="http" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data
android:host="www.instagram.com"
android:mimeType="text/plain" />
</intent-filter>
<!-- m.instagram.com -->
<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="m.instagram.com"
android:pathPattern=".*"
android:scheme="https" />
<data
android:host="m.instagram.com"
android:pathPattern=".*"
android:scheme="http" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data
android:host="m.instagram.com"
android:mimeType="text/plain" />
</intent-filter>
2020-02-18 08:09:33 +01:00
<!-- TWITTER URLs -->
2020-02-17 11:57:14 +01:00
<!-- mobile.twitter.com -->
2020-01-25 15:38:39 +01:00
<intent-filter>
<action android:name="android.intent.action.VIEW" />
2020-02-18 12:25:20 +01:00
2020-01-25 15:38:39 +01:00
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
2020-02-18 12:25:20 +01:00
<data
2020-01-25 15:38:39 +01:00
android:host="mobile.twitter.com"
2020-02-18 12:25:20 +01:00
android:pathPattern=".*"
android:scheme="https" />
<data
2020-02-18 12:19:01 +01:00
android:host="mobile.twitter.com"
2020-02-18 12:25:20 +01:00
android:pathPattern=".*"
android:scheme="http" />
2020-01-25 15:38:39 +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="mobile.twitter.com"
android:mimeType="text/plain" />
2020-02-17 11:57:14 +01:00
</intent-filter>
<!-- www.twitter.com -->
2020-01-25 10:25:02 +01:00
<intent-filter>
<action android:name="android.intent.action.VIEW" />
2020-02-18 12:25:20 +01:00
2020-01-25 10:25:02 +01:00
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
2020-02-18 12:25:20 +01:00
<data
2020-01-25 10:25:02 +01:00
android:host="www.twitter.com"
2020-02-18 12:25:20 +01:00
android:pathPattern=".*"
android:scheme="https" />
<data
2020-02-18 12:19:01 +01:00
android:host="www.twitter.com"
2020-02-18 12:25:20 +01:00
android:pathPattern=".*"
android:scheme="http" />
2020-01-25 10:25:02 +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="www.twitter.com"
android:mimeType="text/plain" />
2020-02-17 11:57:14 +01:00
</intent-filter>
<!-- twitter.com -->
2020-01-25 10:25:02 +01:00
<intent-filter>
<action android:name="android.intent.action.VIEW" />
2020-02-18 12:25:20 +01:00
2020-01-25 10:25:02 +01:00
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
2020-02-18 12:25:20 +01:00
<data
2020-01-25 10:25:02 +01:00
android:host="twitter.com"
2020-02-18 12:25:20 +01:00
android:pathPattern=".*"
android:scheme="https" />
<data
2020-02-18 12:19:01 +01:00
android:host="twitter.com"
2020-02-18 12:25:20 +01:00
android:pathPattern=".*"
android:scheme="http" />
2020-01-25 10:25:02 +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" />
2020-02-17 11:57:14 +01:00
<data
2020-02-18 12:25:20 +01:00
android:host="twitter.com"
android:mimeType="text/plain" />
2020-02-17 11:57:14 +01:00
</intent-filter>
2020-02-18 08:09:33 +01:00
<!-- YOUTUBE URLs -->
2020-02-17 11:57:14 +01:00
<!-- www.youtube.com -->
2020-01-25 10:25:02 +01:00
<intent-filter>
<action android:name="android.intent.action.VIEW" />
2020-02-18 12:25:20 +01:00
2020-01-25 10:25:02 +01:00
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
2020-02-18 12:25:20 +01:00
<data
android:host="www.youtube.com"
android:scheme="https" />
<data
android:host="www.youtube.com"
android:scheme="http" />
2020-01-25 10:25:02 +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="www.youtube.com"
android:mimeType="text/plain" />
2020-02-17 11:57:14 +01:00
</intent-filter>
<!-- m.youtube.com -->
2020-01-25 10:25:02 +01:00
<intent-filter>
<action android:name="android.intent.action.VIEW" />
2020-02-18 12:25:20 +01:00
2020-01-25 10:25:02 +01:00
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
2020-02-18 12:25:20 +01:00
<data
android:host="m.youtube.com"
android:scheme="https" />
<data
android:host="m.youtube.com"
android:scheme="http" />
2020-01-25 10:25:02 +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="m.youtube.com"
android:mimeType="text/plain" />
2020-02-17 11:57:14 +01:00
</intent-filter>
<!-- youtube.com -->
2020-01-25 10:25:02 +01:00
<intent-filter>
<action android:name="android.intent.action.VIEW" />
2020-02-18 12:25:20 +01:00
2020-01-25 10:25:02 +01:00
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
2020-02-18 12:25:20 +01:00
<data
android:host="youtube.com"
android:scheme="https" />
<data
android:host="youtube.com"
android:scheme="http" />
2020-01-25 10:25:02 +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="youtube.com"
android:mimeType="text/plain" />
2020-02-17 11:57:14 +01:00
</intent-filter>
<!-- youtu.be -->
2020-01-25 10:25:02 +01:00
<intent-filter>
<action android:name="android.intent.action.VIEW" />
2020-02-18 12:25:20 +01:00
2020-01-25 10:25:02 +01:00
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
2020-02-18 12:25:20 +01:00
<data
android:host="youtu.be"
android:scheme="https" />
<data
android:host="youtu.be"
android:scheme="http" />
2020-01-25 10:25:02 +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="youtu.be"
android:mimeType="text/plain" />
2020-02-17 11:57:14 +01:00
</intent-filter>
<!-- youtube-nocookie.com -->
2020-01-25 10:25:02 +01:00
<intent-filter>
<action android:name="android.intent.action.VIEW" />
2020-02-18 12:25:20 +01:00
2020-01-25 10:25:02 +01:00
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
2020-02-18 12:25:20 +01:00
<data
android:host="youtube-nocookie.com"
android:scheme="https" />
<data
android:host="youtube-nocookie.com"
android:scheme="http" />
2020-01-25 10:25:02 +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="youtube-nocookie.com"
android:mimeType="text/plain" />
2020-02-17 11:57:14 +01:00
</intent-filter>
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
<data
android:host="*"
2020-02-17 15:34:09 +01:00
android:pathPattern="/maps/place/.*"
2020-02-18 12:25:20 +01:00
android:scheme="https" />
<data
android:host="*"
2020-02-18 12:19:01 +01:00
android:pathPattern="/maps/place/.*"
2020-02-18 12:25:20 +01:00
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-01-25 10:25:02 +01:00
</activity>
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-01-25 10:25:02 +01:00
</application>
</manifest>