51 lines
1.4 KiB
XML
51 lines
1.4 KiB
XML
<?xml version='1.0' encoding='utf-8'?>
|
|
<manifest
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="cc.winboll.studio.timestamp">
|
|
|
|
<!-- 运行前台服务 -->
|
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE"/>
|
|
|
|
<!-- READ_CLIPBOARD -->
|
|
<uses-permission android:name="android.permission.READ_CLIPBOARD"/>
|
|
|
|
<!-- WRITE_CLIPBOARD -->
|
|
<uses-permission android:name="android.permission.WRITE_CLIPBOARD"/>
|
|
|
|
<application
|
|
android:allowBackup="true"
|
|
android:icon="@drawable/ic_launcher_stage"
|
|
android:roundIcon="@drawable/ic_launcher_stage"
|
|
android:label="@string/app_name"
|
|
android:theme="@style/MyAppTheme"
|
|
android:resizeableActivity="true"
|
|
android:name=".App">
|
|
|
|
<activity
|
|
android:name=".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>
|
|
|
|
<meta-data
|
|
android:name="android.max_aspect"
|
|
android:value="4.0"/>
|
|
|
|
<activity android:name=".GlobalApplication$CrashActivity"/>
|
|
|
|
<service android:name=".MainService"/>
|
|
|
|
<service android:name=".AssistantService"/>
|
|
|
|
</application>
|
|
|
|
</manifest>
|