gpt4 book ai didi

android-studio - Android Studio - 程序类型已经存在 : org. hamcrest.CoreMatchers

转载 作者:行者123 更新时间:2023-12-03 15:52:07 24 4
gpt4 key购买 nike

我不知道为什么会出现这个错误:

Program type already present: org.hamcrest.CoreMatchers
Message{kind=ERROR, text=Program type already present: org.hamcrest.CoreMatchers, sources=[Unknown source file], tool name=Optional.of(D8)}

我在 build.gradle (Module: app) 的依赖范围内的代码是:
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:26.1.0'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
testImplementation ('junit:junit:4.12'){
exclude group: 'org.hamcrest', module: 'hamcrest-core'
}
androidTestImplementation 'com.android.support.test:runner:1.0.1'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
implementation 'com.monkeylearn:monkeylearn-java:0.1.4'

}

主要事件:
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import com.monkeylearn.MonkeyLearn;
import com.monkeylearn.MonkeyLearnException;
import com.monkeylearn.MonkeyLearnResponse;

public class MainActivity extends AppCompatActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

try {
MonkeyLearn ml = new MonkeyLearn("*******************************");
String moduleId = "*********";
String[] textList = {"This is a text to test your classifier", "This is some more text"};
MonkeyLearnResponse res = ml.classifiers.classify(moduleId, textList, true);
System.out.println( res.arrayResult );
} catch (MonkeyLearnException e) {
e.printStackTrace();
}
}
}

你有什么想法?

最佳答案

simple-json也有类似的问题在我回答的另一个问题 here .
我建议你对 monkeylearn-java 做同样的事情和 junit或任何其他非谷歌依赖项一一,我的意思是下载他们的 jar 文件并将它们放入 libs一个一个文件夹,找出是哪一个问题,留在libs文件夹。

我认为这是 Android Studio 或 Gradle 中的错误。

关于android-studio - Android Studio - 程序类型已经存在 : org. hamcrest.CoreMatchers,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49841688/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com