| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- plugins {
- id 'com.android.dynamic-feature'
- id 'org.jetbrains.kotlin.android'
- id 'org.jetbrains.kotlin.kapt'
- id 'kotlin-parcelize'
- }
- android {
- namespace 'com.adealink.weparty.party'
- compileSdk libs.versions.compileSdk.get().toInteger()
- defaultConfig {
- minSdk libs.versions.minSdk.get().toInteger()
- testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
- }
- buildTypes {
- release {
- debuggable false
- }
- }
- viewBinding {
- enabled = true
- }
- compileOptions {
- sourceCompatibility JavaVersion.VERSION_17
- targetCompatibility JavaVersion.VERSION_17
- }
- kotlinOptions {
- jvmTarget = JavaVersion.VERSION_17.majorVersion
- }
- }
- dependencies {
- implementation project(":app")
- //frame
- kapt libs.frame.router.compiler
- //test
- testImplementation libs.junit
- androidTestImplementation libs.androidx.junit
- androidTestImplementation libs.androidx.espresso.core
- }
|