-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f76e3b2
commit 71b9e99
Showing
1 changed file
with
78 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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> <Github: Omikronpercy> | ||
* | ||
* 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 <https://www.gnu.org/licenses/>. | ||
* / | ||
* | ||
* | ||
*/ | ||
|
||
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" | ||
} | ||
} |