最佳答案
我在开发一个应用程序。在我的应用程序中没有代码错误,但是当我尝试运行我的项目时,它会出现以下错误。
错误: (1,1)评估项目“ : app”时出现问题。
应用插件[ id‘ com.android.application’]失败
无法创建类型为‘ AppPlugin’的插件。
我尝试这也 Gradle is issuing an error "Could not create plugin of type 'AppPlugin'"
以下是我的 建造,分级文件
apply plugin: 'com.android.application'
apply plugin: 'com.google.gms.google-services'
android {
compileSdkVersion 23
buildToolsVersion "21.1.2"
defaultConfig {
applicationId "com.praval.healthfreak"
minSdkVersion 15
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'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.2.1'
compile 'com.google.android.gms:play-services:8.3.0'
compile 'de.hdodenhof:circleimageview:1.3.0'
compile 'com.android.support:design:23.2.1'
compile files('libs/YouTubeAndroidPlayerApi.jar')
}