plugins { id 'com.android.library' id 'kotlin-android' } android { compileSdk 34 defaultConfig { minSdkVersion 21 targetSdkVersion 34 consumerProguardFiles "consumer-rules.pro" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' } } compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 } kotlinOptions { jvmTarget = '1.8' } buildFeatures{ viewBinding = true } namespace 'com.rc.core' } dependencies { implementation project(':HttpCoreLibrary') api fileTree(dir: "libs", include: ["*.jar"]) implementation "org.jetbrains.kotlin:kotlin-stdlib:1.9.0" implementation "androidx.core:core-ktx:1.3.1" implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.0.0" implementation "androidx.appcompat:appcompat:1.2.0" implementation "com.google.android.material:material:1.2.1" implementation "com.github.CymChad:BaseRecyclerViewAdapterHelper:3.0.4" implementation "org.greenrobot:eventbus:3.2.0" }