teapod/app/src/main/AndroidManifest.xml

31 lines
1.1 KiB
XML
Raw Normal View History

2020-10-08 22:20:20 +02:00
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.mosad.teapod">
2020-10-11 10:02:00 +02:00
<uses-permission android:name="android.permission.INTERNET" />
2020-10-08 22:20:20 +02:00
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
2020-10-11 14:14:38 +02:00
<activity
android:name=".PlayerActivity"
android:label="@string/app_name"
android:configChanges="orientation|screenSize|layoutDirection"
2020-10-30 10:03:10 +01:00
android:theme="@style/PlayerTheme" />
2020-10-08 22:20:20 +02:00
<activity
android:name=".MainActivity"
2020-10-11 14:14:38 +02:00
android:label="@string/app_name"
android:screenOrientation="portrait">
2020-10-08 22:20:20 +02:00
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>