123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- plugins {
- id 'org.jetbrains.kotlin.android'
- }
- if (isModule) {
- apply plugin: 'com.android.application'
- } else {
- apply plugin: 'com.android.library'
- }
- android {
- viewBinding {
- enabled = true
- }
- dataBinding{
- enabled = true
- }
- compileSdk rootProject.ext.androidConfig.compileSdk
- defaultConfig {
- if (isModule) {
- applicationId rootProject.ext.applicationId.OUIGroup
- sourceSets {
- main {
- // 组件模式下调试
- manifest.srcFile 'src/main/debug/AndroidManifest.xml'
- }
- }
- }
- minSdk rootProject.ext.androidConfig.minSdk
- targetSdk rootProject.ext.androidConfig.targetSdk
- testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
- consumerProguardFiles "consumer-rules.pro"
- javaCompileOptions {
- annotationProcessorOptions {
- arguments = [AROUTER_MODULE_NAME: project.getName()]
- }
- }
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
- }
- }
- compileOptions {
- sourceCompatibility JavaVersion.VERSION_1_8
- targetCompatibility JavaVersion.VERSION_1_8
- }
- }
- dependencies {
- implementation 'androidx.appcompat:appcompat:1.3.0'
- implementation 'com.google.android.material:material:1.4.0'
- implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
- testImplementation 'junit:junit:4.13.2'
- androidTestImplementation 'androidx.test.ext:junit:1.1.3'
- androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
- implementation project(path: ':OUICore')
- implementation 'com.alibaba:arouter-api:1.5.2'
- annotationProcessor 'com.alibaba:arouter-compiler:1.5.2'
- implementation project(':OUICore')
- }
|