The consumer proguard.txt bundled in common:24.7.0 keeps every com.microsoft.identity.** class without allowobfuscation, which — because R8 must rename all overrides of a virtual method identically across the whole app — blocks obfuscation of unrelated app code (e.g. every Kotlin coroutine continuation class) that merely shares a base type with an MSAL/common class.
This blocks all my app domain logic from being obfuscated because I heavily rely on coroutines, and so domain classes have the same continuation methods.
Similar issue: #1157.
File location for me ~/.gradle/caches/9.7.1/transforms/215c65c7ecaf375ea055fa1f2de7db9f/transformed/common-24.7.0/proguard.txt.
NOTE: part 215c65c7ecaf375ea055fa1f2de7db9f will differ on other machines.
Proguard file below:
# Add project specific ProGuard rules here.
# By default, the flags in this file are appended to flags specified
# in C:\Program Files\Android\android-sdk/tools/proguard/proguard-android.txt
# You can edit the include path and order by changing the proguardFiles
# directive in build.gradle.
#
# For more details, see
# http://developer.android.com/guide/developing/tools/proguard.html
# Add any project specific keep options here:
# If your project uses WebView with JS, uncomment the following
# and specify the fully qualified class name to the JavaScript interface
# class:
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
# public *;
#}
##---------------Begin: proguard configuration for Common --------
# keep with optmizations and shrinking, but do not obfuscate
-keep,allowoptimization,allowshrinking class !com.microsoft.identity.common.java.nativeauth.**, !com.microsoft.identity.common.nativeauth.**, com.microsoft.identity.** { *; }
-keep class * extends com.microsoft.identity.common.java.authorities.Authority { *; }
-keep class * extends com.microsoft.identity.common.java.authorities.AzureActiveDirectoryAudience { *; }
-keep class * extends com.microsoft.identity.common.java.cache.ICacheRecord { *; }
-keep class * extends com.microsoft.identity.common.java.cache.ITokenCacheItem { *; }
-keep class * extends com.microsoft.identity.common.java.authscheme.AbstractAuthenticationScheme { *; }
-keep class com.microsoft.identity.common.internal.broker.AuthUxJsonPayload { *; }
-keep class * extends com.microsoft.identity.deviceregistration.java.protocol.IDeviceRegistrationProtocol { *; }
-keep class * extends com.microsoft.identity.deviceregistration.java.api.IDeviceRegistrationRecord { *; }
# Keep WebView JS bridge methods annotated with @JavascriptInterface
-keepclassmembers class com.microsoft.identity.** {
@android.webkit.JavascriptInterface <methods>;
}
#For Android Credential Manager: https://developer.android.com/training/sign-in/passkeys#proguard
-if class androidx.credentials.CredentialManager
-keep class androidx.credentials.playservices.** {
*;
}
# Runtime annotations
-keep class net.jcip.annotations.GuardedBy
-keep class net.jcip.annotations.Immutable
-keep class net.jcip.annotations.ThreadSafe
# Compile time annotations
-dontwarn edu.umd.cs.findbugs.annotations.NonNull
-dontwarn edu.umd.cs.findbugs.annotations.Nullable
-dontwarn edu.umd.cs.findbugs.annotations.SuppressFBWarnings
-keepattributes SourceFile,LineNumberTable
##---------------Begin: proguard configuration for Nimbus ----------
# Intentionally blank, left to consumers of common to implement.
##---------------Begin: proguard configuration for Lombok ----------
-dontwarn lombok.**
##---------------Begin: proguard configuration for Gson --------
# Gson uses generic type information stored in a class file when working with fields. Proguard
# removes such information by default, so configure it to keep all of it.
-keepattributes Signature,SourceFile,LineNumberTable
# For using GSON @Expose annotation
-keepattributes *Annotation*
# Gson specific classes
-dontwarn sun.misc.**
#-keep class com.google.gson.stream.** { *; }
# Prevent proguard from stripping interface information from TypeAdapter, TypeAdapterFactory,
# JsonSerializer, JsonDeserializer instances (so they can be used in @JsonAdapter)
-keep class * extends com.google.gson.TypeAdapter
-keep class * implements com.google.gson.TypeAdapterFactory
-keep class * implements com.google.gson.JsonSerializer
-keep class * implements com.google.gson.JsonDeserializer
-keep class com.google.gson.reflect.TypeToken { *; }
-keep class * extends com.google.gson.reflect.TypeToken { *; }
# Prevent R8 from leaving Data object members always null
-keepclassmembers class com.microsoft.identity.** {
@com.google.gson.annotations.SerializedName <fields>;
@com.squareup.moshi.Json <fields>;
}
## Other
# Compile time annotation
-dontwarn com.google.auto.value.AutoValue$CopyAnnotations
-dontwarn com.google.auto.value.AutoValue
-dontwarn com.google.auto.value.extension.memoized.Memoized
The consumer proguard.txt bundled in common:24.7.0 keeps every com.microsoft.identity.** class without allowobfuscation, which — because R8 must rename all overrides of a virtual method identically across the whole app — blocks obfuscation of unrelated app code (e.g. every Kotlin coroutine continuation class) that merely shares a base type with an MSAL/common class.
This blocks all my app domain logic from being obfuscated because I heavily rely on coroutines, and so domain classes have the same continuation methods.
Similar issue: #1157.
File location for me ~/.gradle/caches/9.7.1/transforms/215c65c7ecaf375ea055fa1f2de7db9f/transformed/common-24.7.0/proguard.txt.
NOTE: part
215c65c7ecaf375ea055fa1f2de7db9fwill differ on other machines.Proguard file below: