How To Make Apk File From Aab File
I am trying to make an apk of my react native app folder. I followed this https://www.youtube.com/watch?v=cws_eQ5LQUk&t=420s tutorial but the resultant file turned out to be ap
Solution 1:
There is a good step-by-step tutorial in react documentation.
You have to generate a signed apk file for publishing to Google Play Store. It can be done by following command. But first, you have to generate an upload key and set up gradle variables, check the link above.
$ cd android$ ./gradlew bundleRelease
Post a Comment for "How To Make Apk File From Aab File"