plugins { id 'com.android.library' id 'org.jetbrains.kotlin.android' } android { compileSdk 33 defaultConfig { minSdk 26 targetSdk 32 testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" consumerProguardFiles "consumer-rules.pro" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' } } buildFeatures { compose true } compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 } composeOptions { kotlinCompilerExtensionVersion "1.3.1" } kotlinOptions { jvmTarget = '1.8' } } dependencies { implementation 'androidx.core:core-ktx:1.9.0' implementation 'androidx.appcompat:appcompat:1.5.1' implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.1' implementation "androidx.compose.ui:ui:$compose_version" implementation "androidx.compose.material:material:$compose_version" implementation "androidx.compose.runtime:runtime-livedata:$compose_version" implementation "com.google.accompanist:accompanist-pager:0.23.1" implementation "com.google.accompanist:accompanist-flowlayout:0.26.4-beta" testImplementation 'junit:junit:4.13.2' androidTestImplementation 'androidx.test.ext:junit:1.1.3' androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0' androidTestImplementation "org.mockito.kotlin:mockito-kotlin:4.0.0" // lifecycle implementation "androidx.lifecycle:lifecycle-viewmodel-compose:2.5.1" // Compose testing dependencies androidTestImplementation "androidx.compose.ui:ui-test-junit4:$rootProject.compose_version" debugImplementation "androidx.compose.ui:ui-test-manifest:$rootProject.compose_version" }