Skip to content

Commit

Permalink
Fix replace symbolCmd with empty string when merge contexts.
Browse files Browse the repository at this point in the history
  • Loading branch information
ekharkunov committed Oct 28, 2024
1 parent 3abf07b commit 193ab77
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions server/src/main/java/com/defold/extender/PlatformConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ public class PlatformConfig {
public String manifestMergeCmd;
public String bitcodeStripCmd;
public String proGuardSourceRe;
public String proGuardCmd = new String();
public String windresCmd = new String();
public String symbolCmd = new String();
public String symbolsPattern = new String();
public String proGuardCmd;
public String windresCmd;
public String symbolCmd;
public String symbolsPattern;
public List<String> allowedLibs;
public List<String> allowedFlags;
public List<String> allowedSymbols;
Expand Down

0 comments on commit 193ab77

Please sign in to comment.