android studio 配置ndk环境 利用jni创建de

2016-03-09  本文已影响2040人  fellyvette

本篇文章用来介绍最新的android studio使用ndk工程的转换
所有操作设置来自官方文档,如有更新请参考官方文档
http://tools.android.com/tech-docs/new-build-system/gradle-experimental

环境说明

Step 1

创建一个empty工程备用,用来加入ndk支持, 并将项目视图Android切换为Project.
如果已经下载ndk,直接指定目录,否则下载ndk环境

Step 2

#Mon Dec 28 10:00:20 PST 2015
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-2.10-all.zip

我这里用的是目前最新版的 https://services.gradle.org/distributions/gradle-2.10-all.zip

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle-experimental:0.6.0-beta5'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        jcenter()
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

这里的build工具使用gradle-experimental,因为目前ndk加入还是只有实验版本才支持
我这里用的是最新的gradle-experimental:0.6.0-beta5
更新gradle设置可能需要下载新的文件,天朝网络可能被墙,请确保可以科学上网

<blockquote>
** gradle 和 gradle编译工具 版本依赖的问题 **
注意 gradle编译工具的版本对 gradle版本有兼容依赖的关系, 反则没有。
也就是说 比如最新的gradle-experimental:0.6.0-beta5 只有gradle-2.10-all.zip才能适用。
但我用最新的gradle-2.10-all.zip,使用低版本的gradle-experimental:0.2.0没有影响,所以这点需要注意。
</blockquote>

Step 3

目前工程中只有app,修改它的build.gradle文件DSL写法
不同版本gradle编译工具的DSL写法不同,这里用的是最新版本的0.6.0-beta5

如果是以前版本写法可以参考官方 https://sites.google.com/a/android.com/tools/tech-docs/new-build-system/gradle-experimental/0-4-0

修改之前的代码:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 23
    buildToolsVersion "23.0.2"

    defaultConfig {
        applicationId "com.example.android.tang.androidstudiojnidemoforndk10"
        minSdkVersion 15
        targetSdkVersion 23
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:appcompat-v7:23.1.1'
}

修改后的代码:

apply plugin: "com.android.model.application"

model {
    android {
        compileSdkVersion 23
        buildToolsVersion "23.0.2"

        defaultConfig {
            applicationId "com.example.android.tang.androidstudiojnidemoforndk10"
            minSdkVersion.apiLevel 15
            targetSdkVersion.apiLevel 23
            versionCode 1
            versionName "1.0"
        }
        buildTypes {
            release {
                minifyEnabled false
                proguardFiles.add(file("proguard-rules.pro"))
            }
        }

        sources {
            main {
                java {
                    source {
                        srcDir "src"
                    }
                }
            }
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:appcompat-v7:23.1.1'
}
  1. 用com.android.model.application代替com.android.application
  2. 如果创建aarlibrary用com.android.model.library代替com.android.library
  3. 配置用model { } 块包装起来
  4. 添加元素用add方法

Step 4 引入NDK

ndk {                       
    moduleName "native"         //指定生成的lib,比如此时生成native.so
}

之后为:

model {
    android {
        compileSdkVersion 23
        buildToolsVersion "23.0.2"
        ndk {                       
            moduleName "native"         
        }
    }
}

在目录app/src/main下创建jni目录,然后修改build.gradle 新增Source Set:

sources {
    main {
        jni {
            source {
                srcDir "src"
            }
        }
    }
}

Step 5 代码中生成JNI代码

在activity中加载module native,加入本地方法test()

public class MainActivity extends AppCompatActivity implements View.OnClickListener{
    static {
        System.loadLibrary("native");
    }

    public native String test();

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        findViewById(R.id.button).setOnClickListener(this);
    }

    @Override
    public void onClick(View v) {
        Log.i("####",test());
    }
}

代码提示test()方法,自动生成jni代码

//图片

编译运行,搞定!

代码在: https://github.com/tangfuhao/AndroidStudioJNIDemoForNDK10

上一篇下一篇

猜你喜欢

热点阅读