8 lines
359 B
XML
8 lines
359 B
XML
|
{% if service %}
|
||
|
<service android:name="org.kivy.android.PythonService"
|
||
|
android:process=":pythonservice" />
|
||
|
{% endif %}
|
||
|
{% for name in service_names %}
|
||
|
<service android:name="{{ args.package }}.Service{{ name|capitalize }}"
|
||
|
android:process=":service_{{ name }}" />
|
||
|
{% endfor %}
|