mirror of
https://github.com/mamoe/mirai.git
synced 2025-01-27 17:00:14 +08:00
26 lines
956 B
XML
26 lines
956 B
XML
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="net.mamoe.mirai.demo">
|
|
|
|
<uses-permission android:name="android.permission.INTERNET"/>
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
|
|
|
|
<application
|
|
android:label="@string/app_name"
|
|
android:allowBackup="true"
|
|
android:supportsRtl="true"
|
|
android:theme="@style/AppTheme">
|
|
|
|
<activity
|
|
android:name="net.mamoe.mirai.demo.MainActivity"
|
|
android:theme="@style/AppTheme">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<service android:name=".MiraiService"/>
|
|
</application>
|
|
</manifest>
|