ProjectLaogai/app/src/main/AndroidManifest.xml

58 lines
1.9 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">
<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"
android:icon="@mipmap/ic_laogai_icon"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_laogai_icon"
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
android:name=".SplashActivity"
android:screenOrientation="portrait"
android:theme="@style/SplashTheme"
android:exported="true">
2019-08-17 01:51:15 +02:00
2018-10-24 18:22:05 +02:00
<intent-filter>
<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:launchMode="singleTop"
android:screenOrientation="portrait"
android:theme="@style/AppTheme.Light" />
2018-10-30 20:41:22 +01:00
<activity
android:name=".MainActivity"
android:exported="true"
android:launchMode="singleTop"
android:screenOrientation="portrait"
android:theme="@style/AppTheme.Light">
2019-08-17 01:51:15 +02:00
<!-- nfc stuff -->
<intent-filter>
<action android:name="android.nfc.action.TECH_DISCOVERED" />
2019-08-17 01:51:15 +02:00
</intent-filter>
<meta-data
android:name="android.nfc.action.TECH_DISCOVERED"
android:resource="@xml/nfc_tech_filter" />
2019-08-17 01:51:15 +02:00
2018-10-30 20:41:22 +01:00
</activity>
2018-10-24 18:22:05 +02:00
</application>
</manifest>