fwtoolkit 2.3.4 → 2.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6b39cca81c6acf7d8aed08904d66ef45b1ba61ae9748e4a3c3612ffb073f5479
4
- data.tar.gz: 6a8308c9456e782a137c633127af3e436bbd6983d2a8a2051c4d5270eac02128
3
+ metadata.gz: ed5afbc52cfbce555d1797292a6f9f72df3869f3b109f3d20c6656ed21b4d39c
4
+ data.tar.gz: 5223e8a57525eb6a3da08539a860ab44ea2954bfceef9e56e68c34866c7415b4
5
5
  SHA512:
6
- metadata.gz: fa7c48061f0c17980cd75e73cb6745a3fdf7f1e1ca2174081d9750a6730a9e80d8bd6ab4badbd0252347cb350629a7a90875626011d399a66ce3eaac69692b6c
7
- data.tar.gz: 8c96154d1daf03ae9688f78a43566b8d6c734030c5adf6ecce996ff844f86c20b8a9d1ea5cf9b1f696fce6e2a62532819716369fd7ca3996f577529421238586
6
+ metadata.gz: 1b7537afc8ca5867894bcb687ea2743c87793d030f1c5ea58f6b0274b2606169f37b609ef25a434360825ec8683d2b6d68f2c7f290c36742c2c6e71bdf582f1f
7
+ data.tar.gz: 69a8f3d8fec6e3c2cc6fa75afa9185aa2fe6989516ac6047fe17bde6798678f1e28f796bdba3adbb9d9264b2eaa9995070f5a17e5291ecf36d349b8c3682e6a3
@@ -5,11 +5,13 @@ Given /^a configured installation of FWToolkit for "([^"]*)" working for "([^"]*
5
5
  Given I'm using a clean home directory
6
6
  }
7
7
  steps %Q{
8
- And a directory named ".fwtoolkit" inside the home directory
9
- And a file named "#{File.join(Dir.home, '.fwtoolkit', 'config')}" with:
8
+ And a file named "#{File.join(ENV['CONFIG_PATH'] || Dir.home, '.fwtoolkitconfig')}" with:
10
9
  """
11
10
  developer_name: "#{dev_name}"
12
11
  organization_name: "#{company_name}"
12
+ organization_name: "Future Workshops"
13
+ target_platform: "13.0"
14
+ ci_server_url: "https://app.bitrise.io/dashboard"
13
15
  """
14
16
  }
15
17
  end
@@ -12,17 +12,37 @@ module FWToolkit
12
12
 
13
13
  source_root_templates!
14
14
 
15
- desc 'genereate [PROJECT NAME]', "Create a new bitrise.yml file for the project, based on a blank file"
16
- def generate(project_name)
15
+ desc 'genereate [PROJECT NAME] [PLATFORM]', "Create a new bitrise.yml file for the project, based on a blank file. Platform needs to be either ios or android. ios is used by default"
16
+ def generate(project_name, platform='ios')
17
17
  destination_root = Dir.pwd
18
18
 
19
- say "Creating bitrise.yml file in: #{File.expand_path destination_root}/bitrise.yml"
19
+ if platform == 'android'
20
+ invoke FWToolkit::Bitrise, 'android', [destination_root, project_name]
21
+ else
22
+ invoke FWToolkit::Bitrise, 'ios', [destination_root, project_name]
23
+ end
24
+ end
25
+
26
+ desc 'android [PROJECT ROOT PATH] [PACKAGE_NAME]', 'Creates a new Android bitrise YML configuration file'
27
+ def android(project_root, package_name)
28
+ say "Creating android bitrise.yml file in: #{File.expand_path project_root}/bitrise.yml"
29
+ destination_root = project_root
30
+ bitrise_file = File.join(project_root, 'bitrise.yml')
31
+
32
+ Projectfile.load_with_config! :project_name => package_name
33
+
34
+ template_config = { :target_platform => Config.target_platform,
35
+ :organization_name => Config.organization_name,
36
+ :project_creator => Config.developer_name,
37
+ :package_name => package_name }
38
+ template_config.merge! Projectfile.config
20
39
 
21
- invoke FWToolkit::Bitrise, 'new', [destination_root, project_name]
40
+ template_directory "templates/bitrise/android", destination_root, template_config
22
41
  end
23
42
 
24
- desc 'new', 'Creates a new bitrise YML configuration file'
25
- def new(project_root, project_name)
43
+ desc 'ios [PROJECT ROOT PATH] [PROJECT NAME]', 'Creates a new iOS bitrise YML configuration file'
44
+ def ios(project_root, project_name)
45
+ say "Creating ios bitrise.yml file in: #{File.expand_path project_root}/bitrise.yml"
26
46
  destination_root = project_root
27
47
  bitrise_file = File.join(project_root, 'bitrise.yml')
28
48
 
@@ -33,7 +53,7 @@ module FWToolkit
33
53
  :project_creator => Config.developer_name }
34
54
  template_config.merge! Projectfile.config
35
55
 
36
- template_directory "templates/bitrise", destination_root, template_config
56
+ template_directory "templates/bitrise/ios", destination_root, template_config
37
57
  end
38
58
 
39
59
  end
@@ -40,7 +40,7 @@ module FWToolkit
40
40
 
41
41
  invoke :conf_gemset, [destination_root]
42
42
 
43
- invoke FWToolkit::Bitrise, 'new', [destination_root, clean_project_name]
43
+ invoke FWToolkit::Bitrise, 'ios', [destination_root, clean_project_name]
44
44
 
45
45
  invoke FWToolkit::Xcode, 'new', [project_language, clean_project_name, class_prefix.upcase, File.join(Dir.pwd, clean_project_name)]
46
46
  invoke FWToolkit::Cocoapods, 'install', [destination_root]
@@ -5,12 +5,16 @@ module FWToolkit
5
5
  module Config
6
6
  include FWToolkit::ConfigFile
7
7
 
8
+ def self.base_path
9
+ ENV['CONFIG_PATH'] || ENV['HOME']
10
+ end
11
+
8
12
  def self.config_file
