2019-04-29 19:27:51 +02:00
|
|
|
<?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.WRITE_EXTERNAL_STORAGE" />
|
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
|
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
|
|
|
|
|
|
|
|
|
<application
|
|
|
|
|
android:allowBackup="true"
|
|
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
|
android:label="@string/app_name"
|
|
|
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
|
|
|
android:supportsRtl="true"
|
|
|
|
|
tools:ignore="GoogleAppIndexingWarning">
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".MainActivity"
|
|
|
|
|
android:label="@string/app_name"
|
|
|
|
|
android:screenOrientation="portrait"
|
2019-05-21 18:55:29 +02:00
|
|
|
android:theme="@style/AppTheme0.Launcher"
|
2019-05-14 22:28:45 +02:00
|
|
|
android:windowSoftInputMode="adjustPan"/>
|
|
|
|
|
|
2019-05-24 19:22:23 +02:00
|
|
|
<activity
|
|
|
|
|
android:name=".FirstTime"
|
|
|
|
|
android:label="First Time"
|
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:theme="@style/AppTheme0.Launcher"
|
|
|
|
|
android:windowSoftInputMode="adjustPan"/>
|
|
|
|
|
|
2019-05-14 22:28:45 +02:00
|
|
|
<activity
|
|
|
|
|
android:name=".Main"
|
|
|
|
|
android:label="@string/app_name"
|
2019-05-17 11:10:59 +02:00
|
|
|
android:configChanges="orientation|keyboardHidden|screenSize"
|
2019-05-21 18:55:29 +02:00
|
|
|
android:theme="@style/AppTheme0.Launcher"
|
2019-05-09 07:48:17 +02:00
|
|
|
android:windowSoftInputMode="adjustPan">
|
2019-05-14 22:28:45 +02:00
|
|
|
|
2019-05-17 11:10:59 +02:00
|
|
|
<!-- android:screenOrientation="portrait"-->
|
|
|
|
|
|
2019-04-29 19:27:51 +02:00
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
2019-05-14 22:28:45 +02:00
|
|
|
|
2019-04-29 19:27:51 +02:00
|
|
|
</activity>
|
|
|
|
|
|
|
|
|
|
<service
|
|
|
|
|
android:name=".ScheduledJobService"
|
|
|
|
|
android:permission="android.permission.BIND_JOB_SERVICE" />
|
|
|
|
|
</application>
|
|
|
|
|
|
|
|
|
|
</manifest>
|