gpt4 book ai didi

android - 改造 2 依赖

转载 作者:行者123 更新时间:2023-11-29 19:09:17 24 4
gpt4 key购买 nike

我试图在我的项目中添加 Retrofit2。我做了这样的操作:

  • 添加到我的 build.gradle 依赖项 compile 'com.squareup.retrofit2:retrofit:2.1.0' - 不成功(Gradle 构建失败:文件无法解析)
  • 更新的 Android SDK 工具 - 它没有帮助
  • 放入 Android 和 Gradle 插件的项目配置版本:Android - 2.3.3,Gradle - 3.3。同样的结果:文件无法解析。
所有这些行动都没有成功。我更新了 Gradle(AS 为我提供了它,我接受了),但它也没有帮助。现在,在所有操作之后,我的项目需要花费大量时间来构建(在在线工作模式下需要 1 小时)。离线模式 - 2-3 分钟。
有谁知道,发生了什么事?

更新:我的 gradle 文件
模块

apply plugin: 'com.android.application'

android {
compileSdkVersion 25
buildToolsVersion "25.0.3"
compileOptions.encoding = "windows-1251"

defaultConfig {
applicationId "ua.grant.smart"
minSdkVersion 14
targetSdkVersion 25
versionCode 3
versionName "1.5"

}

buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}

dependencies {
compile 'com.android.support:support-core-ui:25.3.1'
compile 'com.android.support:support-fragment:25.3.1'
compile 'com.android.support:appcompat-v7:25.3.1'
compile 'com.android.support:design:25.3.1'
}
}
dependencies {
compile 'com.google.android.gms:play-services-maps:10.2.6'
compile 'com.android.support:appcompat-v7:25.3.1'
compile 'com.squareup.retrofit2:retrofit:2.1.0'
compile 'com.squareup.retrofit2:converter-gson:2.1.0'
}

应用(顶级)

buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.3'
}
}

allprojects {
repositories {
jcenter()
}
}

最佳答案

修改自

android {
compileSdkVersion 25
buildToolsVersion "25.0.3"
compileOptions.encoding = "windows-1251"

defaultConfig {
applicationId "ua.grant.smart"
minSdkVersion 14
targetSdkVersion 25
versionCode 3
versionName "1.5"

}

buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
dependencies {
compile 'com.android.support:support-core-ui:25.3.1'
compile 'com.android.support:support-fragment:25.3.1'
compile 'com.android.support:appcompat-v7:25.3.1'
compile 'com.android.support:design:25.3.1'
}
}
dependencies {
compile 'com.google.android.gms:play-services-maps:10.2.6'
compile 'com.android.support:appcompat-v7:25.3.1'
compile 'com.squareup.retrofit2:retrofit:2.1.0'
compile 'com.squareup.retrofit2:converter-gson:2.1.0'
}

android {
compileSdkVersion 25
buildToolsVersion "25.0.3"
compileOptions.encoding = "windows-1251"

defaultConfig {
applicationId "ua.grant.smart"
minSdkVersion 14
targetSdkVersion 25
versionCode 3
versionName "1.5"

}

buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
}

dependencies {
compile 'com.android.support:support-core-ui:25.3.1'
compile 'com.android.support:support-fragment:25.3.1'
compile 'com.android.support:appcompat-v7:25.3.1'
compile 'com.android.support:design:25.3.1'
compile 'com.google.android.gms:play-services-maps:10.2.6'
compile 'com.android.support:appcompat-v7:25.3.1'
compile 'com.squareup.retrofit2:retrofit:2.1.0'
compile 'com.squareup.retrofit2:converter-gson:2.1.0'
}

关于android - 改造 2 依赖,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45955322/

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