代码拉取完成,页面将自动刷新
同步操作将从 zhouhuandev/BaseDemo 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
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 }
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。