作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我在 android studio 中有一个应用程序代码,我想将它转换为库项目,以便我可以将它用作其他应用程序中的库。
library项目的build.gradle如下
apply plugin: 'com.android.library'
apply plugin: 'com.google.gms.google-services'
android {
compileSdkVersion 24
buildToolsVersion "24.0.3"
defaultConfig {
//applicationId "com.example"
minSdkVersion 16
targetSdkVersion 24
versionCode 1
versionName "1.0"
jackOptions {
enabled true
}
multiDexEnabled true
}
dexOptions {
javaMaxHeapSize "4g"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
testCompile 'junit:junit:4.12'
/* support libraries*/
compile 'com.android.support:appcompat-v7:23.1.0'
compile 'com.android.support:design:23.1.0'
compile 'com.android.support:recyclerview-v7:23.1.0'
compile 'com.android.support:support-v4:23.1.0'
compile 'com.android.support:support-annotations:23.1.0'
/* google play services libraries*/
compile 'com.google.android.gms:play-services-location:9.0.0'
}
我正在使用 android studio 2.2.1 和 jdk 1.8,
jdk 1.8 需要 jackOptions
它说:
错误:库项目无法启用 Jack。 jack 在默认配置中启用。如果我禁用 jackOptions,那么由于 jdk 1.8,我的库无法正常工作,它说 jackOptions 是必需的,并出现以下错误。
app:generateDebugSources
app:mockableAndroidJar
app:prepareDebugUnitTestDependencies
app:generateDebugAndroidTestSources
myapplication:generateDebugSources
myapplication:generateDebugAndroidTestSources
myapplication:mockableAndroidJar
myapplication:prepareDebugUnitTestDependencies
最佳答案
设置中的重复条目。只需从您的 build.gradle 中删除以下行:
jackOptions {
enabled true
}
关于android - 如何将 jackOptions 用于 android 库项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40107367/
我是一名优秀的程序员,十分优秀!