Kotlin options dependencies for Jetpack compose

PHOTO EMBED

Sat Nov 13 2021 16:59:37 GMT+0000 (Coordinated Universal Time)

Saved by @Kapleshwar_U #kotlin

kotlinOptions {
        jvmTarget = '1.8'
        useIR = true
    }
buildFeatures {
        compose true
    }
    composeOptions {
        kotlinCompilerExtensionVersion compose_version
        kotlinCompilerVersion '1.5.21'
    }
    packagingOptions {
        resources {
            excludes += '/META-INF/{AL2.0,LGPL2.1}'
        }
    }
content_copyCOPY