14 lines
669 B
Prolog
14 lines
669 B
Prolog
# Build the ephemeral app in a module project.
|
|
# Prevents: Warning: library class <plugin-package> depends on program class io.flutter.plugin.**
|
|
# This is due to plugins (libraries) depending on the embedding (the program jar)
|
|
-dontwarn io.flutter.plugin.**
|
|
|
|
# The android.** package is provided by the OS at runtime.
|
|
-dontwarn android.**
|
|
|
|
# In some cases, R8 is incorrectly stripping plugin classes. Keep
|
|
# all implementations of FlutterPlugin until we can determine
|
|
# why this is the case.
|
|
# See https://github.com/flutter/flutter/issues/154580.
|
|
-if class * implements io.flutter.embedding.engine.plugins.FlutterPlugin
|
|
-keep,allowshrinking,allowobfuscation class <1>
|