build.gradle 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. apply plugin: 'com.android.application'
  2. apply plugin: 'kotlin-android'
  3. apply plugin: 'kotlin-android-extensions'
  4. android {
  5. compileSdkVersion 28
  6. buildToolsVersion '28.0.3'
  7. defaultConfig {
  8. applicationId "ml.adamsprogs.bimba"
  9. minSdkVersion 19
  10. targetSdkVersion 28
  11. versionCode 15
  12. versionName "2.0"
  13. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  14. vectorDrawables.useSupportLibrary = true
  15. }
  16. buildTypes {
  17. release {
  18. minifyEnabled false
  19. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  20. }
  21. }
  22. }
  23. dependencies {
  24. implementation fileTree(include: ['*.jar'], dir: 'libs')
  25. androidTestImplementation('androidx.test.espresso:espresso-core:3.1.0', {
  26. exclude group: 'com.android.support', module: 'support-annotations'
  27. })
  28. implementation 'androidx.appcompat:appcompat:1.0.2'
  29. implementation 'androidx.cardview:cardview:1.0.0'
  30. implementation 'androidx.vectordrawable:vectordrawable:1.0.1'
  31. implementation 'androidx.constraintlayout:constraintlayout:2.0.0-alpha3'
  32. implementation 'com.google.android.material:material:1.1.0-alpha02'
  33. implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
  34. implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:0.27.0-eap13'
  35. implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:0.27.0-eap13'
  36. testImplementation 'junit:junit:4.12'
  37. implementation 'io.requery:sqlite-android:3.22.0'
  38. implementation 'com.google.code.gson:gson:2.8.2'
  39. implementation 'com.squareup.okhttp3:okhttp:3.10.0'
  40. implementation 'com.github.mancj:MaterialSearchBar:0.8.1'
  41. }
  42. repositories {
  43. maven { url "https://maven.google.com" }
  44. maven { url 'https://jitpack.io' }
  45. mavenCentral()
  46. }