info plist complete

This commit is contained in:
Feodor Fitsner 2024-10-06 09:54:41 -07:00
parent c660ee9e52
commit 3262115a3f
2 changed files with 11 additions and 2 deletions

View File

@ -17,5 +17,8 @@
"web_renderer": "canvaskit", "web_renderer": "canvaskit",
"use_color_emoji": "false", "use_color_emoji": "false",
"split_per_abi": false, "split_per_abi": false,
"info_plist": {} "info_plist": {},
"macos_entitlements": [],
"android_permissions": {},
"android_features": {}
} }

View File

@ -56,6 +56,12 @@
<string>This app needs access to location.</string> <string>This app needs access to location.</string>
<!-- {% for k, v in cookiecutter.info_plist.items() %} --> <!-- {% for k, v in cookiecutter.info_plist.items() %} -->
<key>{{ k }}</key> <key>{{ k }}</key>
<!-- {% endfor %} --> <!-- {% if v is True %} -->
<true />
<!-- {% else if v is False %} -->
<false />
<!-- {% else %} -->
<string>{{ v }}</string>
<!-- {% endif %} {% endfor %} -->
</dict> </dict>
</plist> </plist>