SmartShopperAndroid/app/src/main/AndroidManifest.xml
Georg Reisinger 63889c03a2 DynamicLinking V1
Dynamic linking eingebaut in LoginActivity
2019-03-25 09:02:25 +01:00

69 lines
3.2 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="at.smartshopper.smartshopperapp">
<uses-permission android:name="android.permission.INTERNET" />
<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"
android:usesCleartextTraffic="true">
<activity
android:name="at.smartshopper.smartshopperapp.activitys.EditUser"
android:label="@string/title_activity_edit_user"/>
<activity android:name="at.smartshopper.smartshopperapp.activitys.DoneItemActivity" />
<activity
android:name="at.smartshopper.smartshopperapp.activitys.ItemListActivity"
android:label="@string/title_activity_item_list" />
<activity android:name="at.smartshopper.smartshopperapp.activitys.Colorpicker" />
<activity android:name="at.smartshopper.smartshopperapp.activitys.LoginActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT"/>
<category android:name="android.intent.category.BROWSABLE"/>
<data
android:host="smartshopper.cf"
android:scheme="https"/>
</intent-filter>
</activity>
<activity
android:name="at.smartshopper.smartshopperapp.activitys.Dash"
android:label="SmartShopper"
android:theme="@style/AppTheme" />
<!--
Set custom default icon. This is used when no icon is set for incoming notification messages.
See README(https://goo.gl/l4GJaQ) for more.
-->
<meta-data
android:name="com.google.firebase.messaging.default_notification_icon"
android:resource="@mipmap/ic_launcher_round" />
<!--
Set color used with incoming notification messages. This is used when no color is set for the incoming
notification message. See README(https://goo.gl/6BKBk7) for more.
-->
<meta-data
android:name="com.google.firebase.messaging.default_notification_color"
android:resource="@color/colorPrimaryDark" /> <!-- [START firebase_service] -->
<service
android:name="at.smartshopper.smartshopperapp.messaging.MyFirebaseMessagingService"
android:stopWithTask="false">
<intent-filter>
<action android:name="com.google.firebase.MESSAGING_EVENT" />
</intent-filter>
</service> <!-- [END firebase_service] -->
<activity
android:name="at.smartshopper.smartshopperapp.activitys.ShoppinglistDetails"
android:label="@string/title_activity_shoppinglist_details" />
</application>
</manifest>