gpt4 book ai didi

android - 将 jar 库导入 android-studio

转载 作者:IT王子 更新时间:2023-10-29 00:07:14 24 4
gpt4 key购买 nike

android-studio 0.2.7
Fedora 18

你好,

我正在尝试将 jtwitter jar 添加到我的项目中。

首先我尝试执行以下操作:

1) Drag the jtwitter.jar into the root directory of my project explorer, see picture
2) File | project structure
3) Modules | yamba-yamba | dependencies
4) Click the plus sign | jars or directories | and navigate to jtwitter jar | click ok

project explorer

当我导入 jar 文件时,出现以下错误:

import winterwell.jtwitter.Twitter;

Cannot resolve symbol winterwell
Gradle: error: package winterwell.jtwitter does not exist

我研究发现android-studio有一些问题,你必须自己编辑build.gradle文件。

所以我尝试将其添加到我的 build.gradle 文件中:

dependencies {
compile files('libs/jtwitter.jar')

build.gradle

并得到一条错误消息:无法解析符号依赖项

另一个问题,libs 文件夹在哪里。是指External Libraries吗?

最佳答案

试试这个...

  1. 在应用文件夹下创建 libs 文件夹。
  2. 将 .jar 文件添加到 libs 文件夹。
  3. 然后将 .jar 文件添加到应用的 build.gradle 依赖项中。
  4. 最终将项目与 Gradle 文件同步。

1.创建libs文件夹:

enter image description here

2.添加.jar到libs文件夹:

enter image description here

3.编辑应用的build.gradle依赖:

  • 打开 app/build.gradle

enter image description here

4.将项目与 Gradle 文件同步:

  • 最后将 .jar 文件添加到您的应用程序中。

enter image description here

更新:

这里我要将org.eclipse.paho.client.mqttv3.jar文件导入到我们的app模块中。

  1. 复制您的 jar 文件并将其粘贴到名为 libs 的目录中。

open project structure

  1. 按 Ctrl + Alt + Shift + s 或单击工具栏上的项目结构图标。

project structure

  1. 然后选择要导入的.jar 文件的模块,然后选择依赖项选项卡。

add jar

  1. 单击加号图标,然后选择文件依赖项

File dependency

  1. 选择.jar文件路径,点击OK构建gradle。

jar path

  1. 最后我们将 .jar 文件导入到我们的模块中。

imported jar file

关于android - 将 jar 库导入 android-studio,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18735923/

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