From 563d83701313fcd71ac7090deb61e7f3910e6070 Mon Sep 17 00:00:00 2001 From: Joel Teichroeb Date: Wed, 22 Jan 2014 14:23:30 -0800 Subject: ANDROID: Modernize build system Written originally by @Botje for ResidualVM --- dists/android/custom_rules.xml | 31 +++++++++++++++++++++++++++++++ dists/android/jni/Android.mk | 9 +++++++++ dists/android/project.properties | 11 +++++++++++ dists/android/res/layout/main.xml | 4 ---- 4 files changed, 51 insertions(+), 4 deletions(-) create mode 100644 dists/android/custom_rules.xml create mode 100644 dists/android/jni/Android.mk create mode 100644 dists/android/project.properties (limited to 'dists/android') diff --git a/dists/android/custom_rules.xml b/dists/android/custom_rules.xml new file mode 100644 index 0000000000..5ed81b7273 --- /dev/null +++ b/dists/android/custom_rules.xml @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + diff --git a/dists/android/jni/Android.mk b/dists/android/jni/Android.mk new file mode 100644 index 0000000000..d5b398412f --- /dev/null +++ b/dists/android/jni/Android.mk @@ -0,0 +1,9 @@ +LOCAL_PATH := $(call my-dir) + +include $(CLEAR_VARS) + +APP_ABI := armeabi +LOCAL_MODULE := scummvm +LOCAL_SRC_FILES := ../libscummvm.so + +include $(PREBUILT_SHARED_LIBRARY) diff --git a/dists/android/project.properties b/dists/android/project.properties new file mode 100644 index 0000000000..730e911f2f --- /dev/null +++ b/dists/android/project.properties @@ -0,0 +1,11 @@ +# This file is automatically generated by Android Tools. +# Do not modify this file -- YOUR CHANGES WILL BE ERASED! +# +# This file must be checked in Version Control Systems. +# +# To customize properties used by the Ant build system use, +# "ant.properties", and override values to adapt the script to your +# project structure. + +# Project target. +target=android-14 diff --git a/dists/android/res/layout/main.xml b/dists/android/res/layout/main.xml index 31aa345cc7..8b0d515d62 100644 --- a/dists/android/res/layout/main.xml +++ b/dists/android/res/layout/main.xml @@ -9,8 +9,4 @@ android:keepScreenOn="true" android:focusable="true" android:focusableInTouchMode="true" - android:layout_marginTop="@dimen/verticalMargin" - android:layout_marginLeft="@dimen/horizontalMargin" - android:layout_marginBottom="@dimen/verticalMargin" - android:layout_marginRight="@dimen/horizontalMargin" /> -- cgit v1.2.3