<?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.flightfeather.ducha">
|
|
<application
|
android:name=".DuChaApplication"
|
android:allowBackup="true"
|
android:icon="@mipmap/ic_launcher"
|
android:label="@string/app_name"
|
android:roundIcon="@mipmap/ic_launcher_round"
|
android:supportsRtl="true"
|
tools:replace="android:name"
|
tools:ignore="LockedOrientationActivity" >
|
|
<meta-data
|
android:name="com.amap.api.v2.apikey"
|
android:value="d19e3ded58044b8a42156bc97833ff05" />
|
|
<provider
|
android:name="android.support.v4.content.FileProvider"
|
android:authorities="com.flight.feather.ducha.fileProvider"
|
android:exported="false"
|
android:grantUriPermissions="true"
|
tools:replace="android:authorities">
|
<meta-data
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
android:resource="@xml/ducha_filepaths"
|
tools:replace="android:resource"/>
|
</provider>
|
|
<activity
|
android:name=".module.DCSplashActivity"
|
android:configChanges="keyboardHidden|orientation|screenSize"
|
android:theme="@style/splashTheme">
|
<intent-filter>
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
</intent-filter>
|
</activity>
|
<activity
|
android:name=".module.DCMainActivity"
|
android:label="@string/app_name"
|
android:screenOrientation="portrait"
|
android:theme="@style/AppTheme.NoActionBar" />
|
|
<activity
|
android:name=".module.login.DCLoginActivity"
|
android:screenOrientation="portrait"
|
android:theme="@style/AppTheme.NoActionBar" >
|
</activity>
|
|
<activity android:name=".module.task.DCNewTempTaskActivity"
|
android:screenOrientation="portrait"
|
tools:ignore="LockedOrientationActivity"
|
android:theme="@style/AppTheme.ActionBar"/>
|
|
<activity android:name=".module.inspection.DCInspectionDetailActivity"
|
android:theme="@style/AppTheme.NoActionBar" />
|
|
<activity android:name=".module.common.ExportedFileActivity"
|
android:screenOrientation="portrait"
|
tools:ignore="LockedOrientationActivity"
|
android:theme="@style/AppTheme.ActionBar"/>
|
<activity android:name=".module.common.FileExportActivity"
|
android:screenOrientation="portrait"
|
tools:ignore="LockedOrientationActivity"
|
android:theme="@style/AppTheme.ActionBar"/>
|
|
</application>
|
|
</manifest>
|