mod: MainActivity

This commit is contained in:
guozhigq
2024-05-03 21:04:03 +08:00
parent 2d375e31ea
commit 411621016b
4 changed files with 14 additions and 12 deletions

View File

@ -45,7 +45,7 @@
android:fullBackupContent="false"
tools:replace="android:allowBackup">
<activity
android:name="com.ryanheise.audioservice.AudioServiceActivity"
android:name="com.guozhigq.pilipala.MainActivity"
android:exported="true"
android:launchMode="singleTop"
android:theme="@style/LaunchTheme"

View File

@ -1,6 +1,8 @@
package com.guozhigq.pilipala
import io.flutter.embedding.android.FlutterActivity
// import io.flutter.embedding.android.FlutterActivity
import com.ryanheise.audioservice.AudioServiceActivity;
class MainActivity: FlutterActivity() {
class MainActivity: AudioServiceActivity() {
}