Skip to content

Commit

Permalink
property check for apk git flow
Browse files Browse the repository at this point in the history
  • Loading branch information
naveenr-egov committed Dec 19, 2024
1 parent 3dc4031 commit 1977a98
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,14 @@ android {
signingConfig signingConfigs.debug
}
}

if (!project.hasProperty('USE_GOOGLE_SERVICES')) {
tasks.whenTaskAdded { task ->
if (task.name.contains("GoogleServices")) {
task.enabled = false
}
}
}
}

flutter {
Expand Down

0 comments on commit 1977a98

Please sign in to comment.