mirror of
https://github.com/Shabinder/SpotiFlyer.git
synced 2024-11-22 17:14:32 +01:00
81 lines
3.7 KiB
XML
81 lines
3.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
~ * 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/>.
|
|
-->
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
package="com.shabinder.spotiflyer">
|
|
|
|
<queries>
|
|
<package android:name="com.gaana" />
|
|
<package android:name="com.spotify.music" />
|
|
<package android:name="com.google.android.youtube" />
|
|
<package android:name="com.google.android.apps.youtube.music" />
|
|
</queries>
|
|
|
|
<uses-permission android:name="android.permission.INTERNET"/>
|
|
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
|
|
<uses-permission android:name="android.permission.QUERY_ALL_PACKAGES" />
|
|
<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" />
|
|
<uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE"
|
|
tools:ignore="ScopedStorage" />
|
|
<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" />
|
|
|
|
<application
|
|
android:name=".App"
|
|
android:allowBackup="false"
|
|
android:supportsRtl="true"
|
|
android:usesCleartextTraffic="true"
|
|
android:theme="@style/Theme.AppCompat.Light.NoActionBar"
|
|
android:icon="@mipmap/ic_launcher"
|
|
android:label="@string/app_name"
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
android:configChanges="orientation|screenSize"
|
|
android:forceDarkAllowed="true"
|
|
android:requestLegacyExternalStorage="true"
|
|
tools:targetApi="q">
|
|
<activity android:name=".MainActivity"
|
|
android:launchMode="singleTask"
|
|
android:label="@string/app_name"
|
|
android:hardwareAccelerated="true"
|
|
android:theme="@style/Theme.SpotiFlyer"
|
|
>
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
<intent-filter>
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
<action android:name="android.intent.action.SEND" />
|
|
<data android:mimeType="text/plain" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<meta-data
|
|
android:name="com.razorpay.ApiKey"
|
|
android:value="rzp_live_3ZQeoFYOxjmXye"
|
|
/>
|
|
|
|
<service android:name="com.shabinder.common.di.worker.ForegroundService"/>
|
|
</application>
|
|
</manifest> |