How to i change the SDK for a gdevlope made android app to target the newest SDK, its the only way it will let me upload it to the playstore. Thank you for the help im very confused.
I have the some problem.
I’m dowloading Cordova and Android Studio to see If I’m able to compile it myself.
I’ll let you know
Ok thanks, Ive been trying to install cordova but couldnt figure out everything i needed to make it work.
yeah having a hard time downloading the java jdk where did you install it from?
I finally made the APK @acdesso It’s pending for Android approval.
What I did? A lot…
- Install Java Development Kit. I already had it, but I think you can download it from here
- Install Grade from here
- Install Android Studio from here
- Add SDK 29 from Android Studio SDK Manager
- Set Environment variables. See here
- Install Cordova (execute ‘npm install -g cordova’ in the terminal)
- In Gdevelop Export to Ios & Android manual
- In the project folder, execute ‘cordova platform add android’ in the terminal
- Edit the file config.xml and add android-versionCode="1" near version=“1.0.0”. If you don’t do this, the APK versionCode will be 10000
- Inside the folder “platforms/Android” execute ''cordova build --release android" in the terminal
With all these you will have an unsigned APK.
To publish to Android, you need a signed APK
You could follow this guide to generate it