123456789101112131415161718 |
- apply plugin: 'com.android.library'
- apply plugin: 'kotlin-android'
- apply plugin: 'kotlin-kapt'
- apply from: rootProject.file('lib_base_config.gradle')
- android {
- buildFeatures {
- dataBinding = true
- viewBinding = true
- }
- }
- dependencies {
- implementation project(':cs_cptServices')
- }
|