// Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { ext.kotlin_version = '1.4.0' ext.roomVersion = '2.2.5' ext.archLifecycleVersion = '2.2.0' ext.coroutines = '1.3.4' ext.application_id = "com.quansu.heifengwuliu" ext.application_version_code = 5 ext.application_version_name = "1.0.5" ext.support_version = "29.0.2" ext.min_sdk_version = 23 ext.target_sdk_version = 30 ext.compile_sdk_version = 30 repositories { google() jcenter() mavenCentral() // add repository flatDir { dirs 'libs' } } dependencies { classpath 'com.android.tools.build:gradle:4.0.1' classpath 'com.billy.android:cc-register:1.1.2' // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" } } allprojects { repositories { google() jcenter() mavenCentral() // add repository maven { url "https://jitpack.io" } } } task clean(type: Delete) { delete rootProject.buildDir }