plugins { id 'com.android.application' id 'org.jetbrains.kotlin.android' id 'dagger.hilt.android.plugin' id 'kotlin-kapt' } android { compileSdk 32 defaultConfig { applicationId "com.piriurna.androiddog" minSdk 26 targetSdk 32 versionCode 1 versionName "1.0" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" vectorDrawables { useSupportLibrary true } } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' buildConfigField("String", "BASE_URL", "\"https://api.thedogapi.com/v1/\"") buildConfigField("Long", "READ_TIMEOUT", "15L") buildConfigField("Long", "CONNECT_TIMEOUT", "15L") } debug { debuggable true minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' buildConfigField("String", "BASE_URL", "\"https://api.thedogapi.com/v1/\"") buildConfigField("Long", "READ_TIMEOUT", "15L") buildConfigField("Long", "CONNECT_TIMEOUT", "15L") } } compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 } kotlinOptions { jvmTarget = '1.8' } buildFeatures { compose true } composeOptions { kotlinCompilerExtensionVersion compose_version } packagingOptions { resources { excludes += '/META-INF/{AL2.0,LGPL2.1}' } } } dependencies { implementation project(':domain') implementation project(':data') implementation project(':common') implementation 'androidx.core:core-ktx:1.7.0' implementation rootProject.libraries.compose implementation "androidx.compose.material:material:$compose_version" implementation "androidx.compose.ui:ui-tooling-preview:$compose_version" implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.3.1' implementation 'androidx.activity:activity-compose:1.3.1' implementation 'com.google.android.material:material:1.6.1' testImplementation 'junit:junit:4.13.2' androidTestImplementation 'androidx.test.ext:junit:1.1.3' androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0' androidTestImplementation "androidx.compose.ui:ui-test-junit4:$compose_version" debugImplementation "androidx.compose.ui:ui-tooling:$compose_version" debugImplementation "androidx.compose.ui:ui-test-manifest:$compose_version" implementation rootProject.libraries.accompanist implementation rootProject.libraries.hiltAndroid kapt rootProject.libraries.hiltAndroidCompiler implementation rootProject.libraries.hiltLifecycleViewmodel implementation rootProject.libraries.hiltNavigationCompose }