Skip to content

Commit

Permalink
Merge pull request #135 from AbhiramVAnand/master
Browse files Browse the repository at this point in the history
fix: app crash on startup
  • Loading branch information
VishnuSanal authored Aug 4, 2024
2 parents 5124f09 + a65b19a commit 959ccdd
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ android {
minifyEnabled true
shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}
lintOptions {
checkReleaseBuilds false
Expand Down Expand Up @@ -73,12 +73,12 @@ dependencies {
implementation "androidx.room:room-runtime:$room_version"
annotationProcessor "androidx.room:room-compiler:$room_version"

implementation "ch.acra:acra-core:5.8.4"
implementation "ch.acra:acra-core:5.11.3"

implementation(platform("org.jetbrains.kotlin:kotlin-bom:1.8.0"))

compileOnly "com.google.auto.service:auto-service-annotations:1.0.1"
annotationProcessor "com.google.auto.service:auto-service:1.0.1"
compileOnly "com.google.auto.service:auto-service-annotations:1.1.1"
annotationProcessor "com.google.auto.service:auto-service:1.1.1"

implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ protected void attachBaseContext(Context base) {

ACRA.init(
this,
new CoreConfigurationBuilder(this)
new CoreConfigurationBuilder()
.withBuildConfigClass(BuildConfig.class)
.withReportFormat(StringFormat.JSON));
}
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

buildscript {

ext.kotlinVersion = '1.7.20'
ext.kotlinVersion = '1.9.0'

repositories {
google()
Expand Down

0 comments on commit 959ccdd

Please sign in to comment.