mirror of
https://github.com/Shabinder/SpotiFlyer.git
synced 2024-11-23 01:24:31 +01:00
16 lines
724 B
XML
16 lines
724 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.shabinder.android">
|
||
|
<uses-permission android:name="android.permission.INTERNET"/>
|
||
|
<application
|
||
|
android:allowBackup="false"
|
||
|
android:supportsRtl="true"
|
||
|
android:usesCleartextTraffic="true"
|
||
|
android:theme="@style/Theme.AppCompat.Light.NoActionBar">
|
||
|
<activity android:name=".MainActivity">
|
||
|
<intent-filter>
|
||
|
<action android:name="android.intent.action.MAIN"/>
|
||
|
<category android:name="android.intent.category.LAUNCHER"/>
|
||
|
</intent-filter>
|
||
|
</activity>
|
||
|
</application>
|
||
|
</manifest>
|