We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c3e8878 + 1928722 commit 6fcce61Copy full SHA for 6fcce61
src/build.py
@@ -206,6 +206,10 @@ def make_package(args):
206
207
args.numeric_version = str(version_code)
208
209
+ args.name = args.name.decode('utf-8')
210
+ if args.icon_name:
211
+ args.icon_name = args.icon_name.decode('utf-8')
212
+
213
versioned_name = args.name.replace(' ', '').replace('\'', '') + '-' + args.version
214
215
# Android SDK rev14 needs two ant execs (ex: debug installd) and new build.xml
0 commit comments