This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Doric/Android/app/src/main/AndroidManifest.xml

22 lines
890 B
XML
Raw Normal View History

2019-07-18 13:29:28 +08:00
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2019-07-20 10:04:52 +08:00
package="com.github.penfeizhou.doricdemo">
2019-08-03 17:58:25 +08:00
<uses-permission android:name="android.permission.INTERNET"/>
2019-07-18 13:29:28 +08:00
<application
2019-07-20 10:04:52 +08:00
android:name="com.github.penfeizhou.doricdemo.MyApplication"
2019-07-18 13:29:28 +08:00
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/AppTheme">
2019-07-20 10:04:52 +08:00
<activity android:name="com.github.penfeizhou.doricdemo.MainActivity">
2019-07-18 13:29:28 +08:00
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>