Fetch the repository succeeded.
This action will force synchronization from zhouhuandev/BaseDemo, which will overwrite any changes that you have made since you forked the repository, and can not be recovered!!!
Synchronous operation will process in the background and will refresh the page when finishing processing. Please be patient.
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-kapt'
kapt {
arguments {
arg("AROUTER_MODULE_NAME", project.getName())
}
}
android {
compileSdkVersion rootProject.ext.compileVersion
buildToolsVersion rootProject.ext.buildToolsVersion
defaultConfig {
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetVersion
versionCode rootProject.ext.versionCode
versionName rootProject.ext.versionName
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles "consumer-rules.pro"
}
buildTypes {
debug {
buildConfigField "boolean", 'IS_DEBUG', 'true'
}
release {
buildConfigField "boolean", 'IS_DEBUG', 'false'
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
buildFeatures {
dataBinding true
// for view binding :
viewBinding true
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = '1.8'
}
}
dependencies {
def Depends = [
apis : rootProject.ext.baseBuildDepends.api,
implementations : rootProject.ext.baseBuildDepends.implementations,
kapt : rootProject.ext.baseBuildDepends.kapt,
compileOnly : rootProject.ext.baseBuildDepends.compile,
testImplementations: rootProject.ext.baseBuildDepends.testImpl,
]
Depends.apis.each { api it }
Depends.implementations.each { implementation it }
Depends.kapt.each { kapt it }
Depends.compileOnly.each { compileOnly it }
Depends.testImplementations.each { testImplementation it }
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。