mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-08 13:09:30 +01:00
527264264b
feat: Extended stories See merge request famedly/fluffychat!757
95 lines
3.6 KiB
Diff
95 lines
3.6 KiB
Diff
diff --git a/android/app/build.gradle b/android/app/build.gradle
|
|
index 4e018b38..eebf7582 100644
|
|
--- a/android/app/build.gradle
|
|
+++ b/android/app/build.gradle
|
|
@@ -44,7 +44,7 @@ android {
|
|
|
|
defaultConfig {
|
|
applicationId "chat.fluffy.fluffychat"
|
|
- minSdkVersion 16
|
|
+ minSdkVersion 19
|
|
targetSdkVersion 30
|
|
versionCode flutterVersionCode.toInteger()
|
|
versionName flutterVersionName
|
|
@@ -81,7 +81,7 @@ flutter {
|
|
|
|
dependencies {
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
|
- //implementation 'com.google.firebase:firebase-messaging:19.0.1' // Workaround for https://github.com/microg/android_packages_apps_GmsCore/issues/313#issuecomment-617651698
|
|
+ implementation 'com.google.firebase:firebase-messaging:19.0.1' // Workaround for https://github.com/microg/android_packages_apps_GmsCore/issues/313#issuecomment-617651698
|
|
testImplementation 'junit:junit:4.12'
|
|
androidTestImplementation 'androidx.test:runner:1.1.1'
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
|
|
@@ -89,4 +89,4 @@ dependencies {
|
|
implementation 'androidx.multidex:multidex:2.0.1'
|
|
}
|
|
|
|
-//apply plugin: 'com.google.gms.google-services'
|
|
+apply plugin: 'com.google.gms.google-services'
|
|
diff --git a/android/app/src/main/kotlin/chat/fluffy/fluffychat/FcmPushService.kt b/android/app/src/main/kotlin/chat/fluffy/fluffychat/FcmPushService.kt
|
|
index d9930f55..510e9845 100644
|
|
--- a/android/app/src/main/kotlin/chat/fluffy/fluffychat/FcmPushService.kt
|
|
+++ b/android/app/src/main/kotlin/chat/fluffy/fluffychat/FcmPushService.kt
|
|
@@ -1,4 +1,4 @@
|
|
-/*package chat.fluffy.fluffychat
|
|
+package chat.fluffy.fluffychat
|
|
|
|
import com.famedly.fcm_shared_isolate.FcmSharedIsolateService
|
|
|
|
@@ -33,4 +33,3 @@ class FcmPushService : FcmSharedIsolateService() {
|
|
}
|
|
}
|
|
}
|
|
-*/
|
|
\ No newline at end of file
|
|
diff --git a/android/build.gradle b/android/build.gradle
|
|
index 85aa8647..3b7e09e7 100644
|
|
--- a/android/build.gradle
|
|
+++ b/android/build.gradle
|
|
@@ -8,7 +8,7 @@ buildscript {
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:4.2.1'
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
- //classpath 'com.google.gms:google-services:4.3.8'
|
|
+ classpath 'com.google.gms:google-services:4.3.8'
|
|
}
|
|
}
|
|
|
|
diff --git a/lib/utils/background_push.dart b/lib/utils/background_push.dart
|
|
index 3347f176..e304abb4 100644
|
|
--- a/lib/utils/background_push.dart
|
|
+++ b/lib/utils/background_push.dart
|
|
@@ -39,7 +39,7 @@ import 'famedlysdk_store.dart';
|
|
import 'matrix_sdk_extensions.dart/matrix_locals.dart';
|
|
import 'platform_infos.dart';
|
|
|
|
-//import 'package:fcm_shared_isolate/fcm_shared_isolate.dart';
|
|
+import 'package:fcm_shared_isolate/fcm_shared_isolate.dart';
|
|
|
|
class NoTokenException implements Exception {
|
|
String get cause => 'Cannot get firebase token';
|
|
@@ -117,7 +117,7 @@ class BackgroundPush {
|
|
setupPush();
|
|
}
|
|
|
|
- final dynamic _fcmSharedIsolate = null; //FcmSharedIsolate();
|
|
+ final dynamic _fcmSharedIsolate = FcmSharedIsolate();
|
|
|
|
StreamSubscription<LoginState>? onLogin;
|
|
StreamSubscription<SyncUpdate>? onRoomSync;
|
|
diff --git a/pubspec.yaml b/pubspec.yaml
|
|
index 73b9eca2..5e6f9f16 100644
|
|
--- a/pubspec.yaml
|
|
+++ b/pubspec.yaml
|
|
@@ -25,8 +25,8 @@ dependencies:
|
|
email_validator: ^2.0.1
|
|
emoji_picker_flutter: ^1.1.2
|
|
encrypt: ^5.0.1
|
|
- #fcm_shared_isolate:
|
|
- # git: https://gitlab.com/famedly/libraries/fcm_shared_isolate.git
|
|
+ fcm_shared_isolate:
|
|
+ git: https://gitlab.com/famedly/libraries/fcm_shared_isolate.git
|
|
file_picker_cross: ^4.5.0
|
|
flutter:
|
|
sdk: flutter
|
|
|