Skip to content

Instantly share code, notes, and snippets.

@figonzal1
Last active June 20, 2022 20:14
Show Gist options
  • Save figonzal1/e53d9490700368ec45eb91be0d7d80ff to your computer and use it in GitHub Desktop.
Save figonzal1/e53d9490700368ec45eb91be0d7d80ff to your computer and use it in GitHub Desktop.
//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