Added support for pyproject.tool.flet.android.manifest_application
This commit is contained in:
parent
b0327d5b67
commit
3b88f5e384
|
|
@ -11,6 +11,9 @@
|
||||||
android:label="{{ cookiecutter.product_name }}"
|
android:label="{{ cookiecutter.product_name }}"
|
||||||
android:name="${applicationName}"
|
android:name="${applicationName}"
|
||||||
android:enableOnBackInvokedCallback="true"
|
android:enableOnBackInvokedCallback="true"
|
||||||
|
{% for k, v in pyproject.tool.flet.android.manifest_application.items() %}
|
||||||
|
android:{{ k }}="{{ v }}"
|
||||||
|
{% endfor %}
|
||||||
android:icon="@mipmap/ic_launcher">
|
android:icon="@mipmap/ic_launcher">
|
||||||
<!-- flet: meta-data {% for k, v in cookiecutter.options.android_meta_data.items() %} -->
|
<!-- flet: meta-data {% for k, v in cookiecutter.options.android_meta_data.items() %} -->
|
||||||
<meta-data android:name="{{ k }}" android:value="{{ v }}" />
|
<meta-data android:name="{{ k }}" android:value="{{ v }}" />
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue