我对android编程很新。我曾在1年前在eclipse上编写了一个测试应用程序。现在有android工作室,我想尝试这个,因为它看起来很好用。
安装完成后,我遇到了一些问题,即使每个人都说这么容易做到这一点......直到现在我还没有找到它!但这是我的个人运气,我总是遇到一些奇怪的问题:)
到目前为止我做了什么:
(jdk-7u51-windows-i586)
并已安装C:\Program Files\Java\jdk1.7.0_51
首次运行 AS
表示我使用了错误的支持转换...不知道究竟是什么
然后我试着调试我的错误
在控制台中gradlew clean build
。
试图改变
dependencies {
compile 'com.android.support:gridlayout-v7:19.0.1'
compile 'com.android.support:appcompat-v7:+'
compile 'com.android.support:support-v4:18.0.0' <===
compile fileTree(dir: 'libs', include: ['*.jar'])
}
到
dependencies {
compile 'com.android.support:gridlayout-v7:19.0.1'
compile 'com.android.support:appcompat-v7:+'
compile 'com.android.support:support-v4:19.0.1' <===
compile fileTree(dir: 'libs', include: ['*.jar'])
}
这似乎解决了我的问题,直到那里......
但仍有此错误:
Gradle project sync failed.
Basic functionality (e.g. editing, debugging) will not work properly.
和
Gradle 'ProjectName' project refresh failed:
A fatal exception has occurred. Program will exit.
我尝试 THIS 但没有结果
有人可以帮我吗?
其他信息:
Google Reposetory 6
和 Android Support Library 19.0.1
已安装。
终端(ProjectFolder):gradlew clean build
结果:
Ran lint on variant release: 12 issues found
BUILD SUCCESSFUL
Gradle版本:gradle-1.10-all
答案 0 :(得分:0)
如果你想使用自动gradle魔法,你必须下载第一个谷歌存储库和Android支持存储库shrough SDK管理器(AS寡妇顶部的图标 - 带向下箭头的android)。