Skip to content
This repository has been archived by the owner on Nov 7, 2023. It is now read-only.

Commit

Permalink
refactor: disable obfuscation
Browse files Browse the repository at this point in the history
  • Loading branch information
zyrouge committed Oct 17, 2021
1 parent a91e9ef commit 355683a
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion cli/flutter-cli/build/android/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const logger = new Logger("build:android");

export const build = async () => {
await promisifyChildProcess(
await spawn("flutter", ["build", "apk", "--obfuscate"], config.base)
await spawn("flutter", ["build", "apk"], config.base)
);

const out = join(
Expand Down
2 changes: 1 addition & 1 deletion cli/flutter-cli/build/ios/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const logger = new Logger("build:ios");

export const build = async () => {
await promisifyChildProcess(
await spawn("flutter", ["build", "ios", "--no-codesign", "--obfuscate"], config.base)
await spawn("flutter", ["build", "ios", "--no-codesign"], config.base)
);

const zip = new AdmZip();
Expand Down
2 changes: 1 addition & 1 deletion cli/flutter-cli/build/linux/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const logger = new Logger("build:linux");

export const build = async () => {
await promisifyChildProcess(
await spawn("flutter", ["build", "linux", "--obfuscate"], config.base)
await spawn("flutter", ["build", "linux"], config.base)
);
logger.log(`Generated binaries at ${buildDir}`);
};
2 changes: 1 addition & 1 deletion cli/flutter-cli/build/macos/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const logger = new Logger("build:macos");

export const build = async () => {
await promisifyChildProcess(
await spawn("flutter", ["build", "macos", "--obfuscate"], config.base)
await spawn("flutter", ["build", "macos"], config.base)
);
logger.log(`Generated binaries at ${buildDir}`);
};
2 changes: 1 addition & 1 deletion cli/flutter-cli/build/windows/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const logger = new Logger("build:windows");

export const build = async () => {
await promisifyChildProcess(
await spawn("flutter", ["build", "windows", "--obfuscate"], config.base)
await spawn("flutter", ["build", "windows"], config.base)
);
logger.log(`Generated binaries at ${buildDir}`);

Expand Down

0 comments on commit 355683a

Please sign in to comment.