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
|
2019-02-15 23:48:25 +08:00
|
|
|
android:name=".Main5Activity"
|
|
|
|
android:label="@string/title_activity_main5"></activity>
|
2019-02-01 09:19:44 +08:00
|
|
|
<activity
|
2019-02-15 23:48:25 +08:00
|
|
|
android:name=".BookActivity"
|
|
|
|
android:label="@string/title_activity_book"
|
|
|
|
android:parentActivityName=".Main2Activity"
|
|
|
|
android:theme="@style/ToolBarTheme.NoActionBar" />
|
2019-02-01 09:19:44 +08:00
|
|
|
<activity
|
|
|
|
android:name=".Main2Activity"
|
2019-02-14 00:58:03 +08:00
|
|
|
android:label="@string/app_name"
|
2019-02-15 23:48:25 +08:00
|
|
|
android:launchMode="singleTask"
|
2019-02-01 09:19:44 +08:00
|
|
|
android:theme="@style/ToolBarTheme.NoActionBar">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|