9
- File.join(ENV['HOME'], '.fwtoolkitconfig')
13
+ File.join(base_path, '.fwtoolkitconfig')
10
14
  end
11
15
 
12
16
  def self.old_file
13
- File.join(ENV['HOME'], '.fwtoolkit', 'config')
17
+ File.join(base_path, '.fwtoolkit', 'config')
14
18
  end
15
19
 
16
20
  def self.base_file
@@ -1,3 +1,3 @@
1
1
  module FWToolkit
2
- VERSION = "2.3.4"
2
+ VERSION = "2.6.0"
3
3
  end
@@ -0,0 +1,175 @@
1
+ ---
2
+ format_version: '8'
3
+ default_step_lib_source: https://github.com/bitrise-io/bitrise-steplib.git
4
+ project_type: android
5
+ trigger_map:
6
+ - push_branch: dev
7
+ workflow: staging
8
+ - push_branch: release/next
9
+ workflow: test_external
10
+ - push_branch: main
11
+ workflow: external
12
+ - pull_request_source_branch: "*"
13
+ workflow: pull_request
14
+ workflows:
15
+ pull_request:
16
+ envs:
17
+ - BUILD_FLAVOUR:
18
+ opts:
19
+ is_expand: true
20
+ - BUILD_TASK: Debug
21
+ opts:
22
+ is_expand: true
23
+ after_run:
24
+ - _preflight
25
+ - _test
26
+ - _commit_status
27
+ staging:
28
+ envs:
29
+ - KEYSTORE_NAME: fw_internal.keystore
30
+ opts:
31
+ is_expand: true
32
+ - KEYSTORE_ALIAS: Allinternal
33
+ opts:
34
+ is_expand: true
35
+ - PACKAGE_NAME: com.futureworkshops.<%= config[:package_name] %>
36
+ - KEYSTORE_PASSWORD: "$INTERNAL_KEYSTORE_PASSWORD"
37
+ - KEYALIAS_PASSWORD: "$INTERNAL_KEYALIAS_PASSWORD"
38
+ after_run:
39
+ - _preflight
40
+ - _build
41
+ - _deploy_bitrise
42
+ external:
43
+ envs:
44
+ - KEYSTORE_NAME:
45
+ opts:
46
+ is_expand: true
47
+ - KEYSTORE_ALIAS:
48
+ opts:
49
+ is_expand: true
50
+ - PACKAGE_NAME: <%= config[:package_name] %>
51
+ - KEYSTORE_PASSWORD:
52
+ - KEYALIAS_PASSWORD:
53
+ after_run:
54
+ - _preflight
55
+ - _build
56
+ - _deploy_bitrise
57
+ - _deploy_google
58
+ test_external:
59
+ envs:
60
+ - KEYSTORE_NAME:
61
+ opts:
62
+ is_expand: true
63
+ - KEYSTORE_ALIAS:
64
+ opts:
65
+ is_expand: true
66
+ - PACKAGE_NAME: com.futureworkshops.<%= config[:package_name] %>
67
+ - KEYSTORE_PASSWORD:
68
+ - KEYALIAS_PASSWORD:
69
+ after_run:
70
+ - _preflight
71
+ - _build
72
+ - _deploy_bitrise
73
+ - _deploy_google
74
+ _build:
75
+ steps:
76
+ - s3-download@1:
77
+ title: Download keystore
78
+ inputs:
79
+ - aws_access_key: "$AWS_ACCESS_KEY_ID"
80
+ - aws_secret_access_key: "$AWS_SECRET_ACCESS_KEY"
81
+ - s3_bucket: fw.ci.certificates
82
+ - output_location: "$KEYSTORE_OUTPUT_PATH"
83
+ - s3_filepath: "$KEYSTORE_NAME"
84
+ - gradle-runner@1.9:
85
+ inputs:
86
+ - gradle_file: "$GRADLE_BUILD_FILE_PATH"
87
+ - gradle_task: "-Pproject.buildnumber=$BITRISE_BUILD_NUMBER -Pproject.buildversion=$BUILD_VERSION
88
+ -Pproject.bundleId=$PACKAGE_NAME bundle$BUILD_FLAVOUR$BUILD_TASK"
89
+ - app_file_include_filter: |
90
+ *-universal-*.apk
91
+ *.aab
92
+ - gradlew_path: "$GRADLEW_PATH"
93
+ - bitrise-step-export-universal-apk@0:
94
+ inputs:
95
+ - keystore_alias: "$KEYSTORE_ALIAS"
96
+ - private_key_password: "$KEYALIAS_PASSWORD"
97
+ - keystore_url: file://$S3_DOWNLOAD_OUTPUT_PATH
98
+ - keystore_password: "$KEYSTORE_PASSWORD"
99
+ envs:
100
+ - KEYSTORE_PATH: "$KEYSTORE_OUTPUT_PATH/$KEYSTORE_NAME"
101
+ _deploy_bitrise:
102
+ steps:
103
+ - deploy-to-bitrise-io@1.12:
104
+ inputs:
105
+ - generate_universal_apk_if_none: 'false'
106
+ _deploy_google:
107
+ steps:
108
+ - google-play-deploy@3.3:
109
+ inputs:
110
+ - service_account_json_key_path: "$BITRISEIO_GOOGLE_PLAY_JSON_AUTH_PATH_URL"
111
+ - package_name: "$PACKAGE_NAME"
112
+ - mapping_file: ''
113
+ - track: internal
114
+ - app_path: "$BITRISE_AAB_PATH"
115
+ _preflight:
116
+ steps:
117
+ - build-number-adjust@1.0.0:
118
+ inputs:
119
+ - change: ''
120
+ - increase: "$FW_BUILD_NUMBER_OFFSET"
121
+ - decrease: ''
122
+ - activate-ssh-key@4.0.5:
123
+ run_if: '{{getenv "SSH_RSA_PRIVATE_KEY" | ne ""}}'
124
+ - git-clone@4.0:
125
+ inputs:
126
+ - manual_merge: 'no'
127
+ - install-missing-android-tools@2.3.8:
128
+ inputs:
129
+ - ndk_revision: $ANDROID_NDK_VERSION
130
+ _test:
131
+ steps:
132
+ - gradle-unit-test@1.0:
133
+ inputs:
134
+ - unit_test_task: "$TEST_COMMAND"
135
+ - unit_test_flags:
136
+ - deploy-to-bitrise-io@1.12:
137
+ inputs:
138
+ - deploy_path: "$TEST_REPORTS_PATH"
139
+ - notify_user_groups: none
140
+ - is_compress: 'true'
141
+ envs:
142
+ - TEST_REPORTS_PATH: "$BITRISE_SOURCE_DIR/app/build/reports/"
143
+ - TEST_COMMAND: check test
144
+ _commit_status:
145
+ steps:
146
+ - github-status@2.3:
147
+ inputs:
148
+ - auth_token: "$FW_GITHUB_STATUS_AUTH_TOKEN"
149
+ app:
150
+ envs:
151
+ - BUILD_FLAVOUR:
152
+ opts:
153
+ is_expand: true
154
+ - BUILD_TASK: Release
155
+ opts:
156
+ is_expand: true
157
+ - GRADLE_BUILD_FILE_PATH: app/build.gradle
158
+ opts:
159
+ is_expand: true
160
+ - GRADLEW_PATH: "./gradlew"
161
+ opts:
162
+ is_expand: true
163
+ - FW_BUILD_NUMBER_OFFSET: '0'
164
+ opts:
165
+ is_expand: true
166
+ - BUILD_VERSION: 1.0.0
167
+ opts:
168
+ is_expand: true
169
+ - ANDROID_NDK_VERSION: '21'
170
+ opts:
171
+ is_expand: true
172
+ - KEYSTORE_OUTPUT_PATH: "$BITRISE_SOURCE_DIR"
173
+ meta:
174
+ bitrise.io:
175
+ machine_type: performance
@@ -6,7 +6,7 @@ trigger_map:
6
6
  workflow: internal
