From 055a7718b634b95e02f64380229e2ba7e44f3c9d Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Tue, 19 Mar 2013 22:15:07 -0700 Subject: [PATCH] Fixed bug 1760 - Update README.android about local.properties ny00 At the moment, the README.android file mentions this as one step in building an app: " 5. Edit /local.properties to point to the Android SDK directory " However, the local.properties file has recently been removed from the repository, so an update is desired. For instance: " 5. Create /local.properties and use that to point to the Android SDK directory, by writing a line with the following form: sdk.dir=/Users/slouken/android-sdk-macosx --- README.android | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.android b/README.android index 29d8ca5dd..efc3ab302 100644 --- a/README.android +++ b/README.android @@ -47,7 +47,8 @@ Instructions: If you want to use the Eclipse IDE, skip to the Eclipse section below. -5. Edit /local.properties to point to the Android SDK directory +5. Create /local.properties and use that to point to the Android SDK directory, by writing a line with the following form: +sdk.dir=PATH_TO_ANDROID_SDK 6. Run 'ant debug' in android/project. This compiles the .java and eventually creates a .apk with the native code embedded 7. 'ant debug install' will push the apk to the device or emulator (if connected)