Skip to content

Commit 5045775

Browse files
CalumMcCallmarcoconti83
authored andcommitted
fix: reset log flag to off (#2116)
- Also interpret "aPR" as a non-debug build, currently only builds with the spellt-out "Prod" word are interpreted as production builds.
1 parent c5606b4 commit 5045775

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ ext {
2222
playServicesVersion = '15.0.1'
2323
audioVersion = System.getenv("AUDIO_VERSION") ?: '1.209.0@aar'
2424
stethoVersion = '1.5.0'
25-
zMessagingVersion = "141.0.2267"
25+
zMessagingVersion = "141.0.2269"
2626
paging_version = "1.0.0"
2727

2828
avsVersion = '4.9.170@aar'
@@ -320,7 +320,7 @@ dependencies {
320320
// TODO when there are different SE APIs in dev vs internal/prod)
321321
boolean internal = true
322322
for (String taskName : gradle.startParameter.taskNames) {
323-
if (taskName.contains("Prod") || taskName.contains("Candidate")) {
323+
if (taskName.contains("Prod") || taskName.contains("Candidate") || taskName == "aPR") {
324324
internal = false
325325
break
326326
}

0 commit comments

Comments
 (0)