Skip to content

Commit bd975de

Browse files
committed
Added fix for webview name with setup.py apk
1 parent 0d491b9 commit bd975de

File tree

1 file changed

+3
-0
lines changed
  • pythonforandroid/bootstraps/webview/build

1 file changed

+3
-0
lines changed

pythonforandroid/bootstraps/webview/build/build.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -456,6 +456,9 @@ def parse_args(args=None):
456456
args = ap.parse_args(args)
457457
args.ignore_path = []
458458

459+
if args.name and args.name[0] == '"' and args.name[-1] == '"':
460+
args.name = args.name[1:-1]
461+
459462
if args.billing_pubkey:
460463
print('Billing not yet supported in sdl2 bootstrap!')
461464
exit(1)

0 commit comments

Comments
 (0)