We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ce528aa commit dca9488Copy full SHA for dca9488
1 file changed
app/proguard-rules.pro
@@ -222,6 +222,11 @@
222
-keep class * implements com.alibaba.android.arouter.facade.template.ISyringe{*;}
223
# If using byType argument injection, keep the classes injected
224
-keep class * implements com.alibaba.android.arouter.facade.template.IProvider
225
+# ARouter RouteMeta.rawType references javax.lang.model.element.Element which is JDK-only
226
+# (compile-time javax) and not available on Android runtime. R8 will fail with "Missing class"
227
+# unless we ignore the warning.
228
+-dontwarn javax.lang.model.**
229
+-dontwarn com.alibaba.android.arouter.**
230
231
# ============ Room ProGuard Rules ============
232
0 commit comments