gpt4 book ai didi

android - Android Studio Gradle无法识别com.google.code.gson:gson:2.3.1

转载 作者:行者123 更新时间:2023-12-03 06:26:21 27 4
gpt4 key购买 nike

使用gradle与Android Studio开发应用。我已经添加了此依赖项:

compile 'com.android.support:appcompat-v7:23.0.1'
compile 'com.squareup.retrofit:retrofit:1.9.0'
compile 'com.google.code.gson:gson:2.3.1'

但它说:
Error:A problem occurred configuring project ':app'.
> Could not download gson.jar (com.google.code.gson:gson:2.3.1)
> Could not get resource 'https://jcenter.bintray.com/com/google/code/gson/gson/2.3.1/gson-2.3.1.jar'.
> Could not GET 'https://jcenter.bintray.com/com/google/code/gson/gson/2.3.1/gson-2.3.1.jar'.
> Connection to https://jcenter.bintray.com refused

我的build.gradle文件的完整源代码

项目:
// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
repositories {
jcenter()

}
dependencies {
classpath 'com.android.tools.build:gradle:1.3.0'

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}

allprojects {
repositories {
jcenter()
}
}

应用程序:
apply plugin: 'com.android.application'


android {
compileSdkVersion 23
buildToolsVersion "23.0.1"

defaultConfig {
applicationId "domain.myapplication"
minSdkVersion 11
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:23.0.1'
compile 'com.squareup.retrofit:retrofit:1.9.0'
compile 'com.google.code.gson:gson:2.3.1'

}

最佳答案

在您的gradle构建脚本中定义它。

buildscript {
repositories {
mavenCentral()
jcenter()
}
dependencies {
...
}
}

allprojects {
repositories {
mavenCentral()
}
}

关于android - Android Studio Gradle无法识别com.google.code.gson:gson:2.3.1,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32867144/

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