Closed HazzaHFPV closed 3 years ago
It will be released at Google play soon. For compiling google "android studio". Import project there. You also need to install android SDK (I believe it will be automatically asked to be installed)
Cool, thank you for the pointers :) I'll install android studio and have a play-around and maybe I'll learn something along the way.
I encountered gradle build failed because of no store file. And fixed by:
genereate keystore file by command. keytool -genkey -v -keystore my-release-key.keystore -alias myKeyAlias -keyalg RSA -keysize 2048 -validity 10000
add keystore.properties
file
storePassword=myStorePassword
keyPassword=mykeyPassword
keyAlias=myKeyAlias
storeFile=xxxx/my-release-key.keystore
change xxxx
to real path
Now I'm able to run the app in emulator with Android Studio v4.2
from: https://stackoverflow.com/a/15330139/6414615 https://stackoverflow.com/a/49022618/6414615
Not really an issue, but a question: Could maybe anyone point me in the right direction on how I could compile the new version 1.8 myself? Unfortunately I'm a noob and have no clue how to code, build or compile apk files :/ I am willing to learn, but just need a clue on where to start.