From faed1ab448babfa6621765481a71b9bc8e421bcf Mon Sep 17 00:00:00 2001 From: ivan Date: Thu, 23 Apr 2026 13:01:30 +0800 Subject: [PATCH] =?UTF-8?q?=E6=89=93=E5=8C=85=EF=BC=9AAd=E6=94=B9=E4=B8=BA?= =?UTF-8?q?=E6=AD=A3=E5=BC=8F=E7=89=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- android/app/src/main/AndroidManifest.xml | 2 +- assets/skin_config.json | 30 ++++-------------------- ios/Runner/Info.plist | 2 +- lib/core/auth/auth_service.dart | 14 ++++++++--- pubspec.yaml | 2 +- 5 files changed, 18 insertions(+), 32 deletions(-) diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml index 0ed668c..fac7b27 100644 --- a/android/app/src/main/AndroidManifest.xml +++ b/android/app/src/main/AndroidManifest.xml @@ -18,7 +18,7 @@ android:value="chflzzr4x5hc" /> + android:value="production" /> AdjustAppToken chflzzr4x5hc AdjustEnvironment - sandbox + production FacebookAppID 818607994622581 FacebookClientToken diff --git a/lib/core/auth/auth_service.dart b/lib/core/auth/auth_service.dart index 1a6d27d..0318615 100644 --- a/lib/core/auth/auth_service.dart +++ b/lib/core/auth/auth_service.dart @@ -79,7 +79,9 @@ class AppAuthCallbacks implements AuthServiceCallbacks { @override void onLoginFailed(String msg) { - debugPrint('[AuthService] Login failed: $msg'); + if (kDebugMode) { + debugPrint('[AuthService] Login failed: $msg'); + } } } @@ -110,7 +112,11 @@ class AuthService { await ScreenSecure.disableScreenshotBlock(); await ScreenSecure.disableScreenRecordBlock(); } on ScreenSecureException catch (e) { - debugPrint('[AuthService] native media picker: disable failed: ${e.message}'); + if (kDebugMode) { + debugPrint( + '[AuthService] native media picker: disable failed: ${e.message}', + ); + } } try { return await action(); @@ -154,7 +160,9 @@ class AuthService { debugPrint('[AuthService] ScreenSecure: enabled (forbidScreenshot)'); } } on ScreenSecureException catch (e) { - debugPrint('[AuthService] ScreenSecure: ${e.message}'); + if (kDebugMode) { + debugPrint('[AuthService] ScreenSecure: ${e.message}'); + } } } diff --git a/pubspec.yaml b/pubspec.yaml index f8ac03c..fd262e7 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -2,7 +2,7 @@ name: funymee_ai description: "FunyMee AI Application." publish_to: 'none' -version: 1.0.16+16 +version: 1.0.18+18 environment: sdk: ^3.11.1