File tree Expand file tree Collapse file tree 2 files changed +5
-7
lines changed
Expand file tree Collapse file tree 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):
232232
233233 # Figure out if application has service part
234234 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' )
237238 if os .path .exists (service_main ):
238239 service = True
239240
Original file line number Diff line number Diff line change 4242
4343 {% if args.launcher %}
4444 <activity android : name =" org.renpy.android.ProjectChooser"
45- android : label =" @string/iconName"
46- >
45+ android : label =" @string/iconName" >
4746
4847 <intent-filter >
4948 <action android : name =" android.intent.action.MAIN" />
5554
5655 {% if service %}
5756 <service android : name =" org.renpy.android.PythonService"
58- android : process =" :PythonService"
59- >
60- </service >
57+ android : process =" :PythonService" />
6158 {% endif %}
6259
6360 </application >
You can’t perform that action at this time.
0 commit comments