From 71b9e99c520bacc2a865d58c4c9a4e8760bac517 Mon Sep 17 00:00:00 2001 From: Omikronpercy <47610945+Omikronpercy@users.noreply.github.com> Date: Fri, 24 Jul 2020 10:45:25 +0200 Subject: [PATCH] Add files via upload --- app/build.gradle | 78 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 78 insertions(+) create mode 100644 app/build.gradle diff --git a/app/build.gradle b/app/build.gradle new file mode 100644 index 0000000..78c2def --- /dev/null +++ b/app/build.gradle @@ -0,0 +1,78 @@ +/* + * GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 + * + * This program converts some imperial units to SI units for travel in the USA + * Copyright (C) <2019> + * + * This program 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. + * + * This program 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 this program. If not, see . + * / + * + * + */ + +apply plugin: 'com.android.application' + +android { + signingConfigs { + config1 { + keyAlias 'MyAndroidKey2' + keyPassword 'BYmy1yUN7UH2Lrofcya6' + storeFile file('C:/Users/ich/AndroidStudioProjects/keystore2.jks') + storePassword '3LtNPgY4ofqJNhWsRVLh' + + + } + } + compileSdkVersion 29 + buildToolsVersion '29.0.3' + defaultConfig { + applicationId 'uscartools.USTravelConverter' + minSdkVersion 15 + targetSdkVersion 29 + versionCode 3 + versionName "1.0" + testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" + } + buildTypes { + release { + minifyEnabled true + shrinkResources true + proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' + } + } + productFlavors { + } +} + +dependencies { + implementation fileTree(include: ['*.jar'], dir: 'libs') + androidTestImplementation('androidx.test.espresso:espresso-core:3.2.0', { + exclude group: 'com.android.support', module: 'support-annotations' + }) + implementation 'androidx.appcompat:appcompat:1.1.0' + implementation 'com.google.android.material:material:1.1.0' + testImplementation 'junit:junit:4.13' + implementation 'androidx.constraintlayout:constraintlayout:1.1.3' + implementation 'androidx.cardview:cardview:1.0.0' + implementation 'androidx.gridlayout:gridlayout:1.0.0' + implementation 'androidx.appcompat:appcompat:1.1.0' + implementation 'com.google.android.material:material:1.1.0' + implementation 'androidx.preference:preference:1.1.1' +} + +allprojects { + tasks.withType(JavaCompile) { + options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation" + } +} \ No newline at end of file