mortenjust / one-button

What if your tv remote control had only one button?
5 stars 0 forks source link

How can I give the app to people? #56

Closed mortenjust closed 10 years ago

mortenjust commented 10 years ago

Do I need to make a signed build? A debug version?

I get errors in both cases. Any ideas?

fsalbrechter commented 10 years ago

I managed to build a release version of the app. It forces you to run lint which is a static analyzer and checks your code for errors. I ran it and fixed some stuff. https://github.com/mortenjust/one-button/pull/57

To create a debug APK click on the gradle toolbar in android studio on the left and double click "assembleDebug". (Help here: http://developer.android.com/sdk/installing/studio-build.html)

Then you should find an APK at onebutton/app/build/outputs/apk/app-debug.apk

Then you need to change the security settings to enable for "Unknown sources". See http://www.ubergizmo.com/how-to/how-to-install-apk-files-sideloading-on-android/

Now you can install it on any device.

Please let me know if it works.