-
-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2503 from acterglobal/ben-fix-calendars-on-android
Fix too many calendars on Android
- Loading branch information
Showing
5 changed files
with
32 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
- Fix App generating too many device calendars on some devices |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Flutter Wrapper | ||
-keep class io.flutter.plugin.** { *; } | ||
-keep class io.flutter.util.** { *; } | ||
-keep class io.flutter.view.** { *; } | ||
-keep class io.flutter.plugins.** { *; } | ||
|
||
# FIX for: ERROR: R8: Library class android.content.res.XmlResourceParser implements program class org.xmlpull.v1.XmlPullParser | ||
-dontwarn org.xmlpull.v1.** | ||
-dontwarn org.kxml2.io.** | ||
-dontwarn android.content.res.** | ||
-dontwarn org.slf4j.impl.StaticLoggerBinder | ||
-keep class org.xmlpull.** { *; } | ||
-keepclassmembers class org.xmlpull.** { *; } | ||
|
||
# -keep class io.flutter.app.** { *; } | ||
# -keep class io.flutter.** { *; } | ||
# --- /end fix | ||
|
||
# ---- Specific plugins: | ||
# Firebase for notifications | ||
-keep class com.google.firebase.** { *; } | ||
# Device Calendar fix | ||
# see https://github.com/builttoroam/device_calendar/issues/99 | ||
-keep class com.builttoroam.devicecalendar.** { *; } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters