Update Gradle Scripts

This commit is contained in:
GuilhermeWerner 2021-05-23 15:37:24 -03:00
parent 0b027bebb4
commit 69279c97fd
3 changed files with 28 additions and 23 deletions

View file

@ -1,6 +1,6 @@
plugins {
id 'com.android.library'
id 'kotlin-android'
id "com.android.library"
id "kotlin-android"
}
android {
@ -20,7 +20,7 @@ android {
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
proguardFiles getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro"
}
}
@ -30,18 +30,18 @@ android {
}
kotlinOptions {
jvmTarget = '1.8'
jvmTarget = "1.8"
}
}
dependencies {
implementation files('libs/TribuFu.jar')
implementation files("libs/TribuFu.jar")
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation 'androidx.core:core-ktx:1.3.2'
implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'com.google.android.material:material:1.3.0'
testImplementation 'junit:junit:4.+'
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
implementation "androidx.core:core-ktx:1.3.2"
implementation "androidx.appcompat:appcompat:1.2.0"
implementation "com.google.android.material:material:1.3.0"
testImplementation "junit:junit:4.+"
androidTestImplementation "androidx.test.ext:junit:1.1.2"
androidTestImplementation "androidx.test.espresso:espresso-core:3.3.0"
}