7
7
  - push_branch: release/next
8
8
  workflow: test_external
9
- - push_branch: master
9
+ - push_branch: main
10
10
  workflow: external
11
11
  - pull_request_source_branch: "*"
12
12
  workflow: test
@@ -189,17 +189,6 @@ workflows:
189
189
  - plist_path: "$FW_PROJECT_DIR/$INFO_PLIST_PATH"
190
190
  - build_version_offset: ''
191
191
  - build_short_version_string: "$VERSION_NUMBER"
192
- - git::https://github.com/FutureWorkshops/bitrise-step-download-provisioning-profile@master:
193
- title: Download provisioning profile
194
- run_if: .IsCI
195
- inputs:
196
- - profile_name: "$PROVISIONING_PROFILE_NAME"
197
- - bundle_id: "$PRODUCT_BUNDLE_IDENTIFIER"
198
- - team_id: "$DEVPORTAL_TEAM"
199
- - portal_username: "$DEVPORTAL_USERNAME"
200
- - portal_password: "$DEVPORTAL_PASSWORD"
201
- - target_variable: BITRISE_PROVISION_URL
202
- - target_filename: profile.mobileprovision
203
192
  - git::https://github.com/FutureWorkshops/bitrise-step-s3-download.git@master:
204
193
  title: Download keychain
205
194
  run_if: .IsCI
@@ -285,14 +274,20 @@ workflows:
285
274
  - is_enable_public_page: 'false'
286
275
  _deploy_itunes:
287
276
  steps:
288
- - deploy-to-itunesconnect-deliver:
277
+ - git::https://github.com/FutureWorkshops/bitrise-step-s3-download.git@master:
278
+ title: Download API Key
289
279
  run_if: .IsCI
290
280
  inputs:
291
- - itunescon_user: "$ITUNESCONNECT_USERNAME"
292
- - password: "$ITUNESCONNECT_PASSWORD"
293
- - app_id: "$ITUNESCONNECT_APPID"
294
- - team_id: "$ITUNES_TEAM_ID"
295
- - options: ''
281
+ - aws_access_key: "$AWS_ACCESS_KEY_ID"
282
+ - aws_secret_access_key: "$AWS_SECRET_ACCESS_KEY"
283
+ - s3_bucket: fw.ci.certificates
284
+ - output_location: "$BITRISE_SOURCE_DIR"
285
+ - s3_filepath: "$FW_ITUNES_CONNECT_API_KEY"
286
+ - deploy-to-itunesconnect-application-loader@0:
287
+ run_if: .IsCI
288
+ inputs:
289
+ - api_issuer: "$FW_ITUNES_CONNECT_API_KEY_ISSUER_ID"
290
+ - api_key_path: file://$BITRISE_SOURCE_DIR/$FW_ITUNES_CONNECT_API_KEY
296
291
  app:
297
292
  envs:
298
293
  - opts:
@@ -307,9 +302,6 @@ app:
307
302
  - opts:
308
303
  is_expand: true
309
304
  FW_XCODEPROJ_NAME: <%= config[:project_name] %>.xcodeproj
310
- - opts:
311
- is_expand: true
312
- DEVPORTAL_USERNAME: c-i@futureworkshops.com
313
305
  - opts:
314
306
  is_expand: true
315
307
  FW_BUILD_NUMBER_OFFSET: '0'
