Skip to content

Instantly share code, notes, and snippets.

@amoozeshbebin
Created December 5, 2023 11:16

Revisions

  1. amoozeshbebin created this gist Dec 5, 2023.
    18 changes: 18 additions & 0 deletions dependendys.kt
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,18 @@
    dependencies {

    implementation("androidx.core:core-ktx:1.12.0")
    implementation("androidx.appcompat:appcompat:1.6.1")
    implementation("com.google.android.material:material:1.10.0")
    implementation("androidx.constraintlayout:constraintlayout:2.1.4")
    testImplementation("junit:junit:4.13.2")
    androidTestImplementation("androidx.test.ext:junit:1.1.5")
    androidTestImplementation("androidx.test.espresso:espresso-core:3.5.1")
    implementation ("org.jetbrains:annotations:12.0")
    implementation ("org.jetbrains:annotations:13.0")
    implementation ("androidx.room:room-runtime:2.3.0")
    implementation ("androidx.room:room-compiler:2.3.0")
    implementation ("androidx.lifecycle:lifecycle-viewmodel-ktx:2.3.1")
    implementation ("androidx.room:room-ktx:2.3.0")


    }