apply plugin: 'com.android.library' apply plugin: 'kotlin-android' apply plugin: 'kotlin-parcelize' apply plugin: 'com.google.devtools.ksp' android { namespace "com.github.k1rakishou.chan" compileSdk 34 defaultConfig { minSdkVersion 21 } buildTypes { release { minifyEnabled true } debug { minifyEnabled false } android { } } compileOptions { sourceCompatibility JavaVersion.VERSION_17 targetCompatibility JavaVersion.VERSION_17 } kotlinOptions { jvmTarget = '17' } } dependencies { implementation project(':core-common') implementation project(':core-settings') implementation project(':core-themes') implementation "org.jetbrains.kotlin:kotlin-stdlib:${versions.kotlin_version}" implementation "com.google.code.gson:gson:${versions.gson}" implementation 'androidx.annotation:annotation:1.2.0' testImplementation "junit:junit:${versions.junit}" androidTestImplementation 'androidx.test.ext:junit:1.1.2' androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0' }