SpotiFlyer/android/src/main/AndroidManifest.xml

81 lines
3.7 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.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-07 17:19:48 +01:00
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
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"
tools:ignore="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"
android:label="@string/app_name"
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"
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"
>
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>
<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
<meta-data
android:name="com.razorpay.ApiKey"
android:value="rzp_live_3ZQeoFYOxjmXye"
/>
2021-02-21 22:33:42 +01:00
2021-02-22 18:38:33 +01:00
<service android:name="com.shabinder.common.di.worker.ForegroundService"/>
2021-01-26 13:54:28 +01:00
</application>
</manifest>