Yet Another OTP generator
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

build.gradle 1.6KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. apply plugin: 'com.android.application'
  2. apply plugin: 'kotlin-android'
  3. apply plugin: 'kotlin-android-extensions'
  4. apply plugin: 'kotlin-kapt'
  5. android {
  6. compileSdkVersion 28
  7. defaultConfig {
  8. applicationId "com.chameth.yaotp"
  9. minSdkVersion 26
  10. targetSdkVersion 28
  11. versionCode 1
  12. versionName "1.0"
  13. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  14. }
  15. buildTypes {
  16. release {
  17. minifyEnabled false
  18. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  19. }
  20. }
  21. dataBinding {
  22. enabled true
  23. }
  24. }
  25. dependencies {
  26. def lifecycle_version = "2.0.0-rc01"
  27. def support_version = "1.0.0-rc01"
  28. implementation fileTree(dir: 'libs', include: ['*.jar'])
  29. implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
  30. implementation "androidx.appcompat:appcompat:$support_version"
  31. implementation "androidx.recyclerview:recyclerview:$support_version"
  32. implementation "androidx.lifecycle:lifecycle-extensions:$lifecycle_version"
  33. testImplementation 'junit:junit:4.12'
  34. testImplementation 'com.natpryce:hamkrest:1.5.0.0'
  35. testImplementation "androidx.arch.core:core-testing:$lifecycle_version"
  36. testImplementation "com.nhaarman.mockitokotlin2:mockito-kotlin:2.0.0-RC1"
  37. testImplementation "org.mockito:mockito-inline:2.19.0"
  38. androidTestImplementation "androidx.test:runner:$support_version"
  39. androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0-alpha4'
  40. }