Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ plugins {

android {
namespace = "com.google.firebase.example.fireeats"
compileSdk = 36
compileSdk = 37
defaultConfig {
applicationId = "com.google.firebase.example.fireeats"
minSdk = 23
targetSdk = 36
targetSdk = 37
Comment on lines +9 to +13

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

Upgrading compileSdk and targetSdk to 37 is premature as Android API level 37 is not yet a stable or widely released SDK version. This can cause build failures or compilation issues in environments where the SDK is not available. It is recommended to revert these to a stable or supported SDK version (such as 36 or 35).

    compileSdk = 36
    defaultConfig {
        applicationId = "com.google.firebase.example.fireeats"
        minSdk = 23
        targetSdk = 36

versionCode = 1
versionName = "1.0"

Expand Down Expand Up @@ -40,7 +40,7 @@ android {

dependencies {
// Import the Firebase BoM (see: https://firebase.google.com/docs/android/learn-more#bom)
implementation(platform("com.google.firebase:firebase-bom:34.14.0"))
implementation(platform("com.google.firebase:firebase-bom:34.14.1"))

// Firestore
implementation("com.google.firebase:firebase-firestore")
Expand Down
Loading