abbyyUser
abbyyUser

Reputation: 117

livecode Installing app on target - Android

I have a very simple test that I am doing in Livecode Community 6.5, on Windows 8.1. I have created a button which shows a dialog window when clicked on.

When I run the test in an emulator, the dialog window Standalone Builder Progress reaches the stage "Installing application on target device and then" gets stuck. Each time I have to terminate LiveCode in the Task Manager. I have tried changing the device but got the same results.

From Android Studio I can see the device when I start AVD.

Upvotes: 1

Views: 807

Answers (2)

abbyyUser
abbyyUser

Reputation: 117

Thank-you to everyone who helped.

I think 2 things have to be there in order for it to work. unique Identifier & external storage

Thanks

Upvotes: 0

mark
mark

Reputation: 222

Make sure that the Platform version of the AVD is the same or higher than the Minimum Android Version in the Standalone Application Settings of your stack.


Try in addition to:

  1. install the latest stable version of LC 6.6.2 from here: LC downloads

  2. make sure you have the Android SDK running with SDK Tools revision 22.6.3 (rev. 23 may not work properly and needs some workaround)

  3. try with using Android 2.3.3 (API 10) - install both SDK Platform and Google APIs

  4. in the Standalone Settings select "Sign for development only" and "Allow External Storage"

  5. if you changed the "Identifier" (default shows as "com.yourcompany.yourapp"), make sure that its contents does not contain any "-" and "&" since they are not working there; possibly change to default.

  6. create a standalone android app (apk) and try to install it on a real device

Upvotes: 3

Related Questions