build.gradle 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. /*
  2. * Copyright (c) 2020.
  3. * This file is part of Chooser.
  4. *
  5. * Chooser is free software: you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation, either version 3 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * Chooser is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with Chooser. If not, see <http://www.gnu.org/licenses/>.
  17. *
  18. */
  19. apply plugin: 'com.android.application'
  20. android {
  21. compileSdkVersion 29
  22. buildToolsVersion "29.0.3"
  23. defaultConfig {
  24. applicationId "tech.waelk.radioactive.choices"
  25. minSdkVersion 23
  26. targetSdkVersion 29
  27. versionCode 1
  28. versionName "1.0"
  29. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  30. }
  31. buildTypes {
  32. release {
  33. minifyEnabled false
  34. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  35. }
  36. }
  37. }
  38. dependencies {
  39. implementation fileTree(dir: 'libs', include: ['*.jar'])
  40. implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
  41. testImplementation 'junit:junit:4.12'
  42. implementation 'com.binaryfork:spanny:1.0.4'
  43. androidTestImplementation 'androidx.test.ext:junit:1.1.0'
  44. androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
  45. }