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

213 lines
9.5 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">
<application
android:allowBackup="false"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:usesCleartextTraffic="true"
android:theme="@style/AppTheme"
tools:ignore="GoogleAppIndexingWarning">
<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-17 13:59:11 +01:00
<activity
android:name=".TransformActivity"
android:theme="@android:style/Theme.Translucent.NoTitleBar"
android:noHistory="true">
<!-- The app should handle these domains, more can be added here -->²
2020-02-17 11:57:14 +01:00
<!-- t.co -->
<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:scheme="https"
android:host="t.co"
android:pathPattern=".*"/>
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT"/>
<data android:mimeType="text/plain"
android:host="t.co" />
</intent-filter>
<!-- mobile.twitter.com -->
2020-01-25 15:38:39 +01:00
<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:scheme="https"
android:host="mobile.twitter.com"
android:pathPattern=".*"/>
</intent-filter>
2020-02-17 11:57:14 +01:00
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT"/>
<data android:mimeType="text/plain"
android:host="mobile.twitter.com" />
</intent-filter>
<!-- www.twitter.com -->
2020-01-25 10:25:02 +01:00
<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:scheme="https"
android:host="www.twitter.com"
android:pathPattern=".*"/>
</intent-filter>
2020-02-17 11:57:14 +01:00
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT"/>
<data android:mimeType="text/plain"
android:host="www.twitter.com" />
</intent-filter>
<!-- twitter.com -->
2020-01-25 10:25:02 +01:00
<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:scheme="https"
android:host="twitter.com"
android:pathPattern=".*"/>
</intent-filter>
2020-02-17 11:57:14 +01:00
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT"/>
<data
android:mimeType="text/plain"
android:host="twitter.com" />
</intent-filter>
<!-- www.youtube.com -->
2020-01-25 10:25:02 +01:00
<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:scheme="https"
2020-01-25 15:38:39 +01:00
android:host="www.youtube.com" />
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" />
<category android:name="android.intent.category.DEFAULT"/>
<data android:mimeType="text/plain"
android:host="www.youtube.com" />
</intent-filter>
<!-- m.youtube.com -->
2020-01-25 10:25:02 +01:00
<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:scheme="https"
2020-01-25 15:38:39 +01:00
android:host="m.youtube.com" />
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" />
<category android:name="android.intent.category.DEFAULT"/>
<data android:mimeType="text/plain"
android:host="m.youtube.com" />
</intent-filter>
<!-- youtube.com -->
2020-01-25 10:25:02 +01:00
<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:scheme="https"
android:host="youtube.com" />
</intent-filter>
2020-02-17 11:57:14 +01:00
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT"/>
<data android:mimeType="text/plain"
android:host="youtube.com" />
</intent-filter>
<!-- youtu.be -->
2020-01-25 10:25:02 +01:00
<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:scheme="https"
android:host="youtu.be" />
</intent-filter>
2020-02-17 11:57:14 +01:00
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT"/>
<data android:mimeType="text/plain"
android:host="youtu.be" />
</intent-filter>
<!-- youtube-nocookie.com -->
2020-01-25 10:25:02 +01:00
<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:scheme="https"
android:host="youtube-nocookie.com" />
</intent-filter>
2020-02-17 11:57:14 +01:00
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT"/>
<data android:mimeType="text/plain"
android:host="youtube-nocookie.com" />
</intent-filter>
<!-- google.com/maps/ -->
2020-01-29 12:58:26 +01:00
<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:scheme="https"
android:pathPattern="/maps/.*"
android:host="google.com" />
</intent-filter>
2020-02-17 11:57:14 +01:00
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT"/>
<data android:mimeType="text/plain"
android:pathPattern="/maps/.*"
android:host="google.com" />
</intent-filter>
<!-- www.google.com/maps/ -->
2020-01-29 12:58:26 +01:00
<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:scheme="https"
android:pathPattern="/maps/.*"
android:host="www.google.com" />
</intent-filter>
2020-02-17 11:57:14 +01:00
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT"/>
<data android:mimeType="text/plain"
android:pathPattern="/maps/.*"
android:host="www.google.com" />
</intent-filter>
2020-01-25 10:25:02 +01:00
</activity>
2020-01-25 11:00:55 +01:00
<activity
android:name=".AboutActivity"
android:label="@string/app_name"
android:configChanges="orientation|screenSize"
android:theme="@style/AppTheme"/>
2020-01-25 10:25:02 +01:00
</application>
</manifest>