- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
升级gradle(也是gms)后,我出现了错误
程序类型已经存在:net.jcip.annotations.GuardedBy
消息{种类=错误,文本=程序类型已存在:net.jcip.annotations.GuardedBy,来源= [未知源文件],工具名称= Optional.of(D8)}
apply plugin: 'com.android.application'
configurations {
all*.exclude group: 'com.android.support', module: 'support-v4'
}
buildscript {
repositories {
jcenter()
mavenCentral()
}
}
def AAVersion = '4.6.0' // change this to your desired version, for
example the latest stable: 4.1.0
android {
signingConfigs {
config {
keyAlias 'toefl2017'
keyPassword 'sangohan1987'
storePassword 'sangohan1987'
}
}
compileSdkVersion 28
buildToolsVersion "28.0.0"
defaultConfig {
applicationId "com.ouamassi.widaf"
minSdkVersion 14
targetSdkVersion 28
versionCode 5
versionName "1.03"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
vectorDrawables.useSupportLibrary = true
javaCompileOptions{
annotationProcessorOptions{
includeCompileClasspath = true
}
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
buildTypes {
release {
minifyEnabled false
debuggable false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
signingConfig signingConfigs.config
}
debug {
}
}
packagingOptions {
exclude 'META-INF/DEPENDENCIES.txt'
exclude 'META-INF/DEPENDENCIES'
exclude 'META-INF/dependencies.txt'
exclude 'META-INF/LICENSE.txt'
exclude 'META-INF/LICENSE'
exclude 'META-INF/license.txt'
exclude 'META-INF/LGPL2.1'
exclude 'META-INF/NOTICE.txt'
exclude 'META-INF/NOTICE'
exclude 'META-INF/notice.txt'
exclude 'META-INF/ASL2.0'
}
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation ('com.android.billingclient:billing:1.2.2')
implementation ("org.androidannotations:androidannotations:$AAVersion")
implementation ("org.androidannotations:androidannotations-api:$AAVersion")
implementation ('com.google.android.gms:play-services:12.0.0')
implementation project(path: ':fivestarslibrary', configuration: 'default')
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.1'
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.3'
classpath 'com.google.gms:google-services:3.1.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
最佳答案
有了这个 :
./gradlew应用程序:依赖项
我获得了依赖项的详细信息,因此我检测到问题来自androidannotations
所以代替:
实现(“org.androidannotations:androidannotations:$ AAVersion”)
实现(“org.androidannotations:androidannotations-api:$ AAVersion”)
我不得不说:
注解处理器(“org.androidannotations:androidannotations:$ AAVersion”)
实现(“org.androidannotations:androidannotations-api:$ AAVersion”)
并添加:
multiDexEnabled是
实现'com.android.support:multidex:1.0.3'
关于android - 升级gradle之后:程序类型已经存在:net.jcip.annotations.GuardedBy,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55358360/
书中Java Concurrency in Practice第7章,第142、143页,我不太明白2句话: “线程应该被其所有者中断”。-然而,在第 141 页,一个扩展 Thread 的类已经暴露
在JCIP我们有一段代码如下所示: list 4.2: @ThreadSafe public class PersonSet { @GuardedBy("this") private
Brian Goetz 等人在 Java Concurrency in Practice 中提供了以下示例(缩短了 list 4.11)。 public class SafePoint { priva
在此code public class NoncancelableTask { public Task getNextTask(BlockingQueue queue) { b
最近阅读了 JCIP 注释,它们看起来很酷。去了该网站并查看了源代码。唯一的问题是 src jar 只包含注释...我没有看到在哪里可以找到实际上做任何事情的注释处理器!我是不是看错地方了,或者这些不
升级gradle(也是gms)后,我出现了错误 程序类型已经存在:net.jcip.annotations.GuardedBy 消息{种类=错误,文本=程序类型已存在:net.jcip.annotat
我想在我的 Java 代码中使用 @net.jcip.annotations.NotThreadSafe。我试图导入它是项目的 pom.xml 中的依赖项,如下所示。但是,我仍然收到错误消息:我的导入
JCIP将 protected 对象定义为: Guarded. A guarded object can be accessed only with a specific lock held. Gua
我正在实践中阅读java concuremcy。现在我达到了9.1章。但我没有在java上开发GUI应用程序。 引自书中: Why are GUIs Single-threaded? In the o
很多人读过《Java并发实践》,但为了方便起见,将代码粘贴到这里。 5.19 Memoizer 最终实现: public class Memoizer implements Computable {
我是一名优秀的程序员,十分优秀!