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