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
当我导入 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')
并收到一条错误消息:cannot resolve symbol dependencies
另一个问题,libs 文件夹在哪里。这是否意味着External Libraries
?