Skip to content

Commit

Permalink
Revert "Add extension points for permissions."
Browse files Browse the repository at this point in the history
  • Loading branch information
freakboy3742 authored Jan 15, 2024
1 parent b261e6f commit 6b75409
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 17 deletions.
7 changes: 2 additions & 5 deletions cookiecutter.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,13 @@
"module_name": "{{ cookiecutter.app_name|replace('-', '_') }}",
"author": "Example Corporation",
"bundle": "com.example",
"info": "",
"entitlements": "",
"document_types": "",
"version": "1.0",
"build": "1",
"document_types": {},
"python_version": "3.X.0",
"universal_build": true,
"host_arch": "arm64",
"_extensions": [
"briefcase.integrations.cookiecutter.PythonVersionExtension",
"briefcase.integrations.cookiecutter.PListExtension"
"briefcase.integrations.cookiecutter.PythonVersionExtension"
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -83,11 +83,5 @@
{% endfor %}
</array>
{% endif %}
{%- if cookiecutter.info -%}
{%- for permission, value in cookiecutter.info.items() %}
<key>{{ permission }}</key>
{{ value|plist_value }}
{%- endfor -%}
{%- endif %}
</dict>
</plist>
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,9 @@
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
{%- if cookiecutter.entitlements -%}
{%- for entitlement, value in cookiecutter.entitlements.items() %}
<key>{{ entitlement }}</key>
{{ value|plist_value }}
{%- endfor -%}
{%- endif %}
<key>com.apple.security.cs.allow-unsigned-executable-memory</key>
<true/>
<key>com.apple.security.cs.disable-library-validation</key>
<true/>
</dict>
</plist>

0 comments on commit 6b75409

Please sign in to comment.