Skip to content

Commit

Permalink
Added exists check
Browse files Browse the repository at this point in the history
  • Loading branch information
AmniX committed Sep 30, 2024
1 parent 8d100e0 commit 9c468a4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion example-android/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ plugins {
}

val localProperties = Properties().apply {
rootProject.file("local.properties").reader().use(::load)
if (rootProject.file("local.properties").exists())
rootProject.file("local.properties").reader().use(::load)
}

android {
Expand Down

0 comments on commit 9c468a4

Please sign in to comment.