Skip to content

Commit

Permalink
Fallback to empty string, when maps key is unavailable in env
Browse files Browse the repository at this point in the history
  • Loading branch information
pdenert committed Mar 4, 2025
1 parent cae40a6 commit f9949b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dev/e2e_app/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ android {
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
manifestPlaceholders = [
mapsApiKey: System.getenv("MAPS_API_KEY")
mapsApiKey: System.getenv("MAPS_API_KEY") ?: ""
]
testInstrumentationRunner "pl.leancode.patrol.PatrolJUnitRunner"
testInstrumentationRunnerArguments clearPackageData: "true"
Expand Down

0 comments on commit f9949b2

Please sign in to comment.