Skip to content

Commit

Permalink
bumped down appcompat version
Browse files Browse the repository at this point in the history
due to dependency resolution issues
  • Loading branch information
kamaravichow committed Dec 2, 2021
1 parent 0d37e1b commit 4c572a3
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ android {

dependencies {
implementation 'androidx.core:core-ktx:1.6.0'
implementation 'androidx.appcompat:appcompat:1.4.0'
implementation 'androidx.appcompat:appcompat:1.3.1'
implementation 'com.google.android.material:material:1.4.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.2'

Expand Down
7 changes: 3 additions & 4 deletions lib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ android {
defaultConfig {
minSdkVersion 19
targetSdkVersion 31
versionCode 2
versionName "1.0.1"
versionCode 3
versionName "1.0.2"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles "consumer-rules.pro"
}
Expand All @@ -47,8 +47,7 @@ android {

dependencies {
implementation 'androidx.core:core-ktx:1.6.0'
implementation 'androidx.appcompat:appcompat:1.4.0'

implementation 'androidx.appcompat:appcompat:1.3.1'
testImplementation 'junit:junit:4.+'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
Expand Down
1 change: 1 addition & 0 deletions lib/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest package="me.aravi.nokill">


</manifest>
3 changes: 3 additions & 0 deletions lib/src/main/java/me/aravi/nokill/CrashHandler.kt
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
package me.aravi.nokill

import androidx.annotation.Keep

@Keep
interface CrashHandler {
fun uncaughtException(t: Thread, e: Throwable)
}
2 changes: 2 additions & 0 deletions lib/src/main/java/me/aravi/nokill/NoKill.kt
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@ package me.aravi.nokill

import android.os.Handler
import android.os.Looper
import androidx.annotation.Keep


@Keep
class NoKill {
private var mCrashHandler: CrashHandler? = null
private var instance: NoKill? = null
Expand Down

0 comments on commit 4c572a3

Please sign in to comment.