Updated dependencies.
This commit is contained in:
parent
d3f82cecd3
commit
98dc25b3b9
7 changed files with 59 additions and 30 deletions
|
@ -5,21 +5,20 @@ plugins {
|
|||
id 'kotlin-android'
|
||||
id 'kotlin-android-extensions'
|
||||
id 'kotlin-kapt'
|
||||
id 'org.jmailen.kotlinter'
|
||||
id 'com.github.ben-manes.versions' version '0.25.0'
|
||||
id 'io.gitlab.arturbosch.detekt' version '1.0.1'
|
||||
id 'com.github.ben-manes.versions' version '0.29.0'
|
||||
id 'io.gitlab.arturbosch.detekt' version '1.10.0'
|
||||
}
|
||||
|
||||
android {
|
||||
compileSdkVersion 28
|
||||
buildToolsVersion '28.0.3'
|
||||
compileSdkVersion 29
|
||||
buildToolsVersion '29.0.3'
|
||||
|
||||
defaultConfig {
|
||||
applicationId "net.thauvin.erik.android.tesremoteprogrammer"
|
||||
minSdkVersion 26
|
||||
targetSdkVersion 28
|
||||
targetSdkVersion 29
|
||||
versionCode 1
|
||||
versionName "1.0-alpha"
|
||||
versionName "1.0-beta"
|
||||
buildConfigField "long", "TIMESTAMP", System.currentTimeMillis() + "L"
|
||||
}
|
||||
buildTypes {
|
||||
|
@ -41,13 +40,13 @@ android {
|
|||
ext {
|
||||
anko_version = '0.10.8'
|
||||
support_version = "28.0.0"
|
||||
perms_dispatch_version = "4.5.0"
|
||||
perms_dispatch_version = "4.7.0"
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
||||
|
||||
implementation 'com.google.firebase:firebase-analytics:17.2.0'
|
||||
implementation 'com.google.firebase:firebase-analytics:17.4.4'
|
||||
implementation 'com.crashlytics.sdk.android:crashlytics:2.10.1'
|
||||
|
||||
implementation 'androidx.legacy:legacy-support-v13:1.0.0'
|
||||
|
@ -60,9 +59,9 @@ dependencies {
|
|||
implementation "org.jetbrains.anko:anko-support-v4:$anko_version"
|
||||
implementation "org.jetbrains.anko:anko-design:$anko_version"
|
||||
|
||||
implementation 'com.google.android.material:material:1.0.0'
|
||||
implementation 'com.google.android.material:material:1.1.0'
|
||||
|
||||
implementation group: 'com.google.code.gson', name: 'gson', version: '2.8.5'
|
||||
implementation group: 'com.google.code.gson', name: 'gson', version: '2.8.6'
|
||||
|
||||
// https://github.com/JakeWharton/ViewPagerIndicator
|
||||
implementation 'fr.avianey.com.viewpagerindicator:library:2.4.1.1@aar'
|
||||
|
@ -72,9 +71,9 @@ dependencies {
|
|||
kapt "org.permissionsdispatcher:permissionsdispatcher-processor:$perms_dispatch_version"
|
||||
|
||||
// https://github.com/medyo/android-about-page
|
||||
implementation 'com.github.medyo:android-about-page:1.2.5'
|
||||
implementation 'com.github.medyo:android-about-page:1.3'
|
||||
|
||||
testImplementation 'junit:junit:4.12'
|
||||
testImplementation 'junit:junit:4.13'
|
||||
}
|
||||
|
||||
repositories {
|
||||
|
@ -86,15 +85,8 @@ kapt {
|
|||
//generateStubs = true
|
||||
}
|
||||
|
||||
kotlinter {
|
||||
ignoreFailures = false
|
||||
reporters = ['html', 'plain']
|
||||
experimentalRules = false
|
||||
disabledRules = ['import-ordering']
|
||||
}
|
||||
|
||||
detekt {
|
||||
input = files("src/main/java")
|
||||
filters = ".*/resources/.*,.*/build/.*"
|
||||
//filters = ".*/resources/.*,.*/build/.*"
|
||||
baseline = file("detekt-baseline.xml")
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue