SpotiFlyer/android/src/main/AndroidManifest.xml

99 lines
4.4 KiB
XML
Raw Normal View History

2021-01-26 13:54:28 +01:00
<?xml version="1.0" encoding="utf-8"?>
2021-03-18 19:11:45 +01:00
<!--
~ * Copyright (c) 2021 Shabinder Singh
~ * This program is free software: you can redistribute it and/or modify
~ * it under the terms of the GNU General Public License as published by
~ * the Free Software Foundation, either version 3 of the License, or
~ * (at your option) any later version.
~ *
~ * This program is distributed in the hope that it will be useful,
~ * but WITHOUT ANY WARRANTY; without even the implied warranty of
~ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
~ * GNU General Public License for more details.
~ *
~ * You should have received a copy of the GNU General Public License
~ * along with this program. If not, see <https://www.gnu.org/licenses/>.
-->
2021-02-07 17:19:48 +01:00
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
2021-02-25 14:28:33 +01:00
package="com.shabinder.spotiflyer">
2021-02-07 17:19:48 +01:00
<queries>
<package android:name="com.gaana" />
<package android:name="com.spotify.music" />
<package android:name="com.jio.media.jiobeats" />
<package android:name="com.soundcloud.android" />
2021-02-07 17:19:48 +01:00
<package android:name="com.google.android.youtube" />
<package android:name="com.google.android.apps.youtube.music" />
</queries>
2021-01-26 13:54:28 +01:00
<uses-permission android:name="android.permission.INTERNET"/>
2021-02-26 00:59:54 +01:00
<uses-permission android:name="android.permission.QUERY_ALL_PACKAGES" />
2021-02-07 17:19:48 +01:00
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"
tools:ignore="ScopedStorage" />
<uses-permission android:name="android.permission.READ_STORAGE_PERMISSION" />
2021-04-19 20:24:48 +02:00
<uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE"
2021-09-24 21:33:46 +02:00
tools:ignore="ProtectedPermissions,ScopedStorage" />
2021-02-07 17:19:48 +01:00
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
<uses-permission android:name="android.permission.REQUEST_IGNORE_BATTERY_OPTIMIZATIONS" />
2021-01-26 13:54:28 +01:00
<application
2021-02-07 17:19:48 +01:00
android:name=".App"
android:allowBackup="false"
android:supportsRtl="true"
android:usesCleartextTraffic="true"
android:theme="@style/Theme.AppCompat.Light.NoActionBar"
android:icon="@mipmap/ic_launcher"
2021-09-03 20:58:13 +02:00
android:hardwareAccelerated="true"
2021-05-08 17:12:09 +02:00
android:largeHeap="true"
android:label="SpotiFlyer"
2021-02-07 17:19:48 +01:00
android:roundIcon="@mipmap/ic_launcher_round"
2021-04-19 20:24:48 +02:00
android:configChanges="orientation|screenSize"
2021-02-07 17:19:48 +01:00
android:forceDarkAllowed="true"
2021-09-03 20:58:13 +02:00
android:extractNativeLibs="true"
2021-02-07 17:19:48 +01:00
android:requestLegacyExternalStorage="true"
tools:targetApi="q">
2021-09-24 21:33:46 +02:00
<activity
android:name=".ui.SplashScreenActivity"
android:theme="@style/SplashTheme"
2021-02-07 17:19:48 +01:00
android:hardwareAccelerated="true"
>
2021-01-26 13:54:28 +01:00
<intent-filter>
2021-02-07 17:19:48 +01:00
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
2021-09-24 21:33:46 +02:00
</activity>
<activity android:name=".MainActivity"
android:launchMode="singleTask"
android:hardwareAccelerated="true"
android:theme="@style/Theme.SpotiFlyer"
>
2021-02-07 17:19:48 +01:00
<intent-filter>
<category android:name="android.intent.category.DEFAULT" />
<action android:name="android.intent.action.SEND" />
<data android:mimeType="text/plain" />
2021-01-26 13:54:28 +01:00
</intent-filter>
</activity>
2021-02-07 17:19:48 +01:00
<service android:name=".service.ForegroundService"/>
2021-09-24 21:33:46 +02:00
<service android:name="org.openudid.OpenUDID_service"
tools:ignore="ExportedService,IntentFilterExportedReceiver">
<intent-filter>
<action android:name="org.openudid.GETUDID" />
</intent-filter>
</service>
2021-09-24 21:33:46 +02:00
<receiver android:name="ly.count.android.sdk.ReferrerReceiver" android:exported="true"
tools:ignore="ExportedReceiver">
<intent-filter>
<action android:name="com.android.vending.INSTALL_REFERRER" />
</intent-filter>
</receiver>
2021-01-26 13:54:28 +01:00
</application>
</manifest>