Skip to content

Commit

Permalink
chore: remove firebase-database, firebase-analytics, firebase-storage
Browse files Browse the repository at this point in the history
  • Loading branch information
Nguyen Quang Minh committed Sep 15, 2024
1 parent 96dbcda commit cd02e95
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,10 @@ android {
buildFeatures {
viewBinding true
}
tasks.withType(JavaCompile) {
options.compilerArgs << "-Xlint:deprecation"
tasks.withType(JavaCompile).tap {
configureEach {
options.compilerArgs << "-Xlint:deprecation"
}
}
}

Expand All @@ -48,7 +50,6 @@ dependencies {
implementation 'com.google.android.material:material:1.12.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation 'androidx.compose.ui:ui-android:1.7.1'
implementation 'com.google.firebase:firebase-database:21.0.0'
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.2.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.6.1'
Expand Down Expand Up @@ -116,9 +117,5 @@ dependencies {

//firebase
implementation platform('com.google.firebase:firebase-bom:33.3.0')
implementation 'com.google.firebase:firebase-analytics'
implementation("com.google.firebase:firebase-firestore")
implementation 'com.google.firebase:firebase-storage'


}

0 comments on commit cd02e95

Please sign in to comment.