Skip to content

Commit

Permalink
RTRSD-371 - removed unnecessary Production variant
Browse files Browse the repository at this point in the history
  • Loading branch information
xcadrik committed May 3, 2023
1 parent f71c432 commit 066b390
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion private
8 changes: 4 additions & 4 deletions tools/config-reader.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ android {
projectName = "openRmbtDebug"
// fix for openRMBT build because there is clean command before assembling which makes trouble because of null flavor
return
} else if (tskReqStr.contains("RmbtProductionDebug")) {
projectName = "rmbtProductionDebug"
} else if (tskReqStr.contains("RmbtDebug") && !tskReqStr.contains("Open")) {
projectName = "rmbtDebug"
// fix for production build
return
} else if (tskReqStr.contains("RmbtProductionRelease")) {
projectName = "rmbtProductionRelease"
} else if (tskReqStr.contains("RmbtRelease") && !tskReqStr.contains("Open")) {
projectName = "rmbtRelease"
// fix for production build
return
} else if (tskReqStr.contains("assemble")) {
Expand Down

0 comments on commit 066b390

Please sign in to comment.