60 lines
2.5 KiB
XML
60 lines
2.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="at.smartshopper.smartshopper">
|
|
|
|
<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=".activitys.EditUser"
|
|
android:label="@string/title_activity_edit_user"></activity>
|
|
<activity android:name=".activitys.DoneItemActivity" />
|
|
<activity
|
|
android:name=".activitys.ItemListActivity"
|
|
android:label="@string/title_activity_item_list" />
|
|
<activity android:name=".activitys.Colorpicker" />
|
|
<activity android:name=".activitys.LoginActivity">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
<activity
|
|
android:name=".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="@drawable/ic_launcher_foreground" />
|
|
<!--
|
|
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/colorAccent" /> <!-- [START firebase_service] -->
|
|
<service
|
|
android:name=".messaging.MyFirebaseMessagingService"
|
|
android:stopWithTask="false">
|
|
<intent-filter>
|
|
<action android:name="com.google.firebase.MESSAGING_EVENT" />
|
|
</intent-filter>
|
|
</service> <!-- [END firebase_service] -->
|
|
<activity
|
|
android:name=".activitys.ShoppinglistDetails"
|
|
android:label="@string/title_activity_shoppinglist_details" />
|
|
</application>
|
|
|
|
</manifest> |