AndroidManifest.xml 996 Bytes
Newer Older
王涛55 committed
1 2
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3 4
    xmlns:tools="http://schemas.android.com/tools"
    package="com.module.hikcreate">
王涛55 committed
5

wangtao committed
6
    <application
7
        android:roundIcon="@mipmap/ic_launcher"
王涛55 committed
8
        android:allowBackup="false"
9
        android:name="com.hikcreate.app.CommonApplication"
王涛55 committed
10
        android:theme="@style/Theme.AppCompat.Light.NoActionBar"
11 12
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
13 14
        tools:ignore="GoogleAppIndexingWarning,HardcodedDebugMode"
        tools:replace="android:icon,android:roundIcon,android:theme,android:label,android:allowBackup">
15

王涛55 committed
16
        <activity android:name="com.hikcreate.ui.testActivity">
王涛55 committed
17

王涛55 committed
18 19 20 21 22
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
23
    </application>
王涛55 committed
24 25

</manifest>