Skip to content
This repository was archived by the owner on Jul 25, 2024. It is now read-only.

Commit 0f6dd02

Browse files
kunall17timabbott
authored andcommitted
Fix key(fabricKey) not found in gradle error in development.
1 parent 3ef5e8d commit 0f6dd02

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ android {
4848
release {
4949
minifyEnabled false
5050
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
51-
manifestPlaceholders = [ fabricKey : project.property("fabricKey")]
51+
manifestPlaceholders = [fabricKey: (project.findProperty("fabricKey") == null) ? "" : project.property("fabricKey")]
5252
buildConfigField "String", "GOOGLE_CLIENT_ID", "\"835904834568-77mtr5mtmpgspj9b051del9i9r5t4g4n.apps.googleusercontent.com\""
5353
}
5454

0 commit comments

Comments
 (0)