ProjectLaogai/app/src/main/AndroidManifest.xml

57 lines
2.1 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"/>
2019-08-17 01:51:15 +02:00
<uses-permission android:name="android.permission.NFC" />
2018-10-24 18:22:05 +02:00
<application
android:allowBackup="true"
android:fullBackupContent="@xml/backup_descriptor"
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.Light">
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">
2019-08-17 01:51:15 +02:00
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>
<meta-data android:name="android.app.shortcuts"
android:resource="@xml/shortcuts" />
2018-10-24 18:22:05 +02:00
</activity>
2018-10-30 20:41:22 +01:00
<activity
android:name=".OnboardingActivity"
android:label="@string/app_name"
android:theme="@style/AppTheme.Light"
android:screenOrientation="portrait"
android:launchMode="singleTop">
</activity>
2018-10-30 20:41:22 +01:00
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:theme="@style/AppTheme.Light"
2019-08-17 01:51:15 +02:00
android:screenOrientation="portrait"
android:launchMode="singleTop">
<!-- nfc stuff -->
<intent-filter>
<action android:name="android.nfc.action.TECH_DISCOVERED"/>
</intent-filter>
<meta-data android:name="android.nfc.action.TECH_DISCOVERED"
android:resource="@xml/nfc_tech_filter" />
2018-10-30 20:41:22 +01:00
</activity>
2018-10-24 18:22:05 +02:00
</application>
</manifest>