build.gradle 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /*
  2. * Copyright (c) 2020.
  3. * This file is part of Metronome.
  4. *
  5. * Metronome 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. * Metronome 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 Metronome. If not, see <http://www.gnu.org/licenses/>.
  17. *
  18. */
  19. apply plugin: 'com.android.application'
  20. android {
  21. compileSdkVersion 33
  22. defaultConfig {
  23. applicationId "tech.waelk.radioactive.metronome"
  24. minSdkVersion 22
  25. targetSdkVersion 33
  26. versionCode 12
  27. versionName 'Americium'
  28. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  29. }
  30. buildTypes {
  31. release {
  32. minifyEnabled false
  33. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  34. }
  35. }
  36. buildToolsVersion = '33.0.0'
  37. }
  38. dependencies {
  39. implementation fileTree(dir: 'libs', include: ['*.jar'])
  40. implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
  41. implementation 'com.google.android.material:material:1.6.1'
  42. testImplementation 'junit:junit:4.13.2'
  43. androidTestImplementation 'androidx.test:runner:1.4.0'
  44. androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
  45. implementation 'com.github.GustavoRoss:Spanny:1.0.3'
  46. implementation 'com.fabiendevos:nanotasks:1.1.0'
  47. }