File tree 2 files changed +5
-7
lines changed
2 files changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -232,8 +232,9 @@ def make_package(args):
232
232
233
233
# Figure out if application has service part
234
234
service = False
235
- if args .dir :
236
- service_main = join (realpath (args .dir ), 'service' , 'main.py' )
235
+ directory = args .private or args .dir
236
+ if directory :
237
+ service_main = join (realpath (directory ), 'service' , 'main.py' )
237
238
if os .path .exists (service_main ):
238
239
service = True
239
240
Original file line number Diff line number Diff line change 42
42
43
43
{% if args.launcher %}
44
44
<activity android : name =" org.renpy.android.ProjectChooser"
45
- android : label =" @string/iconName"
46
- >
45
+ android : label =" @string/iconName" >
47
46
48
47
<intent-filter >
49
48
<action android : name =" android.intent.action.MAIN" />
55
54
56
55
{% if service %}
57
56
<service android : name =" org.renpy.android.PythonService"
58
- android : process =" :PythonService"
59
- >
60
- </service >
57
+ android : process =" :PythonService" />
61
58
{% endif %}
62
59
63
60
</application >
You can’t perform that action at this time.
0 commit comments