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.1KB

12345678910111213141516171819202122232425262728293031323334
  1. apply plugin: 'com.android.application'
  2. apply plugin: 'kotlin-android'
  3. apply plugin: 'kotlin-android-extensions'
  4. android {
  5. compileSdkVersion 28
  6. defaultConfig {
  7. applicationId "com.chameth.yaotp"
  8. minSdkVersion 26
  9. targetSdkVersion 28
  10. versionCode 1
  11. versionName "1.0"
  12. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  13. }
  14. buildTypes {
  15. release {
  16. minifyEnabled false
  17. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  18. }
  19. }
  20. }
  21. dependencies {
  22. implementation fileTree(dir: 'libs', include: ['*.jar'])
  23. implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
  24. implementation 'com.android.support:appcompat-v7:28.0.0-rc01'
  25. implementation 'com.android.support.constraint:constraint-layout:1.1.2'
  26. testImplementation 'junit:junit:4.12'
  27. testImplementation 'com.natpryce:hamkrest:1.5.0.0'
  28. androidTestImplementation 'com.android.support.test:runner:1.0.2'
  29. androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
  30. }