Skip to content

Instantly share code, notes, and snippets.

@paulouskunda
Created March 15, 2023 08:57
Show Gist options
  • Save paulouskunda/2c5be648258e14511d5bcf3b665c0d6f to your computer and use it in GitHub Desktop.
Save paulouskunda/2c5be648258e14511d5bcf3b665c0d6f to your computer and use it in GitHub Desktop.
plugins {
id 'com.android.application'
id 'org.jetbrains.kotlin.android'
id 'kotlinx-serialization'
}
// ...
dependencies {
implementation 'androidx.core:core-ktx:1.9.0'
implementation "androidx.compose.ui:ui:$compose_version"
implementation "androidx.compose.material:material:$compose_version"
implementation "androidx.compose.ui:ui-tooling-preview:$compose_version"
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.5.1'
implementation 'androidx.activity:activity-compose:1.3.1'
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
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("io.coil-kt:coil-compose:2.0.0-rc01")
implementation ("androidx.navigation:navigation-compose:2.5.3")
def ktor_version = "1.6.3"
implementation "io.ktor:ktor-client-core:$ktor_version"
implementation "io.ktor:ktor-client-android:$ktor_version"
implementation "io.ktor:ktor-client-serialization:$ktor_version"
implementation "io.ktor:ktor-client-logging:$ktor_version"
implementation "ch.qos.logback:logback-classic:1.2.3"
implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:1.4.1"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment