gpt4 book ai didi

java - Gradle 返回包不存在

转载 作者:IT老高 更新时间:2023-10-28 21:13:12 26 4
gpt4 key购买 nike

我正在尝试将 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

最佳答案

接受的答案对我不起作用,但确实如此:

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

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

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

关于java - Gradle 返回包不存在,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16918347/

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