問題描述
我正在嘗試在 Android Studio 中運行我的項目,但出現以下錯誤:
I am attempting to run my project in Android Studio but the error appears below:
我已經跟蹤了許多來源,只是為了讓它運行并在這里結束,但不知道還能做什么.
I have followed many sources just to get this to run and have wound up here, but do not know what else to do.
如何配置此項目以運行?
How can I configure this project to run?
build.gradle:
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.9.+'
}
}
allprojects {
repositories {
mavenCentral()
}
}
android {
compileSdkVersion 19
buildToolsVersion "19.1"
}
settings.gradle:
include ':app'
local.properties:
sdk.dir=C:\Users\KJA\AppData\Local\Android\sdk
gradle.propertes:
# IDE (e.g. Android Studio) users:
# Settings specified in this file will override any Gradle settings
# configured through the IDE.
# For more details on how to configure your build environment visit
# http://www.gradle.org/docs/current/userguide/build_environment.html
# Specifies the JVM arguments used for the daemon process.
# The setting is particularly useful for tweaking memory settings.
# Default value: -Xmx10248m -XX:MaxPermSize=256m
# org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
# When configured, Gradle will run in incubating parallel mode.
# This option should only be used with decoupled projects. More details, visit
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true
推薦答案
我繼續從您提供的鏈接下載項目:http://javapapers.com/android/android-chat-bubble/
I went ahead and downloaded the project from the link you provided: http://javapapers.com/android/android-chat-bubble/
由于這是一個舊教程,您只需升級軟件、gradle、android 構建工具和插件.
Since this is an old tutorial, you simply need to upgrade the software, gradle, the android build tools and plugin.
- https://www.gradle.org/
- http://tools.android.com/tech-docs/new-build-system/version-compatibility
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.1.2'
}
}
allprojects {
repositories {
jcenter()
}
}
app/build.gradle:
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion '23.0.3'
defaultConfig {
minSdkVersion 9
targetSdkVersion 23
versionCode 1
versionName '1.0'
}
}
dependencies {
compile 'com.android.support:appcompat-v7:23.2.1'
}
然后運行gradle:
gradle installDebug
這篇關于未找到 Android Studio Gradle DSL 方法:'android()' -- 錯誤 (17,0)的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!