Page 1 of 1
Android .apk file
Posted: Wed Feb 19, 2014 2:43 am
by bohmgyorgy1990
Hy Mates!
I am newbie here. I made a standalone applicaton (for android) with LiveCode 6.5.2. Commercial Edition, i can test on my devices and etc. everything is fine.
But, how can i get the .apk file from LiveCode, because i would like to send to someone for testing. Can me explain anyone, what i have to do to get the apk file.
Kind regards,
George
Re: Android .apk file
Posted: Wed Feb 19, 2014 10:57 am
by james8
George, in your standalone application settings under "Android" if you make sure you choose Signing -> Sign for development only. Then when you "Save as Standalone application ..." this should hopefully build your .apk file. Then you can send this file to your testers via email/Dropbox/upload to a server for download, etc.
Re: Android .apk file
Posted: Wed Feb 19, 2014 11:24 am
by LCNeil
Hi George,
If you have not done so, you will also have to set up LiveCode for Android Deployment. The following is a video tutorial which takes you through this set up step-by-step
http://www.youtube.com/watch?v=83qrKr9bR3M
Kind Regards,
Neil Roger
--
RunRev Support Team ~
http://www.runrev.com
-
Re: Android .apk file
Posted: Mon Feb 24, 2014 5:22 pm
by MaxV
Remember:
Java JDk 1.7 messes signing process, so you have to declare the old signing method.
So use
don't sign option in Livecode standalone option, and sign the app yourself with:
Code: Select all
jarsigner.exe -sigalg MD5withRSA -digestalg SHA1 -verbose -keystore myKey.keystore myApp.apk myalias
Jarsigner is in
JDK/bin/ folder.
Re: Android .apk file
Posted: Thu Feb 27, 2014 3:58 pm
by bohmgyorgy1990
james8 wrote:George, in your standalone application settings under "Android" if you make sure you choose Signing -> Sign for development only. Then when you "Save as Standalone application ..." this should hopefully build your .apk file. Then you can send this file to your testers via email/Dropbox/upload to a server for download, etc.
Hy!
When i choose "Save as Standalone application ...", i get an empty folder. I use jdk 1.6 and in my standalone application settinges i choosed sign for developtment only. What could be the problem?
Re: Android .apk file
Posted: Thu Feb 27, 2014 8:38 pm
by bohmgyorgy1990
bohmgyorgy1990 wrote:james8 wrote:George, in your standalone application settings under "Android" if you make sure you choose Signing -> Sign for development only. Then when you "Save as Standalone application ..." this should hopefully build your .apk file. Then you can send this file to your testers via email/Dropbox/upload to a server for download, etc.
Hy!
When i choose "Save as Standalone application ...", i get an empty folder. I use jdk 1.6 and in my standalone application settinges i choosed sign for developtment only. What could be the problem?
problem solved thanks
