假设我有很多Android代码,希望在项目之间重用。它包括Java代码以及一些本地C ++代码。 我使用Gradle + CMake构建项目。
最好的组织方式是什么?我想要的是一个单独的目录中的独立模块,其中包含cpp,java代码和一些配置文件(Gradle脚本和CMakeLists.txt等)。
当我从头开始新项目时,我只想扔掉这个子模块,并包括Java和本机部分,并尽可能减少混乱。 我有什么选择?
编辑:我在使Gradle为子模块构建本机代码方面遇到麻烦。
这是我的主要应用程序gradle:
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
android {
compileSdkVersion 28
defaultConfig {
applicationId "com.palmkingdoms.pk2_remastered"
minSdkVersion 15
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
externalNativeBuild {
cmake {
cppFlags ""
}
}
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
externalNativeBuild {
cmake {
path "src/main/cpp/CMakeLists.txt"
version "3.10.2"
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation"org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
}
这是次级动子:
apply plugin: 'java-library'
apply plugin: 'kotlin'
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
}
sourceCompatibility = "7"
targetCompatibility = "7"
buildscript {
ext.kotlin_version = '1.3.31'
repositories {
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
repositories {
mavenCentral()
}
compileKotlin {
kotlinOptions {
jvmTarget = "1.8"
}
}
compileTestKotlin {
kotlinOptions {
jvmTarget = "1.8"
}
}
我只是不知道将externalNativeBuild
指令放在哪里。
答案 0 :(得分:0)
我相信您刚刚描述了理想的设置。我猜只有一个细节丢失了:这个独立的模块将是一个Android Library模块。 official reference解释了如何在Android Studio中创建此类模块,或如何将现有的应用程序模块转换为库。
当他们成熟并且想要将此类库分发给其他开发人员时,您可以导出编译后的AAR,无需访问C ++源代码就可以使用它,甚至不需要安装NDK。