使用最新版AndroidStudio2.0进行NDK开发并且链接第三方so库

配置:
1.gradle-wrapper.properties中配置distributionUrl=https://services.gradle.org/distributions/gradle-2.10-all.zip
2.项目gradle中buildscript下配置
dependencies {
classpath “com.android.tools.build:gradle-experimental:0.7.0-alpha1”
}
修改gradle文件
1.moudle的gradle文件中用apply plugin: ‘com.android.model.application’代替以前的 apply plugin:”com.android.application”
2.gradle结构也和过去不太一样了 android 外面要加一层model,用官方的话说就是Configuration is wrapped with the model { } block
3.如果不链接第三方静态库的话只需要配置android.ndk 和 android.productFlavors就可以了
4.如果需要链接第三方静态库需要如下配置 , yourlib需要替换成你所引用的库的name

repositories {
            libs(PrebuiltLibraries) {
                yourlib{
                    headers.srcDir "src/main/jni/lib/include(第三方库头文件存放位置)"
                    binaries.withType(SharedLibraryBinary) {
                        sharedLibraryFile = file("src/main/jni/lib/libyourlib.so(第三方库so位置)")
                    }
                }
            }
    }
    android.sources {
        main{
            jni {
                dependencies {
                    library "yourlib" linkage "shared"
                }
            }
            jniLibs {
                dependencies {
                    library "yourlib"
                }
            }
        }
    }

ok build successful

参考
http://ph0b.com/new-android-studio-ndk-support/#more-236
http://tools.android.com/tech-docs/new-build-system/gradle-experimental

你可能感兴趣的:(android,技术,ndk,gradle,Android,jni,静态库)