Advertisement
Guest User

Untitled

a guest
Apr 22nd, 2019
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. ext {
  2. kotlinVersion = '1.3.11'
  3. appCompatVersion = "28.0.0"
  4.  
  5. junit4Version = "4.12"
  6.  
  7. libraries = [
  8. kotlinStdLib : "org.jetbrains.kotlin:kotlin-stdlib-jdk7:" + kotlinVersion,
  9. constraintLayout : "com.android.support.constraint:constraint-layout:" + constraintLayoutVersion
  10. ]
  11.  
  12. testLibraries = [
  13. junit4 : "junit:junit:" + junit4Version
  14. ]
  15.  
  16. androidTestLibraries = [
  17. testRunner: "com.android.support.test:runner:" + testRunnerVersion
  18. ]
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement