-
-
Save zorgsoft/fc6748a57262e4e007edfdd3551c295c to your computer and use it in GitHub Desktop.
Compile Godot for Android (from Windows)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@ECHO OFF | |
set threads=%NUMBER_OF_PROCESSORS% | |
call scons platform=android tools=no target=release_debug verbose=no warnings=no progress=no -j%threads% | |
call scons platform=android tools=no target=release verbose=no warnings=no progress=no -j%threads% | |
cd platform\android\java\ | |
call gradlew build | |
cd ..\..\..\bin\ | |
copy android_debug.apk %APPDATA%\Godot\templates\3.0-alpha\android_debug.apk | |
copy android_release.apk %APPDATA%\Godot\templates\3.0-alpha\android_release.apk |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment