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"
|
2019-04-02 10:47:07 +08:00
|
|
|
package="com.novelbook.android">
|
2019-02-01 22:48:32 +08:00
|
|
|
<!-- To access Google+ APIs: -->
|
2019-04-02 10:47:07 +08:00
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
2019-02-01 09:19:44 +08:00
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
2019-02-25 21:16:15 +08:00
|
|
|
<uses-permission android:name="android.permission.VIBRATE" />
|
2019-02-01 09:19:44 +08:00
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
2019-05-11 23:21:57 +08:00
|
|
|
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
|
|
|
|
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
|
2019-02-01 09:19:44 +08:00
|
|
|
|
|
|
|
<application
|
|
|
|
android:name=".MyApp"
|
|
|
|
android:allowBackup="true"
|
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
android:label="@string/app_name"
|
2019-05-05 23:31:19 +08:00
|
|
|
android:launchMode="singleInstance"
|
2019-02-01 09:19:44 +08:00
|
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
|
|
android:supportsRtl="true"
|
|
|
|
android:theme="@style/ToolBarTheme"
|
|
|
|
android:usesCleartextTraffic="true">
|
2019-05-05 23:31:19 +08:00
|
|
|
<activity android:name=".view.Activitycache"></activity>
|
2019-02-21 00:01:55 +08:00
|
|
|
<activity
|
|
|
|
android:name=".Activity_cate_books"
|
|
|
|
android:label="@string/title_activity_cate_books"
|
|
|
|
android:launchMode="singleTask"
|
|
|
|
android:parentActivityName=".activity_cates"
|
|
|
|
android:theme="@style/ToolBarTheme.NoActionBar" />
|
2019-02-19 22:03:42 +08:00
|
|
|
<activity
|
2019-04-15 23:26:24 +08:00
|
|
|
android:name=".Activity_Search"
|
|
|
|
android:label="@string/title_activity_cates"
|
|
|
|
android:launchMode="singleTask"
|
|
|
|
android:parentActivityName=".Main2Activity"
|
2019-02-19 22:03:42 +08:00
|
|
|
android:theme="@style/ToolBarTheme.NoActionBar" />
|
|
|
|
<activity
|
|
|
|
android:name=".Activity_paihangbang"
|
|
|
|
android:label="@string/title_activity_paihangbang"
|
|
|
|
android:parentActivityName=".Main2Activity"
|
2019-05-05 23:31:19 +08:00
|
|
|
android:theme="@style/ToolBarTheme.NoActionBar"></activity>
|
2019-02-19 22:03:42 +08:00
|
|
|
<activity
|
2019-04-18 17:19:42 +08:00
|
|
|
android:name=".Activity_ChgSource"
|
|
|
|
android:label="@string/title_Activity_ChgSource" />
|
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:theme="@style/ToolBarTheme.NoActionBar" />
|
2019-03-08 16:10:08 +08:00
|
|
|
<activity
|
|
|
|
android:name=".ReadActivity"
|
|
|
|
android:label="@string/app_name"
|
2019-05-05 23:31:19 +08:00
|
|
|
android:theme="@style/ToolBarTheme.NoActionBar"></activity>
|
2019-02-01 09:19:44 +08:00
|
|
|
<activity
|
|
|
|
android:name=".Main2Activity"
|
2019-04-26 23:33:17 +08:00
|
|
|
android:launchMode="singleTop"
|
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>
|
2019-02-25 21:16:15 +08:00
|
|
|
<activity
|
|
|
|
android:name=".FileActivity"
|
|
|
|
android:label="@string/app_name"
|
2019-05-05 23:31:19 +08:00
|
|
|
android:theme="@style/ToolBarTheme.NoActionBar"></activity>
|
2019-02-25 21:16:15 +08:00
|
|
|
<activity
|
|
|
|
android:name=".MarkActivity"
|
|
|
|
android:label="@string/app_name"
|
2019-05-05 23:31:19 +08:00
|
|
|
android:theme="@style/ToolBarTheme.NoActionBar"></activity>
|
2019-02-25 21:16:15 +08:00
|
|
|
<activity
|
|
|
|
android:name=".filechooser.FileChooserActivity"
|
|
|
|
android:label="@string/app_name"
|
2019-05-05 23:31:19 +08:00
|
|
|
android:theme="@style/ToolBarTheme.NoActionBar"></activity>
|
|
|
|
<activity
|
|
|
|
android:name=".Activity_cache"
|
|
|
|
android:label="@string/title_download"
|
|
|
|
android:theme="@style/ToolBarTheme.NoActionBar"></activity>
|
|
|
|
<service
|
|
|
|
android:name=".service.ServiceDownload"
|
|
|
|
android:exported="false" />
|
2019-05-11 23:21:57 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- UMENG -->
|
|
|
|
<meta-data android:value="5cd6238a570df375c3000cc9" android:name="UMENG_APPKEY"/>
|
|
|
|
<meta-data android:name="UMENG_CHANNEL" android:value="${UMENG_CHANNEL_VALUE}"/>
|
|
|
|
|
2019-02-01 09:19:44 +08:00
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|