2019-02-01 09:19:44 +08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
package="com.deiniu.zhuike">
|
|
|
|
|
2019-02-01 22:48:32 +08:00
|
|
|
<!-- To access Google+ APIs: -->
|
2019-02-01 09:19:44 +08:00
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
|
|
|
|
|
|
<application
|
|
|
|
android:name=".MyApp"
|
|
|
|
android:allowBackup="true"
|
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
|
|
android:supportsRtl="true"
|
|
|
|
android:theme="@style/ToolBarTheme"
|
|
|
|
android:usesCleartextTraffic="true">
|
|
|
|
<activity
|
|
|
|
android:name=".Main4Activity"
|
|
|
|
android:label="@string/title_activity_main4"
|
2019-02-01 22:48:32 +08:00
|
|
|
android:theme="@style/ToolBarTheme.NoActionBar"></activity>
|
2019-02-01 09:19:44 +08:00
|
|
|
<activity
|
|
|
|
android:name=".Main3Activity"
|
|
|
|
android:label="@string/title_activity_main3" />
|
|
|
|
<activity
|
|
|
|
android:name=".Main2Activity"
|
|
|
|
android:label="@string/title_activity_main2"
|
|
|
|
android:theme="@style/ToolBarTheme.NoActionBar">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<activity
|
|
|
|
android:name=".MainActivity"
|
|
|
|
android:label="@string/app_name" />
|
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|