@@ -0,0 +1,175 @@
1
+ ---
2
+ format_version: '8'
3
+ default_step_lib_source: https://github.com/bitrise-io/bitrise-steplib.git
4
+ project_type: android
5
+ trigger_map:
6
+ - push_branch: dev
7
+ workflow: staging
8
+ - push_branch: release/next
9
+ workflow: test_external
10
+ - push_branch: main
11
+ workflow: external
12
+ - pull_request_source_branch: "*"
13
+ workflow: pull_request
14
+ workflows:
15
+ pull_request:
16
+ envs:
17
+ - BUILD_FLAVOUR:
18
+ opts:
19
+ is_expand: true
20
+ - BUILD_TASK: Debug
21
+ opts:
22
+ is_expand: true
23
+ after_run:
24
+ - _preflight
25
+ - _test
26
+ - _commit_status
27
+ staging:
28
+ envs:
29
+ - KEYSTORE_NAME: fw_internal.keystore
30
+ opts:
31
+ is_expand: true
32
+ - KEYSTORE_ALIAS: Allinternal
33
+ opts:
34
+ is_expand: true
35
+ - PACKAGE_NAME: com.futureworkshops.<%= config[:package_name] %>
36
+ - KEYSTORE_PASSWORD: "$INTERNAL_KEYSTORE_PASSWORD"
37
+ - KEYALIAS_PASSWORD: "$INTERNAL_KEYALIAS_PASSWORD"
38
+ after_run:
39
+ - _preflight
40
+ - _build
41
+ - _deploy_bitrise
42
+ external:
43
+ envs:
44
+ - KEYSTORE_NAME:
45
+ opts:
46
+ is_expand: true
47
+ - KEYSTORE_ALIAS:
48
+ opts:
49
+ is_expand: true
50
+ - PACKAGE_NAME: <%= config[:package_name] %>
51
+ - KEYSTORE_PASSWORD:
52
+ - KEYALIAS_PASSWORD:
53
+ after_run:
54
+ - _preflight
55
+ - _build
56
+ - _deploy_bitrise
57
+ - _deploy_google
58
+ test_external:
59
+ envs:
60
+ - KEYSTORE_NAME:
61
+ opts:
62
+ is_expand: true
63
+ - KEYSTORE_ALIAS:
64
+ opts:
65
+ is_expand: true
66
+ - PACKAGE_NAME: com.futureworkshops.<%= config[:package_name] %>
67
+ - KEYSTORE_PASSWORD:
68
+ - KEYALIAS_PASSWORD:
69
+ after_run:
70
+ - _preflight
71
+ - _build
72
+ - _deploy_bitrise
73
+ - _deploy_google
74
+ _build:
75
+ steps:
76
+ - s3-download@1:
77
+ title: Download keystore
78
+ inputs:
79
+ - aws_access_key: "$AWS_ACCESS_KEY_ID"
80
+ - aws_secret_access_key: "$AWS_SECRET_ACCESS_KEY"
81
+ - s3_bucket: fw.ci.certificates
82
+ - output_location: "$KEYSTORE_OUTPUT_PATH"
83
+ - s3_filepath: "$KEYSTORE_NAME"
84
+ - gradle-runner@1.9:
85
+ inputs:
86
+ - gradle_file: "$GRADLE_BUILD_FILE_PATH"
87
+ - gradle_task: "-Pproject.buildnumber=$BITRISE_BUILD_NUMBER -Pproject.buildversion=$BUILD_VERSION
88
+ -Pproject.bundleId=$PACKAGE_NAME bundle$BUILD_FLAVOUR$BUILD_TASK"
89
+ - app_file_include_filter: |
90
+ *-universal-*.apk
91
+ *.aab
92
+ - gradlew_path: "$GRADLEW_PATH"
93
+ - bitrise-step-export-universal-apk@0:
94
+ inputs:
95
+ - keystore_alias: "$KEYSTORE_ALIAS"
96
+ - private_key_password: "$KEYALIAS_PASSWORD"
97
+ - keystore_url: file://$S3_DOWNLOAD_OUTPUT_PATH
98
+ - keystore_password: "$KEYSTORE_PASSWORD"
99
+ envs:
100
+ - KEYSTORE_PATH: "$KEYSTORE_OUTPUT_PATH/$KEYSTORE_NAME"
101
+ _deploy_bitrise:
102
+ steps:
103
+ - deploy-to-bitrise-io@1.12:
104
+ inputs:
105
+ - generate_universal_apk_if_none: 'false'
106
+ _deploy_google:
107
+ steps:
108
+ - google-play-deploy@3.3:
109
+ inputs:
110
+ - service_account_json_key_path: "$BITRISEIO_GOOGLE_PLAY_JSON_AUTH_PATH_URL"
111
+ - package_name: "$PACKAGE_NAME"
112
+ - mapping_file: ''
113
+ - track: internal
114
+ - app_path: "$BITRISE_AAB_PATH"
115
+ _preflight:
116
+ steps:
117
+ - build-number-adjust@1.0.0:
118
+ inputs:
119
+ - change: ''
120
+ - increase: "$FW_BUILD_NUMBER_OFFSET"
121
+ - decrease: ''
122
+ - activate-ssh-key@4.0.5:
123
+ run_if: '{{getenv "SSH_RSA_PRIVATE_KEY" | ne ""}}'
124
+ - git-clone@4.0:
125
+ inputs:
126
+ - manual_merge: 'no'
127
+ - install-missing-android-tools@2.3.8:
128
+ inputs:
129
+ - ndk_revision: $ANDROID_NDK_VERSION
130
+ _test:
131
+ steps:
132
+ - gradle-unit-test@1.0:
133
+ inputs:
134
+ - unit_test_task: "$TEST_COMMAND"
135
+ - unit_test_flags:
136
+ - deploy-to-bitrise-io@1.12:
137
+ inputs:
138
+ - deploy_path: "$TEST_REPORTS_PATH"
139
+ - notify_user_groups: none
140
+ - is_compress: 'true'
141
+ envs:
142
+ - TEST_REPORTS_PATH: "$BITRISE_SOURCE_DIR/app/build/reports/"
143
+ - TEST_COMMAND: check test
144
+ _commit_status:
145
+ steps:
146
+ - github-status@2.3:
147
+ inputs:
148
+ - auth_token: "$FW_GITHUB_STATUS_AUTH_TOKEN"
149
+ app:
150
+ envs:
151
+ - BUILD_FLAVOUR:
152
+ opts:
153
+ is_expand: true
154
+ - BUILD_TASK: Release
155
+ opts:
156
+ is_expand: true
157
+ - GRADLE_BUILD_FILE_PATH: app/build.gradle
158
+ opts:
159
+ is_expand: true
160
+ - GRADLEW_PATH: "./gradlew"
161
+ opts:
162
+ is_expand: true
163
+ - FW_BUILD_NUMBER_OFFSET: '0'
164
+ opts:
165
+ is_expand: true
166
+ - BUILD_VERSION: 1.0.0
167
+ opts:
168
+ is_expand: true
169
+ - ANDROID_NDK_VERSION: '21'
170
+ opts:
171
+ is_expand: true
172
+ - KEYSTORE_OUTPUT_PATH: "$BITRISE_SOURCE_DIR"
173
+ meta:
174
+ bitrise.io:
175
+ machine_type: performance
@@ -6,7 +6,7 @@ trigger_map:
6
6
  workflow: internal
