How to obfuscate the source code while building APK of your Android App? – API 34|Android 14

preview_player
Показать описание
Steps in this session:

1. Create a simple App
2. Build normal APK (non-obfuscated)
3. Build Obfuscated APK

In this video it shows the source code in the APK file for 3 types of APKs built:
1. Debug variant
2. Release non-obfuscated variant
3. Release obfuscated

In this video it refers to the below pages:

The gradle code is below:

buildTypes {
release {
isMinifyEnabled = true
isShrinkResources = true
proguardFiles(
)
}
}

For details please refer:

--
Рекомендации по теме
Комментарии
Автор

But what about the obb file which is going to upload in plastore ?

sushantkumar