123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- /*
- * Copyright (c) 2020.
- * This file is part of Metronome.
- *
- * Metronome is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * Metronome is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with Metronome. If not, see <http://www.gnu.org/licenses/>.
- *
- */
- apply plugin: 'com.android.application'
- android {
- compileSdkVersion 33
- defaultConfig {
- applicationId "tech.waelk.radioactive.metronome"
- minSdkVersion 22
- targetSdkVersion 33
- versionCode 12
- versionName 'Americium'
- testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
- }
- }
- buildToolsVersion = '33.0.0'
- }
- dependencies {
- implementation fileTree(dir: 'libs', include: ['*.jar'])
- implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
- implementation 'com.google.android.material:material:1.6.1'
- testImplementation 'junit:junit:4.13.2'
- androidTestImplementation 'androidx.test:runner:1.4.0'
- androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
- implementation 'com.github.GustavoRoss:Spanny:1.0.3'
- implementation 'com.fabiendevos:nanotasks:1.1.0'
- }
|