7
7
  - push_branch: release/next
8
8
  workflow: test_external
9
- - push_branch: master
9
+ - push_branch: main
10
10
  workflow: external
11
11
  - pull_request_source_branch: "*"
12
12
  workflow: test
@@ -189,17 +189,6 @@ workflows:
189
189
  - plist_path: "$FW_PROJECT_DIR/$INFO_PLIST_PATH"
190
190
  - build_version_offset: ''
191
191
  - build_short_version_string: "$VERSION_NUMBER"
192
- - git::https://github.com/FutureWorkshops/bitrise-step-download-provisioning-profile@master:
193
- title: Download provisioning profile
194
- run_if: .IsCI
195
- inputs:
196
- - profile_name: "$PROVISIONING_PROFILE_NAME"
197
- - bundle_id: "$PRODUCT_BUNDLE_IDENTIFIER"
198
- - team_id: "$DEVPORTAL_TEAM"
199
- - portal_username: "$DEVPORTAL_USERNAME"
200
- - portal_password: "$DEVPORTAL_PASSWORD"
201
- - target_variable: BITRISE_PROVISION_URL
202
- - target_filename: profile.mobileprovision
203
192
  - git::https://github.com/FutureWorkshops/bitrise-step-s3-download.git@master:
204
193
  title: Download keychain
205
194
  run_if: .IsCI
@@ -285,14 +274,20 @@ workflows:
285
274
  - is_enable_public_page: 'false'
286
275
  _deploy_itunes:
287
276
  steps:
288
- - deploy-to-itunesconnect-deliver:
277
+ - git::https://github.com/FutureWorkshops/bitrise-step-s3-download.git@master:
278
+ title: Download API Key
289
279
  run_if: .IsCI
290
280
  inputs:
291
- - itunescon_user: "$ITUNESCONNECT_USERNAME"
292
- - password: "$ITUNESCONNECT_PASSWORD"
293
- - app_id: "$ITUNESCONNECT_APPID"
294
- - team_id: "$ITUNES_TEAM_ID"
295
- - options: ''
281
+ - aws_access_key: "$AWS_ACCESS_KEY_ID"
282
+ - aws_secret_access_key: "$AWS_SECRET_ACCESS_KEY"
283
+ - s3_bucket: fw.ci.certificates
284
+ - output_location: "$BITRISE_SOURCE_DIR"
285
+ - s3_filepath: "$FW_ITUNES_CONNECT_API_KEY"
286
+ - deploy-to-itunesconnect-application-loader@0:
287
+ run_if: .IsCI
288
+ inputs:
289
+ - api_issuer: "$FW_ITUNES_CONNECT_API_KEY_ISSUER_ID"
290
+ - api_key_path: file://$BITRISE_SOURCE_DIR/$FW_ITUNES_CONNECT_API_KEY
296
291
  app:
297
292
  envs:
298
293
  - opts:
@@ -307,9 +302,6 @@ app:
307
302
  - opts:
308
303
  is_expand: true
309
304
  FW_XCODEPROJ_NAME: <%= config[:project_name] %>.xcodeproj
310
- - opts:
311
- is_expand: true
312
- DEVPORTAL_USERNAME: c-i@futureworkshops.com
313
305
  - opts:
314
306
  is_expand: true
315
307
  FW_BUILD_NUMBER_OFFSET: '0'
@@ -9,6 +9,7 @@ bitrise.yml
9
9
  .bitrise*
10
10
 
11
11
  #CocoaPods
12
+ Pods/
12
13
  Pods/CocoaPodsKeys
13
14
 
14
15
  # Xcode
@@ -176,7 +176,7 @@
176
176
  isa = PBXProject;
