Skip to content

Commit 6a65d70

Browse files
authored
Merge pull request #72 from AppDevNext/FixCrashlyticBug
Fix crashlytic bug by update the libs
2 parents 8481081 + 6822477 commit 6a65d70

6 files changed

Lines changed: 17 additions & 17 deletions

File tree

LogcatCoreLib/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ android {
2121

2222
dependencies {
2323
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
24-
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.7"
24+
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.9"
2525
implementation "androidx.lifecycle:lifecycle-runtime-ktx:2.2.0"
2626
implementation 'com.google.code.gson:gson:2.8.6'
2727
implementation 'androidx.recyclerview:recyclerview:1.1.0'
28-
api 'com.google.android.material:material:1.2.0'
28+
api 'com.google.android.material:material:1.2.1'
2929
api 'com.jakewharton.timber:timber:4.7.1'
3030
}

LogcatCountlyLib/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ android {
99
versionName getTag()
1010
versionCode getGitCommitCount()
1111

12-
minSdkVersion 16
12+
minSdkVersion 17
1313
project.archivesBaseName = "LogcatCountly"
1414
}
1515

@@ -23,5 +23,5 @@ dependencies {
2323
api project(':LogcatCoreLib')
2424
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
2525

26-
api "ly.count.android:sdk:20.04.4"
26+
api "ly.count.android:sdk:20.04.5"
2727
}

LogcatCrashlyticLib/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@ dependencies {
2323
api project(':LogcatCoreLib')
2424
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
2525

26-
api 'com.google.firebase:firebase-analytics:17.5.0'
27-
api 'com.google.firebase:firebase-crashlytics:17.2.1'
26+
api 'com.google.firebase:firebase-analytics:17.6.0'
27+
api 'com.google.firebase:firebase-crashlytics:17.2.2'
2828
}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[![](https://jitpack.io/v/AppDevNext/Logcat.svg)](https://jitpack.io/#AppDevNext/Logcat)
22

3-
# LogcatLib - Show Logcat in release buildtype and Timber log when it logs to a file
3+
# Show Logcat in release buildtype and Timber log when it logs to a file
44

55
This library provides an easy way to show Logcat in `release` ! and Timber history, which was written to file.
66
Right Timber `FileLoggingTree.kt` is provided too

build.gradle

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
buildscript {
2-
ext.kotlin_version = '1.3.72'
2+
ext.kotlin_version = '1.4.10'
33
repositories {
44
google()
55
jcenter()
@@ -11,10 +11,10 @@ buildscript {
1111
dependencies {
1212
classpath 'com.android.tools.build:gradle:4.0.2'
1313
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
14-
classpath "org.jlleitschuh.gradle:ktlint-gradle:9.2.1"
14+
classpath "org.jlleitschuh.gradle:ktlint-gradle:9.4.1"
1515

16-
classpath 'com.google.gms:google-services:4.3.3'
17-
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.1.1'
16+
classpath 'com.google.gms:google-services:4.3.4'
17+
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.3.0'
1818
}
1919
}
2020

@@ -37,10 +37,10 @@ allprojects {
3737

3838
ext {
3939
propCompileSdkVersion = 30
40-
coreVersion = "1.2.0"
41-
runnerVersion = "1.1.1"
42-
extJUnitVersion = "1.1.1"
43-
espresso_core = "3.2.0"
40+
coreVersion = "1.3.0"
41+
runnerVersion = "1.1.2"
42+
extJUnitVersion = "1.1.2"
43+
espresso_core = "3.3.0"
4444
}
4545

4646
static def getTag() {

sample/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,12 @@ dependencies {
4646

4747
androidTestImplementation 'com.github.AppDevNext:Moka:0.4'
4848
androidTestImplementation "androidx.test.espresso:espresso-core:$espresso_core"
49-
androidTestImplementation 'androidx.test:rules:1.2.0'
49+
androidTestImplementation 'androidx.test:rules:1.3.0'
5050
androidTestImplementation "androidx.test:runner:$runnerVersion"
5151
androidTestImplementation "androidx.test:core:$coreVersion"
5252

5353
androidTestImplementation "androidx.test.ext:junit:$extJUnitVersion"
54-
androidTestImplementation "androidx.test.ext:truth:1.2.0"
54+
androidTestImplementation "androidx.test.ext:truth:1.3.0"
5555
androidTestImplementation "com.google.truth:truth:1.0.1"
5656
}
5757

0 commit comments

Comments
 (0)