Archived
55 lines
2.0 KiB
XML
55 lines
2.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
package="com.denizd.substitutionplan">
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" android:required="true"/>
|
|
<uses-permission android:name="android.permission.INTERNET" android:required="true"/>
|
|
|
|
<application
|
|
android:allowBackup="true"
|
|
android:icon="@mipmap/ic_launcher"
|
|
android:label="@string/appName"
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
android:supportsRtl="true"
|
|
tools:ignore="GoogleAppIndexingWarning">
|
|
|
|
<activity
|
|
android:name=".FirstTime"
|
|
android:label="First Time"
|
|
android:screenOrientation="portrait"
|
|
android:theme="@style/AppTheme0.Launcher"
|
|
android:windowSoftInputMode="adjustPan"/>
|
|
|
|
<activity
|
|
android:name=".Main"
|
|
android:label="@string/appName"
|
|
android:configChanges="orientation|keyboardHidden|screenSize"
|
|
android:theme="@style/AppTheme0.Launcher"
|
|
android:windowSoftInputMode="adjustPan">
|
|
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<service
|
|
android:name=".FBNotificationService"
|
|
android:exported="false">
|
|
<intent-filter>
|
|
<action android:name="com.google.firebase.MESSAGING_EVENT" />
|
|
</intent-filter>
|
|
</service>
|
|
|
|
<meta-data
|
|
android:name="com.google.firebase.messaging.default_notification_icon"
|
|
android:resource="@drawable/ic_avhlogo" />
|
|
<meta-data
|
|
android:name="com.google.firebase.messaging.default_notification_color"
|
|
android:resource="@color/colorAccent" />
|
|
|
|
</application>
|
|
|
|
</manifest> |