Skip to content

Commit

Permalink
Remove BuildTime config
Browse files Browse the repository at this point in the history
  • Loading branch information
ccomeaux committed Mar 25, 2024
1 parent 4bdb58d commit ac97e14
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
3 changes: 0 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,6 @@ android {
versionCode versionMajor * 1000000 + versionMinor * 10000 + versionPatch * 100 + versionBuild
versionName "${versionMajor}.${versionMinor}.${versionPatch}"

def buildTime = new GregorianCalendar().format("yyyy-MM-dd h:mm:ss a z")
buildConfigField 'String', 'BUILD_TIME', "\"${buildTime}\""

vectorDrawables.useSupportLibrary = true
}

Expand Down
1 change: 0 additions & 1 deletion app/src/main/java/com/boardgamegeek/BggApplication.kt
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,6 @@ class BggApplication : MultiDexApplication(), Configuration.Provider {
PreferenceManager.getDefaultSharedPreferences(this).getString(AccountPreferences.KEY_USERNAME, "")?.let {
if (it.isNotBlank()) firebase.setUserId(it.hashCode().toString())
}
firebase.setCustomKey("BUILD_TIME", BuildConfig.BUILD_TIME)
}
RemoteConfig.init()
FirebaseMessaging.getInstance().token.addOnCompleteListener { task: Task<String?> ->
Expand Down

0 comments on commit ac97e14

Please sign in to comment.