我试图在Android Studio(使用Java)中编译我的项目,出现了以下错误:
Could not find org.jetbrains.kotlin:kotlin-stdlib:1.1.3-2.
Searched in the following locations:
- https://maven.fabric.io/public/org/jetbrains/kotlin/kotlin-stdlib/1.1.3-2/kotlin-stdlib-1.1.3-2.pom
- https://maven.fabric.io/public/org/jetbrains/kotlin/kotlin-stdlib/1.1.3-2/kotlin-stdlib-1.1.3-2.jar
- https://dl.google.com/dl/android/maven2/org/jetbrains/kotlin/kotlin-stdlib/1.1.3-2/kotlin-stdlib-1.1.3-2.pom
- https://dl.google.com/dl/android/maven2/org/jetbrains/kotlin/kotlin-stdlib/1.1.3-2/kotlin-stdlib-1.1.3-2.jar
因为我没有使用kotlin,我不明白为什么它被要求编译我的项目。
buildscript {
repositories {
maven { url 'https://maven.fabric.io/public' }
google()
}
dependencies {
classpath 'io.fabric.tools:gradle:1.27.1'
classpath 'com.android.tools.build:gradle:3.0.0'
}
}
apply plugin: 'com.android.application'
apply plugin: 'io.fabric'
repositories {
maven { url 'https://maven.fabric.io/public' }
}
android {
compileSdkVersion 27
defaultConfig {
applicationId "com.project.test"
minSdkVersion 22
targetSdkVersion 27
versionCode 10
versionName "0.19"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
dataBinding.enabled = true
testOptions {
unitTests.all {
jvmArgs '-XX:MaxPermSize=256m'
}
unitTests.returnDefaultValues = true
}
packagingOptions {
exclude 'META-INF/proguard/androidx-annotations.pro'
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:27.1.1'
testImplementation 'junit:junit:4.12'
testImplementation 'org.json:json:20180130'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
implementation 'com.android.support:design:27.1.1'
implementation 'com.squareup.okhttp3:okhttp:3.10.0'
implementation 'com.github.paolorotolo:expandableheightlistview:1.0.0'
implementation 'com.google.code.gson:gson:2.8.5'
def room_version = "1.1.1"
implementation "android.arch.persistence.room:runtime:$room_version"
annotationProcessor "android.arch.persistence.room:compiler:$room_version"
// optional - RxJava support for Room
implementation "android.arch.persistence.room:rxjava2:$room_version"
// optional - Guava support for Room, including Optional and ListenableFuture
//implementation "android.arch.persistence.room:guava:$room_version"
// Converter
implementation "android.arch.persistence.room:runtime:1.1.1"
annotationProcessor "android.arch.persistence.room:compiler:1.1.1"
implementation 'com.google.code.gson:gson:2.8.5'
implementation 'com.github.PhilJay:MPAndroidChart:v3.0.2'
testImplementation "org.powermock:powermock-module-junit4:1.7.4"
testImplementation "org.powermock:powermock-api-mockito2:1.7.4"
// WorkManager
implementation "android.arch.work:work-runtime:1.0.0-beta02"
// Power menu
implementation "com.github.skydoves:powermenu:2.0.5"
// Crashlytics
implementation('com.crashlytics.sdk.android:crashlytics:2.9.5@aar') {
transitive = true
}
}
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
maven { url "https://jitpack.io" }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
dependencies {
}
提前谢谢你。
从应用程序模块中删除buildscript
块build.gradle
。它覆盖了顶层build.gradle
提供的任何内容,并且缺少了Kotlin所在的JCenter
repo。
操作系统:Windows 10 x64 离子:4.12.0 科尔多瓦:8.1.2 分级:4.10.1 我还在[project_name]\platforms\android中创建了一个gradle.properties文件,在该文件中我为代理指定了http和https设置。和我在gradle-wrapper.properties文件中所做的一样。 ionic-v1构建[11:26:25]调用sas
问题内容: 更新到Android Studio 3.1之后,我遇到了这个错误。 注意:我使用的是Java而不是Kotlin 问题答案: 像这样工作
在尝试导入我的Cordova android项目到android studio时,我遇到以下错误,如何纠正这个问题 找不到org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.60-eap-25。
AndroidStudio 2.2.3无法解决我的RealmRecycorViewAdapter引用。我直接从Realm站点跟随了RecyclerViewAdpper示例。有人能帮我弄清楚为什么它找不到RealmRecyclerViewAdapter吗? 以下是我的进口声明: 这是我的项目级gradle文件: 这是我的应用程序级gradle文件: com.android.application应用
我想更新Android Gradle插件,但我遇到了这个错误: 这些是我添加来更新Android Gradle插件(build.gradle文件)的行:
当将android studio更新到3.3RC1并构建项目(在以前版本的android studio中完美运行)时,它会显示以下错误: 根据此错误,我已将kotlin版本 这是我的建筑Gradle