我在GitHub上分了一个项目。然后我使用Android Studio克隆它。但是当我尝试打开它时,它会在“根项目”中显示“无法找到属性”版本名称。我认为这与成绩设置有关? buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.2.3'
classpath 'com.github.dcendents:android-maven-plugin:1.2'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
def isReleaseBuild() {
return version.contains("SNAPSHOT") == false
}
allprojects {
version = VERSION_NAME
group = GROUP
repositories {
mavenCentral()
}
}
答案 0 :(得分:0)
在build.gradle(app)文件中添加此行。
defaultConfig { ... versionName“1.0” }