Last active
June 20, 2022 20:14
-
-
Save figonzal1/e53d9490700368ec45eb91be0d7d80ff to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//VERSION GROOVY | |
implementation fileTree(include: ['*.jar'], dir: 'libs') | |
implementation "androidx.core:core-ktx:1.8.0" | |
//VERSION DSL | |
implementation(fileTree("libs") { include(listOf("*.jar")) }) | |
implementation("androidx.core:core-ktx:1.8.0") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment