feat: register notifications (notepush)

This commit is contained in:
2025-05-21 18:45:54 +01:00
parent 825152c6bf
commit 3dbb247890
9 changed files with 169 additions and 1 deletions

View File

@ -85,6 +85,7 @@ android {
ndkVersion = flutter.ndkVersion
compileOptions {
isCoreLibraryDesugaringEnabled = true
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}
@ -111,3 +112,7 @@ android {
flutter {
source = "../.."
}
dependencies {
coreLibraryDesugaring("com.android.tools:desugar_jdk_libs:2.1.4")
}

View File

@ -53,4 +53,10 @@
<data android:mimeType="text/plain"/>
</intent>
</queries>
<meta-data
android:name="firebase_messaging_auto_init_enabled"
android:value="false" />
<meta-data
android:name="firebase_analytics_collection_enabled"
android:value="false" />
</manifest>