build.gradle 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. apply plugin: 'com.android.application'
  2. apply plugin: 'kotlin-android'
  3. android {
  4. compileSdkVersion 25
  5. buildToolsVersion "25.0.3"
  6. defaultConfig {
  7. applicationId "ml.adamsprogs.bimba"
  8. minSdkVersion 19
  9. targetSdkVersion 25
  10. versionCode 5
  11. versionName "1.1.1"
  12. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  13. vectorDrawables.useSupportLibrary = true
  14. }
  15. buildTypes {
  16. release {
  17. minifyEnabled false
  18. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  19. }
  20. }
  21. }
  22. dependencies {
  23. implementation fileTree(dir: 'libs', include: ['*.jar'])
  24. androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
  25. exclude group: 'com.android.support', module: 'support-annotations'
  26. })
  27. implementation 'com.android.support:appcompat-v7:25.3.1'
  28. implementation 'com.android.support:cardview-v7:25.3.1'
  29. implementation 'com.android.support:design:25.3.1'
  30. implementation 'com.android.support:support-vector-drawable:25.3.1'
  31. testImplementation 'junit:junit:4.12'
  32. implementation 'com.android.support.constraint:constraint-layout:1.0.2'
  33. implementation "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
  34. implementation 'com.github.arimorty:floatingsearchview:2.1.1'
  35. implementation 'org.tukaani:xz:1.6'
  36. implementation 'com.google.code.gson:gson:2.8.1'
  37. implementation 'com.squareup.okhttp3:okhttp:3.8.1'
  38. //implementation 'com.gu.android:toolargetool:0.1.3@aar' // TooLargeTool
  39. }
  40. repositories {
  41. maven {
  42. url "https://maven.google.com"
  43. }
  44. mavenCentral()
  45. }
  46. apply plugin: 'kotlin-android-extensions'