Warnings in Play Store about R8/ProGuard and Native code

Hello,

When I import the AAB file in Google Play Console, I see these warnings:

I don’t know the impact of them and how to fix/avoid them.
Do maybe someone help me to understand and remove these warnings?

Thanks,
Loïc

I used configuration bellow, into build.gradle for reduce code (minified) and include decopiler map.

buildTypes {
        release {
            minifyEnabled true // remove first warning (Ever use in production, this improve performance and reduce size
            shrinkResources = true // Remove unused images layouts and strings, reduce size
            ndk {
                debugSymbolLevel 'FULL'  // remove second warning. (Made native symbols for upload into store) Sometimes it fails depending on how the components you use were compiled. No problems use, but second warning keep there.
            }
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
            zipAlignEnabled true //Aling data for fast read into APK or AAB
        }
        debug {
            minifyEnabled false
            shrinkResources false
        }
    }

Hello @rafaelanjosatlas,

Thanks for your reply/help :slight_smile:

It works fine for the first warning but the second one still appears after the change.

Have a nice day,
Loïc