Manual signing and provisioning profile
This commit is contained in:
parent
301bb4b1d1
commit
e8a4f02852
|
|
@ -360,9 +360,13 @@
|
||||||
buildSettings = {
|
buildSettings = {
|
||||||
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
||||||
CLANG_ENABLE_MODULES = YES;
|
CLANG_ENABLE_MODULES = YES;
|
||||||
|
CODE_SIGN_STYLE = Manual;
|
||||||
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
|
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
|
||||||
{% if cookiecutter.team_id %}
|
{% if cookiecutter.team_id %}
|
||||||
DEVELOPMENT_TEAM = {{ cookiecutter.team_id }};
|
DEVELOPMENT_TEAM = "{{ cookiecutter.team_id }}";
|
||||||
|
{% endif %}
|
||||||
|
{% if cookiecutter.provisioning_profile %}
|
||||||
|
PROVISIONING_PROFILE_SPECIFIER = "{{ cookiecutter.provisioning_profile }}";
|
||||||
{% endif %}
|
{% endif %}
|
||||||
ENABLE_BITCODE = NO;
|
ENABLE_BITCODE = NO;
|
||||||
INFOPLIST_FILE = Runner/Info.plist;
|
INFOPLIST_FILE = Runner/Info.plist;
|
||||||
|
|
@ -541,9 +545,13 @@
|
||||||
buildSettings = {
|
buildSettings = {
|
||||||
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
||||||
CLANG_ENABLE_MODULES = YES;
|
CLANG_ENABLE_MODULES = YES;
|
||||||
|
CODE_SIGN_STYLE = Manual;
|
||||||
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
|
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
|
||||||
{% if cookiecutter.team_id %}
|
{% if cookiecutter.team_id %}
|
||||||
DEVELOPMENT_TEAM = {{ cookiecutter.team_id }};
|
DEVELOPMENT_TEAM = "{{ cookiecutter.team_id }}";
|
||||||
|
{% endif %}
|
||||||
|
{% if cookiecutter.provisioning_profile %}
|
||||||
|
PROVISIONING_PROFILE_SPECIFIER = "{{ cookiecutter.provisioning_profile }}";
|
||||||
{% endif %}
|
{% endif %}
|
||||||
ENABLE_BITCODE = NO;
|
ENABLE_BITCODE = NO;
|
||||||
INFOPLIST_FILE = Runner/Info.plist;
|
INFOPLIST_FILE = Runner/Info.plist;
|
||||||
|
|
@ -566,9 +574,13 @@
|
||||||
buildSettings = {
|
buildSettings = {
|
||||||
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
||||||
CLANG_ENABLE_MODULES = YES;
|
CLANG_ENABLE_MODULES = YES;
|
||||||
|
CODE_SIGN_STYLE = Manual;
|
||||||
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
|
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
|
||||||
{% if cookiecutter.team_id %}
|
{% if cookiecutter.team_id %}
|
||||||
DEVELOPMENT_TEAM = {{ cookiecutter.team_id }};
|
DEVELOPMENT_TEAM = "{{ cookiecutter.team_id }}";
|
||||||
|
{% endif %}
|
||||||
|
{% if cookiecutter.provisioning_profile %}
|
||||||
|
PROVISIONING_PROFILE_SPECIFIER = "{{ cookiecutter.provisioning_profile }}";
|
||||||
{% endif %}
|
{% endif %}
|
||||||
ENABLE_BITCODE = NO;
|
ENABLE_BITCODE = NO;
|
||||||
INFOPLIST_FILE = Runner/Info.plist;
|
INFOPLIST_FILE = Runner/Info.plist;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue