Hello,
We’re using AppLovin MAX’s Unity Ads Android native adapter and since 4.12.2.0, which uses Unity Ads 4.12.2, these errors started appearing when performing the app->Tasks->other->minifyReleaseWithR8 gradle task:
Missing classes detected while running R8. Please add the missing classes or apply additional keep rules that are generated in /Users/x/app/build/outputs/mapping/release/missing_rules.txt.
Missing class java.beans.ConstructorProperties (referenced from: void com.fasterxml.jackson.databind.ext.Java7SupportImpl.<init>() and 2 other contexts)
Missing class java.beans.Transient (referenced from: void com.fasterxml.jackson.databind.ext.Java7SupportImpl.<init>() and 1 other context)
Is it safe to make builds with this error by ignoring the warning in our proguard?
-dontwarn java.beans.ConstructorProperties
-dontwarn java.beans.Transient
or could this cause a runtime exception?
Thank you,
Simon