37 lines
1.5 KiB
XML
37 lines
1.5 KiB
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
package="chaoran.business">
|
||
|
|
|
||
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
||
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
||
|
|
<uses-permission android:name="android.permission.VIBRATE" />
|
||
|
|
|
||
|
|
<application
|
||
|
|
android:allowBackup="true"
|
||
|
|
android:icon="@drawable/ic_launcher"
|
||
|
|
android:label="@string/app_name"
|
||
|
|
android:supportsRtl="true"
|
||
|
|
android:name=".application.InitApplication"
|
||
|
|
android:theme="@style/Theme.PdaWeb"
|
||
|
|
android:usesCleartextTraffic="true">
|
||
|
|
<activity
|
||
|
|
android:name=".activity.NetworkSettingActivity"
|
||
|
|
android:label="@string/title_activity_setting_network" />
|
||
|
|
<activity
|
||
|
|
android:name=".activity.VoiceSettingActivity"
|
||
|
|
android:label="@string/title_activity_setting_voice" />
|
||
|
|
<activity
|
||
|
|
android:name=".activity.MainActivity"
|
||
|
|
android:label="@string/app_name">
|
||
|
|
<intent-filter>
|
||
|
|
<action android:name="android.intent.action.MAIN" />
|
||
|
|
|
||
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
||
|
|
</intent-filter>
|
||
|
|
</activity>
|
||
|
|
<activity
|
||
|
|
android:name=".activity.AboutActivity"
|
||
|
|
android:label="@string/activity_about" />
|
||
|
|
</application>
|
||
|
|
|
||
|
|
</manifest>
|