首先我收到错误
config.ini是错误的。尝试重新创建它。
我在stackoverflow上搜索。我得到的一个解决方案是更新android studio 。 我去了android studio正在显示的链接。从网站下载zip文件(在以前的android studio文件夹中的不同文件夹中)。
现在我打开android studio(从最近更新的文件夹)。我收到错误
错误(1,0)插件太旧请更新到更新版本
我更新了我的sdk和所有建议sdk sugggested但我仍然有同样的错误
我的build.gradle(项目:xyz)
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.0.0-alpha2'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
}
}
我的 Build.grade(模块:app)
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.1"
defaultConfig {
applicationId "com.example.talha.test_fragement"
minSdkVersion 10
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
debug {
debuggable true
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:23.0.1'
compile 'com.android.support:support-v4:23.0.1'
compile 'com.google.android.gms:play-services-ads:8.1.0'
compile 'com.android.support:design:23.0.1'
compile 'com.github.bumptech.glide:glide:3.5.2'
compile 'com.squareup.picasso:picasso:2.5.2'
}
请建议我该怎么办?
答案 0 :(得分:0)
更改
classpath 'com.android.tools.build:gradle:2.0.0-alpha2'
要
classpath 'com.android.tools.build:gradle:1.5.0
使用稳定版并避免使用alpha版本。