2022-03-15 10:39:48 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
package="com.skipping">
|
|
|
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
|
<uses-feature
|
|
|
|
|
android:name="android.hardware.usb.host"
|
|
|
|
|
android:required="true" />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<application
|
2022-03-21 06:26:00 +00:00
|
|
|
android:name=".APP"
|
2022-03-15 10:39:48 +00:00
|
|
|
android:allowBackup="true"
|
|
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
|
android:label="@string/app_name"
|
|
|
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
|
|
|
android:supportsRtl="true"
|
2022-03-21 06:26:00 +00:00
|
|
|
android:theme="@style/AppTheme">
|
2022-03-15 10:39:48 +00:00
|
|
|
<activity android:name=".activity.MainActivity">
|
2022-03-21 06:26:00 +00:00
|
|
|
|
|
|
|
|
</activity>
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".activity.MainActivity2"
|
|
|
|
|
android:exported="true" />
|
|
|
|
|
<activity android:name=".activity.HostActivity" />
|
|
|
|
|
<activity android:name=".activity.NetActivity" />
|
|
|
|
|
<activity android:name=".activity.SplashActivity"
|
|
|
|
|
android:theme="@style/AppTheme.SplashTheme">
|
2022-03-15 10:39:48 +00:00
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
2022-03-21 06:26:00 +00:00
|
|
|
<activity android:name=".activity.grade.GradeActivity" />
|
|
|
|
|
<activity android:name=".activity.clasz.ClassActivity" />
|
|
|
|
|
<activity android:name=".activity.list.ListActivity" />
|
|
|
|
|
<activity android:name=".activity.detail.DetailActivity" />
|
2022-03-15 10:39:48 +00:00
|
|
|
|
|
|
|
|
<service
|
|
|
|
|
android:name="com.loop.loopminisdk.LoopMini"
|
2022-03-21 06:26:00 +00:00
|
|
|
android:enabled="true"></service>
|
2022-03-15 10:39:48 +00:00
|
|
|
</application>
|
|
|
|
|
|
|
|
|
|
</manifest>
|