gpt4 book ai didi

java - gradle 依赖如何找到包?

转载 作者:行者123 更新时间:2023-12-01 11:22:37 25 4
gpt4 key购买 nike

我的 android studio 应用程序的 gradle 文件中有这个...`

apply plugin: 'com.android.application'

def ftcLibLocation = "../../../android/ftc_lib/ftc_app/FtcRobotController/libs"

android {
compileSdkVersion 21
buildToolsVersion "21.1.2"

defaultConfig {
applicationId "teamXXXX.testbot"
minSdkVersion 19
targetSdkVersion 21
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

dependencies {
compile 'com.android.support:appcompat-v7:22.1.1'
compile files('${ftcLibLocation}/FtcRobotController-debug.jar')
compile files('${ftcLibLocation}/FtcCommon-release.jar')
compile files('${ftcLibLocation}/ModernRobotics-release.jar')
compile files('${ftcLibLocation}/RobotCore-release.jar')
compile files('${ftcLibLocation}/WirelessP2p-release.jar')
compile files('${ftcLibLocation}/Analytics-release.jar')
compile files('${ftcLibLocation}/d2xx.jar')
}

然而,当我编译程序时,gradle/android studio 提示它找不到我知道位于这些 jar 中的包。

Error:(3, 47) error: package com.qualcomm.robotcore.eventloop.opmode does not exist

该包位于 ${ftcLibLocation}/RobotCore-release.jar 中,为什么构建没有找到它?

最佳答案

创建一个 libs 文件夹(与 src 目录相邻)并将所有 jar 包含在该目录中。

然后在您的 build.gradle 文件中,使用以下内容:

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
}

您不必单独编译每个依赖项。

关于java - gradle 依赖如何找到包?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31063931/

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