Skip to content

Commit

Permalink
updated Android build
Browse files Browse the repository at this point in the history
  • Loading branch information
Jerome Blondon authored and Jerome Blondon committed Mar 7, 2013
1 parent b06a2cc commit 858b54e
Show file tree
Hide file tree
Showing 27 changed files with 586 additions and 448 deletions.
14 changes: 14 additions & 0 deletions .gitignore
@@ -1,2 +1,16 @@
Products/
.DS_Store
*.swp
*.o
*.o.d
*.class
*.a
*.so
Makefile
libs/*
minui3.make
minui_test.make
obj/*
android/NativeTest/bin/*
android/NativeTest/gen/*
android/NativeTest/obj/*
37 changes: 16 additions & 21 deletions android/NativeTest/AndroidManifest.xml
@@ -1,27 +1,22 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.native_activity"
android:versionCode="1"
android:versionName="1.0">
package="com.example.native_activity"
android:versionCode="1"
android:versionName="1.0">

<!-- This is the platform API where NativeActivity was introduced. -->
<uses-sdk android:minSdkVersion="9" />

<!-- This .apk has no Java code itself, so set hasCode to false. -->
<application android:label="@string/app_name" android:hasCode="false" android:debuggable="true">
<application android:label="@string/app_name" android:hasCode="false">

<!-- Our activity is the built-in NativeActivity framework class.
This will take care of integrating with our NDK code. -->
<activity android:name="android.app.NativeActivity"
android:label="@string/app_name"
android:configChanges="orientation|keyboardHidden">
<!-- Tell NativeActivity the name of or .so -->
<meta-data android:name="android.app.lib_name"
android:value="my_native_module" />
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
<activity android:name="android.app.NativeActivity"
android:label="@string/app_name"
android:configChanges="orientation|keyboardHidden">

</manifest>
<meta-data android:name="android.app.lib_name"
android:value="native-activity" />
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
1 change: 1 addition & 0 deletions android/NativeTest/assets
6 changes: 3 additions & 3 deletions android/NativeTest/build
@@ -1,11 +1,11 @@
export NDK_MODULE_PATH=$(pwd)/../../
export NDK_PATH=$(pwd)/../../../android-ndk
export SDK_PATH=$(pwd)/../../../android-sdk
export NDK_PATH=/home/jerome/android-ndk-r8d
export SDK_PATH=/home/jerome/adt-bundle-linux-x86_64/sdk
echo ----------------------------------------------------------------------------------------
echo Build lib
echo ----------------------------------------------------------------------------------------
#~/work/dev/android/android-ndk-r5b/ndk-build -j 8 NDK_DEBUG=1
$NDK_PATH/ndk-build -j 8 NDK_DEBUG=1
$NDK_PATH/ndk-build -j 4 NDK_DEBUG=1


echo ----------------------------------------------------------------------------------------
Expand Down
105 changes: 59 additions & 46 deletions android/NativeTest/build.xml
@@ -1,79 +1,92 @@
<?xml version="1.0" encoding="UTF-8"?>
<project name="NativeActivity" default="help">

<!-- The local.properties file is created and updated by the 'android'
tool.
It contains the path to the SDK. It should *NOT* be checked into
Version Control Systems. -->
<!-- The local.properties file is created and updated by the 'android' tool.
It contains the path to the SDK. It should *NOT* be checked into
Version Control Systems. -->
<property file="local.properties" />

<!-- The build.properties file can be created by you and is never touched
by the 'android' tool. This is the place to change some of the
default property values used by the Ant rules.
<!-- The ant.properties file can be created by you. It is only edited by the
'android' tool to add properties to it.
This is the place to change some Ant specific build properties.
Here are some properties you may want to change/update:
source.dir
The name of the source directory. Default is 'src'.
out.dir
The name of the output directory. Default is 'bin'.
For other overridable properties, look at the beginning of the rules
files in the SDK, at tools/ant/build.xml
Properties related to the SDK location or the project target should
be updated using the 'android' tool with the 'update' action.
This file is an integral part of the build system for your
application and should be checked into Version Control Systems.
-->
<property file="build.properties" />

<!-- The default.properties file is created and updated by the 'android'
<property file="ant.properties" />

<!-- if sdk.dir was not set from one of the property file, then
get it from the ANDROID_HOME env var.
This must be done before we load project.properties since
the proguard config can use sdk.dir -->
<property environment="env" />
<condition property="sdk.dir" value="${env.ANDROID_HOME}">
<isset property="env.ANDROID_HOME" />
</condition>

<!-- The project.properties file is created and updated by the 'android'
tool, as well as ADT.
This file is an integral part of the build system for your
application and should be checked into Version Control Systems. -->
<property file="default.properties" />


<!-- Required pre-setup import -->
<import file="${sdk.dir}/tools/ant/pre_setup.xml" />
This contains project specific properties such as project target, and library
dependencies. Lower level build properties are stored in ant.properties
(or in .classpath for Eclipse projects).
<!-- extension targets. Uncomment the ones where you want to do custom work
in between standard targets -->
<!--
<target name="-pre-build">
</target>
<target name="-pre-compile">
</target>
[This is typically used for code obfuscation.
Compiled code location: ${out.classes.absolute.dir}
If this is not done in place, override ${out.dex.input.absolute.dir}]
<target name="-post-compile">
</target>
-->

<!-- Execute the Android Setup task that will setup some properties
specific to the target, and import the build rules files.
This file is an integral part of the build system for your
application and should be checked into Version Control Systems. -->
<loadproperties srcFile="project.properties" />

<!-- quick check on sdk.dir -->
<fail
message="sdk.dir is missing. Make sure to generate local.properties using 'android update project' or to inject it through the ANDROID_HOME environment variable."
unless="sdk.dir"
/>

<!--
Import per project custom build rules if present at the root of the project.
This is the place to put custom intermediary targets such as:
-pre-build
-pre-compile
-post-compile (This is typically used for code obfuscation.
Compiled code location: ${out.classes.absolute.dir}
If this is not done in place, override ${out.dex.input.absolute.dir})
-post-package
-post-build
-pre-clean
-->
<import file="custom_rules.xml" optional="true" />

The rules file is imported from
<SDK>/tools/ant/
Depending on the project type it can be either:
- main_rules.xml
- lib_rules.xml
- test_rules.xml
<!-- Import the actual build file.
To customize existing targets, there are two options:
- Customize only one target:
- copy/paste the target into this file, *before* the
<setup> task.
<import> task.
- customize it to your needs.
- Customize the whole script.
- Customize the whole content of build.xml
- copy/paste the content of the rules files (minus the top node)
into this file, *after* the <setup> task
- disable the import of the rules by changing the setup task
below to <setup import="false" />.
into this file, replacing the <import> task.
- customize to your needs.
***********************
****** IMPORTANT ******
***********************
In all cases you must update the value of version-tag below to read 'custom' instead of an integer,
in order to avoid having your file be overridden by tools such as "android update project"
-->
<setup />
<!-- version-tag: 1 -->
<import file="${sdk.dir}/tools/ant/build.xml" />

</project>
79 changes: 79 additions & 0 deletions android/NativeTest/build.xml.old
@@ -0,0 +1,79 @@
<?xml version="1.0" encoding="UTF-8"?>
<project name="NativeActivity" default="help">

<!-- The local.properties file is created and updated by the 'android'
tool.
It contains the path to the SDK. It should *NOT* be checked into
Version Control Systems. -->
<property file="local.properties" />

<!-- The build.properties file can be created by you and is never touched
by the 'android' tool. This is the place to change some of the
default property values used by the Ant rules.
Here are some properties you may want to change/update:
source.dir
The name of the source directory. Default is 'src'.
out.dir
The name of the output directory. Default is 'bin'.
Properties related to the SDK location or the project target should
be updated using the 'android' tool with the 'update' action.
This file is an integral part of the build system for your
application and should be checked into Version Control Systems.
-->
<property file="build.properties" />

<!-- The default.properties file is created and updated by the 'android'
tool, as well as ADT.
This file is an integral part of the build system for your
application and should be checked into Version Control Systems. -->
<property file="default.properties" />


<!-- Required pre-setup import -->
<import file="${sdk.dir}/tools/ant/pre_setup.xml" />


<!-- extension targets. Uncomment the ones where you want to do custom work
in between standard targets -->
<!--
<target name="-pre-build">
</target>
<target name="-pre-compile">
</target>
[This is typically used for code obfuscation.
Compiled code location: ${out.classes.absolute.dir}
If this is not done in place, override ${out.dex.input.absolute.dir}]
<target name="-post-compile">
</target>
-->

<!-- Execute the Android Setup task that will setup some properties
specific to the target, and import the build rules files.
The rules file is imported from
<SDK>/tools/ant/
Depending on the project type it can be either:
- main_rules.xml
- lib_rules.xml
- test_rules.xml
To customize existing targets, there are two options:
- Customize only one target:
- copy/paste the target into this file, *before* the
<setup> task.
- customize it to your needs.
- Customize the whole script.
- copy/paste the content of the rules files (minus the top node)
into this file, *after* the <setup> task
- disable the import of the rules by changing the setup task
below to <setup import="false" />.
- customize to your needs.
-->
<setup />

</project>
11 changes: 0 additions & 11 deletions android/NativeTest/default.properties

This file was deleted.

2 changes: 1 addition & 1 deletion android/NativeTest/jni/Android.mk
Expand Up @@ -12,7 +12,7 @@ MY_C_FLAGS := -x c++ -fmessage-length=0 -pipe -Wno-trigraphs -O0 -D_ANDROID_ -DN

LOCAL_CFLAGS := $(MY_C_FLAGS)

LOCAL_LDLIBS := -lGLESv1_CM -lEGL -landroid -llog -lstdc++ -lOpenSLES
LOCAL_LDLIBS := -lGLESv1_CM -lEGL -landroid -llog -lstdc++ -lOpenSLES -lGLESv2

LOCAL_STATIC_LIBRARIES := libnui3 android_native_app_glue freetype expat tess harfbuzz libcss libpng libjpeg tidy ucdata ungif libmpg123

Expand Down
2 changes: 2 additions & 0 deletions android/NativeTest/libs/armeabi/gdb.setup
@@ -0,0 +1,2 @@
set solib-search-path ./obj/local/armeabi
directory /home/jerome/android-ndk-r8d/platforms/android-9/arch-arm/usr/include /home/jerome/android-ndk-r8d/sources/android/native_app_glue /home/jerome/nui/nui3/android/NativeTest/../..//deps/libcss/jni/../include /home/jerome/nui/nui3/android/NativeTest/../..//deps/libcss/jni/../src /home/jerome/nui/nui3/android/NativeTest/../..//deps/libcss/jni/../src/libparserutils /home/jerome/nui/nui3/android/NativeTest/../..//deps/libcss/jni/../src/libwapcaplet /home/jerome/nui/nui3/android/NativeTest/../..//deps/expat/jni/../lib /home/jerome/nui/nui3/android/NativeTest/../..//deps/freetype2/jni/../../freetype-overlay/include /home/jerome/nui/nui3/android/NativeTest/../..//deps/freetype2/jni/../include /home/jerome/android-ndk-r8d/sources/cxx-stl/gnu-libstdc++ /home/jerome/nui/nui3/android/NativeTest/../..//deps/harfbuzz/jni/.. /home/jerome/nui/nui3/android/NativeTest/../..//deps/harfbuzz/jni/../../freetype2/include /home/jerome/android-ndk-r8d/sources/cxx-stl/gnu-libstdc++/4.6/include /home/jerome/android-ndk-r8d/sources/cxx-stl/gnu-libstdc++/4.6/libs/armeabi/include /home/jerome/nui/nui3/android/NativeTest/../..//deps/libjpeg/jni/.. /home/jerome/nui/nui3/android/NativeTest/../..//deps/mpg123/jni/.. /home/jerome/nui/nui3/android/NativeTest/../..//jni/.. /home/jerome/nui/nui3/android/NativeTest/../..//jni/../include /home/jerome/nui/nui3/android/NativeTest/../..//jni/../src/Stream/Zip /home/jerome/nui/nui3/android/NativeTest/../..//jni/../src/Text/HTML /home/jerome/nui/nui3/android/NativeTest/../..//jni/../src/Application/Unix /home/jerome/nui/nui3/android/NativeTest/../..//jni/../deps /home/jerome/nui/nui3/android/NativeTest/../..//deps/glu/libtess/jni/../.. /home/jerome/nui/nui3/android/NativeTest/../..//deps/libpng/jni/.. /home/jerome/nui/nui3/android/NativeTest/../..//deps/tidy/jni/.. /home/jerome/nui/nui3/android/NativeTest/../..//deps/ucdata/jni/.. /home/jerome/nui/nui3/android/NativeTest/../..//deps/ungif/jni/..
Binary file added android/NativeTest/libs/armeabi/gdbserver
Binary file not shown.
2 changes: 1 addition & 1 deletion android/NativeTest/local.properties
Expand Up @@ -7,4 +7,4 @@
# location of the SDK. This is only used by Ant
# For customization when using a Version Control System, please read the
# header note.
sdk.dir=/Users/meeloo/work/android-sdk
sdk.dir=/home/jerome/adt-bundle-linux-x86_64/sdk
20 changes: 20 additions & 0 deletions android/NativeTest/proguard-project.txt
@@ -0,0 +1,20 @@
# To enable ProGuard in your project, edit project.properties
# to define the proguard.config property as described in that file.
#
# Add project specific ProGuard rules here.
# By default, the flags in this file are appended to flags specified
# in ${sdk.dir}/tools/proguard/proguard-android.txt
# You can edit the include path and order by changing the ProGuard
# include property in project.properties.
#
# For more details, see
# http://developer.android.com/guide/developing/tools/proguard.html

# Add any project specific keep options here:

# If your project uses WebView with JS, uncomment the following
# and specify the fully qualified class name to the JavaScript interface
# class:
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
# public *;
#}
14 changes: 14 additions & 0 deletions android/NativeTest/project.properties
@@ -0,0 +1,14 @@
# 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 edit
# "ant.properties", and override values to adapt the script to your
# project structure.
#
# To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home):
#proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt

# Project target.
target=android-17
1 change: 1 addition & 0 deletions android/NativeTest/resource.rc
@@ -0,0 +1 @@
audio/test.mp3 NUI_RESOURCE "resources/audio/test.mp3"
1 change: 1 addition & 0 deletions android/NativeTest/resources/resource.android
@@ -0,0 +1 @@
audio/test.mp3
3 changes: 2 additions & 1 deletion deps/harfbuzz/jni/Android.mk
Expand Up @@ -26,6 +26,7 @@ hb-ot-shape-complex-indic.cc \
hb-ot-shape.cc \
hb-ot-tag.cc \
hb-shape.cc \
hb-fallback-shape.cc \
hb-unicode.cc \

LOCAL_EXPORT_C_INCLUDES := $(MY_INCLUDE_FILES)
Expand All @@ -39,7 +40,7 @@ $(call import-module,deps/freetype2/jni)

# SHARED LIBRARY

# Build the shared lib to force building of the static lib.
# Build the shared lib to force building of the static lib.
# If you try to build (with ndk-build) a Android.mk file wich contains only a static library, it won't compile anything since there are no dependencies

include $(CLEAR_VARS)
Expand Down

0 comments on commit 858b54e

Please sign in to comment.