Advertisement
Guest User

Untitled

a guest
Oct 14th, 2019
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. plugins {
  2. id("com.android.application")
  3. id("kotlin-android")
  4. id("kotlin-kapt")
  5. id("kotlin-android-extensions")
  6. }
  7.  
  8. android {
  9. compileSdkVersion(28)
  10. defaultConfig {
  11. applicationId = "com.jay.launcherdemo"
  12. minSdkVersion(25)
  13. targetSdkVersion(28)
  14. versionCode = 1
  15. versionName = "1.0"
  16. testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
  17. }
  18.  
  19. }
  20.  
  21. dependencies {
  22. implementation(fileTree ("dir" to "libs", "include" to "*.jar"))
  23. implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk7:${Versions.kotlin}")
  24. implementation("androidx.appcompat:appcompat:1.1.0")
  25. implementation("androidx.core:core-ktx:1.1.0")
  26. implementation("androidx.constraintlayout:constraintlayout:1.1.3")
  27. implementation("androidx.legacy:legacy-support-v4:1.0.0")
  28. implementation(Deps.AndroidX.recyclerView)
  29.  
  30. testImplementation("junit:junit:4.12")
  31. androidTestImplementation("androidx.test:runner:1.2.0")
  32. androidTestImplementation("androidx.test.espresso:espresso-core:3.2.0")
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement