Pragnesh
Pragnesh

Reputation: 447

React Native - Unoptimized APK to submit my app to Google Play

getting waring in Google Play Store

this warning are showing in my google play store

Upvotes: 1

Views: 1066

Answers (1)

nazar kuliyev
nazar kuliyev

Reputation: 1265

You should just build and upload aab (Android App Bundle) file instead of apk .

cd android
./gradlew bundleRelease
cd ..

aab file will be placed in"/android/app/build/outputs/bundle/release/"

Upvotes: 4

Related Questions