Intel® Developer Zone offers tools and how-to information for cross-platform app development, platform and technology information, code samples, and peer expertise to help developers innovate and succeed. Join our communities for Android, Internet of Things, Intel® RealSense™ Technology, and Windows to download tools, access dev kits, share ideas with like-minded developers, and participate in hackathon’s, contests, roadshows, and local events.
Table of Contents:
Introduction
The current Android Studio* release is 1.0.1 at the time of this writing. The Intel® C++ Compiler for Android as part of Intel® Integrated Native Developer Experience (Intel® INDE) is supporting Android Studio 1.0.1 in Intel INDE 2015 Update 1. Since Android Studio 1.0.1 does not support Android NDK, instructions have been provided in this article with steps on how to build a native Android* app using Android NDK r10d and Intel C++ Compiler for Android.
Android Studio uses Gradle for its build system. At the time of this writing Gradle invokes the NDK build system as part of the build process. With Android NDK r10 and later, the Intel® C++ Compiler for Android (ICC) is no longer the default compiler in the NDK build system after Intel INDE is installed.
The steps below provide a general description of how to setup, build, and run a new native application in Android Studio 1.0.1.
If you have Android Studio* 0.8.6, please refer to this article Building Native Android* Apps Using Intel(R) C++ Compiler in Android Studio* for how to use Intel C++ Compiler.
Required Software Tools
Successful installation of INDE 2015 Update 1 with Android Studio Integration will ensure you have the all required software installed.
Please refer to the latest Intel(R) C++ Compiler Release Notes for Intel(R) Integrated Native Developer Experience 2015 for detailed software and system requirements.
The instructions provided in this article uses the following software for targeting both IA-32 and Intel®-64 architecture:
- Oracle* JDK 7 (native Intel-64 JDK for Windows x64 systems)
- Android SDK 20 or greater
- NDK r10d (assumed to be installed at: [ndk-dir] )
- Android Studio 1.0.1
Please make sure the following Android NDK directories were added to the environment variable PATH (add them if missing):
- C:\Intel\INDE\IDEintegration\NDK\build\tools
- C:\Intel\INDE\IDEintegration\NDK
Using Intel(R) C++ Compiler in Android Studio* 1.0.1
After the Intel C++ Compiler 15.0 for Android is installed, the following toolchains are installed to "[ndk-dir]\toolchains" folder (the default directory is "C:\Intel\INDE\IDEintegration\android-ndk-r10d\toolchains"):
- x86-icc
- x86-icc15.0.X.YYY
- x86_64-icc (if NDK supports 64-bit target)
- x86_64-icc15.0.X.YYY (if NDK supports 64-bit target)
For NDK up to r9d: The default native C/C++ compiler will be the Intel C++ Compiler after the installation. There is no additional steps to use Intel C++ Compiler within Android Studio. If you would like to use GNU* gcc to build the native code, please follow Changing the default compiler back from Intel C++ Compiler to GCC for x86 targets.
For NDK r10 to r10d: The Intel C++ compiler is not default after the installation. Follow steps 3, 4, 5 below to use Intel C++ Compiler from Android Studio.
If you have multiple Android NDKs installed, please see instructions on this article Integrating the Intel(R) C++ Compiler for Android* with multiple Android NDKs.
We will now create a new Android project for Intel-64 with a native function call to demonstrate the use of Intel C++ Compiler:
-
Create a new Android project with a native interface:
- Open Android Studio, Create a new Android project "nativeDemo" with default settings. e.g.
- Open "app\src\main\java\MainActivity.java" and add a native function as below at the end of the class "MainActivity":
public native String getStringFromNative();
You file should now look like this:
- To build your "nativeDemo" project select: "Build > Make Project" to get ready for using "javah".
- Open the terminal window from "View > Tools Windows > Terminal" and follow the steps below to run "javah" and create the jni header:
- In the terminal window, navigate to the "src\main" subfolder:
cd src\main
- Then, to create the "com_example_nativedemo_app_MainActivit.h" under the src\main\jni folder, run the following "javah" cmd:
javah -d .\jni -classpath C:\Intel\INDE\IDEintegration\android-sdk-windows\platforms\android-21\android.jar;..\..\build\intermediates\classes\debug com.example.mydemo.nativedemo.MainActivity
e.g.
- In the Project window change the view to Project and right click on the "src" folder and select "Synchronize 'src'". Now you can see the header file "com_example_mydemo_nativedemo_MainActivity.h" under the "src\main\jni" folder.
-
Add native source code: main.c
- Create "main.c": select file " com_example_mydemo_nativedemo_MainActivity.h ", use copy/paste to create a new file "main.c" with following code:
#include "com_example_mydemo_nativedemo_MainActivity.h"
JNIEXPORT jstring JNICALL
Java_com_example_mydemo_nativedemo_MainActivity_getStringFromNative
(JNIEnv * env, jobject obj)
{
#ifdef __INTEL_COMPILER_UPDATE
return (*env)->NewStringUTF(env, "Hello from Intel C++ !");
#else
return (*env)->NewStringUTF(env, "Hello from default C++ !");
#endif
}
- Save Changes
- Now you have 2 files under "jni" folder: com_example_mydemo_nativedemo_MainActivity.h and main.c
-
Add make file: Android.mk
- Right click on "jni" folder, select "New > File"
- Type "Android.mk" and click "OK".
- Add the following lines to this file (note that LOCAL_SRC_FILES should contain source files located in "jni" folder:
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE := nativeDemo
LOCAL_SRC_FILES := main.c
include $(BUILD_SHARED_LIBRARY)
-
Add make file: Application.mk
- Right click on "jni" folder, select "New > File"
- Type "Application.mk" and click "OK".
- Add the following lines to this file:
# For IA-32
#APP_ABI:=x86
#NDK_TOOLCHAIN:=x86-icc
#include $(BUILD_SHARED_LIBRARY)
# For Intel-64
APP_ABI:=x86_64
NDK_TOOLCHAIN:=x86_64-icc
include $(BUILD_SHARED_LIBRARY)
- [Optional] to change compiler options, use the following:
APP_CFLAGS := -O3
-
Configure your application to run ndk-build with make files
- Open "app\build.gradle" file
- Add the following imports at the top of the file:
import com.android.build.gradle.tasks.NdkCompile
import org.apache.tools.ant.taskdefs.condition.Os
- Add the following lines after "defaultConfig" section:
sourceSets.main {
jniLibs.srcDir 'src/main/libs' }
tasks.withType(NdkCompile) { compileTask -> compileTask.enabled = false
}
task ndkBuild(type: Exec) { if (Os.isFamily(Os.FAMILY_WINDOWS)) {
commandLine 'cmd', '/c', 'ndk-build.cmd', '-C', file('src/main').absolutePath
} else {
commandLine 'ndk-build', '-C', file('src/main').absolutePath
}
}
tasks.withType(JavaCompile) {
compileTask -> compileTask.dependsOn ndkBuild
}
- Add following line at end of the file:
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
}
- Save Changes
- Now build the project: select [Build > Make Project].You will see all the output folders and files "libmain.so" under "main\libs" and "main\obj\local" folders.
-
Add an ID "hello_textview" to the textview widget
- Open res\layout\activity_main.xml and modify the textview widget as shown below:
<TextView
android:text="@string/hello_world"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/hello_textview" />
-
Update "MainActivity.java" to hook up the native library call to the UI textview widget:
-
public class MainActivity extends Activity {
static { System.loadLibrary("nativeDemo");
}
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
TextView tv = (TextView)findViewById(R.id.hello_textview);
tv.setText(this.getStringFromNative());
}
- Press ALT + ENTER to import the TextView widget and save your changes.
-
Start the Android Virtual Machine "Intel-Nexus 7 x64" and run the app by clicking the "Run" button.
This means the compiler used is the Intel C++ Compiler for Android*.
Summary
Now you know how to build a simple native Android app with Intel C++ Compiler in Android Studio. Try it with your real native application and let us know how it goes.
This article applies to:
Products: Intel® INDE Update 1 or later
Host OS: Windows (IA-32, Intel® 64)
Target OS: Android* (IA-32, Intel® 64)