mirror of
https://github.com/d4rken-org/capod.git
synced 2026-09-14 18:26:11 -04:00
R8 reported com.google.android.gms.common.annotation.NoNullnessRewrite as missing; it is a compile-time-only annotation referenced by review-ktx and absent from the runtime classpath. Adds the same targeted -dontwarn SD Maid SE already uses.
11 lines
588 B
Prolog
11 lines
588 B
Prolog
-keep class eu.darken.capod.BuildConfig { *; }
|
|
-dontobfuscate
|
|
|
|
# work-runtime 2.7.1 (pulled by Glance) uses Class.newInstance() reflection throughout.
|
|
# R8 full mode strips no-arg constructors not reachable by static analysis.
|
|
# Keep all constructors in the work package. Remove when Glance upgrades to work-runtime 2.10+.
|
|
# See: https://issuetracker.google.com/issues/243257364
|
|
-keep class androidx.work.** { <init>(...); }
|
|
# Play Core KTX references this compile-time-only GMS annotation not on the runtime classpath
|
|
-dontwarn com.google.android.gms.common.annotation.NoNullnessRewrite
|