We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9e70f5 commit 89cb655Copy full SHA for 89cb655
2 files changed
android/app/build.gradle.kts
@@ -48,9 +48,6 @@ android {
48
targetSdk = flutter.targetSdkVersion
49
versionCode = flutter.versionCode
50
versionName = flutter.versionName
51
- ndk {
52
- abiFilters.add("armeabi-v7a")
53
- }
54
}
55
56
signingConfigs {
lib/main.dart
@@ -37,7 +37,7 @@ class _MyAppState extends State<MyApp> with DesktopWindowMixin {
37
38
initShareM3uState();
39
// 延迟初始化, 防止出现闪退
40
- Future.delayed(Duration(seconds: 3)).then((value) async {
+ Future.delayed(Duration(seconds: 5)).then((value) async {
41
await initGlopalPlayer();
42
});
43
0 commit comments