177
177
  attributes = {
178
178
  CLASSPREFIX = "<%= config[:class_prefix] %>";
179
- LastUpgradeCheck = 1020;
179
+ LastUpgradeCheck = 1200;
180
180
  ORGANIZATIONNAME = "Future Workshops";
181
181
  TargetAttributes = {
182
182
  B750287F1C5A3F7A000EB3CF = {
@@ -305,6 +305,7 @@
305
305
  CLANG_WARN_INFINITE_RECURSION = YES;
306
306
  CLANG_WARN_INT_CONVERSION = YES;
307
307
  CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
308
+ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
308
309
  CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
309
310
  CLANG_WARN_STRICT_PROTOTYPES = YES;
310
311
  CLANG_WARN_SUSPICIOUS_MOVE = YES;
@@ -357,6 +358,7 @@
357
358
  CLANG_WARN_INFINITE_RECURSION = YES;
358
359
  CLANG_WARN_INT_CONVERSION = YES;
359
360
  CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
361
+ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
360
362
  CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
361
363
  CLANG_WARN_STRICT_PROTOTYPES = YES;
362
364
  CLANG_WARN_SUSPICIOUS_MOVE = YES;
@@ -1,6 +1,6 @@
1
1
  <?xml version="1.0" encoding="UTF-8"?>
2
2
  <Scheme
3
- LastUpgradeVersion = "1020"
3
+ LastUpgradeVersion = "1200"
4
4
  version = "1.3">
5
5
  <BuildAction
6
6
  parallelizeBuildables = "YES"
@@ -27,6 +27,15 @@
27
27
  selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
28
28
  selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
29
29
  shouldUseLaunchSchemeArgsEnv = "YES">
30
+ <MacroExpansion>
31
+ <BuildableReference
32
+ BuildableIdentifier = "primary"
33
+ BlueprintIdentifier = "B750287F1C5A3F7A000EB3CF"
34
+ BuildableName = "<%= config[:project_name] %>.app"
35
+ BlueprintName = "<%= config[:project_name] %>"
36
+ ReferencedContainer = "container:<%= config[:project_name] %>.xcodeproj">
37
+ </BuildableReference>
38
+ </MacroExpansion>
30
39
  <Testables>
31
40
  <TestableReference
32
41
  skipped = "NO">
@@ -39,17 +48,6 @@
39
48
  </BuildableReference>
40
49
  </TestableReference>
41
50
  </Testables>
42
- <MacroExpansion>
43
- <BuildableReference
44
- BuildableIdentifier = "primary"
45
- BlueprintIdentifier = "B750287F1C5A3F7A000EB3CF"
46
- BuildableName = "<%= config[:project_name] %>.app"
47
- BlueprintName = "<%= config[:project_name] %>"
48
- ReferencedContainer = "container:<%= config[:project_name] %>.xcodeproj">
49
- </BuildableReference>
50
- </MacroExpansion>
51
- <AdditionalOptions>
52
- </AdditionalOptions>
53
51
  </TestAction>
54
52
  <LaunchAction
55
53
  buildConfiguration = "Debug"
@@ -71,8 +69,6 @@
71
69
  ReferencedContainer = "container:<%= config[:project_name] %>.xcodeproj">
72
70
  </BuildableReference>
73
71
  </BuildableProductRunnable>
74
- <AdditionalOptions>
75
- </AdditionalOptions>
76
72
  </LaunchAction>
77
73
  <ProfileAction
78
74
  buildConfiguration = "Release"
@@ -169,7 +169,7 @@
169
169
  isa = PBXProject;
170
170
  attributes = {
171
171
  LastSwiftUpdateCheck = 0720;
172
- LastUpgradeCheck = 1020;
172
+ LastUpgradeCheck = 1200;
173
173
  ORGANIZATIONNAME = "Future Workshops";
174
174
  TargetAttributes = {
175
175
  B75028B01C5A3F94000EB3CF = {
@@ -299,6 +299,7 @@
299
299
  CLANG_WARN_INFINITE_RECURSION = YES;
300
300
  CLANG_WARN_INT_CONVERSION = YES;
301
301
  CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
302
+ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
302
303
  CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
303
304
  CLANG_WARN_STRICT_PROTOTYPES = YES;
304
305
  CLANG_WARN_SUSPICIOUS_MOVE = YES;
@@ -353,6 +354,7 @@
353
354
  CLANG_WARN_INFINITE_RECURSION = YES;
354
355
  CLANG_WARN_INT_CONVERSION = YES;
355
356
  CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
357
+ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
356
358
  CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
357
359
  CLANG_WARN_STRICT_PROTOTYPES = YES;
358
360
  CLANG_WARN_SUSPICIOUS_MOVE = YES;
@@ -1,6 +1,6 @@
1
1
  <?xml version="1.0" encoding="UTF-8"?>
2
2
  <Scheme
3
- LastUpgradeVersion = "1020"
3
+ LastUpgradeVersion = "1200"
4
4
  version = "1.3">
5
5
  <BuildAction
6
6
  parallelizeBuildables = "YES"
@@ -27,6 +27,15 @@
27
27
  selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
28
28
  selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
29
29
  shouldUseLaunchSchemeArgsEnv = "YES">
30
+ <MacroExpansion>
31
+ <BuildableReference
32
+ BuildableIdentifier = "primary"
33
+ BlueprintIdentifier = "B75028B01C5A3F94000EB3CF"
34
+ BuildableName = "<%= config[:project_name] %>.app"
35
+ BlueprintName = "<%= config[:project_name] %>"
36
+ ReferencedContainer = "container:<%= config[:project_name] %>.xcodeproj">
37
+ </BuildableReference>
38
+ </MacroExpansion>
30
39
  <Testables>
31
40
  <TestableReference
32
41
  skipped = "NO">
@@ -39,17 +48,6 @@
39
48
  </BuildableReference>
40
49
  </TestableReference>
41
50
  </Testables>
42
- <MacroExpansion>
43
- <BuildableReference
44
- BuildableIdentifier = "primary"
45
- BlueprintIdentifier = "B75028B01C5A3F94000EB3CF"
46
- BuildableName = "<%= config[:project_name] %>.app"
47
- BlueprintName = "<%= config[:project_name] %>"
48
- ReferencedContainer = "container:<%= config[:project_name] %>.xcodeproj">
49
- </BuildableReference>
50
- </MacroExpansion>
51
- <AdditionalOptions>
52
- </AdditionalOptions>
53
51
  </TestAction>
54
52
  <LaunchAction
55
53
  buildConfiguration = "Debug"
@@ -71,8 +69,6 @@
71
69
  ReferencedContainer = "container:<%= config[:project_name] %>.xcodeproj">
72
70
  </BuildableReference>
73
71
  </BuildableProductRunnable>
74
- <AdditionalOptions>
75
- </AdditionalOptions>
76
72
  </LaunchAction>
77
73
  <ProfileAction
78
74
  buildConfiguration = "Release"
metadata CHANGED
@@ -1,233 +1,233 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fwtoolkit
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.3.4
4
+ version: 2.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Future Workshops
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-03-25 00:00:00.000000000 Z
11
+ date: 2021-04-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rspec-rails
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
19
  version: 3.8.2
20
- - - ">="
20
+ - - "~>"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 3.8.2
23
23
  type: :development
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
26
26
  requirements:
27
- - - "~>"
27
+ - - ">="
28
28
  - !ruby/object:Gem::Version
29
29
  version: 3.8.2
30
- - - ">="
30
+ - - "~>"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 3.8.2
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aruba
35
35
  requirement: !ruby/object:Gem::Requirement
36
36
  requirements:
37
- - - "~>"
37
+ - - ">="
38
38
  - !ruby/object:Gem::Version
39
39
  version: 0.14.12
40
- - - ">="
40
+ - - "~>"
41
41
  - !ruby/object:Gem::Version
42
42
  version: 0.14.12
43
43
  type: :development
44
44
  prerelease: false
45
45
  version_requirements: !ruby/object:Gem::Requirement
46
46
  requirements:
47
- - - "~>"
47
+ - - ">="
48
48
  - !ruby/object:Gem::Version
49
49
  version: 0.14.12
50
- - - ">="
50
+ - - "~>"
51
51
  - !ruby/object:Gem::Version
52
52
  version: 0.14.12
53
53
  - !ruby/object:Gem::Dependency
54
54
  name: cucumber
55
55
  requirement: !ruby/object:Gem::Requirement
56
56
  requirements:
57
- - - "~>"
57
+ - - ">="
58
58
  - !ruby/object:Gem::Version
59
59
  version: 3.1.2
60
- - - ">="
60
+ - - "~>"
61
61
  - !ruby/object:Gem::Version
62
62
  version: 3.1.2
63
63
  type: :development
64
64
  prerelease: false
65
65
  version_requirements: !ruby/object:Gem::Requirement
66
66
  requirements:
67
- - - "~>"
67
+ - - ">="
68
68
  - !ruby/object:Gem::Version
69
69
  version: 3.1.2
70
- - - ">="
70
+ - - "~>"
71
71
  - !ruby/object:Gem::Version
72
72
  version: 3.1.2
73
73
  - !ruby/object:Gem::Dependency
74
74
  name: aruba-doubles
75
75
  requirement: !ruby/object:Gem::Requirement
76
76
  requirements:
77
- - - "~>"
77
+ - - ">="
78
78
  - !ruby/object:Gem::Version
79
79
  version: 1.2.1
80
- - - ">="
80
+ - - "~>"
81
81
  - !ruby/object:Gem::Version
82
82
  version: 1.2.1
83
83
  type: :development
84
84
  prerelease: false
85
85
  version_requirements: !ruby/object:Gem::Requirement
86
86
  requirements:
87
- - - "~>"
87
+ - - ">="
88
88
  - !ruby/object:Gem::Version
89
89
  version: 1.2.1
90
- - - ">="
90
+ - - "~>"
91
91
  - !ruby/object:Gem::Version
92
92
  version: 1.2.1
93
93
  - !ruby/object:Gem::Dependency
94
94
  name: thor
95
95
  requirement: !ruby/object:Gem::Requirement
96
96
  requirements:
97
- - - "~>"
97
+ - - ">="
98
98
  - !ruby/object:Gem::Version
99
99
  version: 0.20.3
100
- - - ">="
100
+ - - "~>"
101
101
  - !ruby/object:Gem::Version
102
102
  version: 0.20.3
103
103
  type: :runtime
104
104
  prerelease: false
105
105
  version_requirements: !ruby/object:Gem::Requirement
106
106
  requirements:
107
- - - "~>"
107
+ - - ">="
108
108
  - !ruby/object:Gem::Version
109
109
  version: 0.20.3
110
- - - ">="
110
+ - - "~>"
111
111
  - !ruby/object:Gem::Version
112
112
  version: 0.20.3
113
113
  - !ruby/object:Gem::Dependency
114
114
  name: rake
115
115
  requirement: !ruby/object:Gem::Requirement
116
116
  requirements:
117
- - - "~>"
117
+ - - ">="
118
118
  - !ruby/object:Gem::Version
119
119
  version: 13.0.0
120
- - - ">="
120
+ - - "~>"
121
121
  - !ruby/object:Gem::Version
122
122
  version: 13.0.0
123
123
  type: :runtime
124
124
  prerelease: false
125
125
  version_requirements: !ruby/object:Gem::Requirement
126
126
  requirements:
127
- - - "~>"
127
+ - - ">="
128
128
  - !ruby/object:Gem::Version
129
129
  version: 13.0.0
130
- - - ">="
130
+ - - "~>"
131
131
  - !ruby/object:Gem::Version
132
132
  version: 13.0.0
133
133
  - !ruby/object:Gem::Dependency
134
134
  name: bundler
135
135
  requirement: !ruby/object:Gem::Requirement
136
136
  requirements:
137
- - - "~>"
138
- - !ruby/object:Gem::Version
139
- version: 2.1.4
140
137
  - - ">="
141
138
  - !ruby/object:Gem::Version
142
- version: 2.1.4
139
+ version: 2.2.0
140
+ - - "~>"
141
+ - !ruby/object:Gem::Version
142
+ version: 2.2.8
143
143
  type: :runtime
144
144
  prerelease: false
145
145
  version_requirements: !ruby/object:Gem::Requirement
146
146
  requirements:
147
- - - "~>"
148
- - !ruby/object:Gem::Version
149
- version: 2.1.4
150
147
  - - ">="
151
148
  - !ruby/object:Gem::Version
152
- version: 2.1.4
149
+ version: 2.2.0
150
+ - - "~>"
151
+ - !ruby/object:Gem::Version
152
+ version: 2.2.8
153
153
  - !ruby/object:Gem::Dependency
154
154
  name: multi_json
155
155
  requirement: !ruby/object:Gem::Requirement
156
156
  requirements:
157
- - - "~>"
157
+ - - ">="
158
158
  - !ruby/object:Gem::Version
159
159
  version: 1.13.1
160
- - - ">="
160
+ - - "~>"
161
161
  - !ruby/object:Gem::Version
162
162
  version: 1.13.1
163
163
  type: :runtime
164
164
  prerelease: false
165
165
  version_requirements: !ruby/object:Gem::Requirement
166
166
  requirements:
167
- - - "~>"
167
+ - - ">="
168
168
  - !ruby/object:Gem::Version
169
169
  version: 1.13.1
170
- - - ">="
170
+ - - "~>"
171
171
  - !ruby/object:Gem::Version
172
172
  version: 1.13.1
173
173
  - !ruby/object:Gem::Dependency
174
174
  name: xcodeproj
175
175
  requirement: !ruby/object:Gem::Requirement
176
176
  requirements:
177
- - - "~>"
177
+ - - ">="
178
178
  - !ruby/object:Gem::Version
179
179
  version: 1.12.0
180
- - - ">="
180
+ - - "~>"
181
181
  - !ruby/object:Gem::Version
182
182
  version: 1.12.0
183
183
  type: :runtime
184
184
  prerelease: false
185
185
  version_requirements: !ruby/object:Gem::Requirement
186
186
  requirements:
187
- - - "~>"
187
+ - - ">="
188
188
  - !ruby/object:Gem::Version
189
189
  version: 1.12.0
190
- - - ">="
190
+ - - "~>"
191
191
  - !ruby/object:Gem::Version
192
192
  version: 1.12.0
193
193
  - !ruby/object:Gem::Dependency
194
194
  name: xcodebuild-rb
195
195
  requirement: !ruby/object:Gem::Requirement
196
196
  requirements:
197
- - - "~>"
197
+ - - ">="
198
198
  - !ruby/object:Gem::Version
199
199
  version: 0.3.0
200
- - - ">="
200
+ - - "~>"
201
201
  - !ruby/object:Gem::Version
202
202
  version: 0.3.0
203
203
  type: :runtime
204
204
  prerelease: false
205
205
  version_requirements: !ruby/object:Gem::Requirement
206
206
  requirements:
207
- - - "~>"
207
+ - - ">="
208
208
  - !ruby/object:Gem::Version
209
209
  version: 0.3.0
210
- - - ">="
210
+ - - "~>"
211
211
  - !ruby/object:Gem::Version
212
212
  version: 0.3.0
213
213
  - !ruby/object:Gem::Dependency
214
214
  name: rubyzip
215
215
  requirement: !ruby/object:Gem::Requirement
216
216
  requirements:
217
- - - "~>"
217
+ - - ">="
218
218
  - !ruby/object:Gem::Version
219
219
  version: 2.0.0
220
- - - ">="
220
+ - - "~>"
221
221
  - !ruby/object:Gem::Version
222
222
  version: 2.0.0
223
223
  type: :runtime
224
224
  prerelease: false
225
225
  version_requirements: !ruby/object:Gem::Requirement
226
226
  requirements:
227
- - - "~>"
227
+ - - ">="
228
228
  - !ruby/object:Gem::Version
229
229
  version: 2.0.0
230
- - - ">="
230
+ - - "~>"
231
231
  - !ruby/object:Gem::Version
232
232
  version: 2.0.0
233
233
  description: A collection of iOS development tools used by Future Workshops
@@ -290,14 +290,14 @@ files:
290
290
  - spec/support/ctx_rake.rb
291
291
  - spec/support/double_helper.rb
292
292
  - spec/support/project_generator.rb
293
- - templates/bitrise/bitrise.yml.tt
294
- - templates/default_project/bitrise/bitrise.yml.tt
293
+ - templates/bitrise/android/bitrise.yml.tt
294
+ - templates/bitrise/ios/bitrise.yml.tt
295
+ - templates/default_project/bitrise/android/bitrise.yml.tt
296
+ - templates/default_project/bitrise/ios/bitrise.yml.tt
295
297
  - templates/default_project/gemset/Gemfile
296
298
  - templates/default_project/git/.github/PULL_REQUEST_TEMPLATE.md
297
299
  - templates/default_project/git/.gitignore
298
300
  - templates/objc_project/xcode/%project_name%.xcworkspace/contents.xcworkspacedata.tt
299
- - templates/objc_project/xcode/%project_name%.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
300
- - templates/objc_project/xcode/%project_name%/%project_name%.entitlements
301
301
  - templates/objc_project/xcode/%project_name%/%project_name%.xcodeproj/project.pbxproj.tt
302
302
  - templates/objc_project/xcode/%project_name%/%project_name%.xcodeproj/project.xcworkspace/contents.xcworkspacedata.tt
303
303
  - templates/objc_project/xcode/%project_name%/%project_name%.xcodeproj/xcshareddata/xcschemes/%project_name%.xcscheme.tt
@@ -339,7 +339,6 @@ files:
339
339
  - templates/objc_project/xcode/Rakefile.tt
340
340
  - templates/swift_project/xcode/%project_name%.xcworkspace/contents.xcworkspacedata.tt
341
341
  - templates/swift_project/xcode/%project_name%.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
342
- - templates/swift_project/xcode/%project_name%/%project_name%.entitlements
343
342
  - templates/swift_project/xcode/%project_name%/%project_name%.xcodeproj/project.pbxproj.tt
344
343
  - templates/swift_project/xcode/%project_name%/%project_name%.xcodeproj/project.xcworkspace/contents.xcworkspacedata.tt
345
344
  - templates/swift_project/xcode/%project_name%/%project_name%.xcodeproj/xcshareddata/xcschemes/%project_name%.xcscheme.tt
@@ -380,7 +379,7 @@ homepage: https://github.com/FutureWorkshops/FWToolkit
380
379
  licenses:
381
380
  - MIT
382
381
  metadata: {}
383
- post_install_message:
382
+ post_install_message:
384
383
  rdoc_options: []
385
384
  require_paths:
386
385
  - lib
@@ -395,8 +394,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
395
394
  - !ruby/object:Gem::Version
396
395
  version: '0'
397
396
  requirements: []
398
- rubygems_version: 3.1.2
399
- signing_key:
397
+ rubygems_version: 3.0.9
398
+ signing_key:
400
399
  specification_version: 4
401
400
  summary: Future Workshops project tools
402
401
  test_files:
@@ -1,8 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
- <plist version="1.0">
4
- <dict>
5
- <key>IDEDidComputeMac32BitWarning</key>
6
- <true/>
7
- </dict>
8
- </plist>
@@ -1,8 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
- <plist version="1.0">
4
- <dict>
5
- <key>com.apple.developer.default-data-protection</key>
6
- <string>NSFileProtectionComplete</string>
7
- </dict>
8
- </plist>
@@ -1,8 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
- <plist version="1.0">
4
- <dict>
5
- <key>com.apple.developer.default-data-protection</key>
6
- <string>NSFileProtectionComplete</string>
7
- </dict>
8
- </plist>