Error:(16, 0) Could not find method android() for arguments
Error:(16, 0) Could not find method android() for arguments
当我尝试在 android studio 中打开 pdf 查看器时出现错误 16,0 https://github.com/barteksc/AndroidPdfViewer
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.3'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3'
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5'
}
}
allprojects {
repositories {
jcenter()
}
}
android {
compileSdkVersion 15
buildToolsVersion '21.1.2'
}
具有一个模块的项目有两个 build.gradle 文件 - 一个是项目级别,另一个是应用程序级别。看来你把两者搞混了。
将 android 块移动到应用级别 build.gradle 文件,并且不要忘记包含 minSdkVersion 和 targetSdkVersion
当我尝试在 android studio 中打开 pdf 查看器时出现错误 16,0 https://github.com/barteksc/AndroidPdfViewer
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.3'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3'
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5'
}
}
allprojects {
repositories {
jcenter()
}
}
android {
compileSdkVersion 15
buildToolsVersion '21.1.2'
}
具有一个模块的项目有两个 build.gradle 文件 - 一个是项目级别,另一个是应用程序级别。看来你把两者搞混了。
将 android 块移动到应用级别 build.gradle 文件,并且不要忘记包含 minSdkVersion 和 targetSdkVersion