CrazyDude1994 / android-taranis-smartport-telemetry

This android application let you view and record your taranis telemetry data in realtime.
https://play.google.com/store/apps/details?id=crazydude.com.telemetry
145 stars 43 forks source link

Compiling #82

Closed HazzaHFPV closed 3 years ago

HazzaHFPV commented 3 years ago

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.

CrazyDude1994 commented 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)

HazzaHFPV commented 3 years ago

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.

JaosnHsieh commented 2 years ago

I encountered gradle build failed because of no store file. And fixed by:

  1. genereate keystore file by command. keytool -genkey -v -keystore my-release-key.keystore -alias myKeyAlias -keyalg RSA -keysize 2048 -validity 10000

  2. 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