Gradle 退货包不存在

2022-09-01 07:02:42

我正在尝试将gson库添加到我的Android项目中(我正在使用Andrdoid-studio进行开发)。

为了添加库,我以这种方式更改了AppProject/AppName/build.gradle文件:

buildscript {
    repositories {
        mavenCentral()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:0.4'
    }
}
apply plugin: 'android'

repositories {
    mavenCentral()
}

dependencies {
    compile files('libs/android-support-v4.jar')
    compile 'com.google.code.gson:gson:2.2.4'
}

android {
    compileSdkVersion 17
    buildToolsVersion "17.0.0"

    defaultConfig {
        minSdkVersion 4
        targetSdkVersion 16
    }
}

它似乎工作,直到我尝试使用它。

当我尝试将其包含在:

import com.google.code.gson;

Gradle抱怨肯定:

Gradle: error: package com.google does not exist

答案 1

接受的答案对我不起作用,但这确实有效:

  • 下载 GSON JAR 文件并将其复制到应用程序项目中的 /libs/ 文件夹中。
  • 在项目的根级别打开 build.gradle 文件,然后编辑依赖项以包含新的.jar文件:

    dependencies {
        compile fileTree(dir: 'libs', include: '*.jar')
    }
    
  • 生成>重建项目

(可选)您可以使用文件而不是 fileTree 指定一个或多个特定的 JAR 文件,例如:compile files('libs/google-gson-1.7.1/gson-1.7.1.jar')


答案 2

一个可能有用的解决方案是尝试将项目与Gradle文件同步

工具 -> Android -> 与 Gradle 文件同步项目


推荐