- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在开发 android 原生应用程序,我已经为他们准备好了 图书馆项目包含这些应用程序的所有常用工具。
我正在使用 jfrog artifactory 导入我的库,并且运行良好;现在我想使用 git 和子模块 让我的图书馆在我的项目中作为一个模块能够同时在应用程序和库上工作。
但是现在(在我包含两个模块(应用程序和库)的项目中),构建失败了......
我之前尝试过很多事情来寻求帮助......我认为问题来自两个模块之间的重复依赖关系,因为没有库子模块构建是可以的。
这是堆栈跟踪的开头:
C:\Users\sri\.gradle\caches\transforms-2\files-2.1\841047937c984e1ac263db2768d03619\jetified-objenesis-3.0.1.jar: D8: MethodHandle.invoke and MethodHandle.invokeExact are only supported starting with Android O (--min-api 26)
Stack trace:
com.android.tools.r8.errors.a: MethodHandle.invoke and MethodHandle.invokeExact are only supported starting with Android O (--min-api 26)
at com.android.tools.r8.errors.a.a(:7)
...........
//end
* What went wrong:
Execution failed for task ':app:dexBuilderDebug'.
> There was a failure while executing work items
> A failure occurred while executing com.android.build.gradle.internal.dexing.DexWorkAction
> Failed to process: C:\Users\sri\.gradle\caches\transforms-2\files-2.1\841047937c984e1ac263db2768d03619\jetified-objenesis-3.0.1.jar
1.应用程序build.gradle文件
buildscript {
ext.versions = [
'kotlin' : '1.4.0',
'powermock' : '2.0.7',
'constraintLayout' : '2.0.0',
'butterknife' : '10.2.3',
'jsonwebtoken' : '0.10.7',
'retrofit' : '2.9.0',
'supportLibrary' : '1.1.0',
'module' : '3.5.10',
'okhttp' : '4.8.1',
'mockito' : '3.3.3',
'lifecycleVersion' : '2.2.0',
'junit' : '4.13',
'eventBus' : '3.2.0',
'picasso' : '2.71828',
'swipeRefreshLayout': '1.1.0',
'cardView' : '1.0.0',
'viewPager' : '1.0.0',
'material' : '1.3.0-alpha02',
'rxjava' : '3.0.4',
'rxandroid' : '3.0.0',
'spoon' : '1.7.1'
]
repositories {
jcenter()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.0.1'
classpath "io.realm:realm-gradle-plugin:7.0.1"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${versions.kotlin}"
classpath 'com.google.gms:google-services:4.3.3'
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.2.0'
}
}
allprojects {
repositories {
jcenter()
google()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
应用级:
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-kapt'
apply plugin: 'realm-android'
apply plugin: 'kotlin-android-extensions'
apply plugin: 'com.google.firebase.crashlytics'
//.. signing removed ... //
android {
signingConfigs {
//........
}
compileSdkVersion 29
buildToolsVersion "29.0.2"
defaultConfig {
applicationId "com......."
minSdkVersion 21
targetSdkVersion 29
versionCode 42
versionName versionProperties['versionName']
vectorDrawables.useSupportLibrary = true
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
ndk.abiFilters 'arm64-v8a', 'armeabi-v7a', 'x86', 'x86_64'
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
signingConfig signingConfigs.release
}
debug {
applicationIdSuffix ".debug"
versionNameSuffix '-debug'
}
}
lintOptions {
abortOnError false
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
buildFeatures {
viewBinding true
dataBinding true
}
configurations {
all*.exclude group: 'xmlpull', module: 'xmlpull'
all*.exclude group: 'xpp3', module: 'xpp3_min'
}
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
androidTestImplementation('androidx.test.espresso:espresso-core:3.3.0-rc03', {
exclude group: 'com.android.support', module: 'support-annotations'
})
implementation project(':mob-android-qualiacmodule:qualiac-module')
implementation "androidx.appcompat:appcompat:1.2.0"
implementation "com.google.android.material:material:${versions.material}"
implementation "androidx.constraintlayout:constraintlayout:${versions.constraintLayout}"
implementation "androidx.swiperefreshlayout:swiperefreshlayout:${versions.swipeRefreshLayout}"
implementation "androidx.cardview:cardview:${versions.cardView}"
implementation 'androidx.annotation:annotation:1.1.0'
implementation 'com.google.firebase:firebase-analytics:17.5.0'
implementation 'com.google.firebase:firebase-crashlytics:17.2.1'
implementation 'com.google.android.gms:play-services-maps:17.0.0'
implementation 'com.google.firebase:firebase-ml-vision:24.1.0'
implementation 'com.google.android.gms:play-services-vision-image-label:18.0.5'
implementation 'com.google.android.gms:play-services-vision-common:19.1.1'
implementation 'com.google.android.gms:play-services-vision:20.1.1'
kapt "com.jakewharton:butterknife-compiler:${versions.butterknife}"
implementation "com.jakewharton:butterknife:${versions.butterknife}"
implementation "com.squareup.retrofit2:retrofit:${versions.retrofit}"
implementation "com.squareup.retrofit2:converter-gson:${versions.retrofit}"
implementation "com.squareup.retrofit2:adapter-rxjava2:${versions.retrofit}"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:${versions.kotlin}"
implementation "com.squareup.okhttp3:logging-interceptor:${versions.okhttp}"
implementation "com.squareup.okhttp3:mockwebserver:${versions.okhttp}"
implementation "com.squareup.okhttp3:okhttp:${versions.okhttp}"
implementation "org.greenrobot:eventbus:${versions.eventBus}"
implementation "io.reactivex.rxjava3:rxjava:${versions.rxjava}"
implementation "io.reactivex.rxjava3:rxandroid:${versions.rxandroid}"
implementation "com.squareup.picasso:picasso:${versions.picasso}"
implementation 'com.jakewharton.timber:timber:4.7.1'
implementation "androidx.core:core-ktx:1.3.1"
implementation "android.arch.lifecycle:extensions:1.1.1"
api 'com.google.guava:guava:29.0-jre'
implementation "androidx.viewpager2:viewpager2:${versions.viewPager}"
implementation 'androidx.navigation:navigation-fragment-ktx:2.3.0'
implementation 'androidx.navigation:navigation-ui-ktx:2.3.0'
// ViewModel
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:${versions.lifecycleVersion}"
// LiveData
implementation "androidx.lifecycle:lifecycle-livedata-ktx:${versions.lifecycleVersion}"
// alternately - if using Java8, use the following instead of lifecycle-compiler
implementation "androidx.lifecycle:lifecycle-common-java8:${versions.lifecycleVersion}"
testImplementation 'junit:junit:4.13'
androidTestImplementation "com.squareup.spoon:spoon-client:${versions.spoon}"
androidTestImplementation 'junit:junit:4.13'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0-rc03'
androidTestImplementation 'androidx.test:runner:1.2.0'
androidTestImplementation 'androidx.test:rules:1.2.0'
androidTestImplementation 'androidx.test.espresso:espresso-contrib:3.3.0-rc03'
}
kapt {
generateStubs = true
}
android.applicationVariants.all { variant ->
variant.outputs.all {
def appName = "jobs"
outputFileName = variant.name == "debug" ? "app-debug.apk" : "${appName}-${variant.name}-${variant.versionName}.apk"
}
}
apply plugin: 'com.google.gms.google-services'
2.库build.gradle文件
buildscript {
ext.versions = [
'kotlin' : '1.3.72',
......
]
repositories {
jcenter()
google()
mavenCentral()
}
dependencies {
classpath "io.realm:realm-gradle-plugin:7.0.1"
classpath 'com.android.tools.build:gradle:4.0.1'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
classpath 'com.android.support:support-v4:28.0.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${versions.kotlin}"
classpath "org.jfrog.buildinfo:build-info-extractor-gradle:4.15.2"
}
}
allprojects {
repositories {
jcenter()
google()
mavenCentral()
maven {
url 'https://maven.fabric.io/public'
}
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
//库级别
apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-kapt'
apply plugin: 'realm-android'
apply plugin: 'com.jfrog.artifactory'
apply plugin: 'maven-publish'
apply plugin: 'kotlin-android-extensions'
def libraryVersion = '3.5.10'
android {
compileSdkVersion 29
buildToolsVersion "29.0.2"
defaultConfig {
minSdkVersion 21
targetSdkVersion 29
versionCode 1
versionName "1.0"
vectorDrawables.useSupportLibrary = true
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
multiDexEnabled true
ndk.abiFilters 'arm64-v8a', 'armeabi-v7a', 'x86', 'x86_64'
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
lintOptions {
abortOnError false
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = "1.8"
}
viewBinding {
enabled = true
}
dataBinding {
enabled = true
}
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
androidTestImplementation('androidx.test.espresso:espresso-core:3.3.0-rc03', {
exclude group: 'com.android.support', module: 'support-annotations'
})
implementation "androidx.appcompat:appcompat:${versions.supportLibrary}"
implementation "com.google.android.material:material:${versions.material}"
implementation "androidx.constraintlayout:constraintlayout:${versions.constraintLayout}"
implementation "androidx.swiperefreshlayout:swiperefreshlayout:${versions.swipeRefreshLayout}"
implementation 'com.google.firebase:firebase-ml-vision:24.0.3'
implementation 'com.google.android.gms:play-services-vision-image-label:18.0.5'
implementation 'com.google.android.gms:play-services-vision-common:19.1.1'
implementation 'com.google.android.gms:play-services-vision:20.1.1'
implementation 'com.google.android.gms:play-services-maps:17.0.0'
implementation "androidx.cardview:cardview:${versions.cardView}"
api 'com.google.firebase:firebase-core:17.4.4'
implementation "com.squareup.retrofit2:retrofit:${versions.retrofit}"
implementation "com.squareup.retrofit2:converter-gson:${versions.retrofit}"
implementation "com.squareup.retrofit2:adapter-rxjava2:${versions.retrofit}"
implementation "com.squareup.retrofit2:retrofit-mock:${versions.retrofit}"
implementation "org.greenrobot:eventbus:${versions.eventBus}"
api "com.squareup.okhttp3:logging-interceptor:${versions.okhttp}"
implementation "com.squareup.okhttp3:mockwebserver:${versions.okhttp}"
implementation "com.squareup.okhttp3:okhttp:${versions.okhttp}"
api "io.jsonwebtoken:jjwt-api:${versions.jsonwebtoken}"
runtimeOnly "io.jsonwebtoken:jjwt-impl:${versions.jsonwebtoken}"
runtimeOnly("io.jsonwebtoken:jjwt-orgjson:${versions.jsonwebtoken}") {
exclude group: 'org.json', module: 'json'
}
implementation "com.squareup.picasso:picasso:${versions.picasso}"
implementation "io.reactivex.rxjava3:rxjava:${versions.rxjava}"
implementation "io.reactivex.rxjava3:rxandroid:${versions.rxandroid}"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:${versions.kotlin}"
implementation "androidx.core:core-ktx:1.3.1"
testImplementation "junit:junit:${versions.junit}"
implementation "org.powermock:powermock-module-junit4:${versions.powermock}"
implementation "org.powermock:powermock-module-junit4-rule:${versions.powermock}"
implementation "org.powermock:powermock-api-mockito2:${versions.powermock}"
implementation "org.powermock:powermock-classloading-xstream:${versions.powermock}"
testImplementation 'org.mockito:mockito-core:3.4.6'
implementation 'androidx.test:core:1.2.0'
implementation 'androidx.test.ext:junit:1.1.1'
implementation 'androidx.test:runner:1.2.0'
implementation 'androidx.test:rules:1.2.0'
implementation "androidx.test.espresso:espresso-core:${versions.espresso}"
implementation "androidx.test.espresso:espresso-contrib:${versions.espresso}"
implementation "com.squareup.spoon:spoon-client:${versions.spoon}"
implementation "androidx.viewpager2:viewpager2:${versions.viewPager}"
// ViewModel
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:${versions.lifecycleVersion}"
// LiveData
implementation "androidx.lifecycle:lifecycle-livedata-ktx:${versions.lifecycleVersion}"
// alternately - if using Java8, use the following instead of lifecycle-compiler
implementation "androidx.lifecycle:lifecycle-common-java8:${versions.lifecycleVersion}"
androidTestImplementation 'androidx.test:core:1.2.0'
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
androidTestImplementation 'androidx.test:runner:1.2.0'
androidTestImplementation 'androidx.test:rules:1.2.0'
androidTestImplementation "androidx.test.espresso:espresso-contrib:${versions.espresso}"
api 'com.google.guava:guava:29.0-jre'
implementation "androidx.lifecycle:lifecycle-extensions:${versions.lifecycleVersion}"
}
最佳答案
我的解决方案是在 build.gradle 的末尾添加以下几行
allprojects {
configurations.all {
resolutionStrategy.force 'org.objenesis:objenesis:2.6'
}
}
感谢
https://github.com/mockito/mockito/issues/2007
关于android - com.android.tools.r8.errors.a : MethodHandle. 调用和 MethodHandle.invokeExact 仅支持从 Android O 开始,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63612606/
我的 processmaker 安装遇到了一些问题。我正在尝试使用本指南 [url]http://wiki.processmaker.com/index.php/ProcessMaker_Ubuntu
我正在使用 ShareKit。发送 SMS 消息使用 MFMessageComposeViewController,用户看到标题“文本”。我想将该标题更改为更能反射(reflect)实际可用内容的内容
我需要在我的一个针对 Gingerbread 的 Android 应用程序中使用操作栏和 fragment 的组合。所以我使用了 v7 支持库中的操作栏和 v4 支持库中的 fragment ,并使用
我明白为什么浏览器 vendor 不想帮助我阻止他们的 UI 线程。但是,我不明白为什么会有: Web Workers 中没有 sleep (2) 没有同步 WebSockets API 有一个syn
最近我的组织正在考虑使用 Docker。我们组使用的是cloudera CDH 5.1.2。 1) cloudera 是否与 Docker 容器兼容?2) docker 和cloudera 组合是否存
我正在尝试通过编译在 Mac 上安装 rsync 3.2.3。但是,我想安装所有功能。为此,它需要一些库,此处 ( https://download.samba.org/pub/rsync/INSTA
我一直在使用 PyDev 成功运行 nose 测试,并想试试 nose2。 所以我安装了它 pip install nose2 复制/粘贴来自 http://nose2.info/ 的示例代码进入名为
我想知道 LLVM 中是否有任何函数/方法可以在 LLVM IR 中添加 Open-MP 构造。 llvm-3.0 是否仍然支持 OpenMP 指令? 最佳答案 OpenMP 是一种高级语言扩展。因此
我对 CUDA 编程非常陌生。我正在浏览 SDK 附带的示例。我能够编译代码,但是当我运行它时,出现以下错误: "clock.cu(177) : CUDA Runtime API error 38:
RStudio 是用于 R 开发的出色 IDE。我想知道是否有任何方法可以很好地支持 HiDPI 分辨率? 我目前有 13 英寸显示器和 3200x1800 分辨率,甚至很难阅读 RStudio 选项
我正在寻找一种有助于为 Django 项目提供 RDF 支持的工具。 到目前为止,我发现了两个: django-rdf - 最后一次修改是在 4 年前,所以它看起来像是一个死项目。 djubby -
我刚刚尝试了一些 JS 核心原则,发现引擎评估链接的关系运算符而不会引发错误。相反,他们以我自己无法理解的方式进行评估。 console.log(1 4 > 3 > 2 > 1); //false,
我知道 etexteditor 和 vim/emacs。 是否有任何其他 Windows 编辑器支持类似 textmate 的片段(例如,您编写触发词,按 Tab,它更改为某些内容,再次按 Tab,它
我正在尝试找出验证给定集群的网络策略配置的最佳方法。 According to the documentation Network policies are implemented by the ne
很难说出这里问的是什么。这个问题是含糊的、模糊的、不完整的、过于宽泛的或修辞性的,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开它,visit the help center 。 已关
Z3 会支持 AUFBV 吗? 对于以下脚本: (set-logic AUFBV) (declare-fun x () (_ BitVec 16)) (declare-const t (Array (
使用分部类编写 NUnit 测试的优缺点是什么? 我要开始了: 亲:可以测试私有(private)方法 缺点:TDD 不再可能了 还有什么? 最佳答案 缺点:要么您必须测试与您发布的版本不同的构建,要
它很容易(对于 90% 的 aop 特性)在没有任何语言本身支持的情况下做到这一点,就像大多数动态语言如 python 和 ruby 一样。然而,Dojo在 1.3.2 上直接支持它.最新版本发生
我在我的 android 应用程序中使用亚洲字符,我已经了解到某些字符无法显示,因为系统字体不支持它们。我查询了一个包含亚洲字符的数据库,并且经常检索到无法显示的标志。这些情况对我的应用程序来说通常不
你好,我想实现一个控件,我想在用户键入@字符时启用该控件,直到未填充运行文本中的空格为止,它应该显示用户列表,@符号后键入的文本应该显示基于键盘字符的建议,就像我们在上面看到的那样Twitter 或
我是一名优秀的程序员,十分优秀!