Skip to content

Commit

Permalink
Add framework to support using crashlytics
Browse files Browse the repository at this point in the history
  • Loading branch information
AbandonedCart committed Feb 19, 2025
1 parent a949fb0 commit e5d8054
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
12 changes: 9 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ plugins {
id 'kotlin-android'
id 'kotlin-kapt'
id 'com.google.devtools.ksp' version '1.9.10-1.0.13'
// id 'com.google.firebase.crashlytics'
}

android {
Expand Down Expand Up @@ -123,7 +124,7 @@ android {

dependencies {
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:2.1.4'
implementation 'androidx.activity:activity-ktx:1.9.3'
implementation 'androidx.activity:activity-ktx:1.10.0'
implementation 'androidx.appcompat:appcompat:1.7.0'
implementation "androidx.browser:browser:1.8.0"
def androidx_camera = '1.4.1'
Expand All @@ -134,9 +135,9 @@ dependencies {
implementation 'androidx.cardview:cardview:1.0.0'
implementation 'androidx.core:core-ktx:1.15.0'
implementation 'androidx.core:core-splashscreen:1.0.1'
implementation 'androidx.fragment:fragment-ktx:1.8.5'
implementation 'androidx.fragment:fragment-ktx:1.8.6'
implementation 'androidx.preference:preference-ktx:1.2.1'
implementation 'androidx.recyclerview:recyclerview:1.3.2'
implementation 'androidx.recyclerview:recyclerview:1.4.0'
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
implementation 'androidx.webkit:webkit:1.12.1'
wearosImplementation "androidx.wear:wear:1.3.0"
Expand Down Expand Up @@ -165,4 +166,9 @@ dependencies {
implementation 'org.lsposed.hiddenapibypass:hiddenapibypass:4.3'

implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.9.0'

/* Firebase */
// implementation platform('com.google.firebase:firebase-bom:33.9.0')
// implementation("com.google.firebase:firebase-appcheck-playintegrity")
// implementation("com.google.firebase:firebase-crashlytics")
}
3 changes: 2 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ buildscript {
dependencies {
classpath 'com.android.tools.build:gradle:8.6.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.22"
// classpath 'com.google.firebase:firebase-crashlytics-gradle:3.0.3'

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
Expand All @@ -24,5 +25,5 @@ allprojects {
}

tasks.register('clean', Delete) {
delete rootProject.buildDir
delete getLayout().getBuildDirectory()
}

0 comments on commit e5d8054

Please sign in to comment.