Skip to content

Commit 1928722

Browse files
satelsIvan Petuhov
authored and
Ivan Petuhov
committed
Fix UnicodeDecodeError on build.py
1 parent c3e8878 commit 1928722

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/build.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -206,6 +206,10 @@ def make_package(args):
206206

207207
args.numeric_version = str(version_code)
208208

209+
args.name = args.name.decode('utf-8')
210+
if args.icon_name:
211+
args.icon_name = args.icon_name.decode('utf-8')
212+
209213
versioned_name = args.name.replace(' ', '').replace('\'', '') + '-' + args.version
210214

211215
# Android SDK rev14 needs two ant execs (ex: debug installd) and new build.xml

0 commit comments

Comments
 (0)