ProjectLaogai/app/src/main/AndroidManifest.xml

33 lines
1.2 KiB
XML
Raw Normal View History

2018-10-24 18:22:05 +02:00
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.mosad.seil0.projectlaogai">
2018-10-29 13:04:20 +01:00
<uses-permission android:name="android.permission.INTERNET"/>
2018-10-24 18:22:05 +02:00
<application
android:allowBackup="true"
2018-11-18 19:46:21 +01:00
android:icon="@mipmap/ic_laogai_icon"
2018-10-24 18:22:05 +02:00
android:label="@string/app_name"
2018-11-18 21:28:43 +01:00
android:roundIcon="@mipmap/ic_laogai_icon"
2018-10-24 18:22:05 +02:00
android:supportsRtl="true"
android:theme="@style/AppTheme">
2018-10-30 20:41:22 +01:00
2018-10-24 18:22:05 +02:00
<activity
2018-10-30 20:41:22 +01:00
android:name=".SplashActivity"
2018-12-18 11:49:46 +01:00
android:label="@string/app_name"
2018-10-30 20:41:22 +01:00
android:theme="@style/SplashTheme"
android:screenOrientation="portrait">
2018-10-24 18:22:05 +02:00
<intent-filter>
2018-12-18 11:49:46 +01:00
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
2018-10-24 18:22:05 +02:00
</intent-filter>
</activity>
2018-10-30 20:41:22 +01:00
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:theme="@style/AppTheme.NoActionBar"
android:screenOrientation="portrait">
</activity>
2018-10-24 18:22:05 +02:00
</application>
</manifest>