2022-06-14 23:05:59 +05:30
|
|
|
<?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="code.name.monkey.retromusic">
|
|
|
|
|
2022-06-15 14:09:37 +05:30
|
|
|
<uses-permission android:name="com.android.vending.BILLING" />
|
|
|
|
|
2022-06-14 23:05:59 +05:30
|
|
|
<application tools:ignore="MissingApplicationIcon">
|
2022-06-15 14:09:37 +05:30
|
|
|
<activity android:name=".activities.PurchaseActivity" />
|
|
|
|
|
|
|
|
<meta-data
|
|
|
|
android:name="com.android.vending.splits.required"
|
|
|
|
android:value="true" />
|
|
|
|
|
|
|
|
<!-- ChromeCast -->
|
|
|
|
<meta-data
|
|
|
|
android:name="com.google.android.gms.cast.framework.OPTIONS_PROVIDER_CLASS_NAME"
|
|
|
|
android:value="code.name.monkey.retromusic.cast.CastOptionsProvider" />
|
2022-06-14 23:05:59 +05:30
|
|
|
</application>
|
|
|
|
</manifest>
|