我正在尝试在android studio中导入这个库
https://github.com/edmodo/range-bar
我是在本地下载的,然后我右键点击了我的项目,选择Open Module Settings
选中Modules
点击模块列表中的+
并选择Import Module
并导入图书馆。
然后我点击了Dependencies
标签,点击了+
,然后添加了我刚刚添加的模块。
当我尝试构建项目时,出现错误package com.edmodo.rangebar does not exist
导入库时我错过了什么?
答案 0 :(得分:0)
我能够以其他方式做到这一点。 首先我在eclipse中导入它然后从eclipse导出它与gradle项目。
然后在android studio中,只导入gradle.build文件,在导入之前,在gradle.bulde和gradle> wrapper> gradle-wrapper.properties中进行一些小的更改。
在geadle.build中更改类路径'com.android.tools.build:gradle:0.5.+'到classpath'com.android.tools.build:gradle:0.6。+'
in gradle> wrapper> gradle-wrapper.properties将distributionUrl = http \://services.gradle.org/distributions/gradle-1.6-bin.zip更改为distributionUrl = http \://services.gradle.org/分布/ gradle-1.8-bin.zip
希望这对你有帮助。