我用: android studio 1.5.1 java版“1.7.0_80”
我想创建一个新的android项目 Min Api-version = 15
但android studio无法创建新的应用程序,使用此标题打开一个对话框: “构建'MyApplication'Gradle项目信息” 其内容是: 文本:“Gradle:Resolve dependencies':app:_debugCompile'” 和progressBar;
遗憾的是,这个对话框已经打开很长时间了......
我有一些项目,但是当我想为他们构建gradle时,会向我显示错误:
Error:(3, 0) Gradle DSL method not found: 'android()'
Possible causes:The project 'e-project' may be using a version of the Android Gradle plug-in that does not contain the method (e.g. 'testCompile' was added in 1.1.0).
修复插件版本和同步项目 项目“电子项目”可能正在使用不包含该方法的Gradle版本。 openGradleSettings Gradle设置构建文件可能缺少Gradle插件。
“apply.gradle.plugin Apply Gradle plugin
编辑1:我添加了build.gradle
apply plugin: 'application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.2"
defaultConfig {
applicationId "com.e_example.android.app"
minSdkVersion 14
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:23.1.1'
compile 'com.android.support:design:23.1.1'
compile 'com.android.support:support-v4:23.1.1'
compile 'com.google.android.gms:play-services:8.4.0'
}