Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: crash on Android 12L / 13 #581

Merged
merged 1 commit into from Feb 6, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 4 additions & 0 deletions app/android/app/build.gradle
Expand Up @@ -98,5 +98,9 @@ flutter {
dependencies {
// Start flutter_local_notifications
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.2.2'
// Fix crash on Android 12L / 13 using workaround
// See https://github.com/flutter/flutter/issues/110658#issuecomment-1320834920
implementation 'androidx.window:window:1.0.0'
implementation 'androidx.window:window-java:1.0.0'
// End flutter_local_notifications
}