diff options
author | Marcus Comstedt | 2014-06-18 21:40:13 +0200 |
---|---|---|
committer | Marcus Comstedt | 2014-06-18 21:40:13 +0200 |
commit | 0e459796346ca98684a115302f448a6317799372 (patch) | |
tree | 59fb86d1e9ea596cff27b1709f8b577f9950df0f /backends | |
parent | e395343064936cc04f777bb12391c34bdecbd992 (diff) | |
download | scummvm-rg350-0e459796346ca98684a115302f448a6317799372.tar.gz scummvm-rg350-0e459796346ca98684a115302f448a6317799372.tar.bz2 scummvm-rg350-0e459796346ca98684a115302f448a6317799372.zip |
ANDROID: Allow build with non-ancient SDK
Diffstat (limited to 'backends')
-rw-r--r-- | backends/platform/android/android.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/backends/platform/android/android.mk b/backends/platform/android/android.mk index 7c4fe01d54..1a40299dcd 100644 --- a/backends/platform/android/android.mk +++ b/backends/platform/android/android.mk @@ -48,10 +48,10 @@ PLUGIN_RESOURCES = \ #LDFLAGS += -Wl,--gc-sections #CXXFLAGS += -ffunction-sections -fdata-sections -fvisibility=hidden -fvisibility-inlines-hidden -AAPT = $(ANDROID_SDK)/platform-tools/aapt +AAPT = $(ANDROID_SDK)/$(ANDROID_BTOOLS)/aapt ADB = $(ANDROID_SDK)/platform-tools/adb -DX = $(ANDROID_SDK)/platform-tools/dx -APKBUILDER = $(ANDROID_SDK)/tools/apkbuilder +DX = $(ANDROID_SDK)/$(ANDROID_BTOOLS)/dx +APKBUILDER = java -Xmx128M -classpath $(ANDROID_SDK)/tools/lib/sdklib.jar com.android.sdklib.build.ApkBuilderMain JAVAC ?= javac JAVACFLAGS = -source 1.5 -target 1.5 |