Unnamed: 0 int64 0 832k | id float64 2.49B 32.1B | type stringclasses 1 value | created_at stringlengths 19 19 | repo stringlengths 4 112 | repo_url stringlengths 33 141 | action stringclasses 3 values | title stringlengths 1 1.02k | labels stringlengths 4 1.54k | body stringlengths 1 262k | index stringclasses 17 values | text_combine stringlengths 95 262k | label stringclasses 2 values | text stringlengths 96 252k | binary_label int64 0 1 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
27,185 | 2,690,893,237 | IssuesEvent | 2015-03-31 18:29:51 | mbenkmann/limux-gosa-test | https://api.github.com/repos/mbenkmann/limux-gosa-test | closed | here_i_am: Create installation job with progress=hardware-detection after detect_hardware has been sent | imported Milestone-3 Priority-Want Type-Feature | _From [mux2...@gmail.com](https://code.google.com/u/114145867202573191452/) on March 11, 2013 12:54:07_
Folgende fju gehoert zu dem neuen Job. Diese wird gesendet nach der new_foreign_client Meldung an alle Peers geschickt wurde.
\<xml><header>foreign_job_updates</header><source>172.16.2.143:20081</source><target>172.16.2.83:20081</target>
\<answer1><plainname>none</plainname><progress>hardware-detection</progress><status>processing</status><siserver>localhost</siserver><modified>1</modified><targettag>172.16.2.146:20083</targettag><periodic>none</periodic><macaddress>00:0c:29:50:a3:52</macaddress><timestamp>20130201124453</timestamp><id>1</id><headertag>trigger_action_reinstall</headertag><result>none</result><xmlmessage>bm9uZQ==
\</xmlmessage></answer1></xml>
_Original issue: http://code.google.com/p/go-susi/issues/detail?id=73_ | 1.0 | here_i_am: Create installation job with progress=hardware-detection after detect_hardware has been sent - _From [mux2...@gmail.com](https://code.google.com/u/114145867202573191452/) on March 11, 2013 12:54:07_
Folgende fju gehoert zu dem neuen Job. Diese wird gesendet nach der new_foreign_client Meldung an alle Peers geschickt wurde.
\<xml><header>foreign_job_updates</header><source>172.16.2.143:20081</source><target>172.16.2.83:20081</target>
\<answer1><plainname>none</plainname><progress>hardware-detection</progress><status>processing</status><siserver>localhost</siserver><modified>1</modified><targettag>172.16.2.146:20083</targettag><periodic>none</periodic><macaddress>00:0c:29:50:a3:52</macaddress><timestamp>20130201124453</timestamp><id>1</id><headertag>trigger_action_reinstall</headertag><result>none</result><xmlmessage>bm9uZQ==
\</xmlmessage></answer1></xml>
_Original issue: http://code.google.com/p/go-susi/issues/detail?id=73_ | non_test | here i am create installation job with progress hardware detection after detect hardware has been sent from on march folgende fju gehoert zu dem neuen job diese wird gesendet nach der new foreign client meldung an alle peers geschickt wurde foreign job updates none hardware detection processing localhost none trigger action reinstall none original issue | 0 |
106,003 | 23,151,728,450 | IssuesEvent | 2022-07-29 08:59:19 | LiskHQ/lisk-sdk | https://api.github.com/repos/LiskHQ/lisk-sdk | closed | Update lisk-codec to disallow additional or missing data while decoding | type: improvement elements/codec | ### Description
Currently, `x == encode(decode(x))` is enforced at [processor](https://github.com/LiskHQ/lisk-sdk/blob/v5.2.1/framework/src/node/processor/processor.ts#L292-L297).
However, for efficiency and consistency, this should be implemented in decode of the codec.
While decoding,
- It should fail if existing field number in the schema does not exist in the binary, except for array. (empty array is allow not to appear in the binary)
- It should fail if additional data exist in the binary regardless of position
Additionally, missing tests in the acceptance criteria should be implemented.
### Acceptance Criteria
- Decoding sint... values (using readSInt...) that are out of range. Expected: Decoding should fail
- Decoding a boolean value where the value is a byte unequal to 0x00 and 0x01. Expected: Decoding should fail
- Encoding a string that contains some non-ASCII characters. Expected: Encoding succeeds
- Decoding a string that contains some non-ASCII characters. Expected: Decoding succeeds
- Encoding empty array, where the datatype of the items implies non-packed encoding, e.g. string. Expected: binary message is empty
- Schema contains a property of type array, where the datatype of the items implies non-packed encoding, e.g. string. The binary message is empty Expected: Decoded to the property that contains an empty array.
- Object to encode has a property that is not contained in the schema. Expected: Encoding fails
- Decoding a binary message that does not respect the fieldNumber order. Expected: Decoding fails
- Decoding a binary message where one fieldNumber is used twice in the binary message. The fieldNumber order is repected, i.e., the two key-value pairs with the same fieldNumber must be adjacent in the binary message. Expected: Decoding fails
- Encoding an object where the fieldNumbers in the schema are not sequential Expected: Encoding succeeds
- Decoding a binary message where the fieldNumbers in the schema are not sequential Expected: Decoding succeeds
- Decoding a binary message where one required property (not of type array) is not contained in the binary message Expected: Decoding fails
- Decoding a binary message that contains a field number not present in the schema. Expected: Decoding fails
- Decoding a binary message that contains some bytes at the end that cannot be decoded to some key-value pairs. E.g., a binary message contatenated with the byte 0x00. Expected: Decoding fails
- A binary message contains a key-value pair for a property of type array for which packed encoding is used (for example boolean), and the value exist as empty bytes. Expected: Decoding fails
### Additional Information
Most of the tests should be covered by adding protocol spec.
| 1.0 | Update lisk-codec to disallow additional or missing data while decoding - ### Description
Currently, `x == encode(decode(x))` is enforced at [processor](https://github.com/LiskHQ/lisk-sdk/blob/v5.2.1/framework/src/node/processor/processor.ts#L292-L297).
However, for efficiency and consistency, this should be implemented in decode of the codec.
While decoding,
- It should fail if existing field number in the schema does not exist in the binary, except for array. (empty array is allow not to appear in the binary)
- It should fail if additional data exist in the binary regardless of position
Additionally, missing tests in the acceptance criteria should be implemented.
### Acceptance Criteria
- Decoding sint... values (using readSInt...) that are out of range. Expected: Decoding should fail
- Decoding a boolean value where the value is a byte unequal to 0x00 and 0x01. Expected: Decoding should fail
- Encoding a string that contains some non-ASCII characters. Expected: Encoding succeeds
- Decoding a string that contains some non-ASCII characters. Expected: Decoding succeeds
- Encoding empty array, where the datatype of the items implies non-packed encoding, e.g. string. Expected: binary message is empty
- Schema contains a property of type array, where the datatype of the items implies non-packed encoding, e.g. string. The binary message is empty Expected: Decoded to the property that contains an empty array.
- Object to encode has a property that is not contained in the schema. Expected: Encoding fails
- Decoding a binary message that does not respect the fieldNumber order. Expected: Decoding fails
- Decoding a binary message where one fieldNumber is used twice in the binary message. The fieldNumber order is repected, i.e., the two key-value pairs with the same fieldNumber must be adjacent in the binary message. Expected: Decoding fails
- Encoding an object where the fieldNumbers in the schema are not sequential Expected: Encoding succeeds
- Decoding a binary message where the fieldNumbers in the schema are not sequential Expected: Decoding succeeds
- Decoding a binary message where one required property (not of type array) is not contained in the binary message Expected: Decoding fails
- Decoding a binary message that contains a field number not present in the schema. Expected: Decoding fails
- Decoding a binary message that contains some bytes at the end that cannot be decoded to some key-value pairs. E.g., a binary message contatenated with the byte 0x00. Expected: Decoding fails
- A binary message contains a key-value pair for a property of type array for which packed encoding is used (for example boolean), and the value exist as empty bytes. Expected: Decoding fails
### Additional Information
Most of the tests should be covered by adding protocol spec.
| non_test | update lisk codec to disallow additional or missing data while decoding description currently x encode decode x is enforced at however for efficiency and consistency this should be implemented in decode of the codec while decoding it should fail if existing field number in the schema does not exist in the binary except for array empty array is allow not to appear in the binary it should fail if additional data exist in the binary regardless of position additionally missing tests in the acceptance criteria should be implemented acceptance criteria decoding sint values using readsint that are out of range expected decoding should fail decoding a boolean value where the value is a byte unequal to and expected decoding should fail encoding a string that contains some non ascii characters expected encoding succeeds decoding a string that contains some non ascii characters expected decoding succeeds encoding empty array where the datatype of the items implies non packed encoding e g string expected binary message is empty schema contains a property of type array where the datatype of the items implies non packed encoding e g string the binary message is empty expected decoded to the property that contains an empty array object to encode has a property that is not contained in the schema expected encoding fails decoding a binary message that does not respect the fieldnumber order expected decoding fails decoding a binary message where one fieldnumber is used twice in the binary message the fieldnumber order is repected i e the two key value pairs with the same fieldnumber must be adjacent in the binary message expected decoding fails encoding an object where the fieldnumbers in the schema are not sequential expected encoding succeeds decoding a binary message where the fieldnumbers in the schema are not sequential expected decoding succeeds decoding a binary message where one required property not of type array is not contained in the binary message expected decoding fails decoding a binary message that contains a field number not present in the schema expected decoding fails decoding a binary message that contains some bytes at the end that cannot be decoded to some key value pairs e g a binary message contatenated with the byte expected decoding fails a binary message contains a key value pair for a property of type array for which packed encoding is used for example boolean and the value exist as empty bytes expected decoding fails additional information most of the tests should be covered by adding protocol spec | 0 |
79,357 | 10,120,685,146 | IssuesEvent | 2019-07-31 14:12:42 | kids-first/kf-api-release-coordinator | https://api.github.com/repos/kids-first/kf-api-release-coordinator | closed | Add sphinx docs site | documentation | We should update existing documentation to use a sphinx docs site like most other code bases. | 1.0 | Add sphinx docs site - We should update existing documentation to use a sphinx docs site like most other code bases. | non_test | add sphinx docs site we should update existing documentation to use a sphinx docs site like most other code bases | 0 |
79,504 | 7,718,215,553 | IssuesEvent | 2018-05-23 15:38:41 | FreeUKGen/FreeUKRegProductIssues | https://api.github.com/repos/FreeUKGen/FreeUKRegProductIssues | closed | 105278950 Manage Syndicate button giving error message (Denise) | testing | Issue reported by **DenGageSC** at 2018-05-03 12:09:10 UTC
Time: 2018-05-03T11:19:59+00:00
Session ID: 7cac3e856b0c06182e402ecef296ce80
Problem Page URL: [/manage_resources/new](/manage_resources/new)
Previous Page URL: [https://www.freereg.org.uk/](https://www.freereg.org.uk/)
Reported Issue:
(Denise)
http://www13.freereg.org.uk/uploads/feedback/screenshot/5aeafbe6f493fd0aa060e54c/Untitled_drawing.jpg

| 1.0 | 105278950 Manage Syndicate button giving error message (Denise) - Issue reported by **DenGageSC** at 2018-05-03 12:09:10 UTC
Time: 2018-05-03T11:19:59+00:00
Session ID: 7cac3e856b0c06182e402ecef296ce80
Problem Page URL: [/manage_resources/new](/manage_resources/new)
Previous Page URL: [https://www.freereg.org.uk/](https://www.freereg.org.uk/)
Reported Issue:
(Denise)
http://www13.freereg.org.uk/uploads/feedback/screenshot/5aeafbe6f493fd0aa060e54c/Untitled_drawing.jpg

| test | manage syndicate button giving error message denise issue reported by dengagesc at utc time session id problem page url manage resources new previous page url reported issue denise | 1 |
166,142 | 12,891,924,692 | IssuesEvent | 2020-07-13 18:38:10 | Joystream/joystream | https://api.github.com/repos/Joystream/joystream | opened | Deepen end-to-end tests | enhancement network-integration-test | # Background
Our current end-to-end network tests programmatically issue transaction, and simply ensure that extrinsic results are successful or failed, as expected.
This is a fine first step, but it's also obvious that there is much room to deepen the tests in how much of the software they cover. At present, these tests are more like full node integration tests than anything else. For example, considerable effort in our manual QA efforts does and will continue to focus on making sure that the CLI and Pioneer work properly. As we keep expanding the scope of these products, the need for automated regression testing will escalate. We will also introduce more nodes in the testing, such as for storage and query infrastructure, it will become increasingly important to ensure that applications and services that depend on this infrastructure are working, rather than directly writing tests that speak to these low-level infrastructure nodes.
# Proposal
Our tests read-write to the network exclusively through the end-user facing products we have so that we get a genuine end-to-end guarantee that everything is working. This means the tests only directly control and read the system chain through
- the CLI
- Pioneer
- Atlas
and we no longer issue raw transactions. In some cases, there may be multiple ways to generate the same read or write operation, if it is represented in multiple user-facing applications, in which case we have to apply our judgement about what is most practical vs. the value of application coverage on a given feature.
The primary obstacle will be how to interact and observe through the web apps. | 1.0 | Deepen end-to-end tests - # Background
Our current end-to-end network tests programmatically issue transaction, and simply ensure that extrinsic results are successful or failed, as expected.
This is a fine first step, but it's also obvious that there is much room to deepen the tests in how much of the software they cover. At present, these tests are more like full node integration tests than anything else. For example, considerable effort in our manual QA efforts does and will continue to focus on making sure that the CLI and Pioneer work properly. As we keep expanding the scope of these products, the need for automated regression testing will escalate. We will also introduce more nodes in the testing, such as for storage and query infrastructure, it will become increasingly important to ensure that applications and services that depend on this infrastructure are working, rather than directly writing tests that speak to these low-level infrastructure nodes.
# Proposal
Our tests read-write to the network exclusively through the end-user facing products we have so that we get a genuine end-to-end guarantee that everything is working. This means the tests only directly control and read the system chain through
- the CLI
- Pioneer
- Atlas
and we no longer issue raw transactions. In some cases, there may be multiple ways to generate the same read or write operation, if it is represented in multiple user-facing applications, in which case we have to apply our judgement about what is most practical vs. the value of application coverage on a given feature.
The primary obstacle will be how to interact and observe through the web apps. | test | deepen end to end tests background our current end to end network tests programmatically issue transaction and simply ensure that extrinsic results are successful or failed as expected this is a fine first step but it s also obvious that there is much room to deepen the tests in how much of the software they cover at present these tests are more like full node integration tests than anything else for example considerable effort in our manual qa efforts does and will continue to focus on making sure that the cli and pioneer work properly as we keep expanding the scope of these products the need for automated regression testing will escalate we will also introduce more nodes in the testing such as for storage and query infrastructure it will become increasingly important to ensure that applications and services that depend on this infrastructure are working rather than directly writing tests that speak to these low level infrastructure nodes proposal our tests read write to the network exclusively through the end user facing products we have so that we get a genuine end to end guarantee that everything is working this means the tests only directly control and read the system chain through the cli pioneer atlas and we no longer issue raw transactions in some cases there may be multiple ways to generate the same read or write operation if it is represented in multiple user facing applications in which case we have to apply our judgement about what is most practical vs the value of application coverage on a given feature the primary obstacle will be how to interact and observe through the web apps | 1 |
88,257 | 3,775,499,409 | IssuesEvent | 2016-03-17 13:48:21 | matthiaskoenig/cy3sbml | https://api.github.com/repos/matthiaskoenig/cy3sbml | opened | [layout] Port reposition features from cy2sbml | priority | Easy solution for applying layouts and partial layouts without the overhead of sbml-layouts.
Functionality already in cy2sbml. Just must be ported. | 1.0 | [layout] Port reposition features from cy2sbml - Easy solution for applying layouts and partial layouts without the overhead of sbml-layouts.
Functionality already in cy2sbml. Just must be ported. | non_test | port reposition features from easy solution for applying layouts and partial layouts without the overhead of sbml layouts functionality already in just must be ported | 0 |
134,410 | 10,914,617,744 | IssuesEvent | 2019-11-21 09:33:18 | owncloud/phoenix | https://api.github.com/repos/owncloud/phoenix | closed | Add acceptance tests for Public link Sharing | QA-p3 QA-team dev:acceptance-tests | <!--
Thanks for reporting issues back to ownCloud! This is the issue tracker of ownCloud, if you have any support question please check out https://owncloud.org/support
This is the bug tracker for the Phoenix. Find other components at https://github.com/owncloud/core/blob/master/.github/CONTRIBUTING.md#guidelines
For reporting potential security issues please see https://owncloud.org/security/
To make it possible for us to help you please fill out below information carefully.
Before reporting any issues please make sure that you're using the latest available version for your major branch (e.g. 9.0.x), see https://owncloud.org/changelog/
-->
### Acceptance tests for public link sharing
Inside phoenix, test scenarios inside public link feature are left copied and unimplemented from core.
Implement tests for public link sharing in phoenix:
- [x] Implement the skipped tests for public link sharing as per the feature file:
https://github.com/owncloud/phoenix/blob/master/tests/acceptance/features/webUISharingPublic/shareByPublicLink.feature | 1.0 | Add acceptance tests for Public link Sharing - <!--
Thanks for reporting issues back to ownCloud! This is the issue tracker of ownCloud, if you have any support question please check out https://owncloud.org/support
This is the bug tracker for the Phoenix. Find other components at https://github.com/owncloud/core/blob/master/.github/CONTRIBUTING.md#guidelines
For reporting potential security issues please see https://owncloud.org/security/
To make it possible for us to help you please fill out below information carefully.
Before reporting any issues please make sure that you're using the latest available version for your major branch (e.g. 9.0.x), see https://owncloud.org/changelog/
-->
### Acceptance tests for public link sharing
Inside phoenix, test scenarios inside public link feature are left copied and unimplemented from core.
Implement tests for public link sharing in phoenix:
- [x] Implement the skipped tests for public link sharing as per the feature file:
https://github.com/owncloud/phoenix/blob/master/tests/acceptance/features/webUISharingPublic/shareByPublicLink.feature | test | add acceptance tests for public link sharing thanks for reporting issues back to owncloud this is the issue tracker of owncloud if you have any support question please check out this is the bug tracker for the phoenix find other components at for reporting potential security issues please see to make it possible for us to help you please fill out below information carefully before reporting any issues please make sure that you re using the latest available version for your major branch e g x see acceptance tests for public link sharing inside phoenix test scenarios inside public link feature are left copied and unimplemented from core implement tests for public link sharing in phoenix implement the skipped tests for public link sharing as per the feature file | 1 |
112,538 | 4,534,122,867 | IssuesEvent | 2016-09-08 13:49:56 | handsontable/handsontable | https://api.github.com/repos/handsontable/handsontable | closed | rowHeights bug | Change Core: alignment/height/width Priority: normal | Hello, i found a bug when setting height for the rows, if specified value zero or null then after 1000 rows occurs Security brake: Too much TRs.... but when value set to undefined everything is fine.
Demo: http://jsfiddle.net/mrj6z35j/ | 1.0 | rowHeights bug - Hello, i found a bug when setting height for the rows, if specified value zero or null then after 1000 rows occurs Security brake: Too much TRs.... but when value set to undefined everything is fine.
Demo: http://jsfiddle.net/mrj6z35j/ | non_test | rowheights bug hello i found a bug when setting height for the rows if specified value zero or null then after rows occurs security brake too much trs but when value set to undefined everything is fine demo | 0 |
178,624 | 14,675,142,810 | IssuesEvent | 2020-12-30 16:53:20 | gctools-outilsgc/gcconnex | https://api.github.com/repos/gctools-outilsgc/gcconnex | opened | GCconnex Knowledge Base main page - Additional information section | Freshdesk Type: Documentation [zube]: Inbox | https://gcconnex.gc.ca/help/knowledgebase#2100029511-en
This is badly outdated. The links need to be updated. | 1.0 | GCconnex Knowledge Base main page - Additional information section - https://gcconnex.gc.ca/help/knowledgebase#2100029511-en
This is badly outdated. The links need to be updated. | non_test | gcconnex knowledge base main page additional information section this is badly outdated the links need to be updated | 0 |
152,267 | 19,680,437,707 | IssuesEvent | 2022-01-11 16:16:26 | jgeraigery/dependabot-core | https://api.github.com/repos/jgeraigery/dependabot-core | closed | WS-2019-0141 (Medium) detected in typo3fluid/fluid-2.5.11 - autoclosed | security vulnerability | ## WS-2019-0141 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>typo3fluid/fluid-2.5.11</b></p></summary>
<p>The TYPO3 Fluid template rendering engine</p>
<p>Library home page: <a href="https://api.github.com/repos/TYPO3/Fluid/zipball/14c371123eebd828ad0bf18884a041870d13492e">https://api.github.com/repos/TYPO3/Fluid/zipball/14c371123eebd828ad0bf18884a041870d13492e</a></p>
<p>
Dependency Hierarchy:
- :x: **typo3fluid/fluid-2.5.11** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/jgeraigery/dependabot-core/commit/4b127eb9cf26ad213bb9929b8ac3d63c66d689f1">4b127eb9cf26ad213bb9929b8ac3d63c66d689f1</a></p>
<p>Found in base branch: <b>main</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
It has been discovered, that TYPO3 CMS is vulnerable to cross-site scripting. It has been discovered that the Fluid Engine (package typo3fluid/fluid) is vulnerable to cross-site scripting when making use of the ternary conditional operator in templates like the following. Affected Versions: 8.0.0-8.7.24 and 9.0.0-9.5.5.
<p>Publish Date: 2019-03-06
<p>URL: <a href=https://typo3.org/security/advisory/typo3-core-sa-2019-013/>WS-2019-0141</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 2 Score Details (<b>5.5</b>)</summary>
<p>
Base Score Metrics not available</p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://typo3.org/security/advisory/typo3-core-sa-2019-013/">https://typo3.org/security/advisory/typo3-core-sa-2019-013/</a></p>
<p>Release Date: 2019-07-08</p>
<p>Fix Resolution: TYPO3.CMS - 8.7.25,9.5.6;Fluid - 2.6.1</p>
</p>
</details>
<p></p>
<!-- <REMEDIATE>{"isOpenPROnVulnerability":true,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"PHP","packageName":"typo3fluid/fluid","packageVersion":"2.5.11","packageFilePaths":[],"isTransitiveDependency":false,"dependencyTree":"typo3fluid/fluid:2.5.11","isMinimumFixVersionAvailable":true,"minimumFixVersion":"TYPO3.CMS - 8.7.25,9.5.6;Fluid - 2.6.1"}],"baseBranches":["main"],"vulnerabilityIdentifier":"WS-2019-0141","vulnerabilityDetails":"It has been discovered, that TYPO3 CMS is vulnerable to cross-site scripting. It has been discovered that the Fluid Engine (package typo3fluid/fluid) is vulnerable to cross-site scripting when making use of the ternary conditional operator in templates like the following. Affected Versions: 8.0.0-8.7.24 and 9.0.0-9.5.5.","vulnerabilityUrl":"https://typo3.org/security/advisory/typo3-core-sa-2019-013/","cvss2Severity":"medium","cvss2Score":"5.5","extraData":{}}</REMEDIATE> --> | True | WS-2019-0141 (Medium) detected in typo3fluid/fluid-2.5.11 - autoclosed - ## WS-2019-0141 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>typo3fluid/fluid-2.5.11</b></p></summary>
<p>The TYPO3 Fluid template rendering engine</p>
<p>Library home page: <a href="https://api.github.com/repos/TYPO3/Fluid/zipball/14c371123eebd828ad0bf18884a041870d13492e">https://api.github.com/repos/TYPO3/Fluid/zipball/14c371123eebd828ad0bf18884a041870d13492e</a></p>
<p>
Dependency Hierarchy:
- :x: **typo3fluid/fluid-2.5.11** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/jgeraigery/dependabot-core/commit/4b127eb9cf26ad213bb9929b8ac3d63c66d689f1">4b127eb9cf26ad213bb9929b8ac3d63c66d689f1</a></p>
<p>Found in base branch: <b>main</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
It has been discovered, that TYPO3 CMS is vulnerable to cross-site scripting. It has been discovered that the Fluid Engine (package typo3fluid/fluid) is vulnerable to cross-site scripting when making use of the ternary conditional operator in templates like the following. Affected Versions: 8.0.0-8.7.24 and 9.0.0-9.5.5.
<p>Publish Date: 2019-03-06
<p>URL: <a href=https://typo3.org/security/advisory/typo3-core-sa-2019-013/>WS-2019-0141</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 2 Score Details (<b>5.5</b>)</summary>
<p>
Base Score Metrics not available</p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://typo3.org/security/advisory/typo3-core-sa-2019-013/">https://typo3.org/security/advisory/typo3-core-sa-2019-013/</a></p>
<p>Release Date: 2019-07-08</p>
<p>Fix Resolution: TYPO3.CMS - 8.7.25,9.5.6;Fluid - 2.6.1</p>
</p>
</details>
<p></p>
<!-- <REMEDIATE>{"isOpenPROnVulnerability":true,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"PHP","packageName":"typo3fluid/fluid","packageVersion":"2.5.11","packageFilePaths":[],"isTransitiveDependency":false,"dependencyTree":"typo3fluid/fluid:2.5.11","isMinimumFixVersionAvailable":true,"minimumFixVersion":"TYPO3.CMS - 8.7.25,9.5.6;Fluid - 2.6.1"}],"baseBranches":["main"],"vulnerabilityIdentifier":"WS-2019-0141","vulnerabilityDetails":"It has been discovered, that TYPO3 CMS is vulnerable to cross-site scripting. It has been discovered that the Fluid Engine (package typo3fluid/fluid) is vulnerable to cross-site scripting when making use of the ternary conditional operator in templates like the following. Affected Versions: 8.0.0-8.7.24 and 9.0.0-9.5.5.","vulnerabilityUrl":"https://typo3.org/security/advisory/typo3-core-sa-2019-013/","cvss2Severity":"medium","cvss2Score":"5.5","extraData":{}}</REMEDIATE> --> | non_test | ws medium detected in fluid autoclosed ws medium severity vulnerability vulnerable library fluid the fluid template rendering engine library home page a href dependency hierarchy x fluid vulnerable library found in head commit a href found in base branch main vulnerability details it has been discovered that cms is vulnerable to cross site scripting it has been discovered that the fluid engine package fluid is vulnerable to cross site scripting when making use of the ternary conditional operator in templates like the following affected versions and publish date url a href cvss score details base score metrics not available suggested fix type upgrade version origin a href release date fix resolution cms fluid isopenpronvulnerability true ispackagebased true isdefaultbranch true packages istransitivedependency false dependencytree fluid isminimumfixversionavailable true minimumfixversion cms fluid basebranches vulnerabilityidentifier ws vulnerabilitydetails it has been discovered that cms is vulnerable to cross site scripting it has been discovered that the fluid engine package fluid is vulnerable to cross site scripting when making use of the ternary conditional operator in templates like the following affected versions and vulnerabilityurl | 0 |
81,498 | 15,736,406,755 | IssuesEvent | 2021-03-30 00:33:32 | sourcegraph/sourcegraph | https://api.github.com/repos/sourcegraph/sourcegraph | opened | Use ripgrep for unindexed search | team/code-insights team/search | Pie-in-the-sky idea: use ripgrep for unindexed search. I know we've had prior thoughts here by others, but today we have a legit reason for why doing this would help customers (code insights.)
Code insights has a historical data backfiller which locates a Git commit near a historical point in time, and runs a search against that commit to determine "how many results for query X existed at point Y in time?"
Almost all of these Sourcegraph commit searches (unless it's literally `HEAD`/`main`/`master`) will go directly to `git grep`, which is pretty slow and one of the reasons we make the backfiller go so slowly (so as to not overload gitservers.)
We could likely use ripgrep for unindexed search and see a substantial performance boost for these types of unindexed searches.
Unsure of exactly how much time would be needed to implement this. (I don't imagine too complex: checkout the right git revision, run `ripgrep` over it - instead of `git grep` in the bare git repo) | 1.0 | Use ripgrep for unindexed search - Pie-in-the-sky idea: use ripgrep for unindexed search. I know we've had prior thoughts here by others, but today we have a legit reason for why doing this would help customers (code insights.)
Code insights has a historical data backfiller which locates a Git commit near a historical point in time, and runs a search against that commit to determine "how many results for query X existed at point Y in time?"
Almost all of these Sourcegraph commit searches (unless it's literally `HEAD`/`main`/`master`) will go directly to `git grep`, which is pretty slow and one of the reasons we make the backfiller go so slowly (so as to not overload gitservers.)
We could likely use ripgrep for unindexed search and see a substantial performance boost for these types of unindexed searches.
Unsure of exactly how much time would be needed to implement this. (I don't imagine too complex: checkout the right git revision, run `ripgrep` over it - instead of `git grep` in the bare git repo) | non_test | use ripgrep for unindexed search pie in the sky idea use ripgrep for unindexed search i know we ve had prior thoughts here by others but today we have a legit reason for why doing this would help customers code insights code insights has a historical data backfiller which locates a git commit near a historical point in time and runs a search against that commit to determine how many results for query x existed at point y in time almost all of these sourcegraph commit searches unless it s literally head main master will go directly to git grep which is pretty slow and one of the reasons we make the backfiller go so slowly so as to not overload gitservers we could likely use ripgrep for unindexed search and see a substantial performance boost for these types of unindexed searches unsure of exactly how much time would be needed to implement this i don t imagine too complex checkout the right git revision run ripgrep over it instead of git grep in the bare git repo | 0 |
415,698 | 28,048,155,106 | IssuesEvent | 2023-03-29 01:56:06 | mochang2/development-diary | https://api.github.com/repos/mochang2/development-diary | opened | react-testing-library ์ฐธ๊ณ ์ฌํญ | documentation | https://yrnana.dev/post/2021-08-15-testing-library/ - ๋ฐ๋์ ๋น ๋ฅธ ํ
์คํธ๊ฐ ์ข์ ํ
์คํธ๋ ์๋ ์ ์๋ค.
https://velog.io/@velopert/react-testing-library - ๊ธฐ๋ณธ์ ์ธ ์ฌ์ฉ๋ฒ.
https://stackoverflow.com/questions/61482418/react-testing-library-screen-vs-render-queries - container vs screen | 1.0 | react-testing-library ์ฐธ๊ณ ์ฌํญ - https://yrnana.dev/post/2021-08-15-testing-library/ - ๋ฐ๋์ ๋น ๋ฅธ ํ
์คํธ๊ฐ ์ข์ ํ
์คํธ๋ ์๋ ์ ์๋ค.
https://velog.io/@velopert/react-testing-library - ๊ธฐ๋ณธ์ ์ธ ์ฌ์ฉ๋ฒ.
https://stackoverflow.com/questions/61482418/react-testing-library-screen-vs-render-queries - container vs screen | non_test | react testing library ์ฐธ๊ณ ์ฌํญ ๋ฐ๋์ ๋น ๋ฅธ ํ
์คํธ๊ฐ ์ข์ ํ
์คํธ๋ ์๋ ์ ์๋ค ๊ธฐ๋ณธ์ ์ธ ์ฌ์ฉ๋ฒ container vs screen | 0 |
351,441 | 32,000,893,377 | IssuesEvent | 2023-09-21 12:13:37 | spring-projects/spring-framework | https://api.github.com/repos/spring-projects/spring-framework | closed | Feature: more flexible callbacks in spring-test | status: waiting-for-triage in: test type: enhancement | What I miss in spring-test when I want to add a new feature is a way to communicate between extension components. If I'm using Spring Boot I want users to be able to just use `@SpringBootTest`, so the `ContextLoader` and the bootstrapper are fixed. I can add `TestExecutionListeners` and `ContextCustomizers` but they don't have a way to influence the way the `ContextLoader` works because they don't share any context.
See also https://github.com/spring-projects/spring-boot/issues/22405 | 1.0 | Feature: more flexible callbacks in spring-test - What I miss in spring-test when I want to add a new feature is a way to communicate between extension components. If I'm using Spring Boot I want users to be able to just use `@SpringBootTest`, so the `ContextLoader` and the bootstrapper are fixed. I can add `TestExecutionListeners` and `ContextCustomizers` but they don't have a way to influence the way the `ContextLoader` works because they don't share any context.
See also https://github.com/spring-projects/spring-boot/issues/22405 | test | feature more flexible callbacks in spring test what i miss in spring test when i want to add a new feature is a way to communicate between extension components if i m using spring boot i want users to be able to just use springboottest so the contextloader and the bootstrapper are fixed i can add testexecutionlisteners and contextcustomizers but they don t have a way to influence the way the contextloader works because they don t share any context see also | 1 |
47,798 | 25,190,760,002 | IssuesEvent | 2022-11-12 00:25:17 | evhub/coconut | https://api.github.com/repos/evhub/coconut | closed | Add pipe into partial optimization for implicit operator function partials | performance resolved | Should compile
```
x |> (.+1)
```
to
```
x + 1
``` | True | Add pipe into partial optimization for implicit operator function partials - Should compile
```
x |> (.+1)
```
to
```
x + 1
``` | non_test | add pipe into partial optimization for implicit operator function partials should compile x to x | 0 |
265,963 | 23,213,145,168 | IssuesEvent | 2022-08-02 12:00:33 | abpframework/abp | https://api.github.com/repos/abpframework/abp | closed | Test CLI PRs (preview version) | abp-cli in-progress test |
- [x] https://github.com/abpframework/abp/pull/13049
- [x] https://github.com/abpframework/abp/pull/13083
Since it is difficult to test these PRs before the preview, they will be tested when the preview version is released. | 1.0 | Test CLI PRs (preview version) -
- [x] https://github.com/abpframework/abp/pull/13049
- [x] https://github.com/abpframework/abp/pull/13083
Since it is difficult to test these PRs before the preview, they will be tested when the preview version is released. | test | test cli prs preview version since it is difficult to test these prs before the preview they will be tested when the preview version is released | 1 |
100,837 | 8,756,569,649 | IssuesEvent | 2018-12-14 18:11:05 | flutter/flutter | https://api.github.com/repos/flutter/flutter | closed | `flutter test` fails while `flutter run path/to/test.dart` succeeds | a: tests waiting for customer response | ## Steps to Reproduce
1. Check out https://github.com/filiph/hn_app/tree/2ab7e86806c6fbf4bec2f3a11129d706a9a3b3c7 (a simple app sample with a single widget test)
2. Run test with `flutter run test/widget_test.dart`. Verify that it is passing. (You may need to hit `R` to hot restart.)
3. Now run the same test with `flutter test`.
Context: The test is trying to verify that after dragging to refresh, the open/close state of the `ExpansionTile`s is reset. If you want to see the regression that this test is trying to test against, comment out main.dart:56 (`key: Key(...)`).
The correct behavior:

The incorrect behavior (which we are not testing - I just want to show what we're preventing with the test):

When you run the app (`flutter run` or `flutter run test/widget_test.dart`), you can clearly see that the open/close state is correctly reset. But the test fails in the headless (`flutter test`) mode. In that mode, the `ExpansionTile` is still open.
I've talked to @goderbauer about this and it doesn't (immediately) seem that there's a problem with the test itself.
## Test code
Also included in the repo. Adding here for convenience:
```dart
testWidgets('refresh clears open state', (WidgetTester tester) async {
// Build our app and trigger a frame.
await tester.pumpWidget(new MyApp());
expect(find.byIcon(Icons.launch), findsNothing);
await tester.tap(find.byType(ExpansionTile).at(2));
await tester.pump();
expect(find.byIcon(Icons.launch), findsOneWidget);
await tester.drag(
find.byType(ExpansionTile).first, const Offset(0.0, 150.0));
await tester.pumpAndSettle();
// debugDumpApp();
expect(find.byType(RefreshProgressIndicator), findsNothing);
expect(find.byIcon(Icons.launch), findsNothing);
});
```
## Test output
### When run on device with `flutter run path/to/test.dart`:
```
flutter: 00:00 \^[[32m+0\^[[0m: - refresh clears open state<โฆ>
Restarted app in 1,603ms.
flutter: 00:02 \^[[32m+1\^[[0m: All tests passed!<โฆ>
```
### When run in test framework with `flutter test`
```
$ flutter test
00:05 +0: - refresh clears open state
โโโก EXCEPTION CAUGHT BY FLUTTER TEST FRAMEWORK โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
The following TestFailure object was thrown running a test:
Expected: no matching nodes in the widget tree
Actual: ?:<exactly one widget with icon "IconData(U+0E895)" (ignoring offstage widgets):
Icon(IconData(U+0E895))>
Which: means one was found but none were expected
When the exception was thrown, this was the stack:
#4 main.<anonymous closure> (file:///Users/filiph/dev/hn_app/test/widget_test.dart:30:5)
<asynchronous suspension>
#5 testWidgets.<anonymous closure>.<anonymous closure>.<anonymous closure> (package:flutter_test/src/widget_tester.dart:63:25)
#6 TestWidgetsFlutterBinding._runTestBody (package:flutter_test/src/binding.dart:509:19)
<asynchronous suspension>
#9 TestWidgetsFlutterBinding._runTest (package:flutter_test/src/binding.dart:494:14)
#10 AutomatedTestWidgetsFlutterBinding.runTest.<anonymous closure> (package:flutter_test/src/binding.dart:751:24)
#16 AutomatedTestWidgetsFlutterBinding.runTest (package:flutter_test/src/binding.dart:749:16)
#17 testWidgets.<anonymous closure>.<anonymous closure> (package:flutter_test/src/widget_tester.dart:62:24)
#18 Declarer.test.<anonymous closure>.<anonymous closure>.<anonymous closure> (package:test/src/backend/declarer.dart:161:27)
<asynchronous suspension>
#19 Invoker.waitForOutstandingCallbacks.<anonymous closure> (package:test/src/backend/invoker.dart:249:15)
<asynchronous suspension>
#23 Invoker.waitForOutstandingCallbacks (package:test/src/backend/invoker.dart:246:5)
#24 Declarer.test.<anonymous closure>.<anonymous closure> (package:test/src/backend/declarer.dart:159:33)
#28 Declarer.test.<anonymous closure> (package:test/src/backend/declarer.dart:158:13)
<asynchronous suspension>
#29 Invoker._onRun.<anonymous closure>.<anonymous closure>.<anonymous closure>.<anonymous closure> (package:test/src/backend/invoker.dart:403:25)
<asynchronous suspension>
#43 _Timer._runTimers (dart:isolate/runtime/libtimer_impl.dart:382:19)
#44 _Timer._handleMessage (dart:isolate/runtime/libtimer_impl.dart:416:5)
#45 _RawReceivePortImpl._handleMessage (dart:isolate/runtime/libisolate_patch.dart:165:12)
(elided 26 frames from class _FakeAsync, package dart:async, and package stack_trace)
This was caught by the test expectation on the following line:
file:///Users/filiph/dev/hn_app/test/widget_test.dart line 30
The test description was:
refresh clears open state
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
00:05 +0 -1: - refresh clears open state [E]
Test failed. See exception logs above.
The test description was: refresh clears open state
00:05 +0 -1: Some tests failed.
```
## Logs
```
$ flutter run --verbose
[ +25 ms] [/Users/filiph/dev/flutter/] git rev-parse --abbrev-ref --symbolic @{u}
[ +28 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u}
[ ] origin/beta
[ ] [/Users/filiph/dev/flutter/] git rev-parse --abbrev-ref HEAD
[ +6 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD
[ ] beta
[ ] [/Users/filiph/dev/flutter/] git ls-remote --get-url origin
[ +4 ms] Exit code 0 from: git ls-remote --get-url origin
[ ] https://github.com/flutter/flutter.git
[ ] [/Users/filiph/dev/flutter/] git log -n 1 --pretty=format:%H
[ +6 ms] Exit code 0 from: git log -n 1 --pretty=format:%H
[ ] f9bb4289e9fd861d70ae78bcc3a042ef1b35cc9d
[ ] [/Users/filiph/dev/flutter/] git log -n 1 --pretty=format:%ar
[ +5 ms] Exit code 0 from: git log -n 1 --pretty=format:%ar
[ ] 3 weeks ago
[ ] [/Users/filiph/dev/flutter/] git describe --match v*.*.* --first-parent --long --tags
[ +9 ms] Exit code 0 from: git describe --match v*.*.* --first-parent --long --tags
[ ] v0.4.4-0-gf9bb4289e
[+1367 ms] /usr/bin/defaults read /Applications/Android Studio.app/Contents/Info CFBundleShortVersionString
[ +61 ms] Exit code 0 from: /usr/bin/defaults read /Applications/Android Studio.app/Contents/Info CFBundleShortVersionString
[ ] 3.1
[ +108 ms] /Users/filiph/Library/Android/sdk/platform-tools/adb devices -l
[ +13 ms] Exit code 0 from: /Users/filiph/Library/Android/sdk/platform-tools/adb devices -l
[ ] List of devices attached
[ +4 ms] idevice_id -h
[ +261 ms] /usr/bin/xcrun simctl list --json devices
[ +217 ms] Found plugin url_launcher at /Users/filiph/dev/flutter/.pub-cache/hosted/pub.dartlang.org/url_launcher-3.0.2/
[ +570 ms] Launching lib/main.dart on iPhone X in debug mode...
[ +1 ms] /usr/bin/defaults read /Users/filiph/dev/hn_app/ios/Runner/Info CFBundleIdentifier
[ +57 ms] Exit code 0 from: /usr/bin/defaults read /Users/filiph/dev/hn_app/ios/Runner/Info CFBundleIdentifier
[ ] $(PRODUCT_BUNDLE_IDENTIFIER)
[ ] [ios/Runner.xcodeproj/] /usr/bin/xcodebuild -project /Users/filiph/dev/hn_app/ios/Runner.xcodeproj -target Runner -showBuildSettings
[ +848 ms] Exit code 0 from: /usr/bin/xcodebuild -project /Users/filiph/dev/hn_app/ios/Runner.xcodeproj -target Runner -showBuildSettings
[ ] Build settings for action build and target Runner:
ACTION = build
AD_HOC_CODE_SIGNING_ALLOWED = NO
ALTERNATE_GROUP = eng
ALTERNATE_MODE = u+w,go-w,a+rX
ALTERNATE_OWNER = filiph
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO
ALWAYS_SEARCH_USER_PATHS = NO
ALWAYS_USE_SEPARATE_HEADERMAPS = NO
APPLE_INTERNAL_DEVELOPER_DIR = /AppleInternal/Developer
APPLE_INTERNAL_DIR = /AppleInternal
APPLE_INTERNAL_DOCUMENTATION_DIR = /AppleInternal/Documentation
APPLE_INTERNAL_LIBRARY_DIR = /AppleInternal/Library
APPLE_INTERNAL_TOOLS = /AppleInternal/Developer/Tools
APPLICATION_EXTENSION_API_ONLY = NO
APPLY_RULES_IN_COPY_FILES = NO
ARCHS = arm64
ARCHS_STANDARD = armv7 arm64
ARCHS_STANDARD_32_64_BIT = armv7 arm64
ARCHS_STANDARD_32_BIT = armv7
ARCHS_STANDARD_64_BIT = arm64
ARCHS_STANDARD_INCLUDING_64_BIT = armv7 arm64
ARCHS_UNIVERSAL_IPHONE_OS = armv7 arm64
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon
AVAILABLE_PLATFORMS = appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator
BITCODE_GENERATION_MODE = marker
BUILD_ACTIVE_RESOURCES_ONLY = NO
BUILD_COMPONENTS = headers build
BUILD_DIR = /Users/filiph/dev/hn_app/build/ios
BUILD_ROOT = /Users/filiph/dev/hn_app/build/ios
BUILD_STYLE =
BUILD_VARIANTS = normal
BUILT_PRODUCTS_DIR = /Users/filiph/dev/hn_app/build/ios/Release-iphoneos
CACHE_ROOT = /var/folders/p_/8567k9tn6cg7_f1bhzhhvh8c0028jd/C/com.apple.DeveloperTools/9.4-9F1027a/Xcode
CCHROOT = /var/folders/p_/8567k9tn6cg7_f1bhzhhvh8c0028jd/C/com.apple.DeveloperTools/9.4-9F1027a/Xcode
CHMOD = /bin/chmod
CHOWN = /usr/sbin/chown
CLANG_ANALYZER_NONNULL = YES
CLANG_CXX_LANGUAGE_STANDARD = gnu++0x
CLANG_CXX_LIBRARY = libc++
CLANG_ENABLE_MODULES = YES
CLANG_ENABLE_OBJC_ARC = YES
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES
CLANG_WARN_BOOL_CONVERSION = YES
CLANG_WARN_COMMA = YES
CLANG_WARN_CONSTANT_CONVERSION = YES
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR
CLANG_WARN_EMPTY_BODY = YES
CLANG_WARN_ENUM_CONVERSION = YES
CLANG_WARN_INFINITE_RECURSION = YES
CLANG_WARN_INT_CONVERSION = YES
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES
CLANG_WARN_STRICT_PROTOTYPES = YES
CLANG_WARN_SUSPICIOUS_MOVE = YES
CLANG_WARN_UNREACHABLE_CODE = YES
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES
CLASS_FILE_DIR = /Users/filiph/dev/hn_app/build/ios/Runner.build/Release-iphoneos/Runner.build/JavaClasses
CLEAN_PRECOMPS = YES
CLONE_HEADERS = NO
CODESIGNING_FOLDER_PATH = /Users/filiph/dev/hn_app/build/ios/Release-iphoneos/Runner.app
CODE_SIGNING_ALLOWED = YES
CODE_SIGNING_REQUIRED = YES
CODE_SIGN_CONTEXT_CLASS = XCiPhoneOSCodeSignContext
CODE_SIGN_IDENTITY = iPhone Developer
CODE_SIGN_INJECT_BASE_ENTITLEMENTS = YES
COLOR_DIAGNOSTICS = NO
COMBINE_HIDPI_IMAGES = NO
COMPILER_INDEX_STORE_ENABLE = Default
COMPOSITE_SDK_DIRS = /Users/filiph/dev/hn_app/build/ios/CompositeSDKs
COMPRESS_PNG_FILES = YES
CONFIGURATION = Release
CONFIGURATION_BUILD_DIR = /Users/filiph/dev/hn_app/build/ios/Release-iphoneos
CONFIGURATION_TEMP_DIR = /Users/filiph/dev/hn_app/build/ios/Runner.build/Release-iphoneos
CONTENTS_FOLDER_PATH = Runner.app
COPYING_PRESERVES_HFS_DATA = NO
COPY_HEADERS_RUN_UNIFDEF = NO
COPY_PHASE_STRIP = NO
COPY_RESOURCES_FROM_STATIC_FRAMEWORKS = YES
CORRESPONDING_SIMULATOR_PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform
CORRESPONDING_SIMULATOR_PLATFORM_NAME = iphonesimulator
CORRESPONDING_SIMULATOR_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk
CORRESPONDING_SIMULATOR_SDK_NAME = iphonesimulator11.4
CP = /bin/cp
CREATE_INFOPLIST_SECTION_IN_BINARY = NO
CURRENT_ARCH = arm64
CURRENT_VARIANT = normal
DEAD_CODE_STRIPPING = YES
DEBUGGING_SYMBOLS = YES
DEBUG_INFORMATION_FORMAT = dwarf-with-dsym
DEFAULT_COMPILER = com.apple.compilers.llvm.clang.1_0
DEFAULT_KEXT_INSTALL_PATH = /System/Library/Extensions
DEFINES_MODULE = NO
DEPLOYMENT_LOCATION = NO
DEPLOYMENT_POSTPROCESSING = NO
DEPLOYMENT_TARGET_CLANG_ENV_NAME = IPHONEOS_DEPLOYMENT_TARGET
DEPLOYMENT_TARGET_CLANG_FLAG_NAME = miphoneos-version-min
DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX = -miphoneos-version-min=
DEPLOYMENT_TARGET_SETTING_NAME = IPHONEOS_DEPLOYMENT_TARGET
DEPLOYMENT_TARGET_SUGGESTED_VALUES = 8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4
DERIVED_FILES_DIR = /Users/filiph/dev/hn_app/build/ios/Runner.build/Release-iphoneos/Runner.build/DerivedSources
DERIVED_FILE_DIR = /Users/filiph/dev/hn_app/build/ios/Runner.build/Release-iphoneos/Runner.build/DerivedSources
DERIVED_SOURCES_DIR = /Users/filiph/dev/hn_app/build/ios/Runner.build/Release-iphoneos/Runner.build/DerivedSources
DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Applications
DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin
DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer
DEVELOPER_FRAMEWORKS_DIR = /Applications/Xcode.app/Contents/Developer/Library/Frameworks
DEVELOPER_FRAMEWORKS_DIR_QUOTED = /Applications/Xcode.app/Contents/Developer/Library/Frameworks
DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/Developer/Library
DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Tools
DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr
DEVELOPMENT_LANGUAGE = English
DOCUMENTATION_FOLDER_PATH = Runner.app/English.lproj/Documentation
DO_HEADER_SCANNING_IN_JAM = NO
DSTROOT = /tmp/Runner.dst
DT_TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
DWARF_DSYM_FILE_NAME = Runner.app.dSYM
DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT = NO
DWARF_DSYM_FOLDER_PATH = /Users/filiph/dev/hn_app/build/ios/Release-iphoneos
EFFECTIVE_PLATFORM_NAME = -iphoneos
EMBEDDED_CONTENT_CONTAINS_SWIFT = NO
EMBEDDED_PROFILE_NAME = embedded.mobileprovision
EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE = NO
ENABLE_BITCODE = NO
ENABLE_DEFAULT_HEADER_SEARCH_PATHS = YES
ENABLE_HEADER_DEPENDENCIES = YES
ENABLE_NS_ASSERTIONS = NO
ENABLE_ON_DEMAND_RESOURCES = YES
ENABLE_STRICT_OBJC_MSGSEND = YES
ENABLE_TESTABILITY = NO
ENTITLEMENTS_ALLOWED = YES
ENTITLEMENTS_REQUIRED = YES
EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS = .DS_Store .svn .git .hg CVS
EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES = *.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj
EXECUTABLES_FOLDER_PATH = Runner.app/Executables
EXECUTABLE_FOLDER_PATH = Runner.app
EXECUTABLE_NAME = Runner
EXECUTABLE_PATH = Runner.app/Runner
EXPANDED_CODE_SIGN_IDENTITY =
EXPANDED_CODE_SIGN_IDENTITY_NAME =
EXPANDED_PROVISIONING_PROFILE =
FILE_LIST = /Users/filiph/dev/hn_app/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects/LinkFileList
FIXED_FILES_DIR = /Users/filiph/dev/hn_app/build/ios/Runner.build/Release-iphoneos/Runner.build/FixedFiles
FLUTTER_APPLICATION_PATH = /Users/filiph/dev/hn_app
FLUTTER_BUILD_DIR = build
FLUTTER_BUILD_MODE = debug
FLUTTER_FRAMEWORK_DIR = /Users/filiph/dev/flutter/bin/cache/artifacts/engine/ios
FLUTTER_ROOT = /Users/filiph/dev/flutter
FLUTTER_TARGET = lib/main.dart
FRAMEWORKS_FOLDER_PATH = Runner.app/Frameworks
FRAMEWORK_FLAG_PREFIX = -framework
FRAMEWORK_SEARCH_PATHS = "/Users/filiph/dev/hn_app/build/ios/Release-iphoneos/url_launcher" "/Users/filiph/dev/hn_app/ios/Pods/../.symlinks/flutter/ios" "/Users/filiph/dev/hn_app/build/ios/Release-iphoneos/url_launcher" "/Users/filiph/dev/hn_app/ios/Pods/../.symlinks/flutter/ios" /Users/filiph/dev/hn_app/ios/Flutter
FRAMEWORK_VERSION = A
FULL_PRODUCT_NAME = Runner.app
GCC3_VERSION = 3.3
GCC_C_LANGUAGE_STANDARD = gnu99
GCC_INLINES_ARE_PRIVATE_EXTERN = YES
GCC_NO_COMMON_BLOCKS = YES
GCC_PFE_FILE_C_DIALECTS = c objective-c c++ objective-c++
GCC_PREPROCESSOR_DEFINITIONS = COCOAPODS=1 COCOAPODS=1
GCC_SYMBOLS_PRIVATE_EXTERN = YES
GCC_THUMB_SUPPORT = YES
GCC_TREAT_WARNINGS_AS_ERRORS = NO
GCC_VERSION = com.apple.compilers.llvm.clang.1_0
GCC_VERSION_IDENTIFIER = com_apple_compilers_llvm_clang_1_0
GCC_WARN_64_TO_32_BIT_CONVERSION = YES
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR
GCC_WARN_UNDECLARED_SELECTOR = YES
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE
GCC_WARN_UNUSED_FUNCTION = YES
GCC_WARN_UNUSED_VARIABLE = YES
GENERATE_MASTER_OBJECT_FILE = NO
GENERATE_PKGINFO_FILE = YES
GENERATE_PROFILING_CODE = NO
GENERATE_TEXT_BASED_STUBS = NO
GID = 5000
GROUP = eng
HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT = YES
HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES = YES
HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS = YES
HEADERMAP_INCLUDES_PROJECT_HEADERS = YES
HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES = YES
HEADERMAP_USES_VFS = NO
HIDE_BITCODE_SYMBOLS = YES
HOME = /Users/filiph
ICONV = /usr/bin/iconv
INFOPLIST_EXPAND_BUILD_SETTINGS = YES
INFOPLIST_FILE = Runner/Info.plist
INFOPLIST_OUTPUT_FORMAT = binary
INFOPLIST_PATH = Runner.app/Info.plist
INFOPLIST_PREPROCESS = NO
INFOSTRINGS_PATH = Runner.app/English.lproj/InfoPlist.strings
INLINE_PRIVATE_FRAMEWORKS = NO
INSTALLHDRS_COPY_PHASE = NO
INSTALLHDRS_SCRIPT_PHASE = NO
INSTALL_DIR = /tmp/Runner.dst/Applications
INSTALL_GROUP = eng
INSTALL_MODE_FLAG = u+w,go-w,a+rX
INSTALL_OWNER = filiph
INSTALL_PATH = /Applications
INSTALL_ROOT = /tmp/Runner.dst
IPHONEOS_DEPLOYMENT_TARGET = 8.0
JAVAC_DEFAULT_FLAGS = -J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8
JAVA_APP_STUB = /System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub
JAVA_ARCHIVE_CLASSES = YES
JAVA_ARCHIVE_TYPE = JAR
JAVA_COMPILER = /usr/bin/javac
JAVA_FOLDER_PATH = Runner.app/Java
JAVA_FRAMEWORK_RESOURCES_DIRS = Resources
JAVA_JAR_FLAGS = cv
JAVA_SOURCE_SUBDIR = .
JAVA_USE_DEPENDENCIES = YES
JAVA_ZIP_FLAGS = -urg
JIKES_DEFAULT_FLAGS = +E +OLDCSO
KASAN_DEFAULT_CFLAGS = -DKASAN=1 -fsanitize=address -mllvm -asan-globals-live-support -mllvm -asan-force-dynamic-shadow
KEEP_PRIVATE_EXTERNS = NO
LD_DEPENDENCY_INFO_FILE = /Users/filiph/dev/hn_app/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects-normal/arm64/Runner_dependency_info.dat
LD_GENERATE_MAP_FILE = NO
LD_MAP_FILE_PATH = /Users/filiph/dev/hn_app/build/ios/Runner.build/Release-iphoneos/Runner.build/Runner-LinkMap-normal-arm64.txt
LD_NO_PIE = NO
LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER = YES
LD_RUNPATH_SEARCH_PATHS = '@executable_path/Frameworks' '@loader_path/Frameworks' '@executable_path/Frameworks' '@loader_path/Frameworks' @executable_path/Frameworks
LEGACY_DEVELOPER_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer
LEX = lex
LIBRARY_FLAG_NOSPACE = YES
LIBRARY_FLAG_PREFIX = -l
LIBRARY_KEXT_INSTALL_PATH = /Library/Extensions
LIBRARY_SEARCH_PATHS = /Users/filiph/dev/hn_app/ios/Flutter
LINKER_DISPLAYS_MANGLED_NAMES = NO
LINK_FILE_LIST_normal_arm64 =
LINK_WITH_STANDARD_LIBRARIES = YES
LOCALIZABLE_CONTENT_DIR =
LOCALIZED_RESOURCES_FOLDER_PATH = Runner.app/English.lproj
LOCALIZED_STRING_MACRO_NAMES = NSLocalizedString CFLocalizedString
LOCAL_ADMIN_APPS_DIR = /Applications/Utilities
LOCAL_APPS_DIR = /Applications
LOCAL_DEVELOPER_DIR = /Library/Developer
LOCAL_LIBRARY_DIR = /Library
LOCROOT =
LOCSYMROOT =
MACH_O_TYPE = mh_execute
MAC_OS_X_PRODUCT_BUILD_VERSION = 17E202
MAC_OS_X_VERSION_ACTUAL = 101304
MAC_OS_X_VERSION_MAJOR = 101300
MAC_OS_X_VERSION_MINOR = 1304
METAL_LIBRARY_FILE_BASE = default
METAL_LIBRARY_OUTPUT_DIR = /Users/filiph/dev/hn_app/build/ios/Release-iphoneos/Runner.app
MODULE_CACHE_DIR = /Users/filiph/Library/Developer/Xcode/DerivedData/ModuleCache.noindex
MTL_ENABLE_DEBUG_INFO = NO
NATIVE_ARCH = armv7
NATIVE_ARCH_32_BIT = i386
NATIVE_ARCH_64_BIT = x86_64
NATIVE_ARCH_ACTUAL = x86_64
NO_COMMON = YES
OBJECT_FILE_DIR = /Users/filiph/dev/hn_app/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects
OBJECT_FILE_DIR_normal = /Users/filiph/dev/hn_app/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects-normal
OBJROOT = /Users/filiph/dev/hn_app/build/ios
ONLY_ACTIVE_ARCH = NO
OS = MACOS
OSAC = /usr/bin/osacompile
OTHER_CFLAGS = -iquote "/Users/filiph/dev/hn_app/build/ios/Release-iphoneos/url_launcher/url_launcher.framework/Headers" -iquote "/Users/filiph/dev/hn_app/build/ios/Release-iphoneos/url_launcher/url_launcher.framework/Headers"
OTHER_CPLUSPLUSFLAGS = -iquote "/Users/filiph/dev/hn_app/build/ios/Release-iphoneos/url_launcher/url_launcher.framework/Headers" -iquote "/Users/filiph/dev/hn_app/build/ios/Release-iphoneos/url_launcher/url_launcher.framework/Headers"
OTHER_LDFLAGS = -framework "Flutter" -framework "url_launcher" -framework "Flutter" -framework "url_launcher"
PACKAGE_TYPE = com.apple.package-type.wrapper.application
PASCAL_STRINGS = YES
PATH = /Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/google-cloud-sdk/bin:/usr/local/var/pyenv/shims:/Users/filiph/.nvm/versions/node/v6.10.3/bin:/Users/filiph/.rvm/gems/ruby-2.3.1/bin:/Users/filiph/.rvm/gems/ruby-2.3.1@global/bin:/Users/filiph/.rvm/rubies/ruby-2.3.1/bin:/Users/filiph/dev/flutter/bin:/usr/local/git/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/Applications/VMware Fusion.app/Contents/Public:/usr/local/go/bin:/opt/X11/bin:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Applications/dart/dart-sdk/bin:~/.pub-cache/bin:/Users/filiph/gsutil:~/.pub-cache/bin:/usr/local/bin/depot_tools:/Users/filiph/.rvm/bin
PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES = /usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms
PBDEVELOPMENTPLIST_PATH = Runner.app/pbdevelopment.plist
PFE_FILE_C_DIALECTS = objective-c
PKGINFO_FILE_PATH = /Users/filiph/dev/hn_app/build/ios/Runner.build/Release-iphoneos/Runner.build/PkgInfo
PKGINFO_PATH = Runner.app/PkgInfo
PLATFORM_DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Applications
PLATFORM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin
PLATFORM_DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library
PLATFORM_DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs
PLATFORM_DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Tools
PLATFORM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr
PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform
PLATFORM_DISPLAY_NAME = iOS
PLATFORM_NAME = iphoneos
PLATFORM_PREFERRED_ARCH = arm64
PLATFORM_PRODUCT_BUILD_VERSION = 15F79
PLIST_FILE_OUTPUT_FORMAT = binary
PLUGINS_FOLDER_PATH = Runner.app/PlugIns
PODS_BUILD_DIR = /Users/filiph/dev/hn_app/build/ios
PODS_CONFIGURATION_BUILD_DIR = /Users/filiph/dev/hn_app/build/ios/Release-iphoneos
PODS_PODFILE_DIR_PATH = /Users/filiph/dev/hn_app/ios/.
PODS_ROOT = /Users/filiph/dev/hn_app/ios/Pods
PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR = YES
PRECOMP_DESTINATION_DIR = /Users/filiph/dev/hn_app/build/ios/Runner.build/Release-iphoneos/Runner.build/PrefixHeaders
PRESERVE_DEAD_CODE_INITS_AND_TERMS = NO
PREVIEW_DART_2 = true
PRIVATE_HEADERS_FOLDER_PATH = Runner.app/PrivateHeaders
PRODUCT_BUNDLE_IDENTIFIER = hn_app.flutter.io.hnApp
PRODUCT_MODULE_NAME = Runner
PRODUCT_NAME = Runner
PRODUCT_SETTINGS_PATH = /Users/filiph/dev/hn_app/ios/Runner/Info.plist
PRODUCT_TYPE = com.apple.product-type.application
PROFILING_CODE = NO
PROJECT = Runner
PROJECT_DERIVED_FILE_DIR = /Users/filiph/dev/hn_app/build/ios/Runner.build/DerivedSources
PROJECT_DIR = /Users/filiph/dev/hn_app/ios
PROJECT_FILE_PATH = /Users/filiph/dev/hn_app/ios/Runner.xcodeproj
PROJECT_NAME = Runner
PROJECT_TEMP_DIR = /Users/filiph/dev/hn_app/build/ios/Runner.build
PROJECT_TEMP_ROOT = /Users/filiph/dev/hn_app/build/ios
PROVISIONING_PROFILE_REQUIRED = YES
PUBLIC_HEADERS_FOLDER_PATH = Runner.app/Headers
RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS = YES
REMOVE_CVS_FROM_RESOURCES = YES
REMOVE_GIT_FROM_RESOURCES = YES
REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES = YES
REMOVE_HG_FROM_RESOURCES = YES
REMOVE_SVN_FROM_RESOURCES = YES
RESOURCE_RULES_REQUIRED = YES
REZ_COLLECTOR_DIR = /Users/filiph/dev/hn_app/build/ios/Runner.build/Release-iphoneos/Runner.build/ResourceManagerResources
REZ_OBJECTS_DIR = /Users/filiph/dev/hn_app/build/ios/Runner.build/Release-iphoneos/Runner.build/ResourceManagerResources/Objects
SCAN_ALL_SOURCE_FILES_FOR_INCLUDES = NO
SCRIPTS_FOLDER_PATH = Runner.app/Scripts
SDKROOT = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.4.sdk
SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.4.sdk
SDK_DIR_iphoneos11_4 = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.4.sdk
SDK_NAME = iphoneos11.4
SDK_NAMES = iphoneos11.4
SDK_PRODUCT_BUILD_VERSION = 15F79
SDK_VERSION = 11.4
SDK_VERSION_ACTUAL = 110400
SDK_VERSION_MAJOR = 110000
SDK_VERSION_MINOR = 400
SED = /usr/bin/sed
SEPARATE_STRIP = NO
SEPARATE_SYMBOL_EDIT = NO
SET_DIR_MODE_OWNER_GROUP = YES
SET_FILE_MODE_OWNER_GROUP = NO
SHALLOW_BUNDLE = YES
SHARED_DERIVED_FILE_DIR = /Users/filiph/dev/hn_app/build/ios/Release-iphoneos/DerivedSources
SHARED_FRAMEWORKS_FOLDER_PATH = Runner.app/SharedFrameworks
SHARED_PRECOMPS_DIR = /Users/filiph/dev/hn_app/build/ios/SharedPrecompiledHeaders
SHARED_SUPPORT_FOLDER_PATH = Runner.app/SharedSupport
SKIP_INSTALL = NO
SOURCE_ROOT = /Users/filiph/dev/hn_app/ios
SRCROOT = /Users/filiph/dev/hn_app/ios
STRINGS_FILE_OUTPUT_ENCODING = binary
STRIP_BITCODE_FROM_COPIED_FILES = YES
STRIP_INSTALLED_PRODUCT = YES
STRIP_STYLE = all
STRIP_SWIFT_SYMBOLS = YES
SUPPORTED_DEVICE_FAMILIES = 1,2
SUPPORTED_PLATFORMS = iphonesimulator iphoneos
SUPPORTS_TEXT_BASED_API = NO
SWIFT_COMPILATION_MODE = wholemodule
SWIFT_OBJC_BRIDGING_HEADER = Runner/Runner-Bridging-Header.h
SWIFT_OPTIMIZATION_LEVEL = -O
SWIFT_PLATFORM_TARGET_PREFIX = ios
SWIFT_SWIFT3_OBJC_INFERENCE = On
SWIFT_VERSION = 4.0
SYMROOT = /Users/filiph/dev/hn_app/build/ios
SYSTEM_ADMIN_APPS_DIR = /Applications/Utilities
SYSTEM_APPS_DIR = /Applications
SYSTEM_CORE_SERVICES_DIR = /System/Library/CoreServices
SYSTEM_DEMOS_DIR = /Applications/Extras
SYSTEM_DEVELOPER_APPS_DIR = /Applications/Xcode.app/Contents/Developer/Applications
SYSTEM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin
SYSTEM_DEVELOPER_DEMOS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples
SYSTEM_DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer
SYSTEM_DEVELOPER_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library
SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools
SYSTEM_DEVELOPER_JAVA_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Java Tools
SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Performance Tools
SYSTEM_DEVELOPER_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes
SYSTEM_DEVELOPER_TOOLS = /Applications/Xcode.app/Contents/Developer/Tools
SYSTEM_DEVELOPER_TOOLS_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools
SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools
SYSTEM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr
SYSTEM_DEVELOPER_UTILITIES_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities
SYSTEM_DOCUMENTATION_DIR = /Library/Documentation
SYSTEM_KEXT_INSTALL_PATH = /System/Library/Extensions
SYSTEM_LIBRARY_DIR = /System/Library
TAPI_VERIFY_MODE = ErrorsOnly
TARGETED_DEVICE_FAMILY = 1,2
TARGETNAME = Runner
TARGET_BUILD_DIR = /Users/filiph/dev/hn_app/build/ios/Release-iphoneos
TARGET_NAME = Runner
TARGET_TEMP_DIR = /Users/filiph/dev/hn_app/build/ios/Runner.build/Release-iphoneos/Runner.build
TEMP_DIR = /Users/filiph/dev/hn_app/build/ios/Runner.build/Release-iphoneos/Runner.build
TEMP_FILES_DIR = /Users/filiph/dev/hn_app/build/ios/Runner.build/Release-iphoneos/Runner.build
TEMP_FILE_DIR = /Users/filiph/dev/hn_app/build/ios/Runner.build/Release-iphoneos/Runner.build
TEMP_ROOT = /Users/filiph/dev/hn_app/build/ios
TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
TREAT_MISSING_BASELINES_AS_TEST_FAILURES = NO
UID = 74285
UNLOCALIZED_RESOURCES_FOLDER_PATH = Runner.app
UNSTRIPPED_PRODUCT = NO
USER = filiph
USER_APPS_DIR = /Users/filiph/Applications
USER_LIBRARY_DIR = /Users/filiph/Library
USE_DYNAMIC_NO_PIC = YES
USE_HEADERMAP = YES
USE_HEADER_SYMLINKS = NO
VALIDATE_PRODUCT = YES
VALID_ARCHS = arm64 armv7 armv7s
VERBOSE_PBXCP = NO
VERSIONPLIST_PATH = Runner.app/version.plist
VERSION_INFO_BUILDER = filiph
VERSION_INFO_FILE = Runner_vers.c
VERSION_INFO_STRING = "@(#)PROGRAM:Runner PROJECT:Runner-"
WRAPPER_EXTENSION = app
WRAPPER_NAME = Runner.app
WRAPPER_SUFFIX = .app
WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES = NO
XCODE_APP_SUPPORT_DIR = /Applications/Xcode.app/Contents/Developer/Library/Xcode
XCODE_PRODUCT_BUILD_VERSION = 9F1027a
XCODE_VERSION_ACTUAL = 0940
XCODE_VERSION_MAJOR = 0900
XCODE_VERSION_MINOR = 0940
XPCSERVICES_FOLDER_PATH = Runner.app/XPCServices
YACC = yacc
arch = arm64
variant = normal
[ +13 ms] Building Runner.app for 8C0199F9-DE6D-4A50-86F3-875D58FF15E6.
[ +9 ms] script /dev/null /usr/bin/log stream --style syslog --predicate processImagePath CONTAINS "8C0199F9-DE6D-4A50-86F3-875D58FF15E6"
[ +31 ms] [DEVICE LOG] Filtering the log data using "processImagePath CONTAINS "8C0199F9-DE6D-4A50-86F3-875D58FF15E6""
[ +5 ms] [DEVICE LOG] Timestamp (process)[PID]
[ +127 ms] Skipping kernel compilation. Fingerprint match.
[ +229 ms] Building bundle
[ ] Writing asset files to build/flutter_assets
[ +53 ms] Wrote build/flutter_assets
[ +1 ms] /usr/bin/xcrun simctl get_app_container 8C0199F9-DE6D-4A50-86F3-875D58FF15E6 hn_app.flutter.io.hnApp
[ ] /usr/bin/killall Runner
[ +163 ms] python -c import six
[ +131 ms] [ios/] /usr/bin/xcodebuild -list
[ +595 ms] Exit code 0 from: /usr/bin/xcodebuild -list
[ ] Information about project "Runner":
Targets:
Runner
Build Configurations:
Debug
Release
If no build configuration is specified and -scheme is not passed then "Release" is used.
Schemes:
Runner
[ +1 ms] Trying to resolve native pub services.
[ +1 ms] Looking for YAML at 'pubspec.yaml'
[ ] No services specified in the manifest
[ ] Found 0 service definition(s).
[ ] Copying service frameworks to '/Users/filiph/dev/hn_app/ios/Frameworks'.
[ ] Creating service definitions manifest at 'ios/ServiceDefinitions.json'
[ +9 ms] pod --version
[ +778 ms] 1.5.3
/System/Library/Frameworks/Ruby.framework/Versions/2.3/usr/lib/ruby/2.3.0/universal-darwin17/rbconfig.rb:214: warning: Insecure world writable dir /usr/local/git in PATH, mode 040757
Ignoring eventmachine-1.2.5 because its extensions are not built. Try: gem pristine eventmachine --version 1.2.5
Ignoring executable-hooks-1.3.2 because its extensions are not built. Try: gem pristine executable-hooks --version 1.3.2
Ignoring fast-stemmer-1.0.2 because its extensions are not built. Try: gem pristine fast-stemmer --version 1.0.2
Ignoring ffi-1.9.23 because its extensions are not built. Try: gem pristine ffi --version 1.9.23
Ignoring ffi-1.9.18 because its extensions are not built. Try: gem pristine ffi --version 1.9.18
Ignoring ffi-1.9.17 because its extensions are not built. Try: gem pristine ffi --version 1.9.17
Ignoring ffi-1.9.14 because its extensions are not built. Try: gem pristine ffi --version 1.9.14
Ignoring ffi-1.9.10 because its extensions are not built. Try: gem pristine ffi --version 1.9.10
Ignoring ffi-1.9.6 because its extensions are not built. Try: gem pristine ffi --version 1.9.6
Ignoring gem-wrappers-1.2.7 because its extensions are not built. Try: gem pristine gem-wrappers --version 1.2.7
Ignoring hitimes-1.2.2 because its extensions are not built. Try: gem pristine hitimes --version 1.2.2
Ignoring http_parser.rb-0.6.0 because its extensions are not built. Try: gem pristine http_parser.rb --version 0.6.0
Ignoring nokogiri-1.8.2 because its extensions are not built. Try: gem pristine nokogiri --version 1.8.2
Ignoring nokogiri-1.8.1 because its extensions are not built. Try: gem pristine nokogiri --version 1.8.1
Ignoring nokogiri-1.8.0 because its extensions are not built. Try: gem pristine nokogiri --version 1.8.0
Ignoring nokogiri-1.7.0.1 because its extensions are not built. Try: gem pristine nokogiri --version 1.7.0.1
Ignoring nokogiri-1.6.8.1 because its extensions are not built. Try: gem pristine nokogiri --version 1.6.8.1
Ignoring nokogiri-1.6.8 because its extensions are not built. Try: gem pristine nokogiri --version 1.6.8
Ignoring nokogiri-1.5.11 because its extensions are not built. Try: gem pristine nokogiri --version 1.5.11
Ignoring posix-spawn-0.3.9 because its extensions are not built. Try: gem pristine posix-spawn --version 0.3.9
Ignoring redcarpet-3.2.2 because its extensions are not built. Try: gem pristine redcarpet --version 3.2.2
Ignoring therubyracer-0.12.3 because its extensions are not built. Try: gem pristine therubyracer --version 0.12.3
Ignoring yajl-ruby-1.1.0 because its extensions are not built. Try: gem pristine yajl-ruby --version 1.1.0
[ +4 ms] mkfifo /var/folders/p_/8567k9tn6cg7_f1bhzhhvh8c0028jd/T/flutter_build_log_pipeaUXXOb/pipe_to_stdout
[ +5 ms] Exit code 0 from: mkfifo /var/folders/p_/8567k9tn6cg7_f1bhzhhvh8c0028jd/T/flutter_build_log_pipeaUXXOb/pipe_to_stdout
[ +1 ms] Starting Xcode build...
[ ] [ios/] /usr/bin/env xcrun xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/filiph/dev/hn_app/build/ios -sdk iphonesimulator -arch x86_64 SCRIPT_OUTPUT_STREAM_FILE=/var/folders/p_/8567k9tn6cg7_f1bhzhhvh8c0028jd/T/flutter_build_log_pipeaUXXOb/pipe_to_stdout
[+1077 ms] โโAssembling Flutter resources...
[+1176 ms] โโCompiling, linking and signing...
[+3772 ms] Build settings from command line:
ARCHS = x86_64
BUILD_DIR = /Users/filiph/dev/hn_app/build/ios
SCRIPT_OUTPUT_STREAM_FILE = /var/folders/p_/8567k9tn6cg7_f1bhzhhvh8c0028jd/T/flutter_build_log_pipeaUXXOb/pipe_to_stdout
SDKROOT = iphonesimulator11.4
VERBOSE_SCRIPT_LOGGING = YES
=== BUILD TARGET url_launcher OF PROJECT Pods WITH CONFIGURATION Debug ===
Check dependencies
=== BUILD TARGET Pods-Runner OF PROJECT Pods WITH CONFIGURATION Debug ===
Check dependencies
=== BUILD TARGET Runner OF PROJECT Runner WITH CONFIGURATION Debug ===
Check dependencies
The use of Swift 3 @objc inference in Swift 4 mode is deprecated. Please address deprecated @objc inference warnings, test your code with โUse of deprecated Swift 3 @objc inferenceโ logging enabled, and then disable inference by changing the "Swift 3 @objc Inference" build setting to "Default" for the "Runner" target.
PhaseScriptExecution [CP]\ Check\ Pods\ Manifest.lock /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-29C214C214C14893FC40F685.sh
cd /Users/filiph/dev/hn_app/ios
/bin/sh -c /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-29C214C214C14893FC40F685.sh
PhaseScriptExecution Run\ Script /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh
cd /Users/filiph/dev/hn_app/ios
export ACTION=build
export AD_HOC_CODE_SIGNING_ALLOWED=YES
export ALTERNATE_GROUP=eng
export ALTERNATE_MODE=u+w,go-w,a+rX
export ALTERNATE_OWNER=filiph
export ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES=NO
export ALWAYS_SEARCH_USER_PATHS=NO
export ALWAYS_USE_SEPARATE_HEADERMAPS=NO
export APPLE_INTERNAL_DEVELOPER_DIR=/AppleInternal/Developer
export APPLE_INTERNAL_DIR=/AppleInternal
export APPLE_INTERNAL_DOCUMENTATION_DIR=/AppleInternal/Documentation
export APPLE_INTERNAL_LIBRARY_DIR=/AppleInternal/Library
export APPLE_INTERNAL_TOOLS=/AppleInternal/Developer/Tools
export APPLICATION_EXTENSION_API_ONLY=NO
export APPLY_RULES_IN_COPY_FILES=NO
export ARCHS=x86_64
export ARCHS_STANDARD="i386 x86_64"
export ARCHS_STANDARD_32_64_BIT="i386 x86_64"
export ARCHS_STANDARD_32_BIT=i386
export ARCHS_STANDARD_64_BIT=x86_64
export ARCHS_STANDARD_INCLUDING_64_BIT="i386 x86_64"
export ARCHS_UNIVERSAL_IPHONE_OS="i386 x86_64"
export ASSETCATALOG_COMPILER_APPICON_NAME=AppIcon
export AVAILABLE_PLATFORMS="appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator"
export BITCODE_GENERATION_MODE=marker
export BUILD_ACTIVE_RESOURCES_ONLY=YES
export BUILD_COMPONENTS="headers build"
export BUILD_DIR=/Users/filiph/dev/hn_app/build/ios
export BUILD_ROOT=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Products
export BUILD_STYLE=
export BUILD_VARIANTS=normal
export BUILT_PRODUCTS_DIR=/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator
export CACHE_ROOT=/var/folders/p_/8567k9tn6cg7_f1bhzhhvh8c0028jd/C/com.apple.DeveloperTools/9.4-9F1027a/Xcode
export CCHROOT=/var/folders/p_/8567k9tn6cg7_f1bhzhhvh8c0028jd/C/com.apple.DeveloperTools/9.4-9F1027a/Xcode
export CHMOD=/bin/chmod
export CHOWN=/usr/sbin/chown
export CLANG_ANALYZER_NONNULL=YES
export CLANG_CXX_LANGUAGE_STANDARD=gnu++0x
export CLANG_CXX_LIBRARY=libc++
export CLANG_ENABLE_MODULES=YES
export CLANG_ENABLE_OBJC_ARC=YES
export CLANG_MODULES_BUILD_SESSION_FILE=/Users/filiph/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation
export CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING=YES
export CLANG_WARN_BOOL_CONVERSION=YES
export CLANG_WARN_COMMA=YES
export CLANG_WARN_CONSTANT_CONVERSION=YES
export CLANG_WARN_DIRECT_OBJC_ISA_USAGE=YES_ERROR
export CLANG_WARN_EMPTY_BODY=YES
export CLANG_WARN_ENUM_CONVERSION=YES
export CLANG_WARN_INFINITE_RECURSION=YES
export CLANG_WARN_INT_CONVERSION=YES
export CLANG_WARN_NON_LITERAL_NULL_CONVERSION=YES
export CLANG_WARN_OBJC_LITERAL_CONVERSION=YES
export CLANG_WARN_OBJC_ROOT_CLASS=YES_ERROR
export CLANG_WARN_RANGE_LOOP_ANALYSIS=YES
export CLANG_WARN_STRICT_PROTOTYPES=YES
export CLANG_WARN_SUSPICIOUS_MOVE=YES
export CLANG_WARN_UNREACHABLE_CODE=YES
export CLANG_WARN__DUPLICATE_METHOD_MATCH=YES
export CLASS_FILE_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/JavaClasses
export CLEAN_PRECOMPS=YES
export CLONE_HEADERS=NO
export CODESIGNING_FOLDER_PATH=/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app
export CODE_SIGNING_ALLOWED=YES
export CODE_SIGNING_REQUIRED=YES
export CODE_SIGN_CONTEXT_CLASS=XCiPhoneSimulatorCodeSignContext
export CODE_SIGN_IDENTITY=-
export CODE_SIGN_INJECT_BASE_ENTITLEMENTS=YES
export COLOR_DIAGNOSTICS=NO
export COMBINE_HIDPI_IMAGES=NO
export COMMAND_MODE=legacy
export COMPILER_INDEX_STORE_ENABLE=Default
export COMPOSITE_SDK_DIRS=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/CompositeSDKs
export COMPRESS_PNG_FILES=YES
export CONFIGURATION=Debug
export CONFIGURATION_BUILD_DIR=/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator
export CONFIGURATION_TEMP_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator
export CONTENTS_FOLDER_PATH=Runner.app
export COPYING_PRESERVES_HFS_DATA=NO
export COPY_HEADERS_RUN_UNIFDEF=NO
export COPY_PHASE_STRIP=NO
export COPY_RESOURCES_FROM_STATIC_FRAMEWORKS=YES
export CORRESPONDING_DEVICE_PLATFORM_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform
export CORRESPONDING_DEVICE_PLATFORM_NAME=iphoneos
export CORRESPONDING_DEVICE_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.4.sdk
export CORRESPONDING_DEVICE_SDK_NAME=iphoneos11.4
export CP=/bin/cp
export CREATE_INFOPLIST_SECTION_IN_BINARY=NO
export CURRENT_ARCH=x86_64
export CURRENT_VARIANT=normal
export DEAD_CODE_STRIPPING=YES
export DEBUGGING_SYMBOLS=YES
export DEBUG_INFORMATION_FORMAT=dwarf
export DEFAULT_COMPILER=com.apple.compilers.llvm.clang.1_0
export DEFAULT_KEXT_INSTALL_PATH=/System/Library/Extensions
export DEFINES_MODULE=NO
export DEPLOYMENT_LOCATION=NO
export DEPLOYMENT_POSTPROCESSING=NO
export DEPLOYMENT_TARGET_CLANG_ENV_NAME=IPHONEOS_DEPLOYMENT_TARGET
export DEPLOYMENT_TARGET_CLANG_FLAG_NAME=mios-simulator-version-min
export DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX=-mios-simulator-version-min=
export DEPLOYMENT_TARGET_SETTING_NAME=IPHONEOS_DEPLOYMENT_TARGET
export DEPLOYMENT_TARGET_SUGGESTED_VALUES="8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4"
export DERIVED_FILES_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
export DERIVED_FILE_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
export DERIVED_SOURCES_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
export DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode.app/Contents/Developer/Applications
export DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/usr/bin
export DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer
export DEVELOPER_FRAMEWORKS_DIR=/Applications/Xcode.app/Contents/Developer/Library/Frameworks
export DEVELOPER_FRAMEWORKS_DIR_QUOTED=/Applications/Xcode.app/Contents/Developer/Library/Frameworks
export DEVELOPER_LIBRARY_DIR=/Applications/Xcode.app/Contents/Developer/Library
export DEVELOPER_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
export DEVELOPER_TOOLS_DIR=/Applications/Xcode.app/Contents/Developer/Tools
export DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/usr
export DEVELOPMENT_LANGUAGE=English
export DOCUMENTATION_FOLDER_PATH=Runner.app/English.lproj/Documentation
export DO_HEADER_SCANNING_IN_JAM=NO
export DSTROOT=/tmp/Runner.dst
export DT_TOOLCHAIN_DIR=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
export DWARF_DSYM_FILE_NAME=Runner.app.dSYM
export DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT=NO
export DWARF_DSYM_FOLDER_PATH=/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator
export EFFECTIVE_PLATFORM_NAME=-iphonesimulator
export EMBEDDED_CONTENT_CONTAINS_SWIFT=NO
export EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE=NO
export ENABLE_BITCODE=NO
export ENABLE_DEFAULT_HEADER_SEARCH_PATHS=YES
export ENABLE_HEADER_DEPENDENCIES=YES
export ENABLE_ON_DEMAND_RESOURCES=YES
export ENABLE_STRICT_OBJC_MSGSEND=YES
export ENABLE_TESTABILITY=YES
export ENTITLEMENTS_REQUIRED=YES
export EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS=".DS_Store .svn .git .hg CVS"
export EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES="*.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj"
export EXECUTABLES_FOLDER_PATH=Runner.app/Executables
export EXECUTABLE_FOLDER_PATH=Runner.app
export EXECUTABLE_NAME=Runner
export EXECUTABLE_PATH=Runner.app/Runner
export EXPANDED_CODE_SIGN_IDENTITY=-
export EXPANDED_CODE_SIGN_IDENTITY_NAME=-
export EXPANDED_PROVISIONING_PROFILE=
export FILE_LIST=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects/LinkFileList
export FIXED_FILES_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/FixedFiles
export FLUTTER_APPLICATION_PATH=/Users/filiph/dev/hn_app
export FLUTTER_BUILD_DIR=build
export FLUTTER_BUILD_MODE=debug
export FLUTTER_FRAMEWORK_DIR=/Users/filiph/dev/flutter/bin/cache/artifacts/engine/ios
export FLUTTER_ROOT=/Users/filiph/dev/flutter
export FLUTTER_TARGET=lib/main.dart
export FRAMEWORKS_FOLDER_PATH=Runner.app/Frameworks
export FRAMEWORK_FLAG_PREFIX=-framework
export FRAMEWORK_SEARCH_PATHS="/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/url_launcher /Users/filiph/dev/hn_app/ios/Pods/../.symlinks/flutter/ios /Users/filiph/dev/hn_app/ios/Flutter"
export FRAMEWORK_VERSION=A
export FULL_PRODUCT_NAME=Runner.app
export GCC3_VERSION=3.3
export GCC_C_LANGUAGE_STANDARD=gnu99
export GCC_DYNAMIC_NO_PIC=NO
export GCC_INLINES_ARE_PRIVATE_EXTERN=YES
export GCC_NO_COMMON_BLOCKS=YES
export GCC_OBJC_LEGACY_DISPATCH=YES
export GCC_OPTIMIZATION_LEVEL=0
export GCC_PFE_FILE_C_DIALECTS="c objective-c c++ objective-c++"
export GCC_PREPROCESSOR_DEFINITIONS="DEBUG=1 COCOAPODS=1 COCOAPODS=1"
export GCC_SYMBOLS_PRIVATE_EXTERN=NO
export GCC_TREAT_WARNINGS_AS_ERRORS=NO
export GCC_VERSION=com.apple.compilers.llvm.clang.1_0
export GCC_VERSION_IDENTIFIER=com_apple_compilers_llvm_clang_1_0
export GCC_WARN_64_TO_32_BIT_CONVERSION=YES
export GCC_WARN_ABOUT_RETURN_TYPE=YES_ERROR
export GCC_WARN_UNDECLARED_SELECTOR=YES
export GCC_WARN_UNINITIALIZED_AUTOS=YES_AGGRESSIVE
export GCC_WARN_UNUSED_FUNCTION=YES
export GCC_WARN_UNUSED_VARIABLE=YES
export GENERATE_MASTER_OBJECT_FILE=NO
export GENERATE_PKGINFO_FILE=YES
export GENERATE_PROFILING_CODE=NO
export GENERATE_TEXT_BASED_STUBS=NO
export GID=5000
export GROUP=eng
export HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT=YES
export HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES=YES
export HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS=YES
export HEADERMAP_INCLUDES_PROJECT_HEADERS=YES
export HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES=YES
export HEADERMAP_USES_VFS=NO
export HEADER_SEARCH_PATHS="/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/include "
export HIDE_BITCODE_SYMBOLS=YES
export HOME=/Users/filiph
export ICONV=/usr/bin/iconv
export INFOPLIST_EXPAND_BUILD_SETTINGS=YES
export INFOPLIST_FILE=Runner/Info.plist
export INFOPLIST_OUTPUT_FORMAT=binary
export INFOPLIST_PATH=Runner.app/Info.plist
export INFOPLIST_PREPROCESS=NO
export INFOSTRINGS_PATH=Runner.app/English.lproj/InfoPlist.strings
export INLINE_PRIVATE_FRAMEWORKS=NO
export INSTALLHDRS_COPY_PHASE=NO
export INSTALLHDRS_SCRIPT_PHASE=NO
export INSTALL_DIR=/tmp/Runner.dst/Applications
export INSTALL_GROUP=eng
export INSTALL_MODE_FLAG=u+w,go-w,a+rX
export INSTALL_OWNER=filiph
export INSTALL_PATH=/Applications
export INSTALL_ROOT=/tmp/Runner.dst
export IPHONEOS_DEPLOYMENT_TARGET=8.0
export JAVAC_DEFAULT_FLAGS="-J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8"
export JAVA_APP_STUB=/System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub
export JAVA_ARCHIVE_CLASSES=YES
export JAVA_ARCHIVE_TYPE=JAR
export JAVA_COMPILER=/usr/bin/javac
export JAVA_FOLDER_PATH=Runner.app/Java
export JAVA_FRAMEWORK_RESOURCES_DIRS=Resources
export JAVA_JAR_FLAGS=cv
export JAVA_SOURCE_SUBDIR=.
export JAVA_USE_DEPENDENCIES=YES
export JAVA_ZIP_FLAGS=-urg
export JIKES_DEFAULT_FLAGS="+E +OLDCSO"
export KEEP_PRIVATE_EXTERNS=NO
export LD_DEPENDENCY_INFO_FILE=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_dependency_info.dat
export LD_GENERATE_MAP_FILE=NO
export LD_MAP_FILE_PATH=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-LinkMap-normal-x86_64.txt
export LD_NO_PIE=NO
export LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER=YES
export LD_RUNPATH_SEARCH_PATHS=" '@executable_path/Frameworks' '@loader_path/Frameworks' '@executable_path/Frameworks' '@loader_path/Frameworks' @executable_path/Frameworks"
export LEGACY_DEVELOPER_DIR=/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer
export LEX=lex
export LIBRARY_FLAG_NOSPACE=YES
export LIBRARY_FLAG_PREFIX=-l
export LIBRARY_KEXT_INSTALL_PATH=/Library/Extensions
export LIBRARY_SEARCH_PATHS="/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator /Users/filiph/dev/hn_app/ios/Flutter"
export LINKER_DISPLAYS_MANGLED_NAMES=NO
export LINK_FILE_LIST_normal_x86_64=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.LinkFileList
export LINK_WITH_STANDARD_LIBRARIES=YES
export LOCALIZABLE_CONTENT_DIR=
export LOCALIZED_RESOURCES_FOLDER_PATH=Runner.app/English.lproj
export LOCALIZED_STRING_MACRO_NAMES="NSLocalizedString CFLocalizedString"
export LOCAL_ADMIN_APPS_DIR=/Applications/Utilities
export LOCAL_APPS_DIR=/Applications
export LOCAL_DEVELOPER_DIR=/Library/Developer
export LOCAL_LIBRARY_DIR=/Library
export LOCROOT=
export LOCSYMROOT=
export MACH_O_TYPE=mh_execute
export MAC_OS_X_PRODUCT_BUILD_VERSION=17E202
export MAC_OS_X_VERSION_ACTUAL=101304
export MAC_OS_X_VERSION_MAJOR=101300
export MAC_OS_X_VERSION_MINOR=1304
export METAL_LIBRARY_FILE_BASE=default
export METAL_LIBRARY_OUTPUT_DIR=/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app
export MODULE_CACHE_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/ModuleCache.noindex
export MTL_ENABLE_DEBUG_INFO=YES
export NATIVE_ARCH=i386
export NATIVE_ARCH_32_BIT=i386
export NATIVE_ARCH_64_BIT=x86_64
export NATIVE_ARCH_ACTUAL=x86_64
export NO_COMMON=YES
export OBJC_ABI_VERSION=2
export OBJECT_FILE_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects
export OBJECT_FILE_DIR_normal=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal
export OBJROOT=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex
export ONLY_ACTIVE_ARCH=YES
export OS=MACOS
export OSAC=/usr/bin/osacompile
export OTHER_CFLAGS=" -iquote \"/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/url_launcher/url_launcher.framework/Headers\" -iquote \"/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/url_launcher/url_launcher.framework/Headers\""
export OTHER_CPLUSPLUSFLAGS=" -iquote \"/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/url_launcher/url_launcher.framework/Headers\" -iquote \"/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/url_launcher/url_launcher.framework/Headers\""
export OTHER_LDFLAGS=" -framework \"Flutter\" -framework \"url_launcher\" -framework \"Flutter\" -framework \"url_launcher\""
export PACKAGE_TYPE=com.apple.package-type.wrapper.application
export PASCAL_STRINGS=YES
export PATH="/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Tools:/Applications/google-cloud-sdk/bin:/usr/local/var/pyenv/shims:/Users/filiph/.nvm/versions/node/v6.10.3/bin:/Users/filiph/.rvm/gems/ruby-2.3.1/bin:/Users/filiph/.rvm/gems/ruby-2.3.1@global/bin:/Users/filiph/.rvm/rubies/ruby-2.3.1/bin:/Users/filiph/dev/flutter/bin:/usr/local/git/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/Applications/VMware Fusion.app/Contents/Public:/usr/local/go/bin:/opt/X11/bin:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Applications/dart/dart-sdk/bin:/Users/filiph/.pub-cache/bin:/Users/filiph/gsutil:/usr/local/bin/depot_tools:/Users/filiph/.rvm/bin"
export PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES="/usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms"
export PBDEVELOPMENTPLIST_PATH=Runner.app/pbdevelopment.plist
export PFE_FILE_C_DIALECTS=objective-c
export PKGINFO_FILE_PATH=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PkgInfo
export PKGINFO_PATH=Runner.app/PkgInfo
export PLATFORM_DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications
export PLATFORM_DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin
export PLATFORM_DEVELOPER_LIBRARY_DIR=/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library
export PLATFORM_DEVELOPER_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs
export PLATFORM_DEVELOPER_TOOLS_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Tools
export PLATFORM_DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr
export PLATFORM_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform
export PLATFORM_DISPLAY_NAME="iOS Simulator"
export PLATFORM_NAME=iphonesimulator
export PLATFORM_PREFERRED_ARCH=x86_64
export PLIST_FILE_OUTPUT_FORMAT=binary
export PLUGINS_FOLDER_PATH=Runner.app/PlugIns
export PODS_BUILD_DIR=/Users/filiph/dev/hn_app/build/ios
export PODS_CONFIGURATION_BUILD_DIR=/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator
export PODS_PODFILE_DIR_PATH=/Users/filiph/dev/hn_app/ios/.
export PODS_ROOT=/Users/filiph/dev/hn_app/ios/Pods
export PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR=YES
export PRECOMP_DESTINATION_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PrefixHeaders
export PRESERVE_DEAD_CODE_INITS_AND_TERMS=NO
export PREVIEW_DART_2=true
export PRIVATE_HEADERS_FOLDER_PATH=Runner.app/PrivateHeaders
export PRODUCT_BUNDLE_IDENTIFIER=hn_app.flutter.io.hnApp
export PRODUCT_MODULE_NAME=Runner
export PRODUCT_NAME=Runner
export PRODUCT_SETTINGS_PATH=/Users/filiph/dev/hn_app/ios/Runner/Info.plist
export PRODUCT_TYPE=com.apple.product-type.application
export PROFILING_CODE=NO
export PROJECT=Runner
export PROJECT_DERIVED_FILE_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/DerivedSources
export PROJECT_DIR=/Users/filiph/dev/hn_app/ios
export PROJECT_FILE_PATH=/Users/filiph/dev/hn_app/ios/Runner.xcodeproj
export PROJECT_NAME=Runner
export PROJECT_TEMP_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build
export PROJECT_TEMP_ROOT=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex
export PUBLIC_HEADERS_FOLDER_PATH=Runner.app/Headers
export RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS=YES
export REMOVE_CVS_FROM_RESOURCES=YES
export REMOVE_GIT_FROM_RESOURCES=YES
export REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES=YES
export REMOVE_HG_FROM_RESOURCES=YES
export REMOVE_SVN_FROM_RESOURCES=YES
export REZ_COLLECTOR_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources
export REZ_OBJECTS_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources/Objects
export REZ_SEARCH_PATHS="/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator "
export SCAN_ALL_SOURCE_FILES_FOR_INCLUDES=NO
export SCRIPTS_FOLDER_PATH=Runner.app/Scripts
export SCRIPT_INPUT_FILE_COUNT=0
export SCRIPT_OUTPUT_FILE_COUNT=0
export SCRIPT_OUTPUT_STREAM_FILE=/var/folders/p_/8567k9tn6cg7_f1bhzhhvh8c0028jd/T/flutter_build_log_pipeaUXXOb/pipe_to_stdout
export SDKROOT=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk
export SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk
export SDK_DIR_iphonesimulator11_4=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk
export SDK_NAME=iphonesimulator11.4
export SDK_NAMES=iphonesimulator11.4
export SDK_PRODUCT_BUILD_VERSION=15F79
export SDK_VERSION=11.4
export SDK_VERSION_ACTUAL=110400
export SDK_VERSION_MAJOR=110000
export SDK_VERSION_MINOR=400
export SED=/usr/bin/sed
export SEPARATE_STRIP=NO
export SEPARATE_SYMBOL_EDIT=NO
export SET_DIR_MODE_OWNER_GROUP=YES
export SET_FILE_MODE_OWNER_GROUP=NO
export SHALLOW_BUNDLE=YES
export SHARED_DERIVED_FILE_DIR=/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/DerivedSources
export SHARED_FRAMEWORKS_FOLDER_PATH=Runner.app/SharedFrameworks
export SHARED_PRECOMPS_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/PrecompiledHeaders
export SHARED_SUPPORT_FOLDER_PATH=Runner.app/SharedSupport
export SKIP_INSTALL=NO
export SOURCE_ROOT=/Users/filiph/dev/hn_app/ios
export SRCROOT=/Users/filiph/dev/hn_app/ios
export STRINGS_FILE_OUTPUT_ENCODING=binary
export STRIP_BITCODE_FROM_COPIED_FILES=NO
export STRIP_INSTALLED_PRODUCT=YES
export STRIP_STYLE=all
export STRIP_SWIFT_SYMBOLS=YES
export SUPPORTED_DEVICE_FAMILIES=1,2
export SUPPORTED_PLATFORMS="iphonesimulator iphoneos"
export SUPPORTS_TEXT_BASED_API=NO
export SWIFT_OBJC_BRIDGING_HEADER=Runner/Runner-Bridging-Header.h
export SWIFT_OPTIMIZATION_LEVEL=-Onone
export SWIFT_PLATFORM_TARGET_PREFIX=ios
export SWIFT_SWIFT3_OBJC_INFERENCE=On
export SWIFT_VERSION=4.0
export SYMROOT=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Products
export SYSTEM_ADMIN_APPS_DIR=/Applications/Utilities
export SYSTEM_APPS_DIR=/Applications
export SYSTEM_CORE_SERVICES_DIR=/System/Library/CoreServices
export SYSTEM_DEMOS_DIR=/Applications/Extras
export SYSTEM_DEVELOPER_APPS_DIR=/Applications/Xcode.app/Contents/Developer/Applications
export SYSTEM_DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/usr/bin
export SYSTEM_DEVELOPER_DEMOS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples"
export SYSTEM_DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer
export SYSTEM_DEVELOPER_DOC_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library"
export SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools"
export SYSTEM_DEVELOPER_JAVA_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Java Tools"
export SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Performance Tools"
export SYSTEM_DEVELOPER_RELEASENOTES_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes"
export SYSTEM_DEVELOPER_TOOLS=/Applications/Xcode.app/Contents/Developer/Tools
export SYSTEM_DEVELOPER_TOOLS_DOC_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools"
export SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools"
export SYSTEM_DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/usr
export SYSTEM_DEVELOPER_UTILITIES_DIR=/Applications/Xcode.app/Contents/Developer/Applications/Utilities
export SYSTEM_DOCUMENTATION_DIR=/Library/Documentation
export SYSTEM_KEXT_INSTALL_PATH=/System/Library/Extensions
export SYSTEM_LIBRARY_DIR=/System/Library
export TAPI_VERIFY_MODE=ErrorsOnly
export TARGETED_DEVICE_FAMILY=1,2
export TARGETNAME=Runner
export TARGET_BUILD_DIR=/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator
export TARGET_DEVICE_IDENTIFIER="dvtdevice-DVTiOSDeviceSimulatorPlaceholder-iphonesimulator:placeholder"
export TARGET_NAME=Runner
export TARGET_TEMP_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_FILES_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_FILE_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_ROOT=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex
export TOOLCHAINS=com.apple.dt.toolchain.XcodeDefault
export TOOLCHAIN_DIR=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
export TREAT_MISSING_BASELINES_AS_TEST_FAILURES=NO
export UID=74285
export UNLOCALIZED_RESOURCES_FOLDER_PATH=Runner.app
export UNSTRIPPED_PRODUCT=NO
export USER=filiph
export USER_APPS_DIR=/Users/filiph/Applications
export USER_LIBRARY_DIR=/Users/filiph/Library
export USE_DYNAMIC_NO_PIC=YES
export USE_HEADERMAP=YES
export USE_HEADER_SYMLINKS=NO
export VALIDATE_PRODUCT=NO
export VALID_ARCHS="i386 x86_64"
export VERBOSE_PBXCP=NO
export VERBOSE_SCRIPT_LOGGING=YES
export VERSIONPLIST_PATH=Runner.app/version.plist
export VERSION_INFO_BUILDER=filiph
export VERSION_INFO_FILE=Runner_vers.c
export VERSION_INFO_STRING="\"@(#)PROGRAM:Runner PROJECT:Runner-\""
export WRAPPER_EXTENSION=app
export WRAPPER_NAME=Runner.app
export WRAPPER_SUFFIX=.app
export WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES=NO
export XCODE_APP_SUPPORT_DIR=/Applications/Xcode.app/Contents/Developer/Library/Xcode
export XCODE_PRODUCT_BUILD_VERSION=9F1027a
export XCODE_VERSION_ACTUAL=0940
export XCODE_VERSION_MAJOR=0900
export XCODE_VERSION_MINOR=0940
export XPCSERVICES_FOLDER_PATH=Runner.app/XPCServices
export YACC=yacc
export arch=x86_64
export variant=normal
/bin/sh -c /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh
โฆ mkdir -p -- /Users/filiph/dev/hn_app/ios/Flutter
โฆ rm -rf -- /Users/filiph/dev/hn_app/ios/Flutter/Flutter.framework
โฆ rm -rf -- /Users/filiph/dev/hn_app/ios/Flutter/App.framework
โฆ cp -r -- /Users/filiph/dev/flutter/bin/cache/artifacts/engine/ios/Flutter.framework /Users/filiph/dev/hn_app/ios/Flutter
โฆ find /Users/filiph/dev/hn_app/ios/Flutter/Flutter.framework -type f -exec chmod a-w {} ;
โฆ mkdir -p -- /Users/filiph/dev/hn_app/ios/Flutter/App.framework
โฆ eval
โฆ cp -- /Users/filiph/dev/hn_app/ios/Flutter/AppFrameworkInfo.plist /Users/filiph/dev/hn_app/ios/Flutter/App.framework/Info.plist
โฆ /Users/filiph/dev/flutter/bin/flutter --suppress-analytics --verbose build bundle --target=lib/main.dart --snapshot=build/snapshot_blob.bin --depfile=build/snapshot_blob.bin.d --asset-dir=/Users/filiph/dev/hn_app/ios/Flutter/flutter_assets --preview-dart-2
[ +6 ms] [/Users/filiph/dev/flutter/] git rev-parse --abbrev-ref --symbolic @{u}
[ +35 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u}
[ ] origin/beta
[ ] [/Users/filiph/dev/flutter/] git rev-parse --abbrev-ref HEAD
[ +5 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD
[ ] beta
[ ] [/Users/filiph/dev/flutter/] git ls-remote --get-url origin
[ +5 ms] Exit code 0 from: git ls-remote --get-url origin
[ ] https://github.com/flutter/flutter.git
[ ] [/Users/filiph/dev/flutter/] git log -n 1 --pretty=format:%H
[ +5 ms] Exit code 0 from: git log -n 1 --pretty=format:%H
[ ] f9bb4289e9fd861d70ae78bcc3a042ef1b35cc9d
[ ] [/Users/filiph/dev/flutter/] git log -n 1 --pretty=format:%ar
[ +5 ms] Exit code 0 from: git log -n 1 --pretty=format:%ar
[ ] 3 weeks ago
[ ] [/Users/filiph/dev/flutter/] git describe --match v*.*.* --first-parent --long --tags
[ +6 ms] Exit code 0 from: git describe --match v*.*.* --first-parent --long --tags
[ ] v0.4.4-0-gf9bb4289e
[ +206 ms] Found plugin url_launcher at /Users/filiph/dev/flutter/.pub-cache/hosted/pub.dartlang.org/url_launcher-3.0.2/
[ +281 ms] Skipping kernel compilation. Fingerprint match.
[ +194 ms] Building bundle
[ ] Writing asset files to /Users/filiph/dev/hn_app/ios/Flutter/flutter_assets
[ +80 ms] Wrote /Users/filiph/dev/hn_app/ios/Flutter/flutter_assets
[ +10 ms] "flutter bundle" took 661ms.
Project /Users/filiph/dev/hn_app built and packaged successfully.
CompileSwiftSources normal x86_64 com.apple.xcode.tools.swift.compiler
cd /Users/filiph/dev/hn_app/ios
export DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/google-cloud-sdk/bin:/usr/local/var/pyenv/shims:/Users/filiph/.nvm/versions/node/v6.10.3/bin:/Users/filiph/.rvm/gems/ruby-2.3.1/bin:/Users/filiph/.rvm/gems/ruby-2.3.1@global/bin:/Users/filiph/.rvm/rubies/ruby-2.3.1/bin:/Users/filiph/dev/flutter/bin:/usr/local/git/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/Applications/VMware Fusion.app/Contents/Public:/usr/local/go/bin:/opt/X11/bin:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Applications/dart/dart-sdk/bin:~/.pub-cache/bin:/Users/filiph/gsutil:~/.pub-cache/bin:/usr/local/bin/depot_tools:/Users/filiph/.rvm/bin"
export SDKROOT=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -incremental -module-name Runner -Onone -enforce-exclusivity=checked -Xfrontend -enable-swift3-objc-inference -Xfrontend -warn-swift3-objc-inference-minimal -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk -target x86_64-apple-ios8.0 -g -module-cache-path /Users/filiph/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Index/DataStore -swift-version 4 -I /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator -F /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator -F /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/url_launcher -F /Users/filiph/dev/hn_app/ios/Pods/../.symlinks/flutter/ios -F /Users/filiph/dev/hn_app/ios/Flutter -parse-as-library -c -j8 /Users/filiph/dev/hn_app/ios/Runner/AppDelegate.swift -output-file-map /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner-OutputFileMap.json -parseable-output -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftmodule -Xcc -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap -Xcc -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap -Xcc -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap -Xcc -I/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/include -Xcc -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/x86_64 -Xcc -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources -Xcc -DDEBUG=1 -Xcc -DCOCOAPODS=1 -Xcc -DCOCOAPODS=1 -emit-objc-header -emit-objc-header-path /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner-Swift.h -import-objc-header /Users/filiph/dev/hn_app/ios/Runner/Runner-Bridging-Header.h -pch-output-dir /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/PrecompiledHeaders -Xcc -working-directory/Users/filiph/dev/hn_app/ios
PrecompileSwiftBridgingHeader normal x86_64
cd /Users/filiph/dev/hn_app/ios
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift -frontend -target x86_64-apple-ios8.0 -enable-objc-interop -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk -I /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator -F /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator -F /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/url_launcher -F /Users/filiph/dev/hn_app/ios/Pods/../.symlinks/flutter/ios -F /Users/filiph/dev/hn_app/ios/Flutter -enable-testing -g -module-cache-path /Users/filiph/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -swift-version 4 -enforce-exclusivity=checked -Onone -enable-swift3-objc-inference -warn-swift3-objc-inference-minimal -serialize-debugging-options -Xcc -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap -Xcc -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap -Xcc -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap -Xcc -I/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/include -Xcc -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/x86_64 -Xcc -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources -Xcc -DDEBUG=1 -Xcc -DCOCOAPODS=1 -Xcc -DCOCOAPODS=1 -Xcc -working-directory/Users/filiph/dev/hn_app/ios -serialize-diagnostics-path /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/PrecompiledHeaders/Runner-Bridging-Header-1C2XJGQ58QHUF.dia /Users/filiph/dev/hn_app/ios/Runner/Runner-Bridging-Header.h -index-store-path /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Index/DataStore -emit-pch -pch-output-dir /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/PrecompiledHeaders
fatal error: file '/Users/filiph/dev/hn_app/ios/Runner/GeneratedPluginRegistrant.h' has been modified since the precompiled header '/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/PrecompiledHeaders/Runner-Bridging-Header-swift_SBYI18I7DX3W-clang_2IFQ2RUXKFQCN.pch' was built
note: please rebuild precompiled header '/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/PrecompiledHeaders/Runner-Bridging-Header-swift_SBYI18I7DX3W-clang_2IFQ2RUXKFQCN.pch'
CompileSwift normal x86_64 /Users/filiph/dev/hn_app/ios/Runner/AppDelegate.swift
cd /Users/filiph/dev/hn_app/ios
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift -frontend -c -primary-file /Users/filiph/dev/hn_app/ios/Runner/AppDelegate.swift -target x86_64-apple-ios8.0 -enable-objc-interop -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk -I /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator -F /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator -F /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/url_launcher -F /Users/filiph/dev/hn_app/ios/Pods/../.symlinks/flutter/ios -F /Users/filiph/dev/hn_app/ios/Flutter -enable-testing -g -module-cache-path /Users/filiph/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -swift-version 4 -enforce-exclusivity=checked -Onone -enable-swift3-objc-inference -warn-swift3-objc-inference-minimal -serialize-debugging-options -Xcc -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap -Xcc -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap -Xcc -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap -Xcc -I/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/include -Xcc -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/x86_64 -Xcc -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources -Xcc -DDEBUG=1 -Xcc -DCOCOAPODS=1 -Xcc -DCOCOAPODS=1 -Xcc -working-directory/Users/filiph/dev/hn_app/ios -emit-module-doc-path /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate~partial.swiftdoc -serialize-diagnostics-path /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.dia -import-objc-header /Users/filiph/dev/hn_app/ios/Runner/Runner-Bridging-Header.h -pch-output-dir /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/PrecompiledHeaders -pch-disable-validation -parse-as-library -module-name Runner -emit-module-path /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate~partial.swiftmodule -emit-dependencies-path /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.d -emit-reference-dependencies-path /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.swiftdeps -o /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.o -index-store-path /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Index/DataStore -index-system-modules
MergeSwiftModule normal x86_64 /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftmodule
cd /Users/filiph/dev/hn_app/ios
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift -frontend -merge-modules -emit-module /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate~partial.swiftmodule -parse-as-library -sil-merge-partial-modules -disable-diagnostic-passes -disable-sil-perf-optzns -target x86_64-apple-ios8.0 -enable-objc-interop -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk -I /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator -F /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator -F /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/url_launcher -F /Users/filiph/dev/hn_app/ios/Pods/../.symlinks/flutter/ios -F /Users/filiph/dev/hn_app/ios/Flutter -enable-testing -g -module-cache-path /Users/filiph/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -swift-version 4 -enforce-exclusivity=checked -Onone -enable-swift3-objc-inference -warn-swift3-objc-inference-minimal -serialize-debugging-options -Xcc -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap -Xcc -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap -Xcc -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap -Xcc -I/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/include -Xcc -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/x86_64 -Xcc -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources -Xcc -DDEBUG=1 -Xcc -DCOCOAPODS=1 -Xcc -DCOCOAPODS=1 -Xcc -working-directory/Users/filiph/dev/hn_app/ios -emit-module-doc-path /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftdoc -import-objc-header /Users/filiph/dev/hn_app/ios/Runner/Runner-Bridging-Header.h -module-name Runner -emit-objc-header-path /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner-Swift.h -o /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftmodule
CompileC /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.o Runner/GeneratedPluginRegistrant.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler
cd /Users/filiph/dev/hn_app/ios
export LANG=en_US.US-ASCII
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/google-cloud-sdk/bin:/usr/local/var/pyenv/shims:/Users/filiph/.nvm/versions/node/v6.10.3/bin:/Users/filiph/.rvm/gems/ruby-2.3.1/bin:/Users/filiph/.rvm/gems/ruby-2.3.1@global/bin:/Users/filiph/.rvm/rubies/ruby-2.3.1/bin:/Users/filiph/dev/flutter/bin:/usr/local/git/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/Applications/VMware Fusion.app/Contents/Public:/usr/local/go/bin:/opt/X11/bin:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Applications/dart/dart-sdk/bin:~/.pub-cache/bin:/Users/filiph/gsutil:~/.pub-cache/bin:/usr/local/bin/depot_tools:/Users/filiph/.rvm/bin"
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -fmodules -gmodules -fmodules-cache-path=/Users/filiph/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/filiph/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -O0 -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DDEBUG=1 -DCOCOAPODS=1 -DCOCOAPODS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -mios-simulator-version-min=8.0 -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -fobjc-abi-version=2 -fobjc-legacy-dispatch -index-store-path /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Index/DataStore -iquote /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-non-framework-target-headers.hmap -ivfsoverlay /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/all-product-headers.yaml -iquote /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap -I/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/include -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/x86_64 -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources -F/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator -F/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/url_launcher -F/Users/filiph/dev/hn_app/ios/Pods/../.symlinks/flutter/ios -F/Users/filiph/dev/hn_app/ios/Flutter -iquote /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/url_launcher/url_launcher.framework/Headers -iquote /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/url_launcher/url_launcher.framework/Headers -MMD -MT dependencies -MF /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.d --serialize-diagnostics /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.dia -c /Users/filiph/dev/hn_app/ios/Runner/GeneratedPluginRegistrant.m -o /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.o
Ld /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Runner normal x86_64
cd /Users/filiph/dev/hn_app/ios
export IPHONEOS_DEPLOYMENT_TARGET=8.0
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/google-cloud-sdk/bin:/usr/local/var/pyenv/shims:/Users/filiph/.nvm/versions/node/v6.10.3/bin:/Users/filiph/.rvm/gems/ruby-2.3.1/bin:/Users/filiph/.rvm/gems/ruby-2.3.1@global/bin:/Users/filiph/.rvm/rubies/ruby-2.3.1/bin:/Users/filiph/dev/flutter/bin:/usr/local/git/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/Applications/VMware Fusion.app/Contents/Public:/usr/local/go/bin:/opt/X11/bin:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Applications/dart/dart-sdk/bin:~/.pub-cache/bin:/Users/filiph/gsutil:~/.pub-cache/bin:/usr/local/bin/depot_tools:/Users/filiph/.rvm/bin"
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk -L/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator -L/Users/filiph/dev/hn_app/ios/Flutter -F/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator -F/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/url_launcher -F/Users/filiph/dev/hn_app/ios/Pods/../.symlinks/flutter/ios -F/Users/filiph/dev/hn_app/ios/Flutter -filelist /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.LinkFileList -Xlinker -rpath -Xlinker @executable_path/Frameworks -Xlinker -rpath -Xlinker @loader_path/Frameworks -Xlinker -rpath -Xlinker @executable_path/Frameworks -Xlinker -rpath -Xlinker @loader_path/Frameworks -Xlinker -rpath -Xlinker @executable_path/Frameworks -mios-simulator-version-min=8.0 -dead_strip -Xlinker -object_path_lto -Xlinker /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -objc_abi_version -Xlinker 2 -fobjc-arc -fobjc-link-runtime -L/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator -Xlinker -add_ast_path -Xlinker /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftmodule -framework Flutter -framework url_launcher -framework Flutter -framework url_launcher -Xlinker -sectcreate -Xlinker __TEXT -Xlinker __entitlements -Xlinker /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app-Simulated.xcent -framework Flutter -framework App -framework Pods_Runner -Xlinker -dependency_info -Xlinker /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_dependency_info.dat -o /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Runner
CpResource Flutter/Generated.xcconfig /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Generated.xcconfig
cd /Users/filiph/dev/hn_app/ios
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/google-cloud-sdk/bin:/usr/local/var/pyenv/shims:/Users/filiph/.nvm/versions/node/v6.10.3/bin:/Users/filiph/.rvm/gems/ruby-2.3.1/bin:/Users/filiph/.rvm/gems/ruby-2.3.1@global/bin:/Users/filiph/.rvm/rubies/ruby-2.3.1/bin:/Users/filiph/dev/flutter/bin:/usr/local/git/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/Applications/VMware Fusion.app/Contents/Public:/usr/local/go/bin:/opt/X11/bin:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Applications/dart/dart-sdk/bin:~/.pub-cache/bin:/Users/filiph/gsutil:~/.pub-cache/bin:/usr/local/bin/depot_tools:/Users/filiph/.rvm/bin"
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks /Users/filiph/dev/hn_app/ios/Flutter/Generated.xcconfig /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app
CpResource Flutter/flutter_assets /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/flutter_assets
cd /Users/filiph/dev/hn_app/ios
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/google-cloud-sdk/bin:/usr/local/var/pyenv/shims:/Users/filiph/.nvm/versions/node/v6.10.3/bin:/Users/filiph/.rvm/gems/ruby-2.3.1/bin:/Users/filiph/.rvm/gems/ruby-2.3.1@global/bin:/Users/filiph/.rvm/rubies/ruby-2.3.1/bin:/Users/filiph/dev/flutter/bin:/usr/local/git/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/Applications/VMware Fusion.app/Contents/Public:/usr/local/go/bin:/opt/X11/bin:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Applications/dart/dart-sdk/bin:~/.pub-cache/bin:/Users/filiph/gsutil:~/.pub-cache/bin:/usr/local/bin/depot_tools:/Users/filiph/.rvm/bin"
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks /Users/filiph/dev/hn_app/ios/Flutter/flutter_assets /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app
PBXCp Flutter/App.framework /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework
cd /Users/filiph/dev/hn_app/ios
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/google-cloud-sdk/bin:/usr/local/var/pyenv/shims:/Users/filiph/.nvm/versions/node/v6.10.3/bin:/Users/filiph/.rvm/gems/ruby-2.3.1/bin:/Users/filiph/.rvm/gems/ruby-2.3.1@global/bin:/Users/filiph/.rvm/rubies/ruby-2.3.1/bin:/Users/filiph/dev/flutter/bin:/usr/local/git/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/Applications/VMware Fusion.app/Contents/Public:/usr/local/go/bin:/opt/X11/bin:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Applications/dart/dart-sdk/bin:~/.pub-cache/bin:/Users/filiph/gsutil:~/.pub-cache/bin:/usr/local/bin/depot_tools:/Users/filiph/.rvm/bin"
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -exclude Headers -exclude PrivateHeaders -exclude Modules -exclude *.tbd -resolve-src-symlinks /Users/filiph/dev/hn_app/ios/Flutter/App.framework /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks
PBXCp Flutter/Flutter.framework /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework
cd /Users/filiph/dev/hn_app/ios
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/google-cloud-sdk/bin:/usr/local/var/pyenv/shims:/Users/filiph/.nvm/versions/node/v6.10.3/bin:/Users/filiph/.rvm/gems/ruby-2.3.1/bin:/Users/filiph/.rvm/gems/ruby-2.3.1@global/bin:/Users/filiph/.rvm/rubies/ruby-2.3.1/bin:/Users/filiph/dev/flutter/bin:/usr/local/git/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/Applications/VMware Fusion.app/Contents/Public:/usr/local/go/bin:/opt/X11/bin:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Applications/dart/dart-sdk/bin:~/.pub-cache/bin:/Users/filiph/gsutil:~/.pub-cache/bin:/usr/local/bin/depot_tools:/Users/filiph/.rvm/bin"
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -exclude Headers -exclude PrivateHeaders -exclude Modules -exclude *.tbd -resolve-src-symlinks /Users/filiph/dev/hn_app/ios/Flutter/Flutter.framework /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks
CodeSign /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework
cd /Users/filiph/dev/hn_app/ios
export CODESIGN_ALLOCATE=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/google-cloud-sdk/bin:/usr/local/var/pyenv/shims:/Users/filiph/.nvm/versions/node/v6.10.3/bin:/Users/filiph/.rvm/gems/ruby-2.3.1/bin:/Users/filiph/.rvm/gems/ruby-2.3.1@global/bin:/Users/filiph/.rvm/rubies/ruby-2.3.1/bin:/Users/filiph/dev/flutter/bin:/usr/local/git/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/Applications/VMware Fusion.app/Contents/Public:/usr/local/go/bin:/opt/X11/bin:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Applications/dart/dart-sdk/bin:~/.pub-cache/bin:/Users/filiph/gsutil:~/.pub-cache/bin:/usr/local/bin/depot_tools:/Users/filiph/.rvm/bin"
Signing Identity: "-"
/usr/bin/codesign --force --sign - --preserve-metadata=identifier,entitlements,flags --timestamp=none /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework
PhaseScriptExecution Thin\ Binary /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh
cd /Users/filiph/dev/hn_app/ios
export ACTION=build
export AD_HOC_CODE_SIGNING_ALLOWED=YES
export ALTERNATE_GROUP=eng
export ALTERNATE_MODE=u+w,go-w,a+rX
export ALTERNATE_OWNER=filiph
export ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES=NO
export ALWAYS_SEARCH_USER_PATHS=NO
export ALWAYS_USE_SEPARATE_HEADERMAPS=NO
export APPLE_INTERNAL_DEVELOPER_DIR=/AppleInternal/Developer
export APPLE_INTERNAL_DIR=/AppleInternal
export APPLE_INTERNAL_DOCUMENTATION_DIR=/AppleInternal/Documentation
export APPLE_INTERNAL_LIBRARY_DIR=/AppleInternal/Library
export APPLE_INTERNAL_TOOLS=/AppleInternal/Developer/Tools
export APPLICATION_EXTENSION_API_ONLY=NO
export APPLY_RULES_IN_COPY_FILES=NO
export ARCHS=x86_64
export ARCHS_STANDARD="i386 x86_64"
export ARCHS_STANDARD_32_64_BIT="i386 x86_64"
export ARCHS_STANDARD_32_BIT=i386
export ARCHS_STANDARD_64_BIT=x86_64
export ARCHS_STANDARD_INCLUDING_64_BIT="i386 x86_64"
export ARCHS_UNIVERSAL_IPHONE_OS="i386 x86_64"
export ASSETCATALOG_COMPILER_APPICON_NAME=AppIcon
export AVAILABLE_PLATFORMS="appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator"
export BITCODE_GENERATION_MODE=marker
export BUILD_ACTIVE_RESOURCES_ONLY=YES
export BUILD_COMPONENTS="headers build"
export BUILD_DIR=/Users/filiph/dev/hn_app/build/ios
export BUILD_ROOT=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Products
export BUILD_STYLE=
export BUILD_VARIANTS=normal
export BUILT_PRODUCTS_DIR=/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator
export CACHE_ROOT=/var/folders/p_/8567k9tn6cg7_f1bhzhhvh8c0028jd/C/com.apple.DeveloperTools/9.4-9F1027a/Xcode
export CCHROOT=/var/folders/p_/8567k9tn6cg7_f1bhzhhvh8c0028jd/C/com.apple.DeveloperTools/9.4-9F1027a/Xcode
export CHMOD=/bin/chmod
export CHOWN=/usr/sbin/chown
export CLANG_ANALYZER_NONNULL=YES
export CLANG_CXX_LANGUAGE_STANDARD=gnu++0x
export CLANG_CXX_LIBRARY=libc++
export CLANG_ENABLE_MODULES=YES
export CLANG_ENABLE_OBJC_ARC=YES
export CLANG_MODULES_BUILD_SESSION_FILE=/Users/filiph/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation
export CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING=YES
export CLANG_WARN_BOOL_CONVERSION=YES
export CLANG_WARN_COMMA=YES
export CLANG_WARN_CONSTANT_CONVERSION=YES
export CLANG_WARN_DIRECT_OBJC_ISA_USAGE=YES_ERROR
export CLANG_WARN_EMPTY_BODY=YES
export CLANG_WARN_ENUM_CONVERSION=YES
export CLANG_WARN_INFINITE_RECURSION=YES
export CLANG_WARN_INT_CONVERSION=YES
export CLANG_WARN_NON_LITERAL_NULL_CONVERSION=YES
export CLANG_WARN_OBJC_LITERAL_CONVERSION=YES
export CLANG_WARN_OBJC_ROOT_CLASS=YES_ERROR
export CLANG_WARN_RANGE_LOOP_ANALYSIS=YES
export CLANG_WARN_STRICT_PROTOTYPES=YES
export CLANG_WARN_SUSPICIOUS_MOVE=YES
export CLANG_WARN_UNREACHABLE_CODE=YES
export CLANG_WARN__DUPLICATE_METHOD_MATCH=YES
export CLASS_FILE_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/JavaClasses
export CLEAN_PRECOMPS=YES
export CLONE_HEADERS=NO
export CODESIGNING_FOLDER_PATH=/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app
export CODE_SIGNING_ALLOWED=YES
export CODE_SIGNING_REQUIRED=YES
export CODE_SIGN_CONTEXT_CLASS=XCiPhoneSimulatorCodeSignContext
export CODE_SIGN_IDENTITY=-
export CODE_SIGN_INJECT_BASE_ENTITLEMENTS=YES
export COLOR_DIAGNOSTICS=NO
export COMBINE_HIDPI_IMAGES=NO
export COMMAND_MODE=legacy
export COMPILER_INDEX_STORE_ENABLE=Default
export COMPOSITE_SDK_DIRS=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/CompositeSDKs
export COMPRESS_PNG_FILES=YES
export CONFIGURATION=Debug
export CONFIGURATION_BUILD_DIR=/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator
export CONFIGURATION_TEMP_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator
export CONTENTS_FOLDER_PATH=Runner.app
export COPYING_PRESERVES_HFS_DATA=NO
export COPY_HEADERS_RUN_UNIFDEF=NO
export COPY_PHASE_STRIP=NO
export COPY_RESOURCES_FROM_STATIC_FRAMEWORKS=YES
export CORRESPONDING_DEVICE_PLATFORM_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform
export CORRESPONDING_DEVICE_PLATFORM_NAME=iphoneos
export CORRESPONDING_DEVICE_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.4.sdk
export CORRESPONDING_DEVICE_SDK_NAME=iphoneos11.4
export CP=/bin/cp
export CREATE_INFOPLIST_SECTION_IN_BINARY=NO
export CURRENT_ARCH=x86_64
export CURRENT_VARIANT=normal
export DEAD_CODE_STRIPPING=YES
export DEBUGGING_SYMBOLS=YES
export DEBUG_INFORMATION_FORMAT=dwarf
export DEFAULT_COMPILER=com.apple.compilers.llvm.clang.1_0
export DEFAULT_KEXT_INSTALL_PATH=/System/Library/Extensions
export DEFINES_MODULE=NO
export DEPLOYMENT_LOCATION=NO
export DEPLOYMENT_POSTPROCESSING=NO
export DEPLOYMENT_TARGET_CLANG_ENV_NAME=IPHONEOS_DEPLOYMENT_TARGET
export DEPLOYMENT_TARGET_CLANG_FLAG_NAME=mios-simulator-version-min
export DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX=-mios-simulator-version-min=
export DEPLOYMENT_TARGET_SETTING_NAME=IPHONEOS_DEPLOYMENT_TARGET
export DEPLOYMENT_TARGET_SUGGESTED_VALUES="8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4"
export DERIVED_FILES_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
export DERIVED_FILE_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
export DERIVED_SOURCES_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
export DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode.app/Contents/Developer/Applications
export DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/usr/bin
export DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer
export DEVELOPER_FRAMEWORKS_DIR=/Applications/Xcode.app/Contents/Developer/Library/Frameworks
export DEVELOPER_FRAMEWORKS_DIR_QUOTED=/Applications/Xcode.app/Contents/Developer/Library/Frameworks
export DEVELOPER_LIBRARY_DIR=/Applications/Xcode.app/Contents/Developer/Library
export DEVELOPER_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
export DEVELOPER_TOOLS_DIR=/Applications/Xcode.app/Contents/Developer/Tools
export DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/usr
export DEVELOPMENT_LANGUAGE=English
export DOCUMENTATION_FOLDER_PATH=Runner.app/English.lproj/Documentation
export DO_HEADER_SCANNING_IN_JAM=NO
export DSTROOT=/tmp/Runner.dst
export DT_TOOLCHAIN_DIR=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
export DWARF_DSYM_FILE_NAME=Runner.app.dSYM
export DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT=NO
export DWARF_DSYM_FOLDER_PATH=/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator
export EFFECTIVE_PLATFORM_NAME=-iphonesimulator
export EMBEDDED_CONTENT_CONTAINS_SWIFT=NO
export EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE=NO
export ENABLE_BITCODE=NO
export ENABLE_DEFAULT_HEADER_SEARCH_PATHS=YES
export ENABLE_HEADER_DEPENDENCIES=YES
export ENABLE_ON_DEMAND_RESOURCES=YES
export ENABLE_STRICT_OBJC_MSGSEND=YES
export ENABLE_TESTABILITY=YES
export ENTITLEMENTS_REQUIRED=YES
export EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS=".DS_Store .svn .git .hg CVS"
export EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES="*.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj"
export EXECUTABLES_FOLDER_PATH=Runner.app/Executables
export EXECUTABLE_FOLDER_PATH=Runner.app
export EXECUTABLE_NAME=Runner
export EXECUTABLE_PATH=Runner.app/Runner
export EXPANDED_CODE_SIGN_IDENTITY=-
export EXPANDED_CODE_SIGN_IDENTITY_NAME=-
export EXPANDED_PROVISIONING_PROFILE=
export FILE_LIST=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects/LinkFileList
export FIXED_FILES_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/FixedFiles
export FLUTTER_APPLICATION_PATH=/Users/filiph/dev/hn_app
export FLUTTER_BUILD_DIR=build
export FLUTTER_BUILD_MODE=debug
export FLUTTER_FRAMEWORK_DIR=/Users/filiph/dev/flutter/bin/cache/artifacts/engine/ios
export FLUTTER_ROOT=/Users/filiph/dev/flutter
export FLUTTER_TARGET=lib/main.dart
export FRAMEWORKS_FOLDER_PATH=Runner.app/Frameworks
export FRAMEWORK_FLAG_PREFIX=-framework
export FRAMEWORK_SEARCH_PATHS="/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/url_launcher /Users/filiph/dev/hn_app/ios/Pods/../.symlinks/flutter/ios /Users/filiph/dev/hn_app/ios/Flutter"
export FRAMEWORK_VERSION=A
export FULL_PRODUCT_NAME=Runner.app
export GCC3_VERSION=3.3
export GCC_C_LANGUAGE_STANDARD=gnu99
export GCC_DYNAMIC_NO_PIC=NO
export GCC_INLINES_ARE_PRIVATE_EXTERN=YES
export GCC_NO_COMMON_BLOCKS=YES
export GCC_OBJC_LEGACY_DISPATCH=YES
export GCC_OPTIMIZATION_LEVEL=0
export GCC_PFE_FILE_C_DIALECTS="c objective-c c++ objective-c++"
export GCC_PREPROCESSOR_DEFINITIONS="DEBUG=1 COCOAPODS=1 COCOAPODS=1"
export GCC_SYMBOLS_PRIVATE_EXTERN=NO
export GCC_TREAT_WARNINGS_AS_ERRORS=NO
export GCC_VERSION=com.apple.compilers.llvm.clang.1_0
export GCC_VERSION_IDENTIFIER=com_apple_compilers_llvm_clang_1_0
export GCC_WARN_64_TO_32_BIT_CONVERSION=YES
export GCC_WARN_ABOUT_RETURN_TYPE=YES_ERROR
export GCC_WARN_UNDECLARED_SELECTOR=YES
export GCC_WARN_UNINITIALIZED_AUTOS=YES_AGGRESSIVE
export GCC_WARN_UNUSED_FUNCTION=YES
export GCC_WARN_UNUSED_VARIABLE=YES
export GENERATE_MASTER_OBJECT_FILE=NO
export GENERATE_PKGINFO_FILE=YES
export GENERATE_PROFILING_CODE=NO
export GENERATE_TEXT_BASED_STUBS=NO
export GID=5000
export GROUP=eng
export HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT=YES
export HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES=YES
export HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS=YES
export HEADERMAP_INCLUDES_PROJECT_HEADERS=YES
export HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES=YES
export HEADERMAP_USES_VFS=NO
export HEADER_SEARCH_PATHS="/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/include "
export HIDE_BITCODE_SYMBOLS=YES
export HOME=/Users/filiph
export ICONV=/usr/bin/iconv
export INFOPLIST_EXPAND_BUILD_SETTINGS=YES
export INFOPLIST_FILE=Runner/Info.plist
export INFOPLIST_OUTPUT_FORMAT=binary
export INFOPLIST_PATH=Runner.app/Info.plist
export INFOPLIST_PREPROCESS=NO
export INFOSTRINGS_PATH=Runner.app/English.lproj/InfoPlist.strings
export INLINE_PRIVATE_FRAMEWORKS=NO
export INSTALLHDRS_COPY_PHASE=NO
export INSTALLHDRS_SCRIPT_PHASE=NO
export INSTALL_DIR=/tmp/Runner.dst/Applications
export INSTALL_GROUP=eng
export INSTALL_MODE_FLAG=u+w,go-w,a+rX
export INSTALL_OWNER=filiph
export INSTALL_PATH=/Applications
export INSTALL_ROOT=/tmp/Runner.dst
export IPHONEOS_DEPLOYMENT_TARGET=8.0
export JAVAC_DEFAULT_FLAGS="-J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8"
export JAVA_APP_STUB=/System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub
export JAVA_ARCHIVE_CLASSES=YES
export JAVA_ARCHIVE_TYPE=JAR
export JAVA_COMPILER=/usr/bin/javac
export JAVA_FOLDER_PATH=Runner.app/Java
export JAVA_FRAMEWORK_RESOURCES_DIRS=Resources
export JAVA_JAR_FLAGS=cv
export JAVA_SOURCE_SUBDIR=.
export JAVA_USE_DEPENDENCIES=YES
export JAVA_ZIP_FLAGS=-urg
export JIKES_DEFAULT_FLAGS="+E +OLDCSO"
export KEEP_PRIVATE_EXTERNS=NO
export LD_DEPENDENCY_INFO_FILE=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_dependency_info.dat
export LD_GENERATE_MAP_FILE=NO
export LD_MAP_FILE_PATH=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-LinkMap-normal-x86_64.txt
export LD_NO_PIE=NO
export LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER=YES
export LD_RUNPATH_SEARCH_PATHS=" '@executable_path/Frameworks' '@loader_path/Frameworks' '@executable_path/Frameworks' '@loader_path/Frameworks' @executable_path/Frameworks"
export LEGACY_DEVELOPER_DIR=/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer
export LEX=lex
export LIBRARY_FLAG_NOSPACE=YES
export LIBRARY_FLAG_PREFIX=-l
export LIBRARY_KEXT_INSTALL_PATH=/Library/Extensions
export LIBRARY_SEARCH_PATHS="/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator /Users/filiph/dev/hn_app/ios/Flutter"
export LINKER_DISPLAYS_MANGLED_NAMES=NO
export LINK_FILE_LIST_normal_x86_64=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.LinkFileList
export LINK_WITH_STANDARD_LIBRARIES=YES
export LOCALIZABLE_CONTENT_DIR=
export LOCALIZED_RESOURCES_FOLDER_PATH=Runner.app/English.lproj
export LOCALIZED_STRING_MACRO_NAMES="NSLocalizedString CFLocalizedString"
export LOCAL_ADMIN_APPS_DIR=/Applications/Utilities
export LOCAL_APPS_DIR=/Applications
export LOCAL_DEVELOPER_DIR=/Library/Developer
export LOCAL_LIBRARY_DIR=/Library
export LOCROOT=
export LOCSYMROOT=
export MACH_O_TYPE=mh_execute
export MAC_OS_X_PRODUCT_BUILD_VERSION=17E202
export MAC_OS_X_VERSION_ACTUAL=101304
export MAC_OS_X_VERSION_MAJOR=101300
export MAC_OS_X_VERSION_MINOR=1304
export METAL_LIBRARY_FILE_BASE=default
export METAL_LIBRARY_OUTPUT_DIR=/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app
export MODULE_CACHE_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/ModuleCache.noindex
export MTL_ENABLE_DEBUG_INFO=YES
export NATIVE_ARCH=i386
export NATIVE_ARCH_32_BIT=i386
export NATIVE_ARCH_64_BIT=x86_64
export NATIVE_ARCH_ACTUAL=x86_64
export NO_COMMON=YES
export OBJC_ABI_VERSION=2
export OBJECT_FILE_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects
export OBJECT_FILE_DIR_normal=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal
export OBJROOT=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex
export ONLY_ACTIVE_ARCH=YES
export OS=MACOS
export OSAC=/usr/bin/osacompile
export OTHER_CFLAGS=" -iquote \"/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/url_launcher/url_launcher.framework/Headers\" -iquote \"/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/url_launcher/url_launcher.framework/Headers\""
export OTHER_CPLUSPLUSFLAGS=" -iquote \"/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/url_launcher/url_launcher.framework/Headers\" -iquote \"/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/url_launcher/url_launcher.framework/Headers\""
export OTHER_LDFLAGS=" -framework \"Flutter\" -framework \"url_launcher\" -framework \"Flutter\" -framework \"url_launcher\""
export PACKAGE_TYPE=com.apple.package-type.wrapper.application
export PASCAL_STRINGS=YES
export PATH="/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Tools:/Applications/google-cloud-sdk/bin:/usr/local/var/pyenv/shims:/Users/filiph/.nvm/versions/node/v6.10.3/bin:/Users/filiph/.rvm/gems/ruby-2.3.1/bin:/Users/filiph/.rvm/gems/ruby-2.3.1@global/bin:/Users/filiph/.rvm/rubies/ruby-2.3.1/bin:/Users/filiph/dev/flutter/bin:/usr/local/git/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/Applications/VMware Fusion.app/Contents/Public:/usr/local/go/bin:/opt/X11/bin:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Applications/dart/dart-sdk/bin:/Users/filiph/.pub-cache/bin:/Users/filiph/gsutil:/usr/local/bin/depot_tools:/Users/filiph/.rvm/bin"
export PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES="/usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms"
export PBDEVELOPMENTPLIST_PATH=Runner.app/pbdevelopment.plist
export PFE_FILE_C_DIALECTS=objective-c
export PKGINFO_FILE_PATH=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PkgInfo
export PKGINFO_PATH=Runner.app/PkgInfo
export PLATFORM_DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications
export PLATFORM_DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin
export PLATFORM_DEVELOPER_LIBRARY_DIR=/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library
export PLATFORM_DEVELOPER_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs
export PLATFORM_DEVELOPER_TOOLS_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Tools
export PLATFORM_DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr
export PLATFORM_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform
export PLATFORM_DISPLAY_NAME="iOS Simulator"
export PLATFORM_NAME=iphonesimulator
export PLATFORM_PREFERRED_ARCH=x86_64
export PLIST_FILE_OUTPUT_FORMAT=binary
export PLUGINS_FOLDER_PATH=Runner.app/PlugIns
export PODS_BUILD_DIR=/Users/filiph/dev/hn_app/build/ios
export PODS_CONFIGURATION_BUILD_DIR=/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator
export PODS_PODFILE_DIR_PATH=/Users/filiph/dev/hn_app/ios/.
export PODS_ROOT=/Users/filiph/dev/hn_app/ios/Pods
export PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR=YES
export PRECOMP_DESTINATION_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PrefixHeaders
export PRESERVE_DEAD_CODE_INITS_AND_TERMS=NO
export PREVIEW_DART_2=true
export PRIVATE_HEADERS_FOLDER_PATH=Runner.app/PrivateHeaders
export PRODUCT_BUNDLE_IDENTIFIER=hn_app.flutter.io.hnApp
export PRODUCT_MODULE_NAME=Runner
export PRODUCT_NAME=Runner
export PRODUCT_SETTINGS_PATH=/Users/filiph/dev/hn_app/ios/Runner/Info.plist
export PRODUCT_TYPE=com.apple.product-type.application
export PROFILING_CODE=NO
export PROJECT=Runner
export PROJECT_DERIVED_FILE_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/DerivedSources
export PROJECT_DIR=/Users/filiph/dev/hn_app/ios
export PROJECT_FILE_PATH=/Users/filiph/dev/hn_app/ios/Runner.xcodeproj
export PROJECT_NAME=Runner
export PROJECT_TEMP_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build
export PROJECT_TEMP_ROOT=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex
export PUBLIC_HEADERS_FOLDER_PATH=Runner.app/Headers
export RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS=YES
export REMOVE_CVS_FROM_RESOURCES=YES
export REMOVE_GIT_FROM_RESOURCES=YES
export REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES=YES
export REMOVE_HG_FROM_RESOURCES=YES
export REMOVE_SVN_FROM_RESOURCES=YES
export REZ_COLLECTOR_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources
export REZ_OBJECTS_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources/Objects
export REZ_SEARCH_PATHS="/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator "
export SCAN_ALL_SOURCE_FILES_FOR_INCLUDES=NO
export SCRIPTS_FOLDER_PATH=Runner.app/Scripts
export SCRIPT_INPUT_FILE_COUNT=0
export SCRIPT_OUTPUT_FILE_COUNT=0
export SCRIPT_OUTPUT_STREAM_FILE=/var/folders/p_/8567k9tn6cg7_f1bhzhhvh8c0028jd/T/flutter_build_log_pipeaUXXOb/pipe_to_stdout
export SDKROOT=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk
export SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk
export SDK_DIR_iphonesimulator11_4=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk
export SDK_NAME=iphonesimulator11.4
export SDK_NAMES=iphonesimulator11.4
export SDK_PRODUCT_BUILD_VERSION=15F79
export SDK_VERSION=11.4
export SDK_VERSION_ACTUAL=110400
export SDK_VERSION_MAJOR=110000
export SDK_VERSION_MINOR=400
export SED=/usr/bin/sed
export SEPARATE_STRIP=NO
export SEPARATE_SYMBOL_EDIT=NO
export SET_DIR_MODE_OWNER_GROUP=YES
export SET_FILE_MODE_OWNER_GROUP=NO
export SHALLOW_BUNDLE=YES
export SHARED_DERIVED_FILE_DIR=/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/DerivedSources
export SHARED_FRAMEWORKS_FOLDER_PATH=Runner.app/SharedFrameworks
export SHARED_PRECOMPS_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/PrecompiledHeaders
export SHARED_SUPPORT_FOLDER_PATH=Runner.app/SharedSupport
export SKIP_INSTALL=NO
export SOURCE_ROOT=/Users/filiph/dev/hn_app/ios
export SRCROOT=/Users/filiph/dev/hn_app/ios
export STRINGS_FILE_OUTPUT_ENCODING=binary
export STRIP_BITCODE_FROM_COPIED_FILES=NO
export STRIP_INSTALLED_PRODUCT=YES
export STRIP_STYLE=all
export STRIP_SWIFT_SYMBOLS=YES
export SUPPORTED_DEVICE_FAMILIES=1,2
export SUPPORTED_PLATFORMS="iphonesimulator iphoneos"
export SUPPORTS_TEXT_BASED_API=NO
export SWIFT_OBJC_BRIDGING_HEADER=Runner/Runner-Bridging-Header.h
export SWIFT_OPTIMIZATION_LEVEL=-Onone
export SWIFT_PLATFORM_TARGET_PREFIX=ios
export SWIFT_SWIFT3_OBJC_INFERENCE=On
export SWIFT_VERSION=4.0
export SYMROOT=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Products
export SYSTEM_ADMIN_APPS_DIR=/Applications/Utilities
export SYSTEM_APPS_DIR=/Applications
export SYSTEM_CORE_SERVICES_DIR=/System/Library/CoreServices
export SYSTEM_DEMOS_DIR=/Applications/Extras
export SYSTEM_DEVELOPER_APPS_DIR=/Applications/Xcode.app/Contents/Developer/Applications
export SYSTEM_DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/usr/bin
export SYSTEM_DEVELOPER_DEMOS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples"
export SYSTEM_DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer
export SYSTEM_DEVELOPER_DOC_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library"
export SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools"
export SYSTEM_DEVELOPER_JAVA_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Java Tools"
export SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Performance Tools"
export SYSTEM_DEVELOPER_RELEASENOTES_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes"
export SYSTEM_DEVELOPER_TOOLS=/Applications/Xcode.app/Contents/Developer/Tools
export SYSTEM_DEVELOPER_TOOLS_DOC_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools"
export SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools"
export SYSTEM_DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/usr
export SYSTEM_DEVELOPER_UTILITIES_DIR=/Applications/Xcode.app/Contents/Developer/Applications/Utilities
export SYSTEM_DOCUMENTATION_DIR=/Library/Documentation
export SYSTEM_KEXT_INSTALL_PATH=/System/Library/Extensions
export SYSTEM_LIBRARY_DIR=/System/Library
export TAPI_VERIFY_MODE=ErrorsOnly
export TARGETED_DEVICE_FAMILY=1,2
export TARGETNAME=Runner
export TARGET_BUILD_DIR=/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator
export TARGET_DEVICE_IDENTIFIER="dvtdevice-DVTiOSDeviceSimulatorPlaceholder-iphonesimulator:placeholder"
export TARGET_NAME=Runner
export TARGET_TEMP_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_FILES_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_FILE_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_ROOT=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex
export TOOLCHAINS=com.apple.dt.toolchain.XcodeDefault
export TOOLCHAIN_DIR=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
export TREAT_MISSING_BASELINES_AS_TEST_FAILURES=NO
export UID=74285
export UNLOCALIZED_RESOURCES_FOLDER_PATH=Runner.app
export UNSTRIPPED_PRODUCT=NO
export USER=filiph
export USER_APPS_DIR=/Users/filiph/Applications
export USER_LIBRARY_DIR=/Users/filiph/Library
export USE_DYNAMIC_NO_PIC=YES
export USE_HEADERMAP=YES
export USE_HEADER_SYMLINKS=NO
export VALIDATE_PRODUCT=NO
export VALID_ARCHS="i386 x86_64"
export VERBOSE_PBXCP=NO
export VERBOSE_SCRIPT_LOGGING=YES
export VERSIONPLIST_PATH=Runner.app/version.plist
export VERSION_INFO_BUILDER=filiph
export VERSION_INFO_FILE=Runner_vers.c
export VERSION_INFO_STRING="\"@(#)PROGRAM:Runner PROJECT:Runner-\""
export WRAPPER_EXTENSION=app
export WRAPPER_NAME=Runner.app
export WRAPPER_SUFFIX=.app
export WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES=NO
export XCODE_APP_SUPPORT_DIR=/Applications/Xcode.app/Contents/Developer/Library/Xcode
export XCODE_PRODUCT_BUILD_VERSION=9F1027a
export XCODE_VERSION_ACTUAL=0940
export XCODE_VERSION_MAJOR=0900
export XCODE_VERSION_MINOR=0940
export XPCSERVICES_FOLDER_PATH=Runner.app/XPCServices
export YACC=yacc
export arch=x86_64
export variant=normal
/bin/sh -c /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh
PhaseScriptExecution [CP]\ Embed\ Pods\ Frameworks /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-E7ABE1EB99D5153A5F4ED712.sh
cd /Users/filiph/dev/hn_app/ios
/bin/sh -c /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-E7ABE1EB99D5153A5F4ED712.sh
mkdir -p /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks
rsync --delete -av --filter P .*.?????? --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "/Users/filiph/dev/hn_app/ios/Pods/../.symlinks/flutter/ios/Flutter.framework" "/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks"
building file list ... done
Flutter.framework/
Flutter.framework/Flutter
Flutter.framework/Info.plist
Flutter.framework/icudtl.dat
sent 73308715 bytes received 92 bytes 146617614.00 bytes/sec
total size is 73299467 speedup is 1.00
Stripped /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework/Flutter of architectures: armv7 arm64
Code Signing /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework with Identity -
/usr/bin/codesign --force --sign - --preserve-metadata=identifier,entitlements '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework'
rsync --delete -av --filter P .*.?????? --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/url_launcher/url_launcher.framework" "/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks"
building file list ... done
deleting url_launcher.framework/_CodeSignature/CodeResources
deleting url_launcher.framework/_CodeSignature/
url_launcher.framework/
url_launcher.framework/url_launcher
sent 50189 bytes received 48 bytes 100474.00 bytes/sec
total size is 50773 speedup is 1.01
Code Signing /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/url_launcher.framework with Identity -
/usr/bin/codesign --force --sign - --preserve-metadata=identifier,entitlements '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/url_launcher.framework'
CodeSign /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework
cd /Users/filiph/dev/hn_app/ios
export CODESIGN_ALLOCATE=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/google-cloud-sdk/bin:/usr/local/var/pyenv/shims:/Users/filiph/.nvm/versions/node/v6.10.3/bin:/Users/filiph/.rvm/gems/ruby-2.3.1/bin:/Users/filiph/.rvm/gems/ruby-2.3.1@global/bin:/Users/filiph/.rvm/rubies/ruby-2.3.1/bin:/Users/filiph/dev/flutter/bin:/usr/local/git/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/Applications/VMware Fusion.app/Contents/Public:/usr/local/go/bin:/opt/X11/bin:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Applications/dart/dart-sdk/bin:~/.pub-cache/bin:/Users/filiph/gsutil:~/.pub-cache/bin:/usr/local/bin/depot_tools:/Users/filiph/.rvm/bin"
Signing Identity: "-"
/usr/bin/codesign --force --sign - --preserve-metadata=identifier,entitlements,flags --timestamp=none /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework
/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework: replacing existing signature
CopySwiftLibs /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app
cd /Users/filiph/dev/hn_app/ios
export CODESIGN_ALLOCATE=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate
export DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/google-cloud-sdk/bin:/usr/local/var/pyenv/shims:/Users/filiph/.nvm/versions/node/v6.10.3/bin:/Users/filiph/.rvm/gems/ruby-2.3.1/bin:/Users/filiph/.rvm/gems/ruby-2.3.1@global/bin:/Users/filiph/.rvm/rubies/ruby-2.3.1/bin:/Users/filiph/dev/flutter/bin:/usr/local/git/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/Applications/VMware Fusion.app/Contents/Public:/usr/local/go/bin:/opt/X11/bin:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Applications/dart/dart-sdk/bin:~/.pub-cache/bin:/Users/filiph/gsutil:~/.pub-cache/bin:/usr/local/bin/depot_tools:/Users/filiph/.rvm/bin"
export SDKROOT=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk
builtin-swiftStdLibTool --copy --verbose --sign - --scan-executable /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Runner --scan-folder /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks --scan-folder /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/PlugIns --scan-folder /Users/filiph/dev/hn_app/ios/Flutter/Flutter.framework --scan-folder /Users/filiph/dev/hn_app/ios/Flutter/App.framework --scan-folder /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Pods_Runner.framework --platform iphonesimulator --toolchain /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --destination /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks --strip-bitcode --resource-destination /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app --resource-library libswiftRemoteMirror.dylib
Requested Swift ABI version based on scanned binaries: 6
libswiftCore.dylib is up to date at /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCore.dylib
libswiftCoreAudio.dylib is up to date at /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreAudio.dylib
libswiftCoreFoundation.dylib is up to date at /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreFoundation.dylib
libswiftCoreGraphics.dylib is up to date at /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreGraphics.dylib
libswiftCoreImage.dylib is up to date at /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreImage.dylib
libswiftCoreMedia.dylib is up to date at /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreMedia.dylib
libswiftDarwin.dylib is up to date at /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDarwin.dylib
libswiftDispatch.dylib is up to date at /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDispatch.dylib
libswiftFoundation.dylib is up to date at /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftFoundation.dylib
libswiftMetal.dylib is up to date at /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftMetal.dylib
libswiftObjectiveC.dylib is up to date at /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftObjectiveC.dylib
libswiftQuartzCore.dylib is up to date at /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftQuartzCore.dylib
libswiftUIKit.dylib is up to date at /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftUIKit.dylib
libswiftos.dylib is up to date at /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftos.dylib
libswiftRemoteMirror.dylib is up to date at /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/libswiftRemoteMirror.dylib
Probing signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCore.dylib
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCore.dylib'
Codesigning /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCore.dylib
/usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCore.dylib'
Probing signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCore.dylib
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCore.dylib'
Code signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCore.dylib is unchanged; keeping original
Probing signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftFoundation.dylib
Probing signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreGraphics.dylib
Probing signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftMetal.dylib
Probing signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreImage.dylib
Probing signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreAudio.dylibProbing signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDarwin.dylib
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreGraphics.dylib' /usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftFoundation.dylib'
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreImage.dylib'
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftMetal.dylib'
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDarwin.dylib'
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreAudio.dylib'
Probing signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDispatch.dylib
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDispatch.dylib'
Probing signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreFoundation.dylib
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreFoundation.dylib'
Codesigning /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDarwin.dylib
/usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDarwin.dylib'
Codesigning /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreAudio.dylib
Codesigning /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreGraphics.dylib
/usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreAudio.dylib'
/usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreGraphics.dylib'
Codesigning /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftMetal.dylib
Codesigning /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreImage.dylib
/usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftMetal.dylib'
Codesigning /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreFoundation.dylib
/usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreImage.dylib'
/usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreFoundation.dylib'
Codesigning /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDispatch.dylib
/usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDispatch.dylib'
Codesigning /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftFoundation.dylib
/usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftFoundation.dylib'
Probing signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreFoundation.dylib
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreFoundation.dylib'
Probing signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDarwin.dylib
Probing signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreAudio.dylib
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDarwin.dylib'
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreAudio.dylib'
Probing signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftMetal.dylib
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftMetal.dylib'
Probing signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreImage.dylib
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreImage.dylib'
Code signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreFoundation.dylib is unchanged; keeping original
Probing signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreMedia.dylib
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreMedia.dylib'
Probing signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDispatch.dylib
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDispatch.dylib'
Probing signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreGraphics.dylib
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreGraphics.dylib'
Code signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDarwin.dylib is unchanged; keeping original
Code signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreAudio.dylib is unchanged; keeping original
Probing signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftObjectiveC.dylib
Probing signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftQuartzCore.dylib
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftObjectiveC.dylib'
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftQuartzCore.dylib'
Code signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftMetal.dylib is unchanged; keeping original
Probing signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftUIKit.dylib
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftUIKit.dylib'
Code signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreImage.dylib is unchanged; keeping original
Probing signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftos.dylib
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftos.dylib'
Codesigning /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreMedia.dylib
/usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreMedia.dylib'
Code signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDispatch.dylib is unchanged; keeping original
Code signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreGraphics.dylib is unchanged; keeping original
Codesigning /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftQuartzCore.dylib
Codesigning /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftObjectiveC.dylib
/usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftQuartzCore.dylib'
/usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftObjectiveC.dylib'
Codesigning /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftUIKit.dylib
/usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftUIKit.dylib'
Codesigning /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftos.dylib
/usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftos.dylib'
Probing signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreMedia.dylib
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreMedia.dylib'
Probing signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftObjectiveC.dylib
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftObjectiveC.dylib'
Probing signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftQuartzCore.dylib
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftQuartzCore.dylib'
Probing signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftos.dylib
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftos.dylib'
Probing signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftUIKit.dylib
Code signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreMedia.dylib is unchanged; keeping original
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftUIKit.dylib'
Code signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftObjectiveC.dylib is unchanged; keeping original
Code signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftQuartzCore.dylib is unchanged; keeping original
Code signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftos.dylib is unchanged; keeping original
Code signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftUIKit.dylib is unchanged; keeping original
Probing signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftFoundation.dylib
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftFoundation.dylib'
Code signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftFoundation.dylib is unchanged; keeping original
Touch /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app
cd /Users/filiph/dev/hn_app/ios
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/google-cloud-sdk/bin:/usr/local/var/pyenv/shims:/Users/filiph/.nvm/versions/node/v6.10.3/bin:/Users/filiph/.rvm/gems/ruby-2.3.1/bin:/Users/filiph/.rvm/gems/ruby-2.3.1@global/bin:/Users/filiph/.rvm/rubies/ruby-2.3.1/bin:/Users/filiph/dev/flutter/bin:/usr/local/git/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/Applications/VMware Fusion.app/Contents/Public:/usr/local/go/bin:/opt/X11/bin:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Applications/dart/dart-sdk/bin:~/.pub-cache/bin:/Users/filiph/gsutil:~/.pub-cache/bin:/usr/local/bin/depot_tools:/Users/filiph/.rvm/bin"
/usr/bin/touch -c /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app
CodeSign /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app
cd /Users/filiph/dev/hn_app/ios
export CODESIGN_ALLOCATE=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/google-cloud-sdk/bin:/usr/local/var/pyenv/shims:/Users/filiph/.nvm/versions/node/v6.10.3/bin:/Users/filiph/.rvm/gems/ruby-2.3.1/bin:/Users/filiph/.rvm/gems/ruby-2.3.1@global/bin:/Users/filiph/.rvm/rubies/ruby-2.3.1/bin:/Users/filiph/dev/flutter/bin:/usr/local/git/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/Applications/VMware Fusion.app/Contents/Public:/usr/local/go/bin:/opt/X11/bin:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Applications/dart/dart-sdk/bin:~/.pub-cache/bin:/Users/filiph/gsutil:~/.pub-cache/bin:/usr/local/bin/depot_tools:/Users/filiph/.rvm/bin"
Signing Identity: "-"
/usr/bin/codesign --force --sign - --entitlements /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app.xcent --timestamp=none /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app
** BUILD SUCCEEDED **
[ +18 ms] Xcode build done.
[ ] [ios/] /usr/bin/env xcrun xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/filiph/dev/hn_app/build/ios -sdk iphonesimulator -arch x86_64 SCRIPT_OUTPUT_STREAM_FILE=/var/folders/p_/8567k9tn6cg7_f1bhzhhvh8c0028jd/T/flutter_build_log_pipeaUXXOb/pipe_to_stdout -showBuildSettings
[ +718 ms] Exit code 0 from: /usr/bin/env xcrun xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/filiph/dev/hn_app/build/ios -sdk iphonesimulator -arch x86_64 SCRIPT_OUTPUT_STREAM_FILE=/var/folders/p_/8567k9tn6cg7_f1bhzhhvh8c0028jd/T/flutter_build_log_pipeaUXXOb/pipe_to_stdout -showBuildSettings
[ ] Build settings from command line:
ARCHS = x86_64
BUILD_DIR = /Users/filiph/dev/hn_app/build/ios
SCRIPT_OUTPUT_STREAM_FILE = /var/folders/p_/8567k9tn6cg7_f1bhzhhvh8c0028jd/T/flutter_build_log_pipeaUXXOb/pipe_to_stdout
SDKROOT = iphonesimulator11.4
VERBOSE_SCRIPT_LOGGING = YES
Build settings for action build and target Runner:
ACTION = build
AD_HOC_CODE_SIGNING_ALLOWED = YES
ALTERNATE_GROUP = eng
ALTERNATE_MODE = u+w,go-w,a+rX
ALTERNATE_OWNER = filiph
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO
ALWAYS_SEARCH_USER_PATHS = NO
ALWAYS_USE_SEPARATE_HEADERMAPS = NO
APPLE_INTERNAL_DEVELOPER_DIR = /AppleInternal/Developer
APPLE_INTERNAL_DIR = /AppleInternal
APPLE_INTERNAL_DOCUMENTATION_DIR = /AppleInternal/Documentation
APPLE_INTERNAL_LIBRARY_DIR = /AppleInternal/Library
APPLE_INTERNAL_TOOLS = /AppleInternal/Developer/Tools
APPLICATION_EXTENSION_API_ONLY = NO
APPLY_RULES_IN_COPY_FILES = NO
ARCHS = x86_64
ARCHS_STANDARD = i386 x86_64
ARCHS_STANDARD_32_64_BIT = i386 x86_64
ARCHS_STANDARD_32_BIT = i386
ARCHS_STANDARD_64_BIT = x86_64
ARCHS_STANDARD_INCLUDING_64_BIT = i386 x86_64
ARCHS_UNIVERSAL_IPHONE_OS = i386 x86_64
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon
AVAILABLE_PLATFORMS = appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator
BITCODE_GENERATION_MODE = marker
BUILD_ACTIVE_RESOURCES_ONLY = NO
BUILD_COMPONENTS = headers build
BUILD_DIR = /Users/filiph/dev/hn_app/build/ios
BUILD_ROOT = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Products
BUILD_STYLE =
BUILD_VARIANTS = normal
BUILT_PRODUCTS_DIR = /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator
CACHE_ROOT = /var/folders/p_/8567k9tn6cg7_f1bhzhhvh8c0028jd/C/com.apple.DeveloperTools/9.4-9F1027a/Xcode
CCHROOT = /var/folders/p_/8567k9tn6cg7_f1bhzhhvh8c0028jd/C/com.apple.DeveloperTools/9.4-9F1027a/Xcode
CHMOD = /bin/chmod
CHOWN = /usr/sbin/chown
CLANG_ANALYZER_NONNULL = YES
CLANG_CXX_LANGUAGE_STANDARD = gnu++0x
CLANG_CXX_LIBRARY = libc++
CLANG_ENABLE_MODULES = YES
CLANG_ENABLE_OBJC_ARC = YES
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES
CLANG_WARN_BOOL_CONVERSION = YES
CLANG_WARN_COMMA = YES
CLANG_WARN_CONSTANT_CONVERSION = YES
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR
CLANG_WARN_EMPTY_BODY = YES
CLANG_WARN_ENUM_CONVERSION = YES
CLANG_WARN_INFINITE_RECURSION = YES
CLANG_WARN_INT_CONVERSION = YES
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES
CLANG_WARN_STRICT_PROTOTYPES = YES
CLANG_WARN_SUSPICIOUS_MOVE = YES
CLANG_WARN_UNREACHABLE_CODE = YES
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES
CLASS_FILE_DIR = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/JavaClasses
CLEAN_PRECOMPS = YES
CLONE_HEADERS = NO
CODESIGNING_FOLDER_PATH = /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app
CODE_SIGNING_ALLOWED = YES
CODE_SIGNING_REQUIRED = YES
CODE_SIGN_CONTEXT_CLASS = XCiPhoneSimulatorCodeSignContext
CODE_SIGN_IDENTITY = -
CODE_SIGN_INJECT_BASE_ENTITLEMENTS = YES
COLOR_DIAGNOSTICS = NO
COMBINE_HIDPI_IMAGES = NO
COMPILER_INDEX_STORE_ENABLE = Default
COMPOSITE_SDK_DIRS = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/CompositeSDKs
COMPRESS_PNG_FILES = YES
CONFIGURATION = Debug
CONFIGURATION_BUILD_DIR = /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator
CONFIGURATION_TEMP_DIR = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator
CONTENTS_FOLDER_PATH = Runner.app
COPYING_PRESERVES_HFS_DATA = NO
COPY_HEADERS_RUN_UNIFDEF = NO
COPY_PHASE_STRIP = NO
COPY_RESOURCES_FROM_STATIC_FRAMEWORKS = YES
CORRESPONDING_DEVICE_PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform
CORRESPONDING_DEVICE_PLATFORM_NAME = iphoneos
CORRESPONDING_DEVICE_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.4.sdk
CORRESPONDING_DEVICE_SDK_NAME = iphoneos11.4
CP = /bin/cp
CREATE_INFOPLIST_SECTION_IN_BINARY = NO
CURRENT_ARCH = x86_64
CURRENT_VARIANT = normal
DEAD_CODE_STRIPPING = YES
DEBUGGING_SYMBOLS = YES
DEBUG_INFORMATION_FORMAT = dwarf
DEFAULT_COMPILER = com.apple.compilers.llvm.clang.1_0
DEFAULT_KEXT_INSTALL_PATH = /System/Library/Extensions
DEFINES_MODULE = NO
DEPLOYMENT_LOCATION = NO
DEPLOYMENT_POSTPROCESSING = NO
DEPLOYMENT_TARGET_CLANG_ENV_NAME = IPHONEOS_DEPLOYMENT_TARGET
DEPLOYMENT_TARGET_CLANG_FLAG_NAME = mios-simulator-version-min
DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX = -mios-simulator-version-min=
DEPLOYMENT_TARGET_SETTING_NAME = IPHONEOS_DEPLOYMENT_TARGET
DEPLOYMENT_TARGET_SUGGESTED_VALUES = 8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4
DERIVED_FILES_DIR = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
DERIVED_FILE_DIR = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
DERIVED_SOURCES_DIR = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Applications
DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin
DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer
DEVELOPER_FRAMEWORKS_DIR = /Applications/Xcode.app/Contents/Developer/Library/Frameworks
DEVELOPER_FRAMEWORKS_DIR_QUOTED = /Applications/Xcode.app/Contents/Developer/Library/Frameworks
DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/Developer/Library
DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Tools
DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr
DEVELOPMENT_LANGUAGE = English
DOCUMENTATION_FOLDER_PATH = Runner.app/English.lproj/Documentation
DO_HEADER_SCANNING_IN_JAM = NO
DSTROOT = /tmp/Runner.dst
DT_TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
DWARF_DSYM_FILE_NAME = Runner.app.dSYM
DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT = NO
DWARF_DSYM_FOLDER_PATH = /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator
EFFECTIVE_PLATFORM_NAME = -iphonesimulator
EMBEDDED_CONTENT_CONTAINS_SWIFT = NO
EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE = NO
ENABLE_BITCODE = NO
ENABLE_DEFAULT_HEADER_SEARCH_PATHS = YES
ENABLE_HEADER_DEPENDENCIES = YES
ENABLE_ON_DEMAND_RESOURCES = YES
ENABLE_STRICT_OBJC_MSGSEND = YES
ENABLE_TESTABILITY = YES
ENTITLEMENTS_REQUIRED = YES
EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS = .DS_Store .svn .git .hg CVS
EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES = *.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj
EXECUTABLES_FOLDER_PATH = Runner.app/Executables
EXECUTABLE_FOLDER_PATH = Runner.app
EXECUTABLE_NAME = Runner
EXECUTABLE_PATH = Runner.app/Runner
EXPANDED_CODE_SIGN_IDENTITY =
EXPANDED_CODE_SIGN_IDENTITY_NAME =
EXPANDED_PROVISIONING_PROFILE =
FILE_LIST = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects/LinkFileList
FIXED_FILES_DIR = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/FixedFiles
FLUTTER_APPLICATION_PATH = /Users/filiph/dev/hn_app
FLUTTER_BUILD_DIR = build
FLUTTER_BUILD_MODE = debug
FLUTTER_FRAMEWORK_DIR = /Users/filiph/dev/flutter/bin/cache/artifacts/engine/ios
FLUTTER_ROOT = /Users/filiph/dev/flutter
FLUTTER_TARGET = lib/main.dart
FRAMEWORKS_FOLDER_PATH = Runner.app/Frameworks
FRAMEWORK_FLAG_PREFIX = -framework
FRAMEWORK_SEARCH_PATHS = "/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/url_launcher" "/Users/filiph/dev/hn_app/ios/Pods/../.symlinks/flutter/ios" "/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/url_launcher" "/Users/filiph/dev/hn_app/ios/Pods/../.symlinks/flutter/ios" /Users/filiph/dev/hn_app/ios/Flutter
FRAMEWORK_VERSION = A
FULL_PRODUCT_NAME = Runner.app
GCC3_VERSION = 3.3
GCC_C_LANGUAGE_STANDARD = gnu99
GCC_DYNAMIC_NO_PIC = NO
GCC_INLINES_ARE_PRIVATE_EXTERN = YES
GCC_NO_COMMON_BLOCKS = YES
GCC_OBJC_LEGACY_DISPATCH = YES
GCC_OPTIMIZATION_LEVEL = 0
GCC_PFE_FILE_C_DIALECTS = c objective-c c++ objective-c++
GCC_PREPROCESSOR_DEFINITIONS = DEBUG=1 COCOAPODS=1 COCOAPODS=1
GCC_SYMBOLS_PRIVATE_EXTERN = NO
GCC_TREAT_WARNINGS_AS_ERRORS = NO
GCC_VERSION = com.apple.compilers.llvm.clang.1_0
GCC_VERSION_IDENTIFIER = com_apple_compilers_llvm_clang_1_0
GCC_WARN_64_TO_32_BIT_CONVERSION = YES
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR
GCC_WARN_UNDECLARED_SELECTOR = YES
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE
GCC_WARN_UNUSED_FUNCTION = YES
GCC_WARN_UNUSED_VARIABLE = YES
GENERATE_MASTER_OBJECT_FILE = NO
GENERATE_PKGINFO_FILE = YES
GENERATE_PROFILING_CODE = NO
GENERATE_TEXT_BASED_STUBS = NO
GID = 5000
GROUP = eng
HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT = YES
HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES = YES
HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS = YES
HEADERMAP_INCLUDES_PROJECT_HEADERS = YES
HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES = YES
HEADERMAP_USES_VFS = NO
HIDE_BITCODE_SYMBOLS = YES
HOME = /Users/filiph
ICONV = /usr/bin/iconv
INFOPLIST_EXPAND_BUILD_SETTINGS = YES
INFOPLIST_FILE = Runner/Info.plist
INFOPLIST_OUTPUT_FORMAT = binary
INFOPLIST_PATH = Runner.app/Info.plist
INFOPLIST_PREPROCESS = NO
INFOSTRINGS_PATH = Runner.app/English.lproj/InfoPlist.strings
INLINE_PRIVATE_FRAMEWORKS = NO
INSTALLHDRS_COPY_PHASE = NO
INSTALLHDRS_SCRIPT_PHASE = NO
INSTALL_DIR = /tmp/Runner.dst/Applications
INSTALL_GROUP = eng
INSTALL_MODE_FLAG = u+w,go-w,a+rX
INSTALL_OWNER = filiph
INSTALL_PATH = /Applications
INSTALL_ROOT = /tmp/Runner.dst
IPHONEOS_DEPLOYMENT_TARGET = 8.0
JAVAC_DEFAULT_FLAGS = -J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8
JAVA_APP_STUB = /System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub
JAVA_ARCHIVE_CLASSES = YES
JAVA_ARCHIVE_TYPE = JAR
JAVA_COMPILER = /usr/bin/javac
JAVA_FOLDER_PATH = Runner.app/Java
JAVA_FRAMEWORK_RESOURCES_DIRS = Resources
JAVA_JAR_FLAGS = cv
JAVA_SOURCE_SUBDIR = .
JAVA_USE_DEPENDENCIES = YES
JAVA_ZIP_FLAGS = -urg
JIKES_DEFAULT_FLAGS = +E +OLDCSO
KEEP_PRIVATE_EXTERNS = NO
LD_DEPENDENCY_INFO_FILE = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_dependency_info.dat
LD_GENERATE_MAP_FILE = NO
LD_MAP_FILE_PATH = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-LinkMap-normal-x86_64.txt
LD_NO_PIE = NO
LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER = YES
LD_RUNPATH_SEARCH_PATHS = '@executable_path/Frameworks' '@loader_path/Frameworks' '@executable_path/Frameworks' '@loader_path/Frameworks' @executable_path/Frameworks
LEGACY_DEVELOPER_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer
LEX = lex
LIBRARY_FLAG_NOSPACE = YES
LIBRARY_FLAG_PREFIX = -l
LIBRARY_KEXT_INSTALL_PATH = /Library/Extensions
LIBRARY_SEARCH_PATHS = /Users/filiph/dev/hn_app/ios/Flutter
LINKER_DISPLAYS_MANGLED_NAMES = NO
LINK_FILE_LIST_normal_x86_64 =
LINK_WITH_STANDARD_LIBRARIES = YES
LOCALIZABLE_CONTENT_DIR =
LOCALIZED_RESOURCES_FOLDER_PATH = Runner.app/English.lproj
LOCALIZED_STRING_MACRO_NAMES = NSLocalizedString CFLocalizedString
LOCAL_ADMIN_APPS_DIR = /Applications/Utilities
LOCAL_APPS_DIR = /Applications
LOCAL_DEVELOPER_DIR = /Library/Developer
LOCAL_LIBRARY_DIR = /Library
LOCROOT =
LOCSYMROOT =
MACH_O_TYPE = mh_execute
MAC_OS_X_PRODUCT_BUILD_VERSION = 17E202
MAC_OS_X_VERSION_ACTUAL = 101304
MAC_OS_X_VERSION_MAJOR = 101300
MAC_OS_X_VERSION_MINOR = 1304
METAL_LIBRARY_FILE_BASE = default
METAL_LIBRARY_OUTPUT_DIR = /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app
MODULE_CACHE_DIR = /Users/filiph/Library/Developer/Xcode/DerivedData/ModuleCache.noindex
MTL_ENABLE_DEBUG_INFO = YES
NATIVE_ARCH = i386
NATIVE_ARCH_32_BIT = i386
NATIVE_ARCH_64_BIT = x86_64
NATIVE_ARCH_ACTUAL = x86_64
NO_COMMON = YES
OBJC_ABI_VERSION = 2
OBJECT_FILE_DIR = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects
OBJECT_FILE_DIR_normal = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal
OBJROOT = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex
ONLY_ACTIVE_ARCH = YES
OS = MACOS
OSAC = /usr/bin/osacompile
OTHER_CFLAGS = -iquote "/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/url_launcher/url_launcher.framework/Headers" -iquote "/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/url_launcher/url_launcher.framework/Headers"
OTHER_CPLUSPLUSFLAGS = -iquote "/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/url_launcher/url_launcher.framework/Headers" -iquote "/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/url_launcher/url_launcher.framework/Headers"
OTHER_LDFLAGS = -framework "Flutter" -framework "url_launcher" -framework "Flutter" -framework "url_launcher"
PACKAGE_TYPE = com.apple.package-type.wrapper.application
PASCAL_STRINGS = YES
PATH = /Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/google-cloud-sdk/bin:/usr/local/var/pyenv/shims:/Users/filiph/.nvm/versions/node/v6.10.3/bin:/Users/filiph/.rvm/gems/ruby-2.3.1/bin:/Users/filiph/.rvm/gems/ruby-2.3.1@global/bin:/Users/filiph/.rvm/rubies/ruby-2.3.1/bin:/Users/filiph/dev/flutter/bin:/usr/local/git/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/Applications/VMware Fusion.app/Contents/Public:/usr/local/go/bin:/opt/X11/bin:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Applications/dart/dart-sdk/bin:~/.pub-cache/bin:/Users/filiph/gsutil:~/.pub-cache/bin:/usr/local/bin/depot_tools:/Users/filiph/.rvm/bin
PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES = /usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms
PBDEVELOPMENTPLIST_PATH = Runner.app/pbdevelopment.plist
PFE_FILE_C_DIALECTS = objective-c
PKGINFO_FILE_PATH = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PkgInfo
PKGINFO_PATH = Runner.app/PkgInfo
PLATFORM_DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications
PLATFORM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin
PLATFORM_DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library
PLATFORM_DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs
PLATFORM_DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Tools
PLATFORM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr
PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform
PLATFORM_DISPLAY_NAME = iOS Simulator
PLATFORM_NAME = iphonesimulator
PLATFORM_PREFERRED_ARCH = x86_64
PLIST_FILE_OUTPUT_FORMAT = binary
PLUGINS_FOLDER_PATH = Runner.app/PlugIns
PODS_BUILD_DIR = /Users/filiph/dev/hn_app/build/ios
PODS_CONFIGURATION_BUILD_DIR = /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator
PODS_PODFILE_DIR_PATH = /Users/filiph/dev/hn_app/ios/.
PODS_ROOT = /Users/filiph/dev/hn_app/ios/Pods
PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR = YES
PRECOMP_DESTINATION_DIR = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PrefixHeaders
PRESERVE_DEAD_CODE_INITS_AND_TERMS = NO
PREVIEW_DART_2 = true
PRIVATE_HEADERS_FOLDER_PATH = Runner.app/PrivateHeaders
PRODUCT_BUNDLE_IDENTIFIER = hn_app.flutter.io.hnApp
PRODUCT_MODULE_NAME = Runner
PRODUCT_NAME = Runner
PRODUCT_SETTINGS_PATH = /Users/filiph/dev/hn_app/ios/Runner/Info.plist
PRODUCT_TYPE = com.apple.product-type.application
PROFILING_CODE = NO
PROJECT = Runner
PROJECT_DERIVED_FILE_DIR = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/DerivedSources
PROJECT_DIR = /Users/filiph/dev/hn_app/ios
PROJECT_FILE_PATH = /Users/filiph/dev/hn_app/ios/Runner.xcodeproj
PROJECT_NAME = Runner
PROJECT_TEMP_DIR = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build
PROJECT_TEMP_ROOT = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex
PUBLIC_HEADERS_FOLDER_PATH = Runner.app/Headers
RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS = YES
REMOVE_CVS_FROM_RESOURCES = YES
REMOVE_GIT_FROM_RESOURCES = YES
REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES = YES
REMOVE_HG_FROM_RESOURCES = YES
REMOVE_SVN_FROM_RESOURCES = YES
REZ_COLLECTOR_DIR = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources
REZ_OBJECTS_DIR = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources/Objects
SCAN_ALL_SOURCE_FILES_FOR_INCLUDES = NO
SCRIPTS_FOLDER_PATH = Runner.app/Scripts
SCRIPT_OUTPUT_STREAM_FILE = /var/folders/p_/8567k9tn6cg7_f1bhzhhvh8c0028jd/T/flutter_build_log_pipeaUXXOb/pipe_to_stdout
SDKROOT = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk
SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk
SDK_DIR_iphonesimulator11_4 = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk
SDK_NAME = iphonesimulator11.4
SDK_NAMES = iphonesimulator11.4
SDK_PRODUCT_BUILD_VERSION = 15F79
SDK_VERSION = 11.4
SDK_VERSION_ACTUAL = 110400
SDK_VERSION_MAJOR = 110000
SDK_VERSION_MINOR = 400
SED = /usr/bin/sed
SEPARATE_STRIP = NO
SEPARATE_SYMBOL_EDIT = NO
SET_DIR_MODE_OWNER_GROUP = YES
SET_FILE_MODE_OWNER_GROUP = NO
SHALLOW_BUNDLE = YES
SHARED_DERIVED_FILE_DIR = /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/DerivedSources
SHARED_FRAMEWORKS_FOLDER_PATH = Runner.app/SharedFrameworks
SHARED_PRECOMPS_DIR = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/PrecompiledHeaders
SHARED_SUPPORT_FOLDER_PATH = Runner.app/SharedSupport
SKIP_INSTALL = NO
SOURCE_ROOT = /Users/filiph/dev/hn_app/ios
SRCROOT = /Users/filiph/dev/hn_app/ios
STRINGS_FILE_OUTPUT_ENCODING = binary
STRIP_BITCODE_FROM_COPIED_FILES = NO
STRIP_INSTALLED_PRODUCT = YES
STRIP_STYLE = all
STRIP_SWIFT_SYMBOLS = YES
SUPPORTED_DEVICE_FAMILIES = 1,2
SUPPORTED_PLATFORMS = iphonesimulator iphoneos
SUPPORTS_TEXT_BASED_API = NO
SWIFT_OBJC_BRIDGING_HEADER = Runner/Runner-Bridging-Header.h
SWIFT_OPTIMIZATION_LEVEL = -Onone
SWIFT_PLATFORM_TARGET_PREFIX = ios
SWIFT_SWIFT3_OBJC_INFERENCE = On
SWIFT_VERSION = 4.0
SYMROOT = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Products
SYSTEM_ADMIN_APPS_DIR = /Applications/Utilities
SYSTEM_APPS_DIR = /Applications
SYSTEM_CORE_SERVICES_DIR = /System/Library/CoreServices
SYSTEM_DEMOS_DIR = /Applications/Extras
SYSTEM_DEVELOPER_APPS_DIR = /Applications/Xcode.app/Contents/Developer/Applications
SYSTEM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin
SYSTEM_DEVELOPER_DEMOS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples
SYSTEM_DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer
SYSTEM_DEVELOPER_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library
SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools
SYSTEM_DEVELOPER_JAVA_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Java Tools
SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Performance Tools
SYSTEM_DEVELOPER_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes
SYSTEM_DEVELOPER_TOOLS = /Applications/Xcode.app/Contents/Developer/Tools
SYSTEM_DEVELOPER_TOOLS_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools
SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools
SYSTEM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr
SYSTEM_DEVELOPER_UTILITIES_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities
SYSTEM_DOCUMENTATION_DIR = /Library/Documentation
SYSTEM_KEXT_INSTALL_PATH = /System/Library/Extensions
SYSTEM_LIBRARY_DIR = /System/Library
TAPI_VERIFY_MODE = ErrorsOnly
TARGETED_DEVICE_FAMILY = 1,2
TARGETNAME = Runner
TARGET_BUILD_DIR = /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator
TARGET_NAME = Runner
TARGET_TEMP_DIR = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
TEMP_DIR = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
TEMP_FILES_DIR = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
TEMP_FILE_DIR = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
TEMP_ROOT = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex
TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
TREAT_MISSING_BASELINES_AS_TEST_FAILURES = NO
UID = 74285
UNLOCALIZED_RESOURCES_FOLDER_PATH = Runner.app
UNSTRIPPED_PRODUCT = NO
USER = filiph
USER_APPS_DIR = /Users/filiph/Applications
USER_LIBRARY_DIR = /Users/filiph/Library
USE_DYNAMIC_NO_PIC = YES
USE_HEADERMAP = YES
USE_HEADER_SYMLINKS = NO
VALIDATE_PRODUCT = NO
VALID_ARCHS = i386 x86_64
VERBOSE_PBXCP = NO
VERBOSE_SCRIPT_LOGGING = YES
VERSIONPLIST_PATH = Runner.app/version.plist
VERSION_INFO_BUILDER = filiph
VERSION_INFO_FILE = Runner_vers.c
VERSION_INFO_STRING = "@(#)PROGRAM:Runner PROJECT:Runner-"
WRAPPER_EXTENSION = app
WRAPPER_NAME = Runner.app
WRAPPER_SUFFIX = .app
WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES = NO
XCODE_APP_SUPPORT_DIR = /Applications/Xcode.app/Contents/Developer/Library/Xcode
XCODE_PRODUCT_BUILD_VERSION = 9F1027a
XCODE_VERSION_ACTUAL = 0940
XCODE_VERSION_MAJOR = 0900
XCODE_VERSION_MINOR = 0940
XPCSERVICES_FOLDER_PATH = Runner.app/XPCServices
YACC = yacc
arch = x86_64
variant = normal
[ +230 ms] /usr/bin/xcrun simctl install 8C0199F9-DE6D-4A50-86F3-875D58FF15E6 /Users/filiph/dev/hn_app/build/ios/iphonesimulator/Runner.app
[+1071 ms] /usr/bin/xcrun simctl launch 8C0199F9-DE6D-4A50-86F3-875D58FF15E6 hn_app.flutter.io.hnApp --enable-dart-profiling --enable-checked-mode --observatory-port=8100
[ +171 ms] hn_app.flutter.io.hnApp: 73477
[ ] Waiting for observatory port to be available...
[ +634 ms] [DEVICE LOG] 2018-06-04 16:48:50.537671-0700 localhost Runner[73477]: (Runner) Created Activity ID: 0xcb581, Description: Loading Preferences From System CFPrefsD For Search List
[ +2 ms] [DEVICE LOG] 2018-06-04 16:48:50.537670-0700 localhost Runner[73477]: (Runner) Created Activity ID: 0xcb580, Description: Loading Preferences From System CFPrefsD For Search List
[ +14 ms] [DEVICE LOG] 2018-06-04 16:48:50.555726-0700 localhost Runner[73477]: (Runner) Created Activity ID: 0xcb582, Description: Loading Preferences From System CFPrefsD For Search List
[ +4 ms] [DEVICE LOG] 2018-06-04 16:48:50.560555-0700 localhost Runner[73477]: (libAccessibility.dylib) [com.apple.Accessibility:AccessibilitySupport] Retrieving resting unlock: 0
[ +343 ms] [DEVICE LOG] 2018-06-04 16:48:50.903723-0700 localhost Runner[73477]: (UIKit) You've implemented -[<UIApplicationDelegate> application:performFetchWithCompletionHandler:], but you still need to add "fetch" to the list of your supported UIBackgroundModes in your Info.plist.
[ ] [DEVICE LOG] 2018-06-04 16:48:50.903879-0700 localhost Runner[73477]: (UIKit) You've implemented -[<UIApplicationDelegate> application:didReceiveRemoteNotification:fetchCompletionHandler:], but you still need to add "remote-notification" to the list of your supported UIBackgroundModes in your Info.plist.
[ ] [DEVICE LOG] 2018-06-04 16:48:50.904842-0700 localhost Runner[73477]: (Flutter) flutter: Observatory listening on http://127.0.0.1:8100/
[ +3 ms] Observatory URL on device: http://127.0.0.1:8100/
[ +3 ms] Connecting to service protocol: http://127.0.0.1:8100/
[ +141 ms] Successfully connected to service protocol: http://127.0.0.1:8100/
[ +2 ms] getVM: {}
[ +12 ms] getIsolate: {isolateId: isolates/68813175}
[ +2 ms] _flutter.listViews: {}
[ +336 ms] DevFS: Creating new filesystem on the device (null)
[ ] _createDevFS: {fsName: hn_app}
[ +12 ms] DevFS: Created new filesystem on the device (file:///Users/filiph/Library/Developer/CoreSimulator/Devices/8C0199F9-DE6D-4A50-86F3-875D58FF15E6/data/Containers/Data/Application/818BAB73-1587-4D9E-8A42-7BAA0927500E/tmp/hn_app9eBWc4/hn_app/)
[ +1 ms] Updating assets
[ +133 ms] Syncing files to device iPhone X...
[ +2 ms] DevFS: Starting sync from LocalDirectory: '/Users/filiph/dev/hn_app'
[ ] Scanning project files
[ +4 ms] Scanning package files
[ +91 ms] Scanning asset files
[ ] Scanning for deleted files
[ +12 ms] Compiling dart to kernel with 416 updated files
[ +2 ms] /Users/filiph/dev/flutter/bin/cache/dart-sdk/bin/dart /Users/filiph/dev/flutter/bin/cache/artifacts/engine/darwin-x64/frontend_server.dart.snapshot --sdk-root /Users/filiph/dev/flutter/bin/cache/artifacts/engine/common/flutter_patched_sdk/ --incremental --strong --target=flutter --output-dill build/app.dill --packages /Users/filiph/dev/hn_app/.packages --filesystem-scheme org-dartlang-root
[+1165 ms] Updating files
[ +477 ms] DevFS: Sync finished
[ ] Synced 0.8MB.
[ +3 ms] _flutter.listViews: {}
[ +1 ms] Connected to _flutterView/0x7fd2c8603668.
[ ] ๐ฅ To hot reload your app on the fly, press "r". To restart the app entirely, press "R".
[ ] An Observatory debugger and profiler on iPhone X is available at: http://127.0.0.1:8100/
[ ] For a more detailed help message, press "h". To quit, press "q".
```
```
$ flutter analyze
Analyzing hn_app...
No issues found! (ran in 1.1s)
```
```
$ flutter doctor -v
[โ] Flutter (Channel beta, v0.4.4, on Mac OS X 10.13.4 17E202, locale en-US)
โข Flutter version 0.4.4 at /Users/filiph/dev/flutter
โข Framework revision f9bb4289e9 (3 weeks ago), 2018-05-11 21:44:54 -0700
โข Engine revision 06afdfe54e
โข Dart version 2.0.0-dev.54.0.flutter-46ab040e58
[โ] Android toolchain - develop for Android devices (Android SDK 27.0.3)
โข Android SDK at /Users/filiph/Library/Android/sdk
โข Android NDK location not configured (optional; useful for native profiling support)
โข Platform android-27, build-tools 27.0.3
โข Java binary at: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java
โข Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1024-b01)
โข All Android licenses accepted.
[โ] iOS toolchain - develop for iOS devices (Xcode 9.4)
โข Xcode at /Applications/Xcode.app/Contents/Developer
โข Xcode 9.4, Build version 9F1027a
โข ios-deploy 1.9.2
โข CocoaPods version 1.5.3
[โ] Android Studio (version 3.1)
โข Android Studio at /Applications/Android Studio.app/Contents
โข Flutter plugin version 25.0.1
โข Dart plugin version 173.4700
โข Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1024-b01)
[!] IntelliJ IDEA Community Edition (version 2018.1)
โข IntelliJ at /Applications/IntelliJ IDEA CE.app
โ Flutter plugin not installed; this adds Flutter specific functionality.
โ Dart plugin not installed; this adds Dart specific functionality.
โข For information about installing plugins, see
https://flutter.io/intellij-setup/#installing-the-plugins
[โ] VS Code (version 1.22.2)
โข VS Code at /Applications/Visual Studio Code.app/Contents
โข Dart Code extension version 2.9.2
[โ] Connected devices (1 available)
โข iPhone X โข 8C0199F9-DE6D-4A50-86F3-875D58FF15E6 โข ios โข iOS 11.4 (simulator)
! Doctor found issues in 1 category.
```
| 1.0 | `flutter test` fails while `flutter run path/to/test.dart` succeeds - ## Steps to Reproduce
1. Check out https://github.com/filiph/hn_app/tree/2ab7e86806c6fbf4bec2f3a11129d706a9a3b3c7 (a simple app sample with a single widget test)
2. Run test with `flutter run test/widget_test.dart`. Verify that it is passing. (You may need to hit `R` to hot restart.)
3. Now run the same test with `flutter test`.
Context: The test is trying to verify that after dragging to refresh, the open/close state of the `ExpansionTile`s is reset. If you want to see the regression that this test is trying to test against, comment out main.dart:56 (`key: Key(...)`).
The correct behavior:

The incorrect behavior (which we are not testing - I just want to show what we're preventing with the test):

When you run the app (`flutter run` or `flutter run test/widget_test.dart`), you can clearly see that the open/close state is correctly reset. But the test fails in the headless (`flutter test`) mode. In that mode, the `ExpansionTile` is still open.
I've talked to @goderbauer about this and it doesn't (immediately) seem that there's a problem with the test itself.
## Test code
Also included in the repo. Adding here for convenience:
```dart
testWidgets('refresh clears open state', (WidgetTester tester) async {
// Build our app and trigger a frame.
await tester.pumpWidget(new MyApp());
expect(find.byIcon(Icons.launch), findsNothing);
await tester.tap(find.byType(ExpansionTile).at(2));
await tester.pump();
expect(find.byIcon(Icons.launch), findsOneWidget);
await tester.drag(
find.byType(ExpansionTile).first, const Offset(0.0, 150.0));
await tester.pumpAndSettle();
// debugDumpApp();
expect(find.byType(RefreshProgressIndicator), findsNothing);
expect(find.byIcon(Icons.launch), findsNothing);
});
```
## Test output
### When run on device with `flutter run path/to/test.dart`:
```
flutter: 00:00 \^[[32m+0\^[[0m: - refresh clears open state<โฆ>
Restarted app in 1,603ms.
flutter: 00:02 \^[[32m+1\^[[0m: All tests passed!<โฆ>
```
### When run in test framework with `flutter test`
```
$ flutter test
00:05 +0: - refresh clears open state
โโโก EXCEPTION CAUGHT BY FLUTTER TEST FRAMEWORK โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
The following TestFailure object was thrown running a test:
Expected: no matching nodes in the widget tree
Actual: ?:<exactly one widget with icon "IconData(U+0E895)" (ignoring offstage widgets):
Icon(IconData(U+0E895))>
Which: means one was found but none were expected
When the exception was thrown, this was the stack:
#4 main.<anonymous closure> (file:///Users/filiph/dev/hn_app/test/widget_test.dart:30:5)
<asynchronous suspension>
#5 testWidgets.<anonymous closure>.<anonymous closure>.<anonymous closure> (package:flutter_test/src/widget_tester.dart:63:25)
#6 TestWidgetsFlutterBinding._runTestBody (package:flutter_test/src/binding.dart:509:19)
<asynchronous suspension>
#9 TestWidgetsFlutterBinding._runTest (package:flutter_test/src/binding.dart:494:14)
#10 AutomatedTestWidgetsFlutterBinding.runTest.<anonymous closure> (package:flutter_test/src/binding.dart:751:24)
#16 AutomatedTestWidgetsFlutterBinding.runTest (package:flutter_test/src/binding.dart:749:16)
#17 testWidgets.<anonymous closure>.<anonymous closure> (package:flutter_test/src/widget_tester.dart:62:24)
#18 Declarer.test.<anonymous closure>.<anonymous closure>.<anonymous closure> (package:test/src/backend/declarer.dart:161:27)
<asynchronous suspension>
#19 Invoker.waitForOutstandingCallbacks.<anonymous closure> (package:test/src/backend/invoker.dart:249:15)
<asynchronous suspension>
#23 Invoker.waitForOutstandingCallbacks (package:test/src/backend/invoker.dart:246:5)
#24 Declarer.test.<anonymous closure>.<anonymous closure> (package:test/src/backend/declarer.dart:159:33)
#28 Declarer.test.<anonymous closure> (package:test/src/backend/declarer.dart:158:13)
<asynchronous suspension>
#29 Invoker._onRun.<anonymous closure>.<anonymous closure>.<anonymous closure>.<anonymous closure> (package:test/src/backend/invoker.dart:403:25)
<asynchronous suspension>
#43 _Timer._runTimers (dart:isolate/runtime/libtimer_impl.dart:382:19)
#44 _Timer._handleMessage (dart:isolate/runtime/libtimer_impl.dart:416:5)
#45 _RawReceivePortImpl._handleMessage (dart:isolate/runtime/libisolate_patch.dart:165:12)
(elided 26 frames from class _FakeAsync, package dart:async, and package stack_trace)
This was caught by the test expectation on the following line:
file:///Users/filiph/dev/hn_app/test/widget_test.dart line 30
The test description was:
refresh clears open state
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
00:05 +0 -1: - refresh clears open state [E]
Test failed. See exception logs above.
The test description was: refresh clears open state
00:05 +0 -1: Some tests failed.
```
## Logs
```
$ flutter run --verbose
[ +25 ms] [/Users/filiph/dev/flutter/] git rev-parse --abbrev-ref --symbolic @{u}
[ +28 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u}
[ ] origin/beta
[ ] [/Users/filiph/dev/flutter/] git rev-parse --abbrev-ref HEAD
[ +6 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD
[ ] beta
[ ] [/Users/filiph/dev/flutter/] git ls-remote --get-url origin
[ +4 ms] Exit code 0 from: git ls-remote --get-url origin
[ ] https://github.com/flutter/flutter.git
[ ] [/Users/filiph/dev/flutter/] git log -n 1 --pretty=format:%H
[ +6 ms] Exit code 0 from: git log -n 1 --pretty=format:%H
[ ] f9bb4289e9fd861d70ae78bcc3a042ef1b35cc9d
[ ] [/Users/filiph/dev/flutter/] git log -n 1 --pretty=format:%ar
[ +5 ms] Exit code 0 from: git log -n 1 --pretty=format:%ar
[ ] 3 weeks ago
[ ] [/Users/filiph/dev/flutter/] git describe --match v*.*.* --first-parent --long --tags
[ +9 ms] Exit code 0 from: git describe --match v*.*.* --first-parent --long --tags
[ ] v0.4.4-0-gf9bb4289e
[+1367 ms] /usr/bin/defaults read /Applications/Android Studio.app/Contents/Info CFBundleShortVersionString
[ +61 ms] Exit code 0 from: /usr/bin/defaults read /Applications/Android Studio.app/Contents/Info CFBundleShortVersionString
[ ] 3.1
[ +108 ms] /Users/filiph/Library/Android/sdk/platform-tools/adb devices -l
[ +13 ms] Exit code 0 from: /Users/filiph/Library/Android/sdk/platform-tools/adb devices -l
[ ] List of devices attached
[ +4 ms] idevice_id -h
[ +261 ms] /usr/bin/xcrun simctl list --json devices
[ +217 ms] Found plugin url_launcher at /Users/filiph/dev/flutter/.pub-cache/hosted/pub.dartlang.org/url_launcher-3.0.2/
[ +570 ms] Launching lib/main.dart on iPhone X in debug mode...
[ +1 ms] /usr/bin/defaults read /Users/filiph/dev/hn_app/ios/Runner/Info CFBundleIdentifier
[ +57 ms] Exit code 0 from: /usr/bin/defaults read /Users/filiph/dev/hn_app/ios/Runner/Info CFBundleIdentifier
[ ] $(PRODUCT_BUNDLE_IDENTIFIER)
[ ] [ios/Runner.xcodeproj/] /usr/bin/xcodebuild -project /Users/filiph/dev/hn_app/ios/Runner.xcodeproj -target Runner -showBuildSettings
[ +848 ms] Exit code 0 from: /usr/bin/xcodebuild -project /Users/filiph/dev/hn_app/ios/Runner.xcodeproj -target Runner -showBuildSettings
[ ] Build settings for action build and target Runner:
ACTION = build
AD_HOC_CODE_SIGNING_ALLOWED = NO
ALTERNATE_GROUP = eng
ALTERNATE_MODE = u+w,go-w,a+rX
ALTERNATE_OWNER = filiph
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO
ALWAYS_SEARCH_USER_PATHS = NO
ALWAYS_USE_SEPARATE_HEADERMAPS = NO
APPLE_INTERNAL_DEVELOPER_DIR = /AppleInternal/Developer
APPLE_INTERNAL_DIR = /AppleInternal
APPLE_INTERNAL_DOCUMENTATION_DIR = /AppleInternal/Documentation
APPLE_INTERNAL_LIBRARY_DIR = /AppleInternal/Library
APPLE_INTERNAL_TOOLS = /AppleInternal/Developer/Tools
APPLICATION_EXTENSION_API_ONLY = NO
APPLY_RULES_IN_COPY_FILES = NO
ARCHS = arm64
ARCHS_STANDARD = armv7 arm64
ARCHS_STANDARD_32_64_BIT = armv7 arm64
ARCHS_STANDARD_32_BIT = armv7
ARCHS_STANDARD_64_BIT = arm64
ARCHS_STANDARD_INCLUDING_64_BIT = armv7 arm64
ARCHS_UNIVERSAL_IPHONE_OS = armv7 arm64
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon
AVAILABLE_PLATFORMS = appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator
BITCODE_GENERATION_MODE = marker
BUILD_ACTIVE_RESOURCES_ONLY = NO
BUILD_COMPONENTS = headers build
BUILD_DIR = /Users/filiph/dev/hn_app/build/ios
BUILD_ROOT = /Users/filiph/dev/hn_app/build/ios
BUILD_STYLE =
BUILD_VARIANTS = normal
BUILT_PRODUCTS_DIR = /Users/filiph/dev/hn_app/build/ios/Release-iphoneos
CACHE_ROOT = /var/folders/p_/8567k9tn6cg7_f1bhzhhvh8c0028jd/C/com.apple.DeveloperTools/9.4-9F1027a/Xcode
CCHROOT = /var/folders/p_/8567k9tn6cg7_f1bhzhhvh8c0028jd/C/com.apple.DeveloperTools/9.4-9F1027a/Xcode
CHMOD = /bin/chmod
CHOWN = /usr/sbin/chown
CLANG_ANALYZER_NONNULL = YES
CLANG_CXX_LANGUAGE_STANDARD = gnu++0x
CLANG_CXX_LIBRARY = libc++
CLANG_ENABLE_MODULES = YES
CLANG_ENABLE_OBJC_ARC = YES
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES
CLANG_WARN_BOOL_CONVERSION = YES
CLANG_WARN_COMMA = YES
CLANG_WARN_CONSTANT_CONVERSION = YES
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR
CLANG_WARN_EMPTY_BODY = YES
CLANG_WARN_ENUM_CONVERSION = YES
CLANG_WARN_INFINITE_RECURSION = YES
CLANG_WARN_INT_CONVERSION = YES
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES
CLANG_WARN_STRICT_PROTOTYPES = YES
CLANG_WARN_SUSPICIOUS_MOVE = YES
CLANG_WARN_UNREACHABLE_CODE = YES
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES
CLASS_FILE_DIR = /Users/filiph/dev/hn_app/build/ios/Runner.build/Release-iphoneos/Runner.build/JavaClasses
CLEAN_PRECOMPS = YES
CLONE_HEADERS = NO
CODESIGNING_FOLDER_PATH = /Users/filiph/dev/hn_app/build/ios/Release-iphoneos/Runner.app
CODE_SIGNING_ALLOWED = YES
CODE_SIGNING_REQUIRED = YES
CODE_SIGN_CONTEXT_CLASS = XCiPhoneOSCodeSignContext
CODE_SIGN_IDENTITY = iPhone Developer
CODE_SIGN_INJECT_BASE_ENTITLEMENTS = YES
COLOR_DIAGNOSTICS = NO
COMBINE_HIDPI_IMAGES = NO
COMPILER_INDEX_STORE_ENABLE = Default
COMPOSITE_SDK_DIRS = /Users/filiph/dev/hn_app/build/ios/CompositeSDKs
COMPRESS_PNG_FILES = YES
CONFIGURATION = Release
CONFIGURATION_BUILD_DIR = /Users/filiph/dev/hn_app/build/ios/Release-iphoneos
CONFIGURATION_TEMP_DIR = /Users/filiph/dev/hn_app/build/ios/Runner.build/Release-iphoneos
CONTENTS_FOLDER_PATH = Runner.app
COPYING_PRESERVES_HFS_DATA = NO
COPY_HEADERS_RUN_UNIFDEF = NO
COPY_PHASE_STRIP = NO
COPY_RESOURCES_FROM_STATIC_FRAMEWORKS = YES
CORRESPONDING_SIMULATOR_PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform
CORRESPONDING_SIMULATOR_PLATFORM_NAME = iphonesimulator
CORRESPONDING_SIMULATOR_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk
CORRESPONDING_SIMULATOR_SDK_NAME = iphonesimulator11.4
CP = /bin/cp
CREATE_INFOPLIST_SECTION_IN_BINARY = NO
CURRENT_ARCH = arm64
CURRENT_VARIANT = normal
DEAD_CODE_STRIPPING = YES
DEBUGGING_SYMBOLS = YES
DEBUG_INFORMATION_FORMAT = dwarf-with-dsym
DEFAULT_COMPILER = com.apple.compilers.llvm.clang.1_0
DEFAULT_KEXT_INSTALL_PATH = /System/Library/Extensions
DEFINES_MODULE = NO
DEPLOYMENT_LOCATION = NO
DEPLOYMENT_POSTPROCESSING = NO
DEPLOYMENT_TARGET_CLANG_ENV_NAME = IPHONEOS_DEPLOYMENT_TARGET
DEPLOYMENT_TARGET_CLANG_FLAG_NAME = miphoneos-version-min
DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX = -miphoneos-version-min=
DEPLOYMENT_TARGET_SETTING_NAME = IPHONEOS_DEPLOYMENT_TARGET
DEPLOYMENT_TARGET_SUGGESTED_VALUES = 8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4
DERIVED_FILES_DIR = /Users/filiph/dev/hn_app/build/ios/Runner.build/Release-iphoneos/Runner.build/DerivedSources
DERIVED_FILE_DIR = /Users/filiph/dev/hn_app/build/ios/Runner.build/Release-iphoneos/Runner.build/DerivedSources
DERIVED_SOURCES_DIR = /Users/filiph/dev/hn_app/build/ios/Runner.build/Release-iphoneos/Runner.build/DerivedSources
DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Applications
DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin
DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer
DEVELOPER_FRAMEWORKS_DIR = /Applications/Xcode.app/Contents/Developer/Library/Frameworks
DEVELOPER_FRAMEWORKS_DIR_QUOTED = /Applications/Xcode.app/Contents/Developer/Library/Frameworks
DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/Developer/Library
DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Tools
DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr
DEVELOPMENT_LANGUAGE = English
DOCUMENTATION_FOLDER_PATH = Runner.app/English.lproj/Documentation
DO_HEADER_SCANNING_IN_JAM = NO
DSTROOT = /tmp/Runner.dst
DT_TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
DWARF_DSYM_FILE_NAME = Runner.app.dSYM
DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT = NO
DWARF_DSYM_FOLDER_PATH = /Users/filiph/dev/hn_app/build/ios/Release-iphoneos
EFFECTIVE_PLATFORM_NAME = -iphoneos
EMBEDDED_CONTENT_CONTAINS_SWIFT = NO
EMBEDDED_PROFILE_NAME = embedded.mobileprovision
EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE = NO
ENABLE_BITCODE = NO
ENABLE_DEFAULT_HEADER_SEARCH_PATHS = YES
ENABLE_HEADER_DEPENDENCIES = YES
ENABLE_NS_ASSERTIONS = NO
ENABLE_ON_DEMAND_RESOURCES = YES
ENABLE_STRICT_OBJC_MSGSEND = YES
ENABLE_TESTABILITY = NO
ENTITLEMENTS_ALLOWED = YES
ENTITLEMENTS_REQUIRED = YES
EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS = .DS_Store .svn .git .hg CVS
EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES = *.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj
EXECUTABLES_FOLDER_PATH = Runner.app/Executables
EXECUTABLE_FOLDER_PATH = Runner.app
EXECUTABLE_NAME = Runner
EXECUTABLE_PATH = Runner.app/Runner
EXPANDED_CODE_SIGN_IDENTITY =
EXPANDED_CODE_SIGN_IDENTITY_NAME =
EXPANDED_PROVISIONING_PROFILE =
FILE_LIST = /Users/filiph/dev/hn_app/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects/LinkFileList
FIXED_FILES_DIR = /Users/filiph/dev/hn_app/build/ios/Runner.build/Release-iphoneos/Runner.build/FixedFiles
FLUTTER_APPLICATION_PATH = /Users/filiph/dev/hn_app
FLUTTER_BUILD_DIR = build
FLUTTER_BUILD_MODE = debug
FLUTTER_FRAMEWORK_DIR = /Users/filiph/dev/flutter/bin/cache/artifacts/engine/ios
FLUTTER_ROOT = /Users/filiph/dev/flutter
FLUTTER_TARGET = lib/main.dart
FRAMEWORKS_FOLDER_PATH = Runner.app/Frameworks
FRAMEWORK_FLAG_PREFIX = -framework
FRAMEWORK_SEARCH_PATHS = "/Users/filiph/dev/hn_app/build/ios/Release-iphoneos/url_launcher" "/Users/filiph/dev/hn_app/ios/Pods/../.symlinks/flutter/ios" "/Users/filiph/dev/hn_app/build/ios/Release-iphoneos/url_launcher" "/Users/filiph/dev/hn_app/ios/Pods/../.symlinks/flutter/ios" /Users/filiph/dev/hn_app/ios/Flutter
FRAMEWORK_VERSION = A
FULL_PRODUCT_NAME = Runner.app
GCC3_VERSION = 3.3
GCC_C_LANGUAGE_STANDARD = gnu99
GCC_INLINES_ARE_PRIVATE_EXTERN = YES
GCC_NO_COMMON_BLOCKS = YES
GCC_PFE_FILE_C_DIALECTS = c objective-c c++ objective-c++
GCC_PREPROCESSOR_DEFINITIONS = COCOAPODS=1 COCOAPODS=1
GCC_SYMBOLS_PRIVATE_EXTERN = YES
GCC_THUMB_SUPPORT = YES
GCC_TREAT_WARNINGS_AS_ERRORS = NO
GCC_VERSION = com.apple.compilers.llvm.clang.1_0
GCC_VERSION_IDENTIFIER = com_apple_compilers_llvm_clang_1_0
GCC_WARN_64_TO_32_BIT_CONVERSION = YES
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR
GCC_WARN_UNDECLARED_SELECTOR = YES
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE
GCC_WARN_UNUSED_FUNCTION = YES
GCC_WARN_UNUSED_VARIABLE = YES
GENERATE_MASTER_OBJECT_FILE = NO
GENERATE_PKGINFO_FILE = YES
GENERATE_PROFILING_CODE = NO
GENERATE_TEXT_BASED_STUBS = NO
GID = 5000
GROUP = eng
HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT = YES
HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES = YES
HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS = YES
HEADERMAP_INCLUDES_PROJECT_HEADERS = YES
HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES = YES
HEADERMAP_USES_VFS = NO
HIDE_BITCODE_SYMBOLS = YES
HOME = /Users/filiph
ICONV = /usr/bin/iconv
INFOPLIST_EXPAND_BUILD_SETTINGS = YES
INFOPLIST_FILE = Runner/Info.plist
INFOPLIST_OUTPUT_FORMAT = binary
INFOPLIST_PATH = Runner.app/Info.plist
INFOPLIST_PREPROCESS = NO
INFOSTRINGS_PATH = Runner.app/English.lproj/InfoPlist.strings
INLINE_PRIVATE_FRAMEWORKS = NO
INSTALLHDRS_COPY_PHASE = NO
INSTALLHDRS_SCRIPT_PHASE = NO
INSTALL_DIR = /tmp/Runner.dst/Applications
INSTALL_GROUP = eng
INSTALL_MODE_FLAG = u+w,go-w,a+rX
INSTALL_OWNER = filiph
INSTALL_PATH = /Applications
INSTALL_ROOT = /tmp/Runner.dst
IPHONEOS_DEPLOYMENT_TARGET = 8.0
JAVAC_DEFAULT_FLAGS = -J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8
JAVA_APP_STUB = /System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub
JAVA_ARCHIVE_CLASSES = YES
JAVA_ARCHIVE_TYPE = JAR
JAVA_COMPILER = /usr/bin/javac
JAVA_FOLDER_PATH = Runner.app/Java
JAVA_FRAMEWORK_RESOURCES_DIRS = Resources
JAVA_JAR_FLAGS = cv
JAVA_SOURCE_SUBDIR = .
JAVA_USE_DEPENDENCIES = YES
JAVA_ZIP_FLAGS = -urg
JIKES_DEFAULT_FLAGS = +E +OLDCSO
KASAN_DEFAULT_CFLAGS = -DKASAN=1 -fsanitize=address -mllvm -asan-globals-live-support -mllvm -asan-force-dynamic-shadow
KEEP_PRIVATE_EXTERNS = NO
LD_DEPENDENCY_INFO_FILE = /Users/filiph/dev/hn_app/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects-normal/arm64/Runner_dependency_info.dat
LD_GENERATE_MAP_FILE = NO
LD_MAP_FILE_PATH = /Users/filiph/dev/hn_app/build/ios/Runner.build/Release-iphoneos/Runner.build/Runner-LinkMap-normal-arm64.txt
LD_NO_PIE = NO
LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER = YES
LD_RUNPATH_SEARCH_PATHS = '@executable_path/Frameworks' '@loader_path/Frameworks' '@executable_path/Frameworks' '@loader_path/Frameworks' @executable_path/Frameworks
LEGACY_DEVELOPER_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer
LEX = lex
LIBRARY_FLAG_NOSPACE = YES
LIBRARY_FLAG_PREFIX = -l
LIBRARY_KEXT_INSTALL_PATH = /Library/Extensions
LIBRARY_SEARCH_PATHS = /Users/filiph/dev/hn_app/ios/Flutter
LINKER_DISPLAYS_MANGLED_NAMES = NO
LINK_FILE_LIST_normal_arm64 =
LINK_WITH_STANDARD_LIBRARIES = YES
LOCALIZABLE_CONTENT_DIR =
LOCALIZED_RESOURCES_FOLDER_PATH = Runner.app/English.lproj
LOCALIZED_STRING_MACRO_NAMES = NSLocalizedString CFLocalizedString
LOCAL_ADMIN_APPS_DIR = /Applications/Utilities
LOCAL_APPS_DIR = /Applications
LOCAL_DEVELOPER_DIR = /Library/Developer
LOCAL_LIBRARY_DIR = /Library
LOCROOT =
LOCSYMROOT =
MACH_O_TYPE = mh_execute
MAC_OS_X_PRODUCT_BUILD_VERSION = 17E202
MAC_OS_X_VERSION_ACTUAL = 101304
MAC_OS_X_VERSION_MAJOR = 101300
MAC_OS_X_VERSION_MINOR = 1304
METAL_LIBRARY_FILE_BASE = default
METAL_LIBRARY_OUTPUT_DIR = /Users/filiph/dev/hn_app/build/ios/Release-iphoneos/Runner.app
MODULE_CACHE_DIR = /Users/filiph/Library/Developer/Xcode/DerivedData/ModuleCache.noindex
MTL_ENABLE_DEBUG_INFO = NO
NATIVE_ARCH = armv7
NATIVE_ARCH_32_BIT = i386
NATIVE_ARCH_64_BIT = x86_64
NATIVE_ARCH_ACTUAL = x86_64
NO_COMMON = YES
OBJECT_FILE_DIR = /Users/filiph/dev/hn_app/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects
OBJECT_FILE_DIR_normal = /Users/filiph/dev/hn_app/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects-normal
OBJROOT = /Users/filiph/dev/hn_app/build/ios
ONLY_ACTIVE_ARCH = NO
OS = MACOS
OSAC = /usr/bin/osacompile
OTHER_CFLAGS = -iquote "/Users/filiph/dev/hn_app/build/ios/Release-iphoneos/url_launcher/url_launcher.framework/Headers" -iquote "/Users/filiph/dev/hn_app/build/ios/Release-iphoneos/url_launcher/url_launcher.framework/Headers"
OTHER_CPLUSPLUSFLAGS = -iquote "/Users/filiph/dev/hn_app/build/ios/Release-iphoneos/url_launcher/url_launcher.framework/Headers" -iquote "/Users/filiph/dev/hn_app/build/ios/Release-iphoneos/url_launcher/url_launcher.framework/Headers"
OTHER_LDFLAGS = -framework "Flutter" -framework "url_launcher" -framework "Flutter" -framework "url_launcher"
PACKAGE_TYPE = com.apple.package-type.wrapper.application
PASCAL_STRINGS = YES
PATH = /Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/google-cloud-sdk/bin:/usr/local/var/pyenv/shims:/Users/filiph/.nvm/versions/node/v6.10.3/bin:/Users/filiph/.rvm/gems/ruby-2.3.1/bin:/Users/filiph/.rvm/gems/ruby-2.3.1@global/bin:/Users/filiph/.rvm/rubies/ruby-2.3.1/bin:/Users/filiph/dev/flutter/bin:/usr/local/git/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/Applications/VMware Fusion.app/Contents/Public:/usr/local/go/bin:/opt/X11/bin:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Applications/dart/dart-sdk/bin:~/.pub-cache/bin:/Users/filiph/gsutil:~/.pub-cache/bin:/usr/local/bin/depot_tools:/Users/filiph/.rvm/bin
PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES = /usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms
PBDEVELOPMENTPLIST_PATH = Runner.app/pbdevelopment.plist
PFE_FILE_C_DIALECTS = objective-c
PKGINFO_FILE_PATH = /Users/filiph/dev/hn_app/build/ios/Runner.build/Release-iphoneos/Runner.build/PkgInfo
PKGINFO_PATH = Runner.app/PkgInfo
PLATFORM_DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Applications
PLATFORM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin
PLATFORM_DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library
PLATFORM_DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs
PLATFORM_DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Tools
PLATFORM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr
PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform
PLATFORM_DISPLAY_NAME = iOS
PLATFORM_NAME = iphoneos
PLATFORM_PREFERRED_ARCH = arm64
PLATFORM_PRODUCT_BUILD_VERSION = 15F79
PLIST_FILE_OUTPUT_FORMAT = binary
PLUGINS_FOLDER_PATH = Runner.app/PlugIns
PODS_BUILD_DIR = /Users/filiph/dev/hn_app/build/ios
PODS_CONFIGURATION_BUILD_DIR = /Users/filiph/dev/hn_app/build/ios/Release-iphoneos
PODS_PODFILE_DIR_PATH = /Users/filiph/dev/hn_app/ios/.
PODS_ROOT = /Users/filiph/dev/hn_app/ios/Pods
PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR = YES
PRECOMP_DESTINATION_DIR = /Users/filiph/dev/hn_app/build/ios/Runner.build/Release-iphoneos/Runner.build/PrefixHeaders
PRESERVE_DEAD_CODE_INITS_AND_TERMS = NO
PREVIEW_DART_2 = true
PRIVATE_HEADERS_FOLDER_PATH = Runner.app/PrivateHeaders
PRODUCT_BUNDLE_IDENTIFIER = hn_app.flutter.io.hnApp
PRODUCT_MODULE_NAME = Runner
PRODUCT_NAME = Runner
PRODUCT_SETTINGS_PATH = /Users/filiph/dev/hn_app/ios/Runner/Info.plist
PRODUCT_TYPE = com.apple.product-type.application
PROFILING_CODE = NO
PROJECT = Runner
PROJECT_DERIVED_FILE_DIR = /Users/filiph/dev/hn_app/build/ios/Runner.build/DerivedSources
PROJECT_DIR = /Users/filiph/dev/hn_app/ios
PROJECT_FILE_PATH = /Users/filiph/dev/hn_app/ios/Runner.xcodeproj
PROJECT_NAME = Runner
PROJECT_TEMP_DIR = /Users/filiph/dev/hn_app/build/ios/Runner.build
PROJECT_TEMP_ROOT = /Users/filiph/dev/hn_app/build/ios
PROVISIONING_PROFILE_REQUIRED = YES
PUBLIC_HEADERS_FOLDER_PATH = Runner.app/Headers
RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS = YES
REMOVE_CVS_FROM_RESOURCES = YES
REMOVE_GIT_FROM_RESOURCES = YES
REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES = YES
REMOVE_HG_FROM_RESOURCES = YES
REMOVE_SVN_FROM_RESOURCES = YES
RESOURCE_RULES_REQUIRED = YES
REZ_COLLECTOR_DIR = /Users/filiph/dev/hn_app/build/ios/Runner.build/Release-iphoneos/Runner.build/ResourceManagerResources
REZ_OBJECTS_DIR = /Users/filiph/dev/hn_app/build/ios/Runner.build/Release-iphoneos/Runner.build/ResourceManagerResources/Objects
SCAN_ALL_SOURCE_FILES_FOR_INCLUDES = NO
SCRIPTS_FOLDER_PATH = Runner.app/Scripts
SDKROOT = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.4.sdk
SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.4.sdk
SDK_DIR_iphoneos11_4 = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.4.sdk
SDK_NAME = iphoneos11.4
SDK_NAMES = iphoneos11.4
SDK_PRODUCT_BUILD_VERSION = 15F79
SDK_VERSION = 11.4
SDK_VERSION_ACTUAL = 110400
SDK_VERSION_MAJOR = 110000
SDK_VERSION_MINOR = 400
SED = /usr/bin/sed
SEPARATE_STRIP = NO
SEPARATE_SYMBOL_EDIT = NO
SET_DIR_MODE_OWNER_GROUP = YES
SET_FILE_MODE_OWNER_GROUP = NO
SHALLOW_BUNDLE = YES
SHARED_DERIVED_FILE_DIR = /Users/filiph/dev/hn_app/build/ios/Release-iphoneos/DerivedSources
SHARED_FRAMEWORKS_FOLDER_PATH = Runner.app/SharedFrameworks
SHARED_PRECOMPS_DIR = /Users/filiph/dev/hn_app/build/ios/SharedPrecompiledHeaders
SHARED_SUPPORT_FOLDER_PATH = Runner.app/SharedSupport
SKIP_INSTALL = NO
SOURCE_ROOT = /Users/filiph/dev/hn_app/ios
SRCROOT = /Users/filiph/dev/hn_app/ios
STRINGS_FILE_OUTPUT_ENCODING = binary
STRIP_BITCODE_FROM_COPIED_FILES = YES
STRIP_INSTALLED_PRODUCT = YES
STRIP_STYLE = all
STRIP_SWIFT_SYMBOLS = YES
SUPPORTED_DEVICE_FAMILIES = 1,2
SUPPORTED_PLATFORMS = iphonesimulator iphoneos
SUPPORTS_TEXT_BASED_API = NO
SWIFT_COMPILATION_MODE = wholemodule
SWIFT_OBJC_BRIDGING_HEADER = Runner/Runner-Bridging-Header.h
SWIFT_OPTIMIZATION_LEVEL = -O
SWIFT_PLATFORM_TARGET_PREFIX = ios
SWIFT_SWIFT3_OBJC_INFERENCE = On
SWIFT_VERSION = 4.0
SYMROOT = /Users/filiph/dev/hn_app/build/ios
SYSTEM_ADMIN_APPS_DIR = /Applications/Utilities
SYSTEM_APPS_DIR = /Applications
SYSTEM_CORE_SERVICES_DIR = /System/Library/CoreServices
SYSTEM_DEMOS_DIR = /Applications/Extras
SYSTEM_DEVELOPER_APPS_DIR = /Applications/Xcode.app/Contents/Developer/Applications
SYSTEM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin
SYSTEM_DEVELOPER_DEMOS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples
SYSTEM_DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer
SYSTEM_DEVELOPER_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library
SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools
SYSTEM_DEVELOPER_JAVA_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Java Tools
SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Performance Tools
SYSTEM_DEVELOPER_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes
SYSTEM_DEVELOPER_TOOLS = /Applications/Xcode.app/Contents/Developer/Tools
SYSTEM_DEVELOPER_TOOLS_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools
SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools
SYSTEM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr
SYSTEM_DEVELOPER_UTILITIES_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities
SYSTEM_DOCUMENTATION_DIR = /Library/Documentation
SYSTEM_KEXT_INSTALL_PATH = /System/Library/Extensions
SYSTEM_LIBRARY_DIR = /System/Library
TAPI_VERIFY_MODE = ErrorsOnly
TARGETED_DEVICE_FAMILY = 1,2
TARGETNAME = Runner
TARGET_BUILD_DIR = /Users/filiph/dev/hn_app/build/ios/Release-iphoneos
TARGET_NAME = Runner
TARGET_TEMP_DIR = /Users/filiph/dev/hn_app/build/ios/Runner.build/Release-iphoneos/Runner.build
TEMP_DIR = /Users/filiph/dev/hn_app/build/ios/Runner.build/Release-iphoneos/Runner.build
TEMP_FILES_DIR = /Users/filiph/dev/hn_app/build/ios/Runner.build/Release-iphoneos/Runner.build
TEMP_FILE_DIR = /Users/filiph/dev/hn_app/build/ios/Runner.build/Release-iphoneos/Runner.build
TEMP_ROOT = /Users/filiph/dev/hn_app/build/ios
TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
TREAT_MISSING_BASELINES_AS_TEST_FAILURES = NO
UID = 74285
UNLOCALIZED_RESOURCES_FOLDER_PATH = Runner.app
UNSTRIPPED_PRODUCT = NO
USER = filiph
USER_APPS_DIR = /Users/filiph/Applications
USER_LIBRARY_DIR = /Users/filiph/Library
USE_DYNAMIC_NO_PIC = YES
USE_HEADERMAP = YES
USE_HEADER_SYMLINKS = NO
VALIDATE_PRODUCT = YES
VALID_ARCHS = arm64 armv7 armv7s
VERBOSE_PBXCP = NO
VERSIONPLIST_PATH = Runner.app/version.plist
VERSION_INFO_BUILDER = filiph
VERSION_INFO_FILE = Runner_vers.c
VERSION_INFO_STRING = "@(#)PROGRAM:Runner PROJECT:Runner-"
WRAPPER_EXTENSION = app
WRAPPER_NAME = Runner.app
WRAPPER_SUFFIX = .app
WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES = NO
XCODE_APP_SUPPORT_DIR = /Applications/Xcode.app/Contents/Developer/Library/Xcode
XCODE_PRODUCT_BUILD_VERSION = 9F1027a
XCODE_VERSION_ACTUAL = 0940
XCODE_VERSION_MAJOR = 0900
XCODE_VERSION_MINOR = 0940
XPCSERVICES_FOLDER_PATH = Runner.app/XPCServices
YACC = yacc
arch = arm64
variant = normal
[ +13 ms] Building Runner.app for 8C0199F9-DE6D-4A50-86F3-875D58FF15E6.
[ +9 ms] script /dev/null /usr/bin/log stream --style syslog --predicate processImagePath CONTAINS "8C0199F9-DE6D-4A50-86F3-875D58FF15E6"
[ +31 ms] [DEVICE LOG] Filtering the log data using "processImagePath CONTAINS "8C0199F9-DE6D-4A50-86F3-875D58FF15E6""
[ +5 ms] [DEVICE LOG] Timestamp (process)[PID]
[ +127 ms] Skipping kernel compilation. Fingerprint match.
[ +229 ms] Building bundle
[ ] Writing asset files to build/flutter_assets
[ +53 ms] Wrote build/flutter_assets
[ +1 ms] /usr/bin/xcrun simctl get_app_container 8C0199F9-DE6D-4A50-86F3-875D58FF15E6 hn_app.flutter.io.hnApp
[ ] /usr/bin/killall Runner
[ +163 ms] python -c import six
[ +131 ms] [ios/] /usr/bin/xcodebuild -list
[ +595 ms] Exit code 0 from: /usr/bin/xcodebuild -list
[ ] Information about project "Runner":
Targets:
Runner
Build Configurations:
Debug
Release
If no build configuration is specified and -scheme is not passed then "Release" is used.
Schemes:
Runner
[ +1 ms] Trying to resolve native pub services.
[ +1 ms] Looking for YAML at 'pubspec.yaml'
[ ] No services specified in the manifest
[ ] Found 0 service definition(s).
[ ] Copying service frameworks to '/Users/filiph/dev/hn_app/ios/Frameworks'.
[ ] Creating service definitions manifest at 'ios/ServiceDefinitions.json'
[ +9 ms] pod --version
[ +778 ms] 1.5.3
/System/Library/Frameworks/Ruby.framework/Versions/2.3/usr/lib/ruby/2.3.0/universal-darwin17/rbconfig.rb:214: warning: Insecure world writable dir /usr/local/git in PATH, mode 040757
Ignoring eventmachine-1.2.5 because its extensions are not built. Try: gem pristine eventmachine --version 1.2.5
Ignoring executable-hooks-1.3.2 because its extensions are not built. Try: gem pristine executable-hooks --version 1.3.2
Ignoring fast-stemmer-1.0.2 because its extensions are not built. Try: gem pristine fast-stemmer --version 1.0.2
Ignoring ffi-1.9.23 because its extensions are not built. Try: gem pristine ffi --version 1.9.23
Ignoring ffi-1.9.18 because its extensions are not built. Try: gem pristine ffi --version 1.9.18
Ignoring ffi-1.9.17 because its extensions are not built. Try: gem pristine ffi --version 1.9.17
Ignoring ffi-1.9.14 because its extensions are not built. Try: gem pristine ffi --version 1.9.14
Ignoring ffi-1.9.10 because its extensions are not built. Try: gem pristine ffi --version 1.9.10
Ignoring ffi-1.9.6 because its extensions are not built. Try: gem pristine ffi --version 1.9.6
Ignoring gem-wrappers-1.2.7 because its extensions are not built. Try: gem pristine gem-wrappers --version 1.2.7
Ignoring hitimes-1.2.2 because its extensions are not built. Try: gem pristine hitimes --version 1.2.2
Ignoring http_parser.rb-0.6.0 because its extensions are not built. Try: gem pristine http_parser.rb --version 0.6.0
Ignoring nokogiri-1.8.2 because its extensions are not built. Try: gem pristine nokogiri --version 1.8.2
Ignoring nokogiri-1.8.1 because its extensions are not built. Try: gem pristine nokogiri --version 1.8.1
Ignoring nokogiri-1.8.0 because its extensions are not built. Try: gem pristine nokogiri --version 1.8.0
Ignoring nokogiri-1.7.0.1 because its extensions are not built. Try: gem pristine nokogiri --version 1.7.0.1
Ignoring nokogiri-1.6.8.1 because its extensions are not built. Try: gem pristine nokogiri --version 1.6.8.1
Ignoring nokogiri-1.6.8 because its extensions are not built. Try: gem pristine nokogiri --version 1.6.8
Ignoring nokogiri-1.5.11 because its extensions are not built. Try: gem pristine nokogiri --version 1.5.11
Ignoring posix-spawn-0.3.9 because its extensions are not built. Try: gem pristine posix-spawn --version 0.3.9
Ignoring redcarpet-3.2.2 because its extensions are not built. Try: gem pristine redcarpet --version 3.2.2
Ignoring therubyracer-0.12.3 because its extensions are not built. Try: gem pristine therubyracer --version 0.12.3
Ignoring yajl-ruby-1.1.0 because its extensions are not built. Try: gem pristine yajl-ruby --version 1.1.0
[ +4 ms] mkfifo /var/folders/p_/8567k9tn6cg7_f1bhzhhvh8c0028jd/T/flutter_build_log_pipeaUXXOb/pipe_to_stdout
[ +5 ms] Exit code 0 from: mkfifo /var/folders/p_/8567k9tn6cg7_f1bhzhhvh8c0028jd/T/flutter_build_log_pipeaUXXOb/pipe_to_stdout
[ +1 ms] Starting Xcode build...
[ ] [ios/] /usr/bin/env xcrun xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/filiph/dev/hn_app/build/ios -sdk iphonesimulator -arch x86_64 SCRIPT_OUTPUT_STREAM_FILE=/var/folders/p_/8567k9tn6cg7_f1bhzhhvh8c0028jd/T/flutter_build_log_pipeaUXXOb/pipe_to_stdout
[+1077 ms] โโAssembling Flutter resources...
[+1176 ms] โโCompiling, linking and signing...
[+3772 ms] Build settings from command line:
ARCHS = x86_64
BUILD_DIR = /Users/filiph/dev/hn_app/build/ios
SCRIPT_OUTPUT_STREAM_FILE = /var/folders/p_/8567k9tn6cg7_f1bhzhhvh8c0028jd/T/flutter_build_log_pipeaUXXOb/pipe_to_stdout
SDKROOT = iphonesimulator11.4
VERBOSE_SCRIPT_LOGGING = YES
=== BUILD TARGET url_launcher OF PROJECT Pods WITH CONFIGURATION Debug ===
Check dependencies
=== BUILD TARGET Pods-Runner OF PROJECT Pods WITH CONFIGURATION Debug ===
Check dependencies
=== BUILD TARGET Runner OF PROJECT Runner WITH CONFIGURATION Debug ===
Check dependencies
The use of Swift 3 @objc inference in Swift 4 mode is deprecated. Please address deprecated @objc inference warnings, test your code with โUse of deprecated Swift 3 @objc inferenceโ logging enabled, and then disable inference by changing the "Swift 3 @objc Inference" build setting to "Default" for the "Runner" target.
PhaseScriptExecution [CP]\ Check\ Pods\ Manifest.lock /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-29C214C214C14893FC40F685.sh
cd /Users/filiph/dev/hn_app/ios
/bin/sh -c /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-29C214C214C14893FC40F685.sh
PhaseScriptExecution Run\ Script /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh
cd /Users/filiph/dev/hn_app/ios
export ACTION=build
export AD_HOC_CODE_SIGNING_ALLOWED=YES
export ALTERNATE_GROUP=eng
export ALTERNATE_MODE=u+w,go-w,a+rX
export ALTERNATE_OWNER=filiph
export ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES=NO
export ALWAYS_SEARCH_USER_PATHS=NO
export ALWAYS_USE_SEPARATE_HEADERMAPS=NO
export APPLE_INTERNAL_DEVELOPER_DIR=/AppleInternal/Developer
export APPLE_INTERNAL_DIR=/AppleInternal
export APPLE_INTERNAL_DOCUMENTATION_DIR=/AppleInternal/Documentation
export APPLE_INTERNAL_LIBRARY_DIR=/AppleInternal/Library
export APPLE_INTERNAL_TOOLS=/AppleInternal/Developer/Tools
export APPLICATION_EXTENSION_API_ONLY=NO
export APPLY_RULES_IN_COPY_FILES=NO
export ARCHS=x86_64
export ARCHS_STANDARD="i386 x86_64"
export ARCHS_STANDARD_32_64_BIT="i386 x86_64"
export ARCHS_STANDARD_32_BIT=i386
export ARCHS_STANDARD_64_BIT=x86_64
export ARCHS_STANDARD_INCLUDING_64_BIT="i386 x86_64"
export ARCHS_UNIVERSAL_IPHONE_OS="i386 x86_64"
export ASSETCATALOG_COMPILER_APPICON_NAME=AppIcon
export AVAILABLE_PLATFORMS="appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator"
export BITCODE_GENERATION_MODE=marker
export BUILD_ACTIVE_RESOURCES_ONLY=YES
export BUILD_COMPONENTS="headers build"
export BUILD_DIR=/Users/filiph/dev/hn_app/build/ios
export BUILD_ROOT=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Products
export BUILD_STYLE=
export BUILD_VARIANTS=normal
export BUILT_PRODUCTS_DIR=/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator
export CACHE_ROOT=/var/folders/p_/8567k9tn6cg7_f1bhzhhvh8c0028jd/C/com.apple.DeveloperTools/9.4-9F1027a/Xcode
export CCHROOT=/var/folders/p_/8567k9tn6cg7_f1bhzhhvh8c0028jd/C/com.apple.DeveloperTools/9.4-9F1027a/Xcode
export CHMOD=/bin/chmod
export CHOWN=/usr/sbin/chown
export CLANG_ANALYZER_NONNULL=YES
export CLANG_CXX_LANGUAGE_STANDARD=gnu++0x
export CLANG_CXX_LIBRARY=libc++
export CLANG_ENABLE_MODULES=YES
export CLANG_ENABLE_OBJC_ARC=YES
export CLANG_MODULES_BUILD_SESSION_FILE=/Users/filiph/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation
export CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING=YES
export CLANG_WARN_BOOL_CONVERSION=YES
export CLANG_WARN_COMMA=YES
export CLANG_WARN_CONSTANT_CONVERSION=YES
export CLANG_WARN_DIRECT_OBJC_ISA_USAGE=YES_ERROR
export CLANG_WARN_EMPTY_BODY=YES
export CLANG_WARN_ENUM_CONVERSION=YES
export CLANG_WARN_INFINITE_RECURSION=YES
export CLANG_WARN_INT_CONVERSION=YES
export CLANG_WARN_NON_LITERAL_NULL_CONVERSION=YES
export CLANG_WARN_OBJC_LITERAL_CONVERSION=YES
export CLANG_WARN_OBJC_ROOT_CLASS=YES_ERROR
export CLANG_WARN_RANGE_LOOP_ANALYSIS=YES
export CLANG_WARN_STRICT_PROTOTYPES=YES
export CLANG_WARN_SUSPICIOUS_MOVE=YES
export CLANG_WARN_UNREACHABLE_CODE=YES
export CLANG_WARN__DUPLICATE_METHOD_MATCH=YES
export CLASS_FILE_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/JavaClasses
export CLEAN_PRECOMPS=YES
export CLONE_HEADERS=NO
export CODESIGNING_FOLDER_PATH=/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app
export CODE_SIGNING_ALLOWED=YES
export CODE_SIGNING_REQUIRED=YES
export CODE_SIGN_CONTEXT_CLASS=XCiPhoneSimulatorCodeSignContext
export CODE_SIGN_IDENTITY=-
export CODE_SIGN_INJECT_BASE_ENTITLEMENTS=YES
export COLOR_DIAGNOSTICS=NO
export COMBINE_HIDPI_IMAGES=NO
export COMMAND_MODE=legacy
export COMPILER_INDEX_STORE_ENABLE=Default
export COMPOSITE_SDK_DIRS=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/CompositeSDKs
export COMPRESS_PNG_FILES=YES
export CONFIGURATION=Debug
export CONFIGURATION_BUILD_DIR=/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator
export CONFIGURATION_TEMP_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator
export CONTENTS_FOLDER_PATH=Runner.app
export COPYING_PRESERVES_HFS_DATA=NO
export COPY_HEADERS_RUN_UNIFDEF=NO
export COPY_PHASE_STRIP=NO
export COPY_RESOURCES_FROM_STATIC_FRAMEWORKS=YES
export CORRESPONDING_DEVICE_PLATFORM_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform
export CORRESPONDING_DEVICE_PLATFORM_NAME=iphoneos
export CORRESPONDING_DEVICE_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.4.sdk
export CORRESPONDING_DEVICE_SDK_NAME=iphoneos11.4
export CP=/bin/cp
export CREATE_INFOPLIST_SECTION_IN_BINARY=NO
export CURRENT_ARCH=x86_64
export CURRENT_VARIANT=normal
export DEAD_CODE_STRIPPING=YES
export DEBUGGING_SYMBOLS=YES
export DEBUG_INFORMATION_FORMAT=dwarf
export DEFAULT_COMPILER=com.apple.compilers.llvm.clang.1_0
export DEFAULT_KEXT_INSTALL_PATH=/System/Library/Extensions
export DEFINES_MODULE=NO
export DEPLOYMENT_LOCATION=NO
export DEPLOYMENT_POSTPROCESSING=NO
export DEPLOYMENT_TARGET_CLANG_ENV_NAME=IPHONEOS_DEPLOYMENT_TARGET
export DEPLOYMENT_TARGET_CLANG_FLAG_NAME=mios-simulator-version-min
export DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX=-mios-simulator-version-min=
export DEPLOYMENT_TARGET_SETTING_NAME=IPHONEOS_DEPLOYMENT_TARGET
export DEPLOYMENT_TARGET_SUGGESTED_VALUES="8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4"
export DERIVED_FILES_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
export DERIVED_FILE_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
export DERIVED_SOURCES_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
export DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode.app/Contents/Developer/Applications
export DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/usr/bin
export DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer
export DEVELOPER_FRAMEWORKS_DIR=/Applications/Xcode.app/Contents/Developer/Library/Frameworks
export DEVELOPER_FRAMEWORKS_DIR_QUOTED=/Applications/Xcode.app/Contents/Developer/Library/Frameworks
export DEVELOPER_LIBRARY_DIR=/Applications/Xcode.app/Contents/Developer/Library
export DEVELOPER_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
export DEVELOPER_TOOLS_DIR=/Applications/Xcode.app/Contents/Developer/Tools
export DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/usr
export DEVELOPMENT_LANGUAGE=English
export DOCUMENTATION_FOLDER_PATH=Runner.app/English.lproj/Documentation
export DO_HEADER_SCANNING_IN_JAM=NO
export DSTROOT=/tmp/Runner.dst
export DT_TOOLCHAIN_DIR=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
export DWARF_DSYM_FILE_NAME=Runner.app.dSYM
export DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT=NO
export DWARF_DSYM_FOLDER_PATH=/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator
export EFFECTIVE_PLATFORM_NAME=-iphonesimulator
export EMBEDDED_CONTENT_CONTAINS_SWIFT=NO
export EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE=NO
export ENABLE_BITCODE=NO
export ENABLE_DEFAULT_HEADER_SEARCH_PATHS=YES
export ENABLE_HEADER_DEPENDENCIES=YES
export ENABLE_ON_DEMAND_RESOURCES=YES
export ENABLE_STRICT_OBJC_MSGSEND=YES
export ENABLE_TESTABILITY=YES
export ENTITLEMENTS_REQUIRED=YES
export EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS=".DS_Store .svn .git .hg CVS"
export EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES="*.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj"
export EXECUTABLES_FOLDER_PATH=Runner.app/Executables
export EXECUTABLE_FOLDER_PATH=Runner.app
export EXECUTABLE_NAME=Runner
export EXECUTABLE_PATH=Runner.app/Runner
export EXPANDED_CODE_SIGN_IDENTITY=-
export EXPANDED_CODE_SIGN_IDENTITY_NAME=-
export EXPANDED_PROVISIONING_PROFILE=
export FILE_LIST=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects/LinkFileList
export FIXED_FILES_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/FixedFiles
export FLUTTER_APPLICATION_PATH=/Users/filiph/dev/hn_app
export FLUTTER_BUILD_DIR=build
export FLUTTER_BUILD_MODE=debug
export FLUTTER_FRAMEWORK_DIR=/Users/filiph/dev/flutter/bin/cache/artifacts/engine/ios
export FLUTTER_ROOT=/Users/filiph/dev/flutter
export FLUTTER_TARGET=lib/main.dart
export FRAMEWORKS_FOLDER_PATH=Runner.app/Frameworks
export FRAMEWORK_FLAG_PREFIX=-framework
export FRAMEWORK_SEARCH_PATHS="/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/url_launcher /Users/filiph/dev/hn_app/ios/Pods/../.symlinks/flutter/ios /Users/filiph/dev/hn_app/ios/Flutter"
export FRAMEWORK_VERSION=A
export FULL_PRODUCT_NAME=Runner.app
export GCC3_VERSION=3.3
export GCC_C_LANGUAGE_STANDARD=gnu99
export GCC_DYNAMIC_NO_PIC=NO
export GCC_INLINES_ARE_PRIVATE_EXTERN=YES
export GCC_NO_COMMON_BLOCKS=YES
export GCC_OBJC_LEGACY_DISPATCH=YES
export GCC_OPTIMIZATION_LEVEL=0
export GCC_PFE_FILE_C_DIALECTS="c objective-c c++ objective-c++"
export GCC_PREPROCESSOR_DEFINITIONS="DEBUG=1 COCOAPODS=1 COCOAPODS=1"
export GCC_SYMBOLS_PRIVATE_EXTERN=NO
export GCC_TREAT_WARNINGS_AS_ERRORS=NO
export GCC_VERSION=com.apple.compilers.llvm.clang.1_0
export GCC_VERSION_IDENTIFIER=com_apple_compilers_llvm_clang_1_0
export GCC_WARN_64_TO_32_BIT_CONVERSION=YES
export GCC_WARN_ABOUT_RETURN_TYPE=YES_ERROR
export GCC_WARN_UNDECLARED_SELECTOR=YES
export GCC_WARN_UNINITIALIZED_AUTOS=YES_AGGRESSIVE
export GCC_WARN_UNUSED_FUNCTION=YES
export GCC_WARN_UNUSED_VARIABLE=YES
export GENERATE_MASTER_OBJECT_FILE=NO
export GENERATE_PKGINFO_FILE=YES
export GENERATE_PROFILING_CODE=NO
export GENERATE_TEXT_BASED_STUBS=NO
export GID=5000
export GROUP=eng
export HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT=YES
export HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES=YES
export HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS=YES
export HEADERMAP_INCLUDES_PROJECT_HEADERS=YES
export HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES=YES
export HEADERMAP_USES_VFS=NO
export HEADER_SEARCH_PATHS="/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/include "
export HIDE_BITCODE_SYMBOLS=YES
export HOME=/Users/filiph
export ICONV=/usr/bin/iconv
export INFOPLIST_EXPAND_BUILD_SETTINGS=YES
export INFOPLIST_FILE=Runner/Info.plist
export INFOPLIST_OUTPUT_FORMAT=binary
export INFOPLIST_PATH=Runner.app/Info.plist
export INFOPLIST_PREPROCESS=NO
export INFOSTRINGS_PATH=Runner.app/English.lproj/InfoPlist.strings
export INLINE_PRIVATE_FRAMEWORKS=NO
export INSTALLHDRS_COPY_PHASE=NO
export INSTALLHDRS_SCRIPT_PHASE=NO
export INSTALL_DIR=/tmp/Runner.dst/Applications
export INSTALL_GROUP=eng
export INSTALL_MODE_FLAG=u+w,go-w,a+rX
export INSTALL_OWNER=filiph
export INSTALL_PATH=/Applications
export INSTALL_ROOT=/tmp/Runner.dst
export IPHONEOS_DEPLOYMENT_TARGET=8.0
export JAVAC_DEFAULT_FLAGS="-J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8"
export JAVA_APP_STUB=/System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub
export JAVA_ARCHIVE_CLASSES=YES
export JAVA_ARCHIVE_TYPE=JAR
export JAVA_COMPILER=/usr/bin/javac
export JAVA_FOLDER_PATH=Runner.app/Java
export JAVA_FRAMEWORK_RESOURCES_DIRS=Resources
export JAVA_JAR_FLAGS=cv
export JAVA_SOURCE_SUBDIR=.
export JAVA_USE_DEPENDENCIES=YES
export JAVA_ZIP_FLAGS=-urg
export JIKES_DEFAULT_FLAGS="+E +OLDCSO"
export KEEP_PRIVATE_EXTERNS=NO
export LD_DEPENDENCY_INFO_FILE=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_dependency_info.dat
export LD_GENERATE_MAP_FILE=NO
export LD_MAP_FILE_PATH=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-LinkMap-normal-x86_64.txt
export LD_NO_PIE=NO
export LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER=YES
export LD_RUNPATH_SEARCH_PATHS=" '@executable_path/Frameworks' '@loader_path/Frameworks' '@executable_path/Frameworks' '@loader_path/Frameworks' @executable_path/Frameworks"
export LEGACY_DEVELOPER_DIR=/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer
export LEX=lex
export LIBRARY_FLAG_NOSPACE=YES
export LIBRARY_FLAG_PREFIX=-l
export LIBRARY_KEXT_INSTALL_PATH=/Library/Extensions
export LIBRARY_SEARCH_PATHS="/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator /Users/filiph/dev/hn_app/ios/Flutter"
export LINKER_DISPLAYS_MANGLED_NAMES=NO
export LINK_FILE_LIST_normal_x86_64=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.LinkFileList
export LINK_WITH_STANDARD_LIBRARIES=YES
export LOCALIZABLE_CONTENT_DIR=
export LOCALIZED_RESOURCES_FOLDER_PATH=Runner.app/English.lproj
export LOCALIZED_STRING_MACRO_NAMES="NSLocalizedString CFLocalizedString"
export LOCAL_ADMIN_APPS_DIR=/Applications/Utilities
export LOCAL_APPS_DIR=/Applications
export LOCAL_DEVELOPER_DIR=/Library/Developer
export LOCAL_LIBRARY_DIR=/Library
export LOCROOT=
export LOCSYMROOT=
export MACH_O_TYPE=mh_execute
export MAC_OS_X_PRODUCT_BUILD_VERSION=17E202
export MAC_OS_X_VERSION_ACTUAL=101304
export MAC_OS_X_VERSION_MAJOR=101300
export MAC_OS_X_VERSION_MINOR=1304
export METAL_LIBRARY_FILE_BASE=default
export METAL_LIBRARY_OUTPUT_DIR=/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app
export MODULE_CACHE_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/ModuleCache.noindex
export MTL_ENABLE_DEBUG_INFO=YES
export NATIVE_ARCH=i386
export NATIVE_ARCH_32_BIT=i386
export NATIVE_ARCH_64_BIT=x86_64
export NATIVE_ARCH_ACTUAL=x86_64
export NO_COMMON=YES
export OBJC_ABI_VERSION=2
export OBJECT_FILE_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects
export OBJECT_FILE_DIR_normal=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal
export OBJROOT=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex
export ONLY_ACTIVE_ARCH=YES
export OS=MACOS
export OSAC=/usr/bin/osacompile
export OTHER_CFLAGS=" -iquote \"/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/url_launcher/url_launcher.framework/Headers\" -iquote \"/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/url_launcher/url_launcher.framework/Headers\""
export OTHER_CPLUSPLUSFLAGS=" -iquote \"/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/url_launcher/url_launcher.framework/Headers\" -iquote \"/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/url_launcher/url_launcher.framework/Headers\""
export OTHER_LDFLAGS=" -framework \"Flutter\" -framework \"url_launcher\" -framework \"Flutter\" -framework \"url_launcher\""
export PACKAGE_TYPE=com.apple.package-type.wrapper.application
export PASCAL_STRINGS=YES
export PATH="/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Tools:/Applications/google-cloud-sdk/bin:/usr/local/var/pyenv/shims:/Users/filiph/.nvm/versions/node/v6.10.3/bin:/Users/filiph/.rvm/gems/ruby-2.3.1/bin:/Users/filiph/.rvm/gems/ruby-2.3.1@global/bin:/Users/filiph/.rvm/rubies/ruby-2.3.1/bin:/Users/filiph/dev/flutter/bin:/usr/local/git/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/Applications/VMware Fusion.app/Contents/Public:/usr/local/go/bin:/opt/X11/bin:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Applications/dart/dart-sdk/bin:/Users/filiph/.pub-cache/bin:/Users/filiph/gsutil:/usr/local/bin/depot_tools:/Users/filiph/.rvm/bin"
export PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES="/usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms"
export PBDEVELOPMENTPLIST_PATH=Runner.app/pbdevelopment.plist
export PFE_FILE_C_DIALECTS=objective-c
export PKGINFO_FILE_PATH=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PkgInfo
export PKGINFO_PATH=Runner.app/PkgInfo
export PLATFORM_DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications
export PLATFORM_DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin
export PLATFORM_DEVELOPER_LIBRARY_DIR=/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library
export PLATFORM_DEVELOPER_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs
export PLATFORM_DEVELOPER_TOOLS_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Tools
export PLATFORM_DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr
export PLATFORM_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform
export PLATFORM_DISPLAY_NAME="iOS Simulator"
export PLATFORM_NAME=iphonesimulator
export PLATFORM_PREFERRED_ARCH=x86_64
export PLIST_FILE_OUTPUT_FORMAT=binary
export PLUGINS_FOLDER_PATH=Runner.app/PlugIns
export PODS_BUILD_DIR=/Users/filiph/dev/hn_app/build/ios
export PODS_CONFIGURATION_BUILD_DIR=/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator
export PODS_PODFILE_DIR_PATH=/Users/filiph/dev/hn_app/ios/.
export PODS_ROOT=/Users/filiph/dev/hn_app/ios/Pods
export PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR=YES
export PRECOMP_DESTINATION_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PrefixHeaders
export PRESERVE_DEAD_CODE_INITS_AND_TERMS=NO
export PREVIEW_DART_2=true
export PRIVATE_HEADERS_FOLDER_PATH=Runner.app/PrivateHeaders
export PRODUCT_BUNDLE_IDENTIFIER=hn_app.flutter.io.hnApp
export PRODUCT_MODULE_NAME=Runner
export PRODUCT_NAME=Runner
export PRODUCT_SETTINGS_PATH=/Users/filiph/dev/hn_app/ios/Runner/Info.plist
export PRODUCT_TYPE=com.apple.product-type.application
export PROFILING_CODE=NO
export PROJECT=Runner
export PROJECT_DERIVED_FILE_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/DerivedSources
export PROJECT_DIR=/Users/filiph/dev/hn_app/ios
export PROJECT_FILE_PATH=/Users/filiph/dev/hn_app/ios/Runner.xcodeproj
export PROJECT_NAME=Runner
export PROJECT_TEMP_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build
export PROJECT_TEMP_ROOT=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex
export PUBLIC_HEADERS_FOLDER_PATH=Runner.app/Headers
export RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS=YES
export REMOVE_CVS_FROM_RESOURCES=YES
export REMOVE_GIT_FROM_RESOURCES=YES
export REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES=YES
export REMOVE_HG_FROM_RESOURCES=YES
export REMOVE_SVN_FROM_RESOURCES=YES
export REZ_COLLECTOR_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources
export REZ_OBJECTS_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources/Objects
export REZ_SEARCH_PATHS="/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator "
export SCAN_ALL_SOURCE_FILES_FOR_INCLUDES=NO
export SCRIPTS_FOLDER_PATH=Runner.app/Scripts
export SCRIPT_INPUT_FILE_COUNT=0
export SCRIPT_OUTPUT_FILE_COUNT=0
export SCRIPT_OUTPUT_STREAM_FILE=/var/folders/p_/8567k9tn6cg7_f1bhzhhvh8c0028jd/T/flutter_build_log_pipeaUXXOb/pipe_to_stdout
export SDKROOT=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk
export SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk
export SDK_DIR_iphonesimulator11_4=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk
export SDK_NAME=iphonesimulator11.4
export SDK_NAMES=iphonesimulator11.4
export SDK_PRODUCT_BUILD_VERSION=15F79
export SDK_VERSION=11.4
export SDK_VERSION_ACTUAL=110400
export SDK_VERSION_MAJOR=110000
export SDK_VERSION_MINOR=400
export SED=/usr/bin/sed
export SEPARATE_STRIP=NO
export SEPARATE_SYMBOL_EDIT=NO
export SET_DIR_MODE_OWNER_GROUP=YES
export SET_FILE_MODE_OWNER_GROUP=NO
export SHALLOW_BUNDLE=YES
export SHARED_DERIVED_FILE_DIR=/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/DerivedSources
export SHARED_FRAMEWORKS_FOLDER_PATH=Runner.app/SharedFrameworks
export SHARED_PRECOMPS_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/PrecompiledHeaders
export SHARED_SUPPORT_FOLDER_PATH=Runner.app/SharedSupport
export SKIP_INSTALL=NO
export SOURCE_ROOT=/Users/filiph/dev/hn_app/ios
export SRCROOT=/Users/filiph/dev/hn_app/ios
export STRINGS_FILE_OUTPUT_ENCODING=binary
export STRIP_BITCODE_FROM_COPIED_FILES=NO
export STRIP_INSTALLED_PRODUCT=YES
export STRIP_STYLE=all
export STRIP_SWIFT_SYMBOLS=YES
export SUPPORTED_DEVICE_FAMILIES=1,2
export SUPPORTED_PLATFORMS="iphonesimulator iphoneos"
export SUPPORTS_TEXT_BASED_API=NO
export SWIFT_OBJC_BRIDGING_HEADER=Runner/Runner-Bridging-Header.h
export SWIFT_OPTIMIZATION_LEVEL=-Onone
export SWIFT_PLATFORM_TARGET_PREFIX=ios
export SWIFT_SWIFT3_OBJC_INFERENCE=On
export SWIFT_VERSION=4.0
export SYMROOT=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Products
export SYSTEM_ADMIN_APPS_DIR=/Applications/Utilities
export SYSTEM_APPS_DIR=/Applications
export SYSTEM_CORE_SERVICES_DIR=/System/Library/CoreServices
export SYSTEM_DEMOS_DIR=/Applications/Extras
export SYSTEM_DEVELOPER_APPS_DIR=/Applications/Xcode.app/Contents/Developer/Applications
export SYSTEM_DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/usr/bin
export SYSTEM_DEVELOPER_DEMOS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples"
export SYSTEM_DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer
export SYSTEM_DEVELOPER_DOC_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library"
export SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools"
export SYSTEM_DEVELOPER_JAVA_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Java Tools"
export SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Performance Tools"
export SYSTEM_DEVELOPER_RELEASENOTES_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes"
export SYSTEM_DEVELOPER_TOOLS=/Applications/Xcode.app/Contents/Developer/Tools
export SYSTEM_DEVELOPER_TOOLS_DOC_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools"
export SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools"
export SYSTEM_DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/usr
export SYSTEM_DEVELOPER_UTILITIES_DIR=/Applications/Xcode.app/Contents/Developer/Applications/Utilities
export SYSTEM_DOCUMENTATION_DIR=/Library/Documentation
export SYSTEM_KEXT_INSTALL_PATH=/System/Library/Extensions
export SYSTEM_LIBRARY_DIR=/System/Library
export TAPI_VERIFY_MODE=ErrorsOnly
export TARGETED_DEVICE_FAMILY=1,2
export TARGETNAME=Runner
export TARGET_BUILD_DIR=/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator
export TARGET_DEVICE_IDENTIFIER="dvtdevice-DVTiOSDeviceSimulatorPlaceholder-iphonesimulator:placeholder"
export TARGET_NAME=Runner
export TARGET_TEMP_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_FILES_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_FILE_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_ROOT=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex
export TOOLCHAINS=com.apple.dt.toolchain.XcodeDefault
export TOOLCHAIN_DIR=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
export TREAT_MISSING_BASELINES_AS_TEST_FAILURES=NO
export UID=74285
export UNLOCALIZED_RESOURCES_FOLDER_PATH=Runner.app
export UNSTRIPPED_PRODUCT=NO
export USER=filiph
export USER_APPS_DIR=/Users/filiph/Applications
export USER_LIBRARY_DIR=/Users/filiph/Library
export USE_DYNAMIC_NO_PIC=YES
export USE_HEADERMAP=YES
export USE_HEADER_SYMLINKS=NO
export VALIDATE_PRODUCT=NO
export VALID_ARCHS="i386 x86_64"
export VERBOSE_PBXCP=NO
export VERBOSE_SCRIPT_LOGGING=YES
export VERSIONPLIST_PATH=Runner.app/version.plist
export VERSION_INFO_BUILDER=filiph
export VERSION_INFO_FILE=Runner_vers.c
export VERSION_INFO_STRING="\"@(#)PROGRAM:Runner PROJECT:Runner-\""
export WRAPPER_EXTENSION=app
export WRAPPER_NAME=Runner.app
export WRAPPER_SUFFIX=.app
export WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES=NO
export XCODE_APP_SUPPORT_DIR=/Applications/Xcode.app/Contents/Developer/Library/Xcode
export XCODE_PRODUCT_BUILD_VERSION=9F1027a
export XCODE_VERSION_ACTUAL=0940
export XCODE_VERSION_MAJOR=0900
export XCODE_VERSION_MINOR=0940
export XPCSERVICES_FOLDER_PATH=Runner.app/XPCServices
export YACC=yacc
export arch=x86_64
export variant=normal
/bin/sh -c /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh
โฆ mkdir -p -- /Users/filiph/dev/hn_app/ios/Flutter
โฆ rm -rf -- /Users/filiph/dev/hn_app/ios/Flutter/Flutter.framework
โฆ rm -rf -- /Users/filiph/dev/hn_app/ios/Flutter/App.framework
โฆ cp -r -- /Users/filiph/dev/flutter/bin/cache/artifacts/engine/ios/Flutter.framework /Users/filiph/dev/hn_app/ios/Flutter
โฆ find /Users/filiph/dev/hn_app/ios/Flutter/Flutter.framework -type f -exec chmod a-w {} ;
โฆ mkdir -p -- /Users/filiph/dev/hn_app/ios/Flutter/App.framework
โฆ eval
โฆ cp -- /Users/filiph/dev/hn_app/ios/Flutter/AppFrameworkInfo.plist /Users/filiph/dev/hn_app/ios/Flutter/App.framework/Info.plist
โฆ /Users/filiph/dev/flutter/bin/flutter --suppress-analytics --verbose build bundle --target=lib/main.dart --snapshot=build/snapshot_blob.bin --depfile=build/snapshot_blob.bin.d --asset-dir=/Users/filiph/dev/hn_app/ios/Flutter/flutter_assets --preview-dart-2
[ +6 ms] [/Users/filiph/dev/flutter/] git rev-parse --abbrev-ref --symbolic @{u}
[ +35 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u}
[ ] origin/beta
[ ] [/Users/filiph/dev/flutter/] git rev-parse --abbrev-ref HEAD
[ +5 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD
[ ] beta
[ ] [/Users/filiph/dev/flutter/] git ls-remote --get-url origin
[ +5 ms] Exit code 0 from: git ls-remote --get-url origin
[ ] https://github.com/flutter/flutter.git
[ ] [/Users/filiph/dev/flutter/] git log -n 1 --pretty=format:%H
[ +5 ms] Exit code 0 from: git log -n 1 --pretty=format:%H
[ ] f9bb4289e9fd861d70ae78bcc3a042ef1b35cc9d
[ ] [/Users/filiph/dev/flutter/] git log -n 1 --pretty=format:%ar
[ +5 ms] Exit code 0 from: git log -n 1 --pretty=format:%ar
[ ] 3 weeks ago
[ ] [/Users/filiph/dev/flutter/] git describe --match v*.*.* --first-parent --long --tags
[ +6 ms] Exit code 0 from: git describe --match v*.*.* --first-parent --long --tags
[ ] v0.4.4-0-gf9bb4289e
[ +206 ms] Found plugin url_launcher at /Users/filiph/dev/flutter/.pub-cache/hosted/pub.dartlang.org/url_launcher-3.0.2/
[ +281 ms] Skipping kernel compilation. Fingerprint match.
[ +194 ms] Building bundle
[ ] Writing asset files to /Users/filiph/dev/hn_app/ios/Flutter/flutter_assets
[ +80 ms] Wrote /Users/filiph/dev/hn_app/ios/Flutter/flutter_assets
[ +10 ms] "flutter bundle" took 661ms.
Project /Users/filiph/dev/hn_app built and packaged successfully.
CompileSwiftSources normal x86_64 com.apple.xcode.tools.swift.compiler
cd /Users/filiph/dev/hn_app/ios
export DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/google-cloud-sdk/bin:/usr/local/var/pyenv/shims:/Users/filiph/.nvm/versions/node/v6.10.3/bin:/Users/filiph/.rvm/gems/ruby-2.3.1/bin:/Users/filiph/.rvm/gems/ruby-2.3.1@global/bin:/Users/filiph/.rvm/rubies/ruby-2.3.1/bin:/Users/filiph/dev/flutter/bin:/usr/local/git/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/Applications/VMware Fusion.app/Contents/Public:/usr/local/go/bin:/opt/X11/bin:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Applications/dart/dart-sdk/bin:~/.pub-cache/bin:/Users/filiph/gsutil:~/.pub-cache/bin:/usr/local/bin/depot_tools:/Users/filiph/.rvm/bin"
export SDKROOT=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -incremental -module-name Runner -Onone -enforce-exclusivity=checked -Xfrontend -enable-swift3-objc-inference -Xfrontend -warn-swift3-objc-inference-minimal -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk -target x86_64-apple-ios8.0 -g -module-cache-path /Users/filiph/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Index/DataStore -swift-version 4 -I /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator -F /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator -F /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/url_launcher -F /Users/filiph/dev/hn_app/ios/Pods/../.symlinks/flutter/ios -F /Users/filiph/dev/hn_app/ios/Flutter -parse-as-library -c -j8 /Users/filiph/dev/hn_app/ios/Runner/AppDelegate.swift -output-file-map /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner-OutputFileMap.json -parseable-output -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftmodule -Xcc -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap -Xcc -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap -Xcc -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap -Xcc -I/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/include -Xcc -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/x86_64 -Xcc -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources -Xcc -DDEBUG=1 -Xcc -DCOCOAPODS=1 -Xcc -DCOCOAPODS=1 -emit-objc-header -emit-objc-header-path /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner-Swift.h -import-objc-header /Users/filiph/dev/hn_app/ios/Runner/Runner-Bridging-Header.h -pch-output-dir /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/PrecompiledHeaders -Xcc -working-directory/Users/filiph/dev/hn_app/ios
PrecompileSwiftBridgingHeader normal x86_64
cd /Users/filiph/dev/hn_app/ios
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift -frontend -target x86_64-apple-ios8.0 -enable-objc-interop -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk -I /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator -F /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator -F /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/url_launcher -F /Users/filiph/dev/hn_app/ios/Pods/../.symlinks/flutter/ios -F /Users/filiph/dev/hn_app/ios/Flutter -enable-testing -g -module-cache-path /Users/filiph/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -swift-version 4 -enforce-exclusivity=checked -Onone -enable-swift3-objc-inference -warn-swift3-objc-inference-minimal -serialize-debugging-options -Xcc -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap -Xcc -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap -Xcc -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap -Xcc -I/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/include -Xcc -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/x86_64 -Xcc -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources -Xcc -DDEBUG=1 -Xcc -DCOCOAPODS=1 -Xcc -DCOCOAPODS=1 -Xcc -working-directory/Users/filiph/dev/hn_app/ios -serialize-diagnostics-path /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/PrecompiledHeaders/Runner-Bridging-Header-1C2XJGQ58QHUF.dia /Users/filiph/dev/hn_app/ios/Runner/Runner-Bridging-Header.h -index-store-path /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Index/DataStore -emit-pch -pch-output-dir /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/PrecompiledHeaders
fatal error: file '/Users/filiph/dev/hn_app/ios/Runner/GeneratedPluginRegistrant.h' has been modified since the precompiled header '/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/PrecompiledHeaders/Runner-Bridging-Header-swift_SBYI18I7DX3W-clang_2IFQ2RUXKFQCN.pch' was built
note: please rebuild precompiled header '/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/PrecompiledHeaders/Runner-Bridging-Header-swift_SBYI18I7DX3W-clang_2IFQ2RUXKFQCN.pch'
CompileSwift normal x86_64 /Users/filiph/dev/hn_app/ios/Runner/AppDelegate.swift
cd /Users/filiph/dev/hn_app/ios
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift -frontend -c -primary-file /Users/filiph/dev/hn_app/ios/Runner/AppDelegate.swift -target x86_64-apple-ios8.0 -enable-objc-interop -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk -I /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator -F /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator -F /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/url_launcher -F /Users/filiph/dev/hn_app/ios/Pods/../.symlinks/flutter/ios -F /Users/filiph/dev/hn_app/ios/Flutter -enable-testing -g -module-cache-path /Users/filiph/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -swift-version 4 -enforce-exclusivity=checked -Onone -enable-swift3-objc-inference -warn-swift3-objc-inference-minimal -serialize-debugging-options -Xcc -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap -Xcc -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap -Xcc -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap -Xcc -I/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/include -Xcc -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/x86_64 -Xcc -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources -Xcc -DDEBUG=1 -Xcc -DCOCOAPODS=1 -Xcc -DCOCOAPODS=1 -Xcc -working-directory/Users/filiph/dev/hn_app/ios -emit-module-doc-path /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate~partial.swiftdoc -serialize-diagnostics-path /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.dia -import-objc-header /Users/filiph/dev/hn_app/ios/Runner/Runner-Bridging-Header.h -pch-output-dir /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/PrecompiledHeaders -pch-disable-validation -parse-as-library -module-name Runner -emit-module-path /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate~partial.swiftmodule -emit-dependencies-path /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.d -emit-reference-dependencies-path /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.swiftdeps -o /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.o -index-store-path /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Index/DataStore -index-system-modules
MergeSwiftModule normal x86_64 /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftmodule
cd /Users/filiph/dev/hn_app/ios
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift -frontend -merge-modules -emit-module /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate~partial.swiftmodule -parse-as-library -sil-merge-partial-modules -disable-diagnostic-passes -disable-sil-perf-optzns -target x86_64-apple-ios8.0 -enable-objc-interop -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk -I /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator -F /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator -F /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/url_launcher -F /Users/filiph/dev/hn_app/ios/Pods/../.symlinks/flutter/ios -F /Users/filiph/dev/hn_app/ios/Flutter -enable-testing -g -module-cache-path /Users/filiph/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -swift-version 4 -enforce-exclusivity=checked -Onone -enable-swift3-objc-inference -warn-swift3-objc-inference-minimal -serialize-debugging-options -Xcc -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap -Xcc -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap -Xcc -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap -Xcc -I/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/include -Xcc -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/x86_64 -Xcc -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources -Xcc -DDEBUG=1 -Xcc -DCOCOAPODS=1 -Xcc -DCOCOAPODS=1 -Xcc -working-directory/Users/filiph/dev/hn_app/ios -emit-module-doc-path /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftdoc -import-objc-header /Users/filiph/dev/hn_app/ios/Runner/Runner-Bridging-Header.h -module-name Runner -emit-objc-header-path /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner-Swift.h -o /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftmodule
CompileC /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.o Runner/GeneratedPluginRegistrant.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler
cd /Users/filiph/dev/hn_app/ios
export LANG=en_US.US-ASCII
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/google-cloud-sdk/bin:/usr/local/var/pyenv/shims:/Users/filiph/.nvm/versions/node/v6.10.3/bin:/Users/filiph/.rvm/gems/ruby-2.3.1/bin:/Users/filiph/.rvm/gems/ruby-2.3.1@global/bin:/Users/filiph/.rvm/rubies/ruby-2.3.1/bin:/Users/filiph/dev/flutter/bin:/usr/local/git/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/Applications/VMware Fusion.app/Contents/Public:/usr/local/go/bin:/opt/X11/bin:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Applications/dart/dart-sdk/bin:~/.pub-cache/bin:/Users/filiph/gsutil:~/.pub-cache/bin:/usr/local/bin/depot_tools:/Users/filiph/.rvm/bin"
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -fmodules -gmodules -fmodules-cache-path=/Users/filiph/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/filiph/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -O0 -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DDEBUG=1 -DCOCOAPODS=1 -DCOCOAPODS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -mios-simulator-version-min=8.0 -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -fobjc-abi-version=2 -fobjc-legacy-dispatch -index-store-path /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Index/DataStore -iquote /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-non-framework-target-headers.hmap -ivfsoverlay /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/all-product-headers.yaml -iquote /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap -I/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/include -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/x86_64 -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources -F/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator -F/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/url_launcher -F/Users/filiph/dev/hn_app/ios/Pods/../.symlinks/flutter/ios -F/Users/filiph/dev/hn_app/ios/Flutter -iquote /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/url_launcher/url_launcher.framework/Headers -iquote /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/url_launcher/url_launcher.framework/Headers -MMD -MT dependencies -MF /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.d --serialize-diagnostics /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.dia -c /Users/filiph/dev/hn_app/ios/Runner/GeneratedPluginRegistrant.m -o /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.o
Ld /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Runner normal x86_64
cd /Users/filiph/dev/hn_app/ios
export IPHONEOS_DEPLOYMENT_TARGET=8.0
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/google-cloud-sdk/bin:/usr/local/var/pyenv/shims:/Users/filiph/.nvm/versions/node/v6.10.3/bin:/Users/filiph/.rvm/gems/ruby-2.3.1/bin:/Users/filiph/.rvm/gems/ruby-2.3.1@global/bin:/Users/filiph/.rvm/rubies/ruby-2.3.1/bin:/Users/filiph/dev/flutter/bin:/usr/local/git/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/Applications/VMware Fusion.app/Contents/Public:/usr/local/go/bin:/opt/X11/bin:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Applications/dart/dart-sdk/bin:~/.pub-cache/bin:/Users/filiph/gsutil:~/.pub-cache/bin:/usr/local/bin/depot_tools:/Users/filiph/.rvm/bin"
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk -L/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator -L/Users/filiph/dev/hn_app/ios/Flutter -F/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator -F/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/url_launcher -F/Users/filiph/dev/hn_app/ios/Pods/../.symlinks/flutter/ios -F/Users/filiph/dev/hn_app/ios/Flutter -filelist /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.LinkFileList -Xlinker -rpath -Xlinker @executable_path/Frameworks -Xlinker -rpath -Xlinker @loader_path/Frameworks -Xlinker -rpath -Xlinker @executable_path/Frameworks -Xlinker -rpath -Xlinker @loader_path/Frameworks -Xlinker -rpath -Xlinker @executable_path/Frameworks -mios-simulator-version-min=8.0 -dead_strip -Xlinker -object_path_lto -Xlinker /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -objc_abi_version -Xlinker 2 -fobjc-arc -fobjc-link-runtime -L/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator -Xlinker -add_ast_path -Xlinker /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftmodule -framework Flutter -framework url_launcher -framework Flutter -framework url_launcher -Xlinker -sectcreate -Xlinker __TEXT -Xlinker __entitlements -Xlinker /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app-Simulated.xcent -framework Flutter -framework App -framework Pods_Runner -Xlinker -dependency_info -Xlinker /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_dependency_info.dat -o /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Runner
CpResource Flutter/Generated.xcconfig /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Generated.xcconfig
cd /Users/filiph/dev/hn_app/ios
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/google-cloud-sdk/bin:/usr/local/var/pyenv/shims:/Users/filiph/.nvm/versions/node/v6.10.3/bin:/Users/filiph/.rvm/gems/ruby-2.3.1/bin:/Users/filiph/.rvm/gems/ruby-2.3.1@global/bin:/Users/filiph/.rvm/rubies/ruby-2.3.1/bin:/Users/filiph/dev/flutter/bin:/usr/local/git/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/Applications/VMware Fusion.app/Contents/Public:/usr/local/go/bin:/opt/X11/bin:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Applications/dart/dart-sdk/bin:~/.pub-cache/bin:/Users/filiph/gsutil:~/.pub-cache/bin:/usr/local/bin/depot_tools:/Users/filiph/.rvm/bin"
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks /Users/filiph/dev/hn_app/ios/Flutter/Generated.xcconfig /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app
CpResource Flutter/flutter_assets /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/flutter_assets
cd /Users/filiph/dev/hn_app/ios
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/google-cloud-sdk/bin:/usr/local/var/pyenv/shims:/Users/filiph/.nvm/versions/node/v6.10.3/bin:/Users/filiph/.rvm/gems/ruby-2.3.1/bin:/Users/filiph/.rvm/gems/ruby-2.3.1@global/bin:/Users/filiph/.rvm/rubies/ruby-2.3.1/bin:/Users/filiph/dev/flutter/bin:/usr/local/git/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/Applications/VMware Fusion.app/Contents/Public:/usr/local/go/bin:/opt/X11/bin:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Applications/dart/dart-sdk/bin:~/.pub-cache/bin:/Users/filiph/gsutil:~/.pub-cache/bin:/usr/local/bin/depot_tools:/Users/filiph/.rvm/bin"
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks /Users/filiph/dev/hn_app/ios/Flutter/flutter_assets /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app
PBXCp Flutter/App.framework /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework
cd /Users/filiph/dev/hn_app/ios
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/google-cloud-sdk/bin:/usr/local/var/pyenv/shims:/Users/filiph/.nvm/versions/node/v6.10.3/bin:/Users/filiph/.rvm/gems/ruby-2.3.1/bin:/Users/filiph/.rvm/gems/ruby-2.3.1@global/bin:/Users/filiph/.rvm/rubies/ruby-2.3.1/bin:/Users/filiph/dev/flutter/bin:/usr/local/git/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/Applications/VMware Fusion.app/Contents/Public:/usr/local/go/bin:/opt/X11/bin:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Applications/dart/dart-sdk/bin:~/.pub-cache/bin:/Users/filiph/gsutil:~/.pub-cache/bin:/usr/local/bin/depot_tools:/Users/filiph/.rvm/bin"
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -exclude Headers -exclude PrivateHeaders -exclude Modules -exclude *.tbd -resolve-src-symlinks /Users/filiph/dev/hn_app/ios/Flutter/App.framework /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks
PBXCp Flutter/Flutter.framework /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework
cd /Users/filiph/dev/hn_app/ios
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/google-cloud-sdk/bin:/usr/local/var/pyenv/shims:/Users/filiph/.nvm/versions/node/v6.10.3/bin:/Users/filiph/.rvm/gems/ruby-2.3.1/bin:/Users/filiph/.rvm/gems/ruby-2.3.1@global/bin:/Users/filiph/.rvm/rubies/ruby-2.3.1/bin:/Users/filiph/dev/flutter/bin:/usr/local/git/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/Applications/VMware Fusion.app/Contents/Public:/usr/local/go/bin:/opt/X11/bin:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Applications/dart/dart-sdk/bin:~/.pub-cache/bin:/Users/filiph/gsutil:~/.pub-cache/bin:/usr/local/bin/depot_tools:/Users/filiph/.rvm/bin"
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -exclude Headers -exclude PrivateHeaders -exclude Modules -exclude *.tbd -resolve-src-symlinks /Users/filiph/dev/hn_app/ios/Flutter/Flutter.framework /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks
CodeSign /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework
cd /Users/filiph/dev/hn_app/ios
export CODESIGN_ALLOCATE=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/google-cloud-sdk/bin:/usr/local/var/pyenv/shims:/Users/filiph/.nvm/versions/node/v6.10.3/bin:/Users/filiph/.rvm/gems/ruby-2.3.1/bin:/Users/filiph/.rvm/gems/ruby-2.3.1@global/bin:/Users/filiph/.rvm/rubies/ruby-2.3.1/bin:/Users/filiph/dev/flutter/bin:/usr/local/git/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/Applications/VMware Fusion.app/Contents/Public:/usr/local/go/bin:/opt/X11/bin:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Applications/dart/dart-sdk/bin:~/.pub-cache/bin:/Users/filiph/gsutil:~/.pub-cache/bin:/usr/local/bin/depot_tools:/Users/filiph/.rvm/bin"
Signing Identity: "-"
/usr/bin/codesign --force --sign - --preserve-metadata=identifier,entitlements,flags --timestamp=none /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework
PhaseScriptExecution Thin\ Binary /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh
cd /Users/filiph/dev/hn_app/ios
export ACTION=build
export AD_HOC_CODE_SIGNING_ALLOWED=YES
export ALTERNATE_GROUP=eng
export ALTERNATE_MODE=u+w,go-w,a+rX
export ALTERNATE_OWNER=filiph
export ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES=NO
export ALWAYS_SEARCH_USER_PATHS=NO
export ALWAYS_USE_SEPARATE_HEADERMAPS=NO
export APPLE_INTERNAL_DEVELOPER_DIR=/AppleInternal/Developer
export APPLE_INTERNAL_DIR=/AppleInternal
export APPLE_INTERNAL_DOCUMENTATION_DIR=/AppleInternal/Documentation
export APPLE_INTERNAL_LIBRARY_DIR=/AppleInternal/Library
export APPLE_INTERNAL_TOOLS=/AppleInternal/Developer/Tools
export APPLICATION_EXTENSION_API_ONLY=NO
export APPLY_RULES_IN_COPY_FILES=NO
export ARCHS=x86_64
export ARCHS_STANDARD="i386 x86_64"
export ARCHS_STANDARD_32_64_BIT="i386 x86_64"
export ARCHS_STANDARD_32_BIT=i386
export ARCHS_STANDARD_64_BIT=x86_64
export ARCHS_STANDARD_INCLUDING_64_BIT="i386 x86_64"
export ARCHS_UNIVERSAL_IPHONE_OS="i386 x86_64"
export ASSETCATALOG_COMPILER_APPICON_NAME=AppIcon
export AVAILABLE_PLATFORMS="appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator"
export BITCODE_GENERATION_MODE=marker
export BUILD_ACTIVE_RESOURCES_ONLY=YES
export BUILD_COMPONENTS="headers build"
export BUILD_DIR=/Users/filiph/dev/hn_app/build/ios
export BUILD_ROOT=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Products
export BUILD_STYLE=
export BUILD_VARIANTS=normal
export BUILT_PRODUCTS_DIR=/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator
export CACHE_ROOT=/var/folders/p_/8567k9tn6cg7_f1bhzhhvh8c0028jd/C/com.apple.DeveloperTools/9.4-9F1027a/Xcode
export CCHROOT=/var/folders/p_/8567k9tn6cg7_f1bhzhhvh8c0028jd/C/com.apple.DeveloperTools/9.4-9F1027a/Xcode
export CHMOD=/bin/chmod
export CHOWN=/usr/sbin/chown
export CLANG_ANALYZER_NONNULL=YES
export CLANG_CXX_LANGUAGE_STANDARD=gnu++0x
export CLANG_CXX_LIBRARY=libc++
export CLANG_ENABLE_MODULES=YES
export CLANG_ENABLE_OBJC_ARC=YES
export CLANG_MODULES_BUILD_SESSION_FILE=/Users/filiph/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation
export CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING=YES
export CLANG_WARN_BOOL_CONVERSION=YES
export CLANG_WARN_COMMA=YES
export CLANG_WARN_CONSTANT_CONVERSION=YES
export CLANG_WARN_DIRECT_OBJC_ISA_USAGE=YES_ERROR
export CLANG_WARN_EMPTY_BODY=YES
export CLANG_WARN_ENUM_CONVERSION=YES
export CLANG_WARN_INFINITE_RECURSION=YES
export CLANG_WARN_INT_CONVERSION=YES
export CLANG_WARN_NON_LITERAL_NULL_CONVERSION=YES
export CLANG_WARN_OBJC_LITERAL_CONVERSION=YES
export CLANG_WARN_OBJC_ROOT_CLASS=YES_ERROR
export CLANG_WARN_RANGE_LOOP_ANALYSIS=YES
export CLANG_WARN_STRICT_PROTOTYPES=YES
export CLANG_WARN_SUSPICIOUS_MOVE=YES
export CLANG_WARN_UNREACHABLE_CODE=YES
export CLANG_WARN__DUPLICATE_METHOD_MATCH=YES
export CLASS_FILE_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/JavaClasses
export CLEAN_PRECOMPS=YES
export CLONE_HEADERS=NO
export CODESIGNING_FOLDER_PATH=/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app
export CODE_SIGNING_ALLOWED=YES
export CODE_SIGNING_REQUIRED=YES
export CODE_SIGN_CONTEXT_CLASS=XCiPhoneSimulatorCodeSignContext
export CODE_SIGN_IDENTITY=-
export CODE_SIGN_INJECT_BASE_ENTITLEMENTS=YES
export COLOR_DIAGNOSTICS=NO
export COMBINE_HIDPI_IMAGES=NO
export COMMAND_MODE=legacy
export COMPILER_INDEX_STORE_ENABLE=Default
export COMPOSITE_SDK_DIRS=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/CompositeSDKs
export COMPRESS_PNG_FILES=YES
export CONFIGURATION=Debug
export CONFIGURATION_BUILD_DIR=/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator
export CONFIGURATION_TEMP_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator
export CONTENTS_FOLDER_PATH=Runner.app
export COPYING_PRESERVES_HFS_DATA=NO
export COPY_HEADERS_RUN_UNIFDEF=NO
export COPY_PHASE_STRIP=NO
export COPY_RESOURCES_FROM_STATIC_FRAMEWORKS=YES
export CORRESPONDING_DEVICE_PLATFORM_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform
export CORRESPONDING_DEVICE_PLATFORM_NAME=iphoneos
export CORRESPONDING_DEVICE_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.4.sdk
export CORRESPONDING_DEVICE_SDK_NAME=iphoneos11.4
export CP=/bin/cp
export CREATE_INFOPLIST_SECTION_IN_BINARY=NO
export CURRENT_ARCH=x86_64
export CURRENT_VARIANT=normal
export DEAD_CODE_STRIPPING=YES
export DEBUGGING_SYMBOLS=YES
export DEBUG_INFORMATION_FORMAT=dwarf
export DEFAULT_COMPILER=com.apple.compilers.llvm.clang.1_0
export DEFAULT_KEXT_INSTALL_PATH=/System/Library/Extensions
export DEFINES_MODULE=NO
export DEPLOYMENT_LOCATION=NO
export DEPLOYMENT_POSTPROCESSING=NO
export DEPLOYMENT_TARGET_CLANG_ENV_NAME=IPHONEOS_DEPLOYMENT_TARGET
export DEPLOYMENT_TARGET_CLANG_FLAG_NAME=mios-simulator-version-min
export DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX=-mios-simulator-version-min=
export DEPLOYMENT_TARGET_SETTING_NAME=IPHONEOS_DEPLOYMENT_TARGET
export DEPLOYMENT_TARGET_SUGGESTED_VALUES="8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4"
export DERIVED_FILES_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
export DERIVED_FILE_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
export DERIVED_SOURCES_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
export DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode.app/Contents/Developer/Applications
export DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/usr/bin
export DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer
export DEVELOPER_FRAMEWORKS_DIR=/Applications/Xcode.app/Contents/Developer/Library/Frameworks
export DEVELOPER_FRAMEWORKS_DIR_QUOTED=/Applications/Xcode.app/Contents/Developer/Library/Frameworks
export DEVELOPER_LIBRARY_DIR=/Applications/Xcode.app/Contents/Developer/Library
export DEVELOPER_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
export DEVELOPER_TOOLS_DIR=/Applications/Xcode.app/Contents/Developer/Tools
export DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/usr
export DEVELOPMENT_LANGUAGE=English
export DOCUMENTATION_FOLDER_PATH=Runner.app/English.lproj/Documentation
export DO_HEADER_SCANNING_IN_JAM=NO
export DSTROOT=/tmp/Runner.dst
export DT_TOOLCHAIN_DIR=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
export DWARF_DSYM_FILE_NAME=Runner.app.dSYM
export DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT=NO
export DWARF_DSYM_FOLDER_PATH=/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator
export EFFECTIVE_PLATFORM_NAME=-iphonesimulator
export EMBEDDED_CONTENT_CONTAINS_SWIFT=NO
export EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE=NO
export ENABLE_BITCODE=NO
export ENABLE_DEFAULT_HEADER_SEARCH_PATHS=YES
export ENABLE_HEADER_DEPENDENCIES=YES
export ENABLE_ON_DEMAND_RESOURCES=YES
export ENABLE_STRICT_OBJC_MSGSEND=YES
export ENABLE_TESTABILITY=YES
export ENTITLEMENTS_REQUIRED=YES
export EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS=".DS_Store .svn .git .hg CVS"
export EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES="*.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj"
export EXECUTABLES_FOLDER_PATH=Runner.app/Executables
export EXECUTABLE_FOLDER_PATH=Runner.app
export EXECUTABLE_NAME=Runner
export EXECUTABLE_PATH=Runner.app/Runner
export EXPANDED_CODE_SIGN_IDENTITY=-
export EXPANDED_CODE_SIGN_IDENTITY_NAME=-
export EXPANDED_PROVISIONING_PROFILE=
export FILE_LIST=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects/LinkFileList
export FIXED_FILES_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/FixedFiles
export FLUTTER_APPLICATION_PATH=/Users/filiph/dev/hn_app
export FLUTTER_BUILD_DIR=build
export FLUTTER_BUILD_MODE=debug
export FLUTTER_FRAMEWORK_DIR=/Users/filiph/dev/flutter/bin/cache/artifacts/engine/ios
export FLUTTER_ROOT=/Users/filiph/dev/flutter
export FLUTTER_TARGET=lib/main.dart
export FRAMEWORKS_FOLDER_PATH=Runner.app/Frameworks
export FRAMEWORK_FLAG_PREFIX=-framework
export FRAMEWORK_SEARCH_PATHS="/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/url_launcher /Users/filiph/dev/hn_app/ios/Pods/../.symlinks/flutter/ios /Users/filiph/dev/hn_app/ios/Flutter"
export FRAMEWORK_VERSION=A
export FULL_PRODUCT_NAME=Runner.app
export GCC3_VERSION=3.3
export GCC_C_LANGUAGE_STANDARD=gnu99
export GCC_DYNAMIC_NO_PIC=NO
export GCC_INLINES_ARE_PRIVATE_EXTERN=YES
export GCC_NO_COMMON_BLOCKS=YES
export GCC_OBJC_LEGACY_DISPATCH=YES
export GCC_OPTIMIZATION_LEVEL=0
export GCC_PFE_FILE_C_DIALECTS="c objective-c c++ objective-c++"
export GCC_PREPROCESSOR_DEFINITIONS="DEBUG=1 COCOAPODS=1 COCOAPODS=1"
export GCC_SYMBOLS_PRIVATE_EXTERN=NO
export GCC_TREAT_WARNINGS_AS_ERRORS=NO
export GCC_VERSION=com.apple.compilers.llvm.clang.1_0
export GCC_VERSION_IDENTIFIER=com_apple_compilers_llvm_clang_1_0
export GCC_WARN_64_TO_32_BIT_CONVERSION=YES
export GCC_WARN_ABOUT_RETURN_TYPE=YES_ERROR
export GCC_WARN_UNDECLARED_SELECTOR=YES
export GCC_WARN_UNINITIALIZED_AUTOS=YES_AGGRESSIVE
export GCC_WARN_UNUSED_FUNCTION=YES
export GCC_WARN_UNUSED_VARIABLE=YES
export GENERATE_MASTER_OBJECT_FILE=NO
export GENERATE_PKGINFO_FILE=YES
export GENERATE_PROFILING_CODE=NO
export GENERATE_TEXT_BASED_STUBS=NO
export GID=5000
export GROUP=eng
export HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT=YES
export HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES=YES
export HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS=YES
export HEADERMAP_INCLUDES_PROJECT_HEADERS=YES
export HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES=YES
export HEADERMAP_USES_VFS=NO
export HEADER_SEARCH_PATHS="/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/include "
export HIDE_BITCODE_SYMBOLS=YES
export HOME=/Users/filiph
export ICONV=/usr/bin/iconv
export INFOPLIST_EXPAND_BUILD_SETTINGS=YES
export INFOPLIST_FILE=Runner/Info.plist
export INFOPLIST_OUTPUT_FORMAT=binary
export INFOPLIST_PATH=Runner.app/Info.plist
export INFOPLIST_PREPROCESS=NO
export INFOSTRINGS_PATH=Runner.app/English.lproj/InfoPlist.strings
export INLINE_PRIVATE_FRAMEWORKS=NO
export INSTALLHDRS_COPY_PHASE=NO
export INSTALLHDRS_SCRIPT_PHASE=NO
export INSTALL_DIR=/tmp/Runner.dst/Applications
export INSTALL_GROUP=eng
export INSTALL_MODE_FLAG=u+w,go-w,a+rX
export INSTALL_OWNER=filiph
export INSTALL_PATH=/Applications
export INSTALL_ROOT=/tmp/Runner.dst
export IPHONEOS_DEPLOYMENT_TARGET=8.0
export JAVAC_DEFAULT_FLAGS="-J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8"
export JAVA_APP_STUB=/System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub
export JAVA_ARCHIVE_CLASSES=YES
export JAVA_ARCHIVE_TYPE=JAR
export JAVA_COMPILER=/usr/bin/javac
export JAVA_FOLDER_PATH=Runner.app/Java
export JAVA_FRAMEWORK_RESOURCES_DIRS=Resources
export JAVA_JAR_FLAGS=cv
export JAVA_SOURCE_SUBDIR=.
export JAVA_USE_DEPENDENCIES=YES
export JAVA_ZIP_FLAGS=-urg
export JIKES_DEFAULT_FLAGS="+E +OLDCSO"
export KEEP_PRIVATE_EXTERNS=NO
export LD_DEPENDENCY_INFO_FILE=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_dependency_info.dat
export LD_GENERATE_MAP_FILE=NO
export LD_MAP_FILE_PATH=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-LinkMap-normal-x86_64.txt
export LD_NO_PIE=NO
export LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER=YES
export LD_RUNPATH_SEARCH_PATHS=" '@executable_path/Frameworks' '@loader_path/Frameworks' '@executable_path/Frameworks' '@loader_path/Frameworks' @executable_path/Frameworks"
export LEGACY_DEVELOPER_DIR=/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer
export LEX=lex
export LIBRARY_FLAG_NOSPACE=YES
export LIBRARY_FLAG_PREFIX=-l
export LIBRARY_KEXT_INSTALL_PATH=/Library/Extensions
export LIBRARY_SEARCH_PATHS="/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator /Users/filiph/dev/hn_app/ios/Flutter"
export LINKER_DISPLAYS_MANGLED_NAMES=NO
export LINK_FILE_LIST_normal_x86_64=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.LinkFileList
export LINK_WITH_STANDARD_LIBRARIES=YES
export LOCALIZABLE_CONTENT_DIR=
export LOCALIZED_RESOURCES_FOLDER_PATH=Runner.app/English.lproj
export LOCALIZED_STRING_MACRO_NAMES="NSLocalizedString CFLocalizedString"
export LOCAL_ADMIN_APPS_DIR=/Applications/Utilities
export LOCAL_APPS_DIR=/Applications
export LOCAL_DEVELOPER_DIR=/Library/Developer
export LOCAL_LIBRARY_DIR=/Library
export LOCROOT=
export LOCSYMROOT=
export MACH_O_TYPE=mh_execute
export MAC_OS_X_PRODUCT_BUILD_VERSION=17E202
export MAC_OS_X_VERSION_ACTUAL=101304
export MAC_OS_X_VERSION_MAJOR=101300
export MAC_OS_X_VERSION_MINOR=1304
export METAL_LIBRARY_FILE_BASE=default
export METAL_LIBRARY_OUTPUT_DIR=/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app
export MODULE_CACHE_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/ModuleCache.noindex
export MTL_ENABLE_DEBUG_INFO=YES
export NATIVE_ARCH=i386
export NATIVE_ARCH_32_BIT=i386
export NATIVE_ARCH_64_BIT=x86_64
export NATIVE_ARCH_ACTUAL=x86_64
export NO_COMMON=YES
export OBJC_ABI_VERSION=2
export OBJECT_FILE_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects
export OBJECT_FILE_DIR_normal=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal
export OBJROOT=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex
export ONLY_ACTIVE_ARCH=YES
export OS=MACOS
export OSAC=/usr/bin/osacompile
export OTHER_CFLAGS=" -iquote \"/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/url_launcher/url_launcher.framework/Headers\" -iquote \"/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/url_launcher/url_launcher.framework/Headers\""
export OTHER_CPLUSPLUSFLAGS=" -iquote \"/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/url_launcher/url_launcher.framework/Headers\" -iquote \"/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/url_launcher/url_launcher.framework/Headers\""
export OTHER_LDFLAGS=" -framework \"Flutter\" -framework \"url_launcher\" -framework \"Flutter\" -framework \"url_launcher\""
export PACKAGE_TYPE=com.apple.package-type.wrapper.application
export PASCAL_STRINGS=YES
export PATH="/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Tools:/Applications/google-cloud-sdk/bin:/usr/local/var/pyenv/shims:/Users/filiph/.nvm/versions/node/v6.10.3/bin:/Users/filiph/.rvm/gems/ruby-2.3.1/bin:/Users/filiph/.rvm/gems/ruby-2.3.1@global/bin:/Users/filiph/.rvm/rubies/ruby-2.3.1/bin:/Users/filiph/dev/flutter/bin:/usr/local/git/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/Applications/VMware Fusion.app/Contents/Public:/usr/local/go/bin:/opt/X11/bin:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Applications/dart/dart-sdk/bin:/Users/filiph/.pub-cache/bin:/Users/filiph/gsutil:/usr/local/bin/depot_tools:/Users/filiph/.rvm/bin"
export PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES="/usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms"
export PBDEVELOPMENTPLIST_PATH=Runner.app/pbdevelopment.plist
export PFE_FILE_C_DIALECTS=objective-c
export PKGINFO_FILE_PATH=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PkgInfo
export PKGINFO_PATH=Runner.app/PkgInfo
export PLATFORM_DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications
export PLATFORM_DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin
export PLATFORM_DEVELOPER_LIBRARY_DIR=/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library
export PLATFORM_DEVELOPER_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs
export PLATFORM_DEVELOPER_TOOLS_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Tools
export PLATFORM_DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr
export PLATFORM_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform
export PLATFORM_DISPLAY_NAME="iOS Simulator"
export PLATFORM_NAME=iphonesimulator
export PLATFORM_PREFERRED_ARCH=x86_64
export PLIST_FILE_OUTPUT_FORMAT=binary
export PLUGINS_FOLDER_PATH=Runner.app/PlugIns
export PODS_BUILD_DIR=/Users/filiph/dev/hn_app/build/ios
export PODS_CONFIGURATION_BUILD_DIR=/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator
export PODS_PODFILE_DIR_PATH=/Users/filiph/dev/hn_app/ios/.
export PODS_ROOT=/Users/filiph/dev/hn_app/ios/Pods
export PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR=YES
export PRECOMP_DESTINATION_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PrefixHeaders
export PRESERVE_DEAD_CODE_INITS_AND_TERMS=NO
export PREVIEW_DART_2=true
export PRIVATE_HEADERS_FOLDER_PATH=Runner.app/PrivateHeaders
export PRODUCT_BUNDLE_IDENTIFIER=hn_app.flutter.io.hnApp
export PRODUCT_MODULE_NAME=Runner
export PRODUCT_NAME=Runner
export PRODUCT_SETTINGS_PATH=/Users/filiph/dev/hn_app/ios/Runner/Info.plist
export PRODUCT_TYPE=com.apple.product-type.application
export PROFILING_CODE=NO
export PROJECT=Runner
export PROJECT_DERIVED_FILE_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/DerivedSources
export PROJECT_DIR=/Users/filiph/dev/hn_app/ios
export PROJECT_FILE_PATH=/Users/filiph/dev/hn_app/ios/Runner.xcodeproj
export PROJECT_NAME=Runner
export PROJECT_TEMP_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build
export PROJECT_TEMP_ROOT=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex
export PUBLIC_HEADERS_FOLDER_PATH=Runner.app/Headers
export RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS=YES
export REMOVE_CVS_FROM_RESOURCES=YES
export REMOVE_GIT_FROM_RESOURCES=YES
export REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES=YES
export REMOVE_HG_FROM_RESOURCES=YES
export REMOVE_SVN_FROM_RESOURCES=YES
export REZ_COLLECTOR_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources
export REZ_OBJECTS_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources/Objects
export REZ_SEARCH_PATHS="/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator "
export SCAN_ALL_SOURCE_FILES_FOR_INCLUDES=NO
export SCRIPTS_FOLDER_PATH=Runner.app/Scripts
export SCRIPT_INPUT_FILE_COUNT=0
export SCRIPT_OUTPUT_FILE_COUNT=0
export SCRIPT_OUTPUT_STREAM_FILE=/var/folders/p_/8567k9tn6cg7_f1bhzhhvh8c0028jd/T/flutter_build_log_pipeaUXXOb/pipe_to_stdout
export SDKROOT=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk
export SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk
export SDK_DIR_iphonesimulator11_4=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk
export SDK_NAME=iphonesimulator11.4
export SDK_NAMES=iphonesimulator11.4
export SDK_PRODUCT_BUILD_VERSION=15F79
export SDK_VERSION=11.4
export SDK_VERSION_ACTUAL=110400
export SDK_VERSION_MAJOR=110000
export SDK_VERSION_MINOR=400
export SED=/usr/bin/sed
export SEPARATE_STRIP=NO
export SEPARATE_SYMBOL_EDIT=NO
export SET_DIR_MODE_OWNER_GROUP=YES
export SET_FILE_MODE_OWNER_GROUP=NO
export SHALLOW_BUNDLE=YES
export SHARED_DERIVED_FILE_DIR=/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/DerivedSources
export SHARED_FRAMEWORKS_FOLDER_PATH=Runner.app/SharedFrameworks
export SHARED_PRECOMPS_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/PrecompiledHeaders
export SHARED_SUPPORT_FOLDER_PATH=Runner.app/SharedSupport
export SKIP_INSTALL=NO
export SOURCE_ROOT=/Users/filiph/dev/hn_app/ios
export SRCROOT=/Users/filiph/dev/hn_app/ios
export STRINGS_FILE_OUTPUT_ENCODING=binary
export STRIP_BITCODE_FROM_COPIED_FILES=NO
export STRIP_INSTALLED_PRODUCT=YES
export STRIP_STYLE=all
export STRIP_SWIFT_SYMBOLS=YES
export SUPPORTED_DEVICE_FAMILIES=1,2
export SUPPORTED_PLATFORMS="iphonesimulator iphoneos"
export SUPPORTS_TEXT_BASED_API=NO
export SWIFT_OBJC_BRIDGING_HEADER=Runner/Runner-Bridging-Header.h
export SWIFT_OPTIMIZATION_LEVEL=-Onone
export SWIFT_PLATFORM_TARGET_PREFIX=ios
export SWIFT_SWIFT3_OBJC_INFERENCE=On
export SWIFT_VERSION=4.0
export SYMROOT=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Products
export SYSTEM_ADMIN_APPS_DIR=/Applications/Utilities
export SYSTEM_APPS_DIR=/Applications
export SYSTEM_CORE_SERVICES_DIR=/System/Library/CoreServices
export SYSTEM_DEMOS_DIR=/Applications/Extras
export SYSTEM_DEVELOPER_APPS_DIR=/Applications/Xcode.app/Contents/Developer/Applications
export SYSTEM_DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/usr/bin
export SYSTEM_DEVELOPER_DEMOS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples"
export SYSTEM_DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer
export SYSTEM_DEVELOPER_DOC_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library"
export SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools"
export SYSTEM_DEVELOPER_JAVA_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Java Tools"
export SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Performance Tools"
export SYSTEM_DEVELOPER_RELEASENOTES_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes"
export SYSTEM_DEVELOPER_TOOLS=/Applications/Xcode.app/Contents/Developer/Tools
export SYSTEM_DEVELOPER_TOOLS_DOC_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools"
export SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools"
export SYSTEM_DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/usr
export SYSTEM_DEVELOPER_UTILITIES_DIR=/Applications/Xcode.app/Contents/Developer/Applications/Utilities
export SYSTEM_DOCUMENTATION_DIR=/Library/Documentation
export SYSTEM_KEXT_INSTALL_PATH=/System/Library/Extensions
export SYSTEM_LIBRARY_DIR=/System/Library
export TAPI_VERIFY_MODE=ErrorsOnly
export TARGETED_DEVICE_FAMILY=1,2
export TARGETNAME=Runner
export TARGET_BUILD_DIR=/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator
export TARGET_DEVICE_IDENTIFIER="dvtdevice-DVTiOSDeviceSimulatorPlaceholder-iphonesimulator:placeholder"
export TARGET_NAME=Runner
export TARGET_TEMP_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_FILES_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_FILE_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_ROOT=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex
export TOOLCHAINS=com.apple.dt.toolchain.XcodeDefault
export TOOLCHAIN_DIR=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
export TREAT_MISSING_BASELINES_AS_TEST_FAILURES=NO
export UID=74285
export UNLOCALIZED_RESOURCES_FOLDER_PATH=Runner.app
export UNSTRIPPED_PRODUCT=NO
export USER=filiph
export USER_APPS_DIR=/Users/filiph/Applications
export USER_LIBRARY_DIR=/Users/filiph/Library
export USE_DYNAMIC_NO_PIC=YES
export USE_HEADERMAP=YES
export USE_HEADER_SYMLINKS=NO
export VALIDATE_PRODUCT=NO
export VALID_ARCHS="i386 x86_64"
export VERBOSE_PBXCP=NO
export VERBOSE_SCRIPT_LOGGING=YES
export VERSIONPLIST_PATH=Runner.app/version.plist
export VERSION_INFO_BUILDER=filiph
export VERSION_INFO_FILE=Runner_vers.c
export VERSION_INFO_STRING="\"@(#)PROGRAM:Runner PROJECT:Runner-\""
export WRAPPER_EXTENSION=app
export WRAPPER_NAME=Runner.app
export WRAPPER_SUFFIX=.app
export WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES=NO
export XCODE_APP_SUPPORT_DIR=/Applications/Xcode.app/Contents/Developer/Library/Xcode
export XCODE_PRODUCT_BUILD_VERSION=9F1027a
export XCODE_VERSION_ACTUAL=0940
export XCODE_VERSION_MAJOR=0900
export XCODE_VERSION_MINOR=0940
export XPCSERVICES_FOLDER_PATH=Runner.app/XPCServices
export YACC=yacc
export arch=x86_64
export variant=normal
/bin/sh -c /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh
PhaseScriptExecution [CP]\ Embed\ Pods\ Frameworks /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-E7ABE1EB99D5153A5F4ED712.sh
cd /Users/filiph/dev/hn_app/ios
/bin/sh -c /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-E7ABE1EB99D5153A5F4ED712.sh
mkdir -p /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks
rsync --delete -av --filter P .*.?????? --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "/Users/filiph/dev/hn_app/ios/Pods/../.symlinks/flutter/ios/Flutter.framework" "/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks"
building file list ... done
Flutter.framework/
Flutter.framework/Flutter
Flutter.framework/Info.plist
Flutter.framework/icudtl.dat
sent 73308715 bytes received 92 bytes 146617614.00 bytes/sec
total size is 73299467 speedup is 1.00
Stripped /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework/Flutter of architectures: armv7 arm64
Code Signing /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework with Identity -
/usr/bin/codesign --force --sign - --preserve-metadata=identifier,entitlements '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework'
rsync --delete -av --filter P .*.?????? --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/url_launcher/url_launcher.framework" "/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks"
building file list ... done
deleting url_launcher.framework/_CodeSignature/CodeResources
deleting url_launcher.framework/_CodeSignature/
url_launcher.framework/
url_launcher.framework/url_launcher
sent 50189 bytes received 48 bytes 100474.00 bytes/sec
total size is 50773 speedup is 1.01
Code Signing /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/url_launcher.framework with Identity -
/usr/bin/codesign --force --sign - --preserve-metadata=identifier,entitlements '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/url_launcher.framework'
CodeSign /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework
cd /Users/filiph/dev/hn_app/ios
export CODESIGN_ALLOCATE=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/google-cloud-sdk/bin:/usr/local/var/pyenv/shims:/Users/filiph/.nvm/versions/node/v6.10.3/bin:/Users/filiph/.rvm/gems/ruby-2.3.1/bin:/Users/filiph/.rvm/gems/ruby-2.3.1@global/bin:/Users/filiph/.rvm/rubies/ruby-2.3.1/bin:/Users/filiph/dev/flutter/bin:/usr/local/git/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/Applications/VMware Fusion.app/Contents/Public:/usr/local/go/bin:/opt/X11/bin:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Applications/dart/dart-sdk/bin:~/.pub-cache/bin:/Users/filiph/gsutil:~/.pub-cache/bin:/usr/local/bin/depot_tools:/Users/filiph/.rvm/bin"
Signing Identity: "-"
/usr/bin/codesign --force --sign - --preserve-metadata=identifier,entitlements,flags --timestamp=none /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework
/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework: replacing existing signature
CopySwiftLibs /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app
cd /Users/filiph/dev/hn_app/ios
export CODESIGN_ALLOCATE=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate
export DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/google-cloud-sdk/bin:/usr/local/var/pyenv/shims:/Users/filiph/.nvm/versions/node/v6.10.3/bin:/Users/filiph/.rvm/gems/ruby-2.3.1/bin:/Users/filiph/.rvm/gems/ruby-2.3.1@global/bin:/Users/filiph/.rvm/rubies/ruby-2.3.1/bin:/Users/filiph/dev/flutter/bin:/usr/local/git/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/Applications/VMware Fusion.app/Contents/Public:/usr/local/go/bin:/opt/X11/bin:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Applications/dart/dart-sdk/bin:~/.pub-cache/bin:/Users/filiph/gsutil:~/.pub-cache/bin:/usr/local/bin/depot_tools:/Users/filiph/.rvm/bin"
export SDKROOT=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk
builtin-swiftStdLibTool --copy --verbose --sign - --scan-executable /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Runner --scan-folder /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks --scan-folder /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/PlugIns --scan-folder /Users/filiph/dev/hn_app/ios/Flutter/Flutter.framework --scan-folder /Users/filiph/dev/hn_app/ios/Flutter/App.framework --scan-folder /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Pods_Runner.framework --platform iphonesimulator --toolchain /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --destination /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks --strip-bitcode --resource-destination /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app --resource-library libswiftRemoteMirror.dylib
Requested Swift ABI version based on scanned binaries: 6
libswiftCore.dylib is up to date at /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCore.dylib
libswiftCoreAudio.dylib is up to date at /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreAudio.dylib
libswiftCoreFoundation.dylib is up to date at /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreFoundation.dylib
libswiftCoreGraphics.dylib is up to date at /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreGraphics.dylib
libswiftCoreImage.dylib is up to date at /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreImage.dylib
libswiftCoreMedia.dylib is up to date at /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreMedia.dylib
libswiftDarwin.dylib is up to date at /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDarwin.dylib
libswiftDispatch.dylib is up to date at /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDispatch.dylib
libswiftFoundation.dylib is up to date at /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftFoundation.dylib
libswiftMetal.dylib is up to date at /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftMetal.dylib
libswiftObjectiveC.dylib is up to date at /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftObjectiveC.dylib
libswiftQuartzCore.dylib is up to date at /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftQuartzCore.dylib
libswiftUIKit.dylib is up to date at /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftUIKit.dylib
libswiftos.dylib is up to date at /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftos.dylib
libswiftRemoteMirror.dylib is up to date at /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/libswiftRemoteMirror.dylib
Probing signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCore.dylib
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCore.dylib'
Codesigning /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCore.dylib
/usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCore.dylib'
Probing signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCore.dylib
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCore.dylib'
Code signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCore.dylib is unchanged; keeping original
Probing signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftFoundation.dylib
Probing signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreGraphics.dylib
Probing signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftMetal.dylib
Probing signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreImage.dylib
Probing signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreAudio.dylibProbing signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDarwin.dylib
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreGraphics.dylib' /usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftFoundation.dylib'
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreImage.dylib'
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftMetal.dylib'
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDarwin.dylib'
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreAudio.dylib'
Probing signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDispatch.dylib
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDispatch.dylib'
Probing signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreFoundation.dylib
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreFoundation.dylib'
Codesigning /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDarwin.dylib
/usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDarwin.dylib'
Codesigning /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreAudio.dylib
Codesigning /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreGraphics.dylib
/usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreAudio.dylib'
/usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreGraphics.dylib'
Codesigning /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftMetal.dylib
Codesigning /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreImage.dylib
/usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftMetal.dylib'
Codesigning /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreFoundation.dylib
/usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreImage.dylib'
/usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreFoundation.dylib'
Codesigning /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDispatch.dylib
/usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDispatch.dylib'
Codesigning /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftFoundation.dylib
/usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftFoundation.dylib'
Probing signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreFoundation.dylib
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreFoundation.dylib'
Probing signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDarwin.dylib
Probing signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreAudio.dylib
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDarwin.dylib'
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreAudio.dylib'
Probing signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftMetal.dylib
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftMetal.dylib'
Probing signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreImage.dylib
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreImage.dylib'
Code signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreFoundation.dylib is unchanged; keeping original
Probing signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreMedia.dylib
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreMedia.dylib'
Probing signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDispatch.dylib
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDispatch.dylib'
Probing signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreGraphics.dylib
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreGraphics.dylib'
Code signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDarwin.dylib is unchanged; keeping original
Code signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreAudio.dylib is unchanged; keeping original
Probing signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftObjectiveC.dylib
Probing signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftQuartzCore.dylib
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftObjectiveC.dylib'
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftQuartzCore.dylib'
Code signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftMetal.dylib is unchanged; keeping original
Probing signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftUIKit.dylib
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftUIKit.dylib'
Code signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreImage.dylib is unchanged; keeping original
Probing signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftos.dylib
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftos.dylib'
Codesigning /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreMedia.dylib
/usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreMedia.dylib'
Code signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDispatch.dylib is unchanged; keeping original
Code signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreGraphics.dylib is unchanged; keeping original
Codesigning /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftQuartzCore.dylib
Codesigning /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftObjectiveC.dylib
/usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftQuartzCore.dylib'
/usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftObjectiveC.dylib'
Codesigning /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftUIKit.dylib
/usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftUIKit.dylib'
Codesigning /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftos.dylib
/usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftos.dylib'
Probing signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreMedia.dylib
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreMedia.dylib'
Probing signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftObjectiveC.dylib
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftObjectiveC.dylib'
Probing signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftQuartzCore.dylib
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftQuartzCore.dylib'
Probing signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftos.dylib
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftos.dylib'
Probing signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftUIKit.dylib
Code signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreMedia.dylib is unchanged; keeping original
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftUIKit.dylib'
Code signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftObjectiveC.dylib is unchanged; keeping original
Code signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftQuartzCore.dylib is unchanged; keeping original
Code signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftos.dylib is unchanged; keeping original
Code signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftUIKit.dylib is unchanged; keeping original
Probing signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftFoundation.dylib
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftFoundation.dylib'
Code signature of /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftFoundation.dylib is unchanged; keeping original
Touch /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app
cd /Users/filiph/dev/hn_app/ios
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/google-cloud-sdk/bin:/usr/local/var/pyenv/shims:/Users/filiph/.nvm/versions/node/v6.10.3/bin:/Users/filiph/.rvm/gems/ruby-2.3.1/bin:/Users/filiph/.rvm/gems/ruby-2.3.1@global/bin:/Users/filiph/.rvm/rubies/ruby-2.3.1/bin:/Users/filiph/dev/flutter/bin:/usr/local/git/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/Applications/VMware Fusion.app/Contents/Public:/usr/local/go/bin:/opt/X11/bin:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Applications/dart/dart-sdk/bin:~/.pub-cache/bin:/Users/filiph/gsutil:~/.pub-cache/bin:/usr/local/bin/depot_tools:/Users/filiph/.rvm/bin"
/usr/bin/touch -c /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app
CodeSign /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app
cd /Users/filiph/dev/hn_app/ios
export CODESIGN_ALLOCATE=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/google-cloud-sdk/bin:/usr/local/var/pyenv/shims:/Users/filiph/.nvm/versions/node/v6.10.3/bin:/Users/filiph/.rvm/gems/ruby-2.3.1/bin:/Users/filiph/.rvm/gems/ruby-2.3.1@global/bin:/Users/filiph/.rvm/rubies/ruby-2.3.1/bin:/Users/filiph/dev/flutter/bin:/usr/local/git/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/Applications/VMware Fusion.app/Contents/Public:/usr/local/go/bin:/opt/X11/bin:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Applications/dart/dart-sdk/bin:~/.pub-cache/bin:/Users/filiph/gsutil:~/.pub-cache/bin:/usr/local/bin/depot_tools:/Users/filiph/.rvm/bin"
Signing Identity: "-"
/usr/bin/codesign --force --sign - --entitlements /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app.xcent --timestamp=none /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app
** BUILD SUCCEEDED **
[ +18 ms] Xcode build done.
[ ] [ios/] /usr/bin/env xcrun xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/filiph/dev/hn_app/build/ios -sdk iphonesimulator -arch x86_64 SCRIPT_OUTPUT_STREAM_FILE=/var/folders/p_/8567k9tn6cg7_f1bhzhhvh8c0028jd/T/flutter_build_log_pipeaUXXOb/pipe_to_stdout -showBuildSettings
[ +718 ms] Exit code 0 from: /usr/bin/env xcrun xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/filiph/dev/hn_app/build/ios -sdk iphonesimulator -arch x86_64 SCRIPT_OUTPUT_STREAM_FILE=/var/folders/p_/8567k9tn6cg7_f1bhzhhvh8c0028jd/T/flutter_build_log_pipeaUXXOb/pipe_to_stdout -showBuildSettings
[ ] Build settings from command line:
ARCHS = x86_64
BUILD_DIR = /Users/filiph/dev/hn_app/build/ios
SCRIPT_OUTPUT_STREAM_FILE = /var/folders/p_/8567k9tn6cg7_f1bhzhhvh8c0028jd/T/flutter_build_log_pipeaUXXOb/pipe_to_stdout
SDKROOT = iphonesimulator11.4
VERBOSE_SCRIPT_LOGGING = YES
Build settings for action build and target Runner:
ACTION = build
AD_HOC_CODE_SIGNING_ALLOWED = YES
ALTERNATE_GROUP = eng
ALTERNATE_MODE = u+w,go-w,a+rX
ALTERNATE_OWNER = filiph
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO
ALWAYS_SEARCH_USER_PATHS = NO
ALWAYS_USE_SEPARATE_HEADERMAPS = NO
APPLE_INTERNAL_DEVELOPER_DIR = /AppleInternal/Developer
APPLE_INTERNAL_DIR = /AppleInternal
APPLE_INTERNAL_DOCUMENTATION_DIR = /AppleInternal/Documentation
APPLE_INTERNAL_LIBRARY_DIR = /AppleInternal/Library
APPLE_INTERNAL_TOOLS = /AppleInternal/Developer/Tools
APPLICATION_EXTENSION_API_ONLY = NO
APPLY_RULES_IN_COPY_FILES = NO
ARCHS = x86_64
ARCHS_STANDARD = i386 x86_64
ARCHS_STANDARD_32_64_BIT = i386 x86_64
ARCHS_STANDARD_32_BIT = i386
ARCHS_STANDARD_64_BIT = x86_64
ARCHS_STANDARD_INCLUDING_64_BIT = i386 x86_64
ARCHS_UNIVERSAL_IPHONE_OS = i386 x86_64
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon
AVAILABLE_PLATFORMS = appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator
BITCODE_GENERATION_MODE = marker
BUILD_ACTIVE_RESOURCES_ONLY = NO
BUILD_COMPONENTS = headers build
BUILD_DIR = /Users/filiph/dev/hn_app/build/ios
BUILD_ROOT = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Products
BUILD_STYLE =
BUILD_VARIANTS = normal
BUILT_PRODUCTS_DIR = /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator
CACHE_ROOT = /var/folders/p_/8567k9tn6cg7_f1bhzhhvh8c0028jd/C/com.apple.DeveloperTools/9.4-9F1027a/Xcode
CCHROOT = /var/folders/p_/8567k9tn6cg7_f1bhzhhvh8c0028jd/C/com.apple.DeveloperTools/9.4-9F1027a/Xcode
CHMOD = /bin/chmod
CHOWN = /usr/sbin/chown
CLANG_ANALYZER_NONNULL = YES
CLANG_CXX_LANGUAGE_STANDARD = gnu++0x
CLANG_CXX_LIBRARY = libc++
CLANG_ENABLE_MODULES = YES
CLANG_ENABLE_OBJC_ARC = YES
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES
CLANG_WARN_BOOL_CONVERSION = YES
CLANG_WARN_COMMA = YES
CLANG_WARN_CONSTANT_CONVERSION = YES
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR
CLANG_WARN_EMPTY_BODY = YES
CLANG_WARN_ENUM_CONVERSION = YES
CLANG_WARN_INFINITE_RECURSION = YES
CLANG_WARN_INT_CONVERSION = YES
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES
CLANG_WARN_STRICT_PROTOTYPES = YES
CLANG_WARN_SUSPICIOUS_MOVE = YES
CLANG_WARN_UNREACHABLE_CODE = YES
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES
CLASS_FILE_DIR = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/JavaClasses
CLEAN_PRECOMPS = YES
CLONE_HEADERS = NO
CODESIGNING_FOLDER_PATH = /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app
CODE_SIGNING_ALLOWED = YES
CODE_SIGNING_REQUIRED = YES
CODE_SIGN_CONTEXT_CLASS = XCiPhoneSimulatorCodeSignContext
CODE_SIGN_IDENTITY = -
CODE_SIGN_INJECT_BASE_ENTITLEMENTS = YES
COLOR_DIAGNOSTICS = NO
COMBINE_HIDPI_IMAGES = NO
COMPILER_INDEX_STORE_ENABLE = Default
COMPOSITE_SDK_DIRS = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/CompositeSDKs
COMPRESS_PNG_FILES = YES
CONFIGURATION = Debug
CONFIGURATION_BUILD_DIR = /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator
CONFIGURATION_TEMP_DIR = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator
CONTENTS_FOLDER_PATH = Runner.app
COPYING_PRESERVES_HFS_DATA = NO
COPY_HEADERS_RUN_UNIFDEF = NO
COPY_PHASE_STRIP = NO
COPY_RESOURCES_FROM_STATIC_FRAMEWORKS = YES
CORRESPONDING_DEVICE_PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform
CORRESPONDING_DEVICE_PLATFORM_NAME = iphoneos
CORRESPONDING_DEVICE_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.4.sdk
CORRESPONDING_DEVICE_SDK_NAME = iphoneos11.4
CP = /bin/cp
CREATE_INFOPLIST_SECTION_IN_BINARY = NO
CURRENT_ARCH = x86_64
CURRENT_VARIANT = normal
DEAD_CODE_STRIPPING = YES
DEBUGGING_SYMBOLS = YES
DEBUG_INFORMATION_FORMAT = dwarf
DEFAULT_COMPILER = com.apple.compilers.llvm.clang.1_0
DEFAULT_KEXT_INSTALL_PATH = /System/Library/Extensions
DEFINES_MODULE = NO
DEPLOYMENT_LOCATION = NO
DEPLOYMENT_POSTPROCESSING = NO
DEPLOYMENT_TARGET_CLANG_ENV_NAME = IPHONEOS_DEPLOYMENT_TARGET
DEPLOYMENT_TARGET_CLANG_FLAG_NAME = mios-simulator-version-min
DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX = -mios-simulator-version-min=
DEPLOYMENT_TARGET_SETTING_NAME = IPHONEOS_DEPLOYMENT_TARGET
DEPLOYMENT_TARGET_SUGGESTED_VALUES = 8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4
DERIVED_FILES_DIR = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
DERIVED_FILE_DIR = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
DERIVED_SOURCES_DIR = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Applications
DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin
DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer
DEVELOPER_FRAMEWORKS_DIR = /Applications/Xcode.app/Contents/Developer/Library/Frameworks
DEVELOPER_FRAMEWORKS_DIR_QUOTED = /Applications/Xcode.app/Contents/Developer/Library/Frameworks
DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/Developer/Library
DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Tools
DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr
DEVELOPMENT_LANGUAGE = English
DOCUMENTATION_FOLDER_PATH = Runner.app/English.lproj/Documentation
DO_HEADER_SCANNING_IN_JAM = NO
DSTROOT = /tmp/Runner.dst
DT_TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
DWARF_DSYM_FILE_NAME = Runner.app.dSYM
DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT = NO
DWARF_DSYM_FOLDER_PATH = /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator
EFFECTIVE_PLATFORM_NAME = -iphonesimulator
EMBEDDED_CONTENT_CONTAINS_SWIFT = NO
EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE = NO
ENABLE_BITCODE = NO
ENABLE_DEFAULT_HEADER_SEARCH_PATHS = YES
ENABLE_HEADER_DEPENDENCIES = YES
ENABLE_ON_DEMAND_RESOURCES = YES
ENABLE_STRICT_OBJC_MSGSEND = YES
ENABLE_TESTABILITY = YES
ENTITLEMENTS_REQUIRED = YES
EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS = .DS_Store .svn .git .hg CVS
EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES = *.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj
EXECUTABLES_FOLDER_PATH = Runner.app/Executables
EXECUTABLE_FOLDER_PATH = Runner.app
EXECUTABLE_NAME = Runner
EXECUTABLE_PATH = Runner.app/Runner
EXPANDED_CODE_SIGN_IDENTITY =
EXPANDED_CODE_SIGN_IDENTITY_NAME =
EXPANDED_PROVISIONING_PROFILE =
FILE_LIST = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects/LinkFileList
FIXED_FILES_DIR = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/FixedFiles
FLUTTER_APPLICATION_PATH = /Users/filiph/dev/hn_app
FLUTTER_BUILD_DIR = build
FLUTTER_BUILD_MODE = debug
FLUTTER_FRAMEWORK_DIR = /Users/filiph/dev/flutter/bin/cache/artifacts/engine/ios
FLUTTER_ROOT = /Users/filiph/dev/flutter
FLUTTER_TARGET = lib/main.dart
FRAMEWORKS_FOLDER_PATH = Runner.app/Frameworks
FRAMEWORK_FLAG_PREFIX = -framework
FRAMEWORK_SEARCH_PATHS = "/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/url_launcher" "/Users/filiph/dev/hn_app/ios/Pods/../.symlinks/flutter/ios" "/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/url_launcher" "/Users/filiph/dev/hn_app/ios/Pods/../.symlinks/flutter/ios" /Users/filiph/dev/hn_app/ios/Flutter
FRAMEWORK_VERSION = A
FULL_PRODUCT_NAME = Runner.app
GCC3_VERSION = 3.3
GCC_C_LANGUAGE_STANDARD = gnu99
GCC_DYNAMIC_NO_PIC = NO
GCC_INLINES_ARE_PRIVATE_EXTERN = YES
GCC_NO_COMMON_BLOCKS = YES
GCC_OBJC_LEGACY_DISPATCH = YES
GCC_OPTIMIZATION_LEVEL = 0
GCC_PFE_FILE_C_DIALECTS = c objective-c c++ objective-c++
GCC_PREPROCESSOR_DEFINITIONS = DEBUG=1 COCOAPODS=1 COCOAPODS=1
GCC_SYMBOLS_PRIVATE_EXTERN = NO
GCC_TREAT_WARNINGS_AS_ERRORS = NO
GCC_VERSION = com.apple.compilers.llvm.clang.1_0
GCC_VERSION_IDENTIFIER = com_apple_compilers_llvm_clang_1_0
GCC_WARN_64_TO_32_BIT_CONVERSION = YES
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR
GCC_WARN_UNDECLARED_SELECTOR = YES
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE
GCC_WARN_UNUSED_FUNCTION = YES
GCC_WARN_UNUSED_VARIABLE = YES
GENERATE_MASTER_OBJECT_FILE = NO
GENERATE_PKGINFO_FILE = YES
GENERATE_PROFILING_CODE = NO
GENERATE_TEXT_BASED_STUBS = NO
GID = 5000
GROUP = eng
HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT = YES
HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES = YES
HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS = YES
HEADERMAP_INCLUDES_PROJECT_HEADERS = YES
HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES = YES
HEADERMAP_USES_VFS = NO
HIDE_BITCODE_SYMBOLS = YES
HOME = /Users/filiph
ICONV = /usr/bin/iconv
INFOPLIST_EXPAND_BUILD_SETTINGS = YES
INFOPLIST_FILE = Runner/Info.plist
INFOPLIST_OUTPUT_FORMAT = binary
INFOPLIST_PATH = Runner.app/Info.plist
INFOPLIST_PREPROCESS = NO
INFOSTRINGS_PATH = Runner.app/English.lproj/InfoPlist.strings
INLINE_PRIVATE_FRAMEWORKS = NO
INSTALLHDRS_COPY_PHASE = NO
INSTALLHDRS_SCRIPT_PHASE = NO
INSTALL_DIR = /tmp/Runner.dst/Applications
INSTALL_GROUP = eng
INSTALL_MODE_FLAG = u+w,go-w,a+rX
INSTALL_OWNER = filiph
INSTALL_PATH = /Applications
INSTALL_ROOT = /tmp/Runner.dst
IPHONEOS_DEPLOYMENT_TARGET = 8.0
JAVAC_DEFAULT_FLAGS = -J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8
JAVA_APP_STUB = /System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub
JAVA_ARCHIVE_CLASSES = YES
JAVA_ARCHIVE_TYPE = JAR
JAVA_COMPILER = /usr/bin/javac
JAVA_FOLDER_PATH = Runner.app/Java
JAVA_FRAMEWORK_RESOURCES_DIRS = Resources
JAVA_JAR_FLAGS = cv
JAVA_SOURCE_SUBDIR = .
JAVA_USE_DEPENDENCIES = YES
JAVA_ZIP_FLAGS = -urg
JIKES_DEFAULT_FLAGS = +E +OLDCSO
KEEP_PRIVATE_EXTERNS = NO
LD_DEPENDENCY_INFO_FILE = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_dependency_info.dat
LD_GENERATE_MAP_FILE = NO
LD_MAP_FILE_PATH = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-LinkMap-normal-x86_64.txt
LD_NO_PIE = NO
LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER = YES
LD_RUNPATH_SEARCH_PATHS = '@executable_path/Frameworks' '@loader_path/Frameworks' '@executable_path/Frameworks' '@loader_path/Frameworks' @executable_path/Frameworks
LEGACY_DEVELOPER_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer
LEX = lex
LIBRARY_FLAG_NOSPACE = YES
LIBRARY_FLAG_PREFIX = -l
LIBRARY_KEXT_INSTALL_PATH = /Library/Extensions
LIBRARY_SEARCH_PATHS = /Users/filiph/dev/hn_app/ios/Flutter
LINKER_DISPLAYS_MANGLED_NAMES = NO
LINK_FILE_LIST_normal_x86_64 =
LINK_WITH_STANDARD_LIBRARIES = YES
LOCALIZABLE_CONTENT_DIR =
LOCALIZED_RESOURCES_FOLDER_PATH = Runner.app/English.lproj
LOCALIZED_STRING_MACRO_NAMES = NSLocalizedString CFLocalizedString
LOCAL_ADMIN_APPS_DIR = /Applications/Utilities
LOCAL_APPS_DIR = /Applications
LOCAL_DEVELOPER_DIR = /Library/Developer
LOCAL_LIBRARY_DIR = /Library
LOCROOT =
LOCSYMROOT =
MACH_O_TYPE = mh_execute
MAC_OS_X_PRODUCT_BUILD_VERSION = 17E202
MAC_OS_X_VERSION_ACTUAL = 101304
MAC_OS_X_VERSION_MAJOR = 101300
MAC_OS_X_VERSION_MINOR = 1304
METAL_LIBRARY_FILE_BASE = default
METAL_LIBRARY_OUTPUT_DIR = /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/Runner.app
MODULE_CACHE_DIR = /Users/filiph/Library/Developer/Xcode/DerivedData/ModuleCache.noindex
MTL_ENABLE_DEBUG_INFO = YES
NATIVE_ARCH = i386
NATIVE_ARCH_32_BIT = i386
NATIVE_ARCH_64_BIT = x86_64
NATIVE_ARCH_ACTUAL = x86_64
NO_COMMON = YES
OBJC_ABI_VERSION = 2
OBJECT_FILE_DIR = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects
OBJECT_FILE_DIR_normal = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal
OBJROOT = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex
ONLY_ACTIVE_ARCH = YES
OS = MACOS
OSAC = /usr/bin/osacompile
OTHER_CFLAGS = -iquote "/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/url_launcher/url_launcher.framework/Headers" -iquote "/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/url_launcher/url_launcher.framework/Headers"
OTHER_CPLUSPLUSFLAGS = -iquote "/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/url_launcher/url_launcher.framework/Headers" -iquote "/Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/url_launcher/url_launcher.framework/Headers"
OTHER_LDFLAGS = -framework "Flutter" -framework "url_launcher" -framework "Flutter" -framework "url_launcher"
PACKAGE_TYPE = com.apple.package-type.wrapper.application
PASCAL_STRINGS = YES
PATH = /Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/google-cloud-sdk/bin:/usr/local/var/pyenv/shims:/Users/filiph/.nvm/versions/node/v6.10.3/bin:/Users/filiph/.rvm/gems/ruby-2.3.1/bin:/Users/filiph/.rvm/gems/ruby-2.3.1@global/bin:/Users/filiph/.rvm/rubies/ruby-2.3.1/bin:/Users/filiph/dev/flutter/bin:/usr/local/git/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/Applications/VMware Fusion.app/Contents/Public:/usr/local/go/bin:/opt/X11/bin:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Applications/dart/dart-sdk/bin:~/.pub-cache/bin:/Users/filiph/gsutil:~/.pub-cache/bin:/usr/local/bin/depot_tools:/Users/filiph/.rvm/bin
PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES = /usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms
PBDEVELOPMENTPLIST_PATH = Runner.app/pbdevelopment.plist
PFE_FILE_C_DIALECTS = objective-c
PKGINFO_FILE_PATH = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PkgInfo
PKGINFO_PATH = Runner.app/PkgInfo
PLATFORM_DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications
PLATFORM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin
PLATFORM_DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library
PLATFORM_DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs
PLATFORM_DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Tools
PLATFORM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr
PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform
PLATFORM_DISPLAY_NAME = iOS Simulator
PLATFORM_NAME = iphonesimulator
PLATFORM_PREFERRED_ARCH = x86_64
PLIST_FILE_OUTPUT_FORMAT = binary
PLUGINS_FOLDER_PATH = Runner.app/PlugIns
PODS_BUILD_DIR = /Users/filiph/dev/hn_app/build/ios
PODS_CONFIGURATION_BUILD_DIR = /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator
PODS_PODFILE_DIR_PATH = /Users/filiph/dev/hn_app/ios/.
PODS_ROOT = /Users/filiph/dev/hn_app/ios/Pods
PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR = YES
PRECOMP_DESTINATION_DIR = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PrefixHeaders
PRESERVE_DEAD_CODE_INITS_AND_TERMS = NO
PREVIEW_DART_2 = true
PRIVATE_HEADERS_FOLDER_PATH = Runner.app/PrivateHeaders
PRODUCT_BUNDLE_IDENTIFIER = hn_app.flutter.io.hnApp
PRODUCT_MODULE_NAME = Runner
PRODUCT_NAME = Runner
PRODUCT_SETTINGS_PATH = /Users/filiph/dev/hn_app/ios/Runner/Info.plist
PRODUCT_TYPE = com.apple.product-type.application
PROFILING_CODE = NO
PROJECT = Runner
PROJECT_DERIVED_FILE_DIR = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/DerivedSources
PROJECT_DIR = /Users/filiph/dev/hn_app/ios
PROJECT_FILE_PATH = /Users/filiph/dev/hn_app/ios/Runner.xcodeproj
PROJECT_NAME = Runner
PROJECT_TEMP_DIR = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build
PROJECT_TEMP_ROOT = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex
PUBLIC_HEADERS_FOLDER_PATH = Runner.app/Headers
RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS = YES
REMOVE_CVS_FROM_RESOURCES = YES
REMOVE_GIT_FROM_RESOURCES = YES
REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES = YES
REMOVE_HG_FROM_RESOURCES = YES
REMOVE_SVN_FROM_RESOURCES = YES
REZ_COLLECTOR_DIR = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources
REZ_OBJECTS_DIR = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources/Objects
SCAN_ALL_SOURCE_FILES_FOR_INCLUDES = NO
SCRIPTS_FOLDER_PATH = Runner.app/Scripts
SCRIPT_OUTPUT_STREAM_FILE = /var/folders/p_/8567k9tn6cg7_f1bhzhhvh8c0028jd/T/flutter_build_log_pipeaUXXOb/pipe_to_stdout
SDKROOT = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk
SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk
SDK_DIR_iphonesimulator11_4 = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk
SDK_NAME = iphonesimulator11.4
SDK_NAMES = iphonesimulator11.4
SDK_PRODUCT_BUILD_VERSION = 15F79
SDK_VERSION = 11.4
SDK_VERSION_ACTUAL = 110400
SDK_VERSION_MAJOR = 110000
SDK_VERSION_MINOR = 400
SED = /usr/bin/sed
SEPARATE_STRIP = NO
SEPARATE_SYMBOL_EDIT = NO
SET_DIR_MODE_OWNER_GROUP = YES
SET_FILE_MODE_OWNER_GROUP = NO
SHALLOW_BUNDLE = YES
SHARED_DERIVED_FILE_DIR = /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator/DerivedSources
SHARED_FRAMEWORKS_FOLDER_PATH = Runner.app/SharedFrameworks
SHARED_PRECOMPS_DIR = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/PrecompiledHeaders
SHARED_SUPPORT_FOLDER_PATH = Runner.app/SharedSupport
SKIP_INSTALL = NO
SOURCE_ROOT = /Users/filiph/dev/hn_app/ios
SRCROOT = /Users/filiph/dev/hn_app/ios
STRINGS_FILE_OUTPUT_ENCODING = binary
STRIP_BITCODE_FROM_COPIED_FILES = NO
STRIP_INSTALLED_PRODUCT = YES
STRIP_STYLE = all
STRIP_SWIFT_SYMBOLS = YES
SUPPORTED_DEVICE_FAMILIES = 1,2
SUPPORTED_PLATFORMS = iphonesimulator iphoneos
SUPPORTS_TEXT_BASED_API = NO
SWIFT_OBJC_BRIDGING_HEADER = Runner/Runner-Bridging-Header.h
SWIFT_OPTIMIZATION_LEVEL = -Onone
SWIFT_PLATFORM_TARGET_PREFIX = ios
SWIFT_SWIFT3_OBJC_INFERENCE = On
SWIFT_VERSION = 4.0
SYMROOT = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Products
SYSTEM_ADMIN_APPS_DIR = /Applications/Utilities
SYSTEM_APPS_DIR = /Applications
SYSTEM_CORE_SERVICES_DIR = /System/Library/CoreServices
SYSTEM_DEMOS_DIR = /Applications/Extras
SYSTEM_DEVELOPER_APPS_DIR = /Applications/Xcode.app/Contents/Developer/Applications
SYSTEM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin
SYSTEM_DEVELOPER_DEMOS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples
SYSTEM_DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer
SYSTEM_DEVELOPER_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library
SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools
SYSTEM_DEVELOPER_JAVA_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Java Tools
SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Performance Tools
SYSTEM_DEVELOPER_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes
SYSTEM_DEVELOPER_TOOLS = /Applications/Xcode.app/Contents/Developer/Tools
SYSTEM_DEVELOPER_TOOLS_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools
SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools
SYSTEM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr
SYSTEM_DEVELOPER_UTILITIES_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities
SYSTEM_DOCUMENTATION_DIR = /Library/Documentation
SYSTEM_KEXT_INSTALL_PATH = /System/Library/Extensions
SYSTEM_LIBRARY_DIR = /System/Library
TAPI_VERIFY_MODE = ErrorsOnly
TARGETED_DEVICE_FAMILY = 1,2
TARGETNAME = Runner
TARGET_BUILD_DIR = /Users/filiph/dev/hn_app/build/ios/Debug-iphonesimulator
TARGET_NAME = Runner
TARGET_TEMP_DIR = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
TEMP_DIR = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
TEMP_FILES_DIR = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
TEMP_FILE_DIR = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
TEMP_ROOT = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-dhyyuvkuzqyczeahzyyuxbdvdjku/Build/Intermediates.noindex
TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
TREAT_MISSING_BASELINES_AS_TEST_FAILURES = NO
UID = 74285
UNLOCALIZED_RESOURCES_FOLDER_PATH = Runner.app
UNSTRIPPED_PRODUCT = NO
USER = filiph
USER_APPS_DIR = /Users/filiph/Applications
USER_LIBRARY_DIR = /Users/filiph/Library
USE_DYNAMIC_NO_PIC = YES
USE_HEADERMAP = YES
USE_HEADER_SYMLINKS = NO
VALIDATE_PRODUCT = NO
VALID_ARCHS = i386 x86_64
VERBOSE_PBXCP = NO
VERBOSE_SCRIPT_LOGGING = YES
VERSIONPLIST_PATH = Runner.app/version.plist
VERSION_INFO_BUILDER = filiph
VERSION_INFO_FILE = Runner_vers.c
VERSION_INFO_STRING = "@(#)PROGRAM:Runner PROJECT:Runner-"
WRAPPER_EXTENSION = app
WRAPPER_NAME = Runner.app
WRAPPER_SUFFIX = .app
WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES = NO
XCODE_APP_SUPPORT_DIR = /Applications/Xcode.app/Contents/Developer/Library/Xcode
XCODE_PRODUCT_BUILD_VERSION = 9F1027a
XCODE_VERSION_ACTUAL = 0940
XCODE_VERSION_MAJOR = 0900
XCODE_VERSION_MINOR = 0940
XPCSERVICES_FOLDER_PATH = Runner.app/XPCServices
YACC = yacc
arch = x86_64
variant = normal
[ +230 ms] /usr/bin/xcrun simctl install 8C0199F9-DE6D-4A50-86F3-875D58FF15E6 /Users/filiph/dev/hn_app/build/ios/iphonesimulator/Runner.app
[+1071 ms] /usr/bin/xcrun simctl launch 8C0199F9-DE6D-4A50-86F3-875D58FF15E6 hn_app.flutter.io.hnApp --enable-dart-profiling --enable-checked-mode --observatory-port=8100
[ +171 ms] hn_app.flutter.io.hnApp: 73477
[ ] Waiting for observatory port to be available...
[ +634 ms] [DEVICE LOG] 2018-06-04 16:48:50.537671-0700 localhost Runner[73477]: (Runner) Created Activity ID: 0xcb581, Description: Loading Preferences From System CFPrefsD For Search List
[ +2 ms] [DEVICE LOG] 2018-06-04 16:48:50.537670-0700 localhost Runner[73477]: (Runner) Created Activity ID: 0xcb580, Description: Loading Preferences From System CFPrefsD For Search List
[ +14 ms] [DEVICE LOG] 2018-06-04 16:48:50.555726-0700 localhost Runner[73477]: (Runner) Created Activity ID: 0xcb582, Description: Loading Preferences From System CFPrefsD For Search List
[ +4 ms] [DEVICE LOG] 2018-06-04 16:48:50.560555-0700 localhost Runner[73477]: (libAccessibility.dylib) [com.apple.Accessibility:AccessibilitySupport] Retrieving resting unlock: 0
[ +343 ms] [DEVICE LOG] 2018-06-04 16:48:50.903723-0700 localhost Runner[73477]: (UIKit) You've implemented -[<UIApplicationDelegate> application:performFetchWithCompletionHandler:], but you still need to add "fetch" to the list of your supported UIBackgroundModes in your Info.plist.
[ ] [DEVICE LOG] 2018-06-04 16:48:50.903879-0700 localhost Runner[73477]: (UIKit) You've implemented -[<UIApplicationDelegate> application:didReceiveRemoteNotification:fetchCompletionHandler:], but you still need to add "remote-notification" to the list of your supported UIBackgroundModes in your Info.plist.
[ ] [DEVICE LOG] 2018-06-04 16:48:50.904842-0700 localhost Runner[73477]: (Flutter) flutter: Observatory listening on http://127.0.0.1:8100/
[ +3 ms] Observatory URL on device: http://127.0.0.1:8100/
[ +3 ms] Connecting to service protocol: http://127.0.0.1:8100/
[ +141 ms] Successfully connected to service protocol: http://127.0.0.1:8100/
[ +2 ms] getVM: {}
[ +12 ms] getIsolate: {isolateId: isolates/68813175}
[ +2 ms] _flutter.listViews: {}
[ +336 ms] DevFS: Creating new filesystem on the device (null)
[ ] _createDevFS: {fsName: hn_app}
[ +12 ms] DevFS: Created new filesystem on the device (file:///Users/filiph/Library/Developer/CoreSimulator/Devices/8C0199F9-DE6D-4A50-86F3-875D58FF15E6/data/Containers/Data/Application/818BAB73-1587-4D9E-8A42-7BAA0927500E/tmp/hn_app9eBWc4/hn_app/)
[ +1 ms] Updating assets
[ +133 ms] Syncing files to device iPhone X...
[ +2 ms] DevFS: Starting sync from LocalDirectory: '/Users/filiph/dev/hn_app'
[ ] Scanning project files
[ +4 ms] Scanning package files
[ +91 ms] Scanning asset files
[ ] Scanning for deleted files
[ +12 ms] Compiling dart to kernel with 416 updated files
[ +2 ms] /Users/filiph/dev/flutter/bin/cache/dart-sdk/bin/dart /Users/filiph/dev/flutter/bin/cache/artifacts/engine/darwin-x64/frontend_server.dart.snapshot --sdk-root /Users/filiph/dev/flutter/bin/cache/artifacts/engine/common/flutter_patched_sdk/ --incremental --strong --target=flutter --output-dill build/app.dill --packages /Users/filiph/dev/hn_app/.packages --filesystem-scheme org-dartlang-root
[+1165 ms] Updating files
[ +477 ms] DevFS: Sync finished
[ ] Synced 0.8MB.
[ +3 ms] _flutter.listViews: {}
[ +1 ms] Connected to _flutterView/0x7fd2c8603668.
[ ] ๐ฅ To hot reload your app on the fly, press "r". To restart the app entirely, press "R".
[ ] An Observatory debugger and profiler on iPhone X is available at: http://127.0.0.1:8100/
[ ] For a more detailed help message, press "h". To quit, press "q".
```
```
$ flutter analyze
Analyzing hn_app...
No issues found! (ran in 1.1s)
```
```
$ flutter doctor -v
[โ] Flutter (Channel beta, v0.4.4, on Mac OS X 10.13.4 17E202, locale en-US)
โข Flutter version 0.4.4 at /Users/filiph/dev/flutter
โข Framework revision f9bb4289e9 (3 weeks ago), 2018-05-11 21:44:54 -0700
โข Engine revision 06afdfe54e
โข Dart version 2.0.0-dev.54.0.flutter-46ab040e58
[โ] Android toolchain - develop for Android devices (Android SDK 27.0.3)
โข Android SDK at /Users/filiph/Library/Android/sdk
โข Android NDK location not configured (optional; useful for native profiling support)
โข Platform android-27, build-tools 27.0.3
โข Java binary at: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java
โข Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1024-b01)
โข All Android licenses accepted.
[โ] iOS toolchain - develop for iOS devices (Xcode 9.4)
โข Xcode at /Applications/Xcode.app/Contents/Developer
โข Xcode 9.4, Build version 9F1027a
โข ios-deploy 1.9.2
โข CocoaPods version 1.5.3
[โ] Android Studio (version 3.1)
โข Android Studio at /Applications/Android Studio.app/Contents
โข Flutter plugin version 25.0.1
โข Dart plugin version 173.4700
โข Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1024-b01)
[!] IntelliJ IDEA Community Edition (version 2018.1)
โข IntelliJ at /Applications/IntelliJ IDEA CE.app
โ Flutter plugin not installed; this adds Flutter specific functionality.
โ Dart plugin not installed; this adds Dart specific functionality.
โข For information about installing plugins, see
https://flutter.io/intellij-setup/#installing-the-plugins
[โ] VS Code (version 1.22.2)
โข VS Code at /Applications/Visual Studio Code.app/Contents
โข Dart Code extension version 2.9.2
[โ] Connected devices (1 available)
โข iPhone X โข 8C0199F9-DE6D-4A50-86F3-875D58FF15E6 โข ios โข iOS 11.4 (simulator)
! Doctor found issues in 1 category.
```
| test | flutter test fails while flutter run path to test dart succeeds steps to reproduce check out a simple app sample with a single widget test run test with flutter run test widget test dart verify that it is passing you may need to hit r to hot restart now run the same test with flutter test context the test is trying to verify that after dragging to refresh the open close state of the expansiontile s is reset if you want to see the regression that this test is trying to test against comment out main dart key key the correct behavior the incorrect behavior which we are not testing i just want to show what we re preventing with the test when you run the app flutter run or flutter run test widget test dart you can clearly see that the open close state is correctly reset but the test fails in the headless flutter test mode in that mode the expansiontile is still open i ve talked to goderbauer about this and it doesn t immediately seem that there s a problem with the test itself test code also included in the repo adding here for convenience dart testwidgets refresh clears open state widgettester tester async build our app and trigger a frame await tester pumpwidget new myapp expect find byicon icons launch findsnothing await tester tap find bytype expansiontile at await tester pump expect find byicon icons launch findsonewidget await tester drag find bytype expansiontile first const offset await tester pumpandsettle debugdumpapp expect find bytype refreshprogressindicator findsnothing expect find byicon icons launch findsnothing test output when run on device with flutter run path to test dart flutter refresh clears open state restarted app in flutter all tests passed when run in test framework with flutter test flutter test refresh clears open state โโโก exception caught by flutter test framework โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ the following testfailure object was thrown running a test expected no matching nodes in the widget tree actual exactly one widget with icon icondata u ignoring offstage widgets icon icondata u which means one was found but none were expected when the exception was thrown this was the stack main file users filiph dev hn app test widget test dart testwidgets package flutter test src widget tester dart testwidgetsflutterbinding runtestbody package flutter test src binding dart testwidgetsflutterbinding runtest package flutter test src binding dart automatedtestwidgetsflutterbinding runtest package flutter test src binding dart automatedtestwidgetsflutterbinding runtest package flutter test src binding dart testwidgets package flutter test src widget tester dart declarer test package test src backend declarer dart invoker waitforoutstandingcallbacks package test src backend invoker dart invoker waitforoutstandingcallbacks package test src backend invoker dart declarer test package test src backend declarer dart declarer test package test src backend declarer dart invoker onrun package test src backend invoker dart timer runtimers dart isolate runtime libtimer impl dart timer handlemessage dart isolate runtime libtimer impl dart rawreceiveportimpl handlemessage dart isolate runtime libisolate patch dart elided frames from class fakeasync package dart async and package stack trace this was caught by the test expectation on the following line file users filiph dev hn app test widget test dart line the test description was refresh clears open state โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ refresh clears open state test failed see exception logs above the test description was refresh clears open state some tests failed logs flutter run verbose git rev parse abbrev ref symbolic u exit code from git rev parse abbrev ref symbolic u origin beta git rev parse abbrev ref head exit code from git rev parse abbrev ref head beta git ls remote get url origin exit code from git ls remote get url origin git log n pretty format h exit code from git log n pretty format h git log n pretty format ar exit code from git log n pretty format ar weeks ago git describe match v first parent long tags exit code from git describe match v first parent long tags usr bin defaults read applications android studio app contents info cfbundleshortversionstring exit code from usr bin defaults read applications android studio app contents info cfbundleshortversionstring users filiph library android sdk platform tools adb devices l exit code from users filiph library android sdk platform tools adb devices l list of devices attached idevice id h usr bin xcrun simctl list json devices found plugin url launcher at users filiph dev flutter pub cache hosted pub dartlang org url launcher launching lib main dart on iphone x in debug mode usr bin defaults read users filiph dev hn app ios runner info cfbundleidentifier exit code from usr bin defaults read users filiph dev hn app ios runner info cfbundleidentifier product bundle identifier usr bin xcodebuild project users filiph dev hn app ios runner xcodeproj target runner showbuildsettings exit code from usr bin xcodebuild project users filiph dev hn app ios runner xcodeproj target runner showbuildsettings build settings for action build and target runner action build ad hoc code signing allowed no alternate group eng alternate mode u w go w a rx alternate owner filiph always embed swift standard libraries no always search user paths no always use separate headermaps no apple internal developer dir appleinternal developer apple internal dir appleinternal apple internal documentation dir appleinternal documentation apple internal library dir appleinternal library apple internal tools appleinternal developer tools application extension api only no apply rules in copy files no archs archs standard archs standard bit archs standard bit archs standard bit archs standard including bit archs universal iphone os assetcatalog compiler appicon name appicon available platforms appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator bitcode generation mode marker build active resources only no build components headers build build dir users filiph dev hn app build ios build root users filiph dev hn app build ios build style build variants normal built products dir users filiph dev hn app build ios release iphoneos cache root var folders p c com apple developertools xcode cchroot var folders p c com apple developertools xcode chmod bin chmod chown usr sbin chown clang analyzer nonnull yes clang cxx language standard gnu clang cxx library libc clang enable modules yes clang enable objc arc yes clang warn block capture autoreleasing yes clang warn bool conversion yes clang warn comma yes clang warn constant conversion yes clang warn direct objc isa usage yes error clang warn empty body yes clang warn enum conversion yes clang warn infinite recursion yes clang warn int conversion yes clang warn non literal null conversion yes clang warn objc literal conversion yes clang warn objc root class yes error clang warn range loop analysis yes clang warn strict prototypes yes clang warn suspicious move yes clang warn unreachable code yes clang warn duplicate method match yes class file dir users filiph dev hn app build ios runner build release iphoneos runner build javaclasses clean precomps yes clone headers no codesigning folder path users filiph dev hn app build ios release iphoneos runner app code signing allowed yes code signing required yes code sign context class xciphoneoscodesigncontext code sign identity iphone developer code sign inject base entitlements yes color diagnostics no combine hidpi images no compiler index store enable default composite sdk dirs users filiph dev hn app build ios compositesdks compress png files yes configuration release configuration build dir users filiph dev hn app build ios release iphoneos configuration temp dir users filiph dev hn app build ios runner build release iphoneos contents folder path runner app copying preserves hfs data no copy headers run unifdef no copy phase strip no copy resources from static frameworks yes corresponding simulator platform dir applications xcode app contents developer platforms iphonesimulator platform corresponding simulator platform name iphonesimulator corresponding simulator sdk dir applications xcode app contents developer platforms iphonesimulator platform developer sdks sdk corresponding simulator sdk name cp bin cp create infoplist section in binary no current arch current variant normal dead code stripping yes debugging symbols yes debug information format dwarf with dsym default compiler com apple compilers llvm clang default kext install path system library extensions defines module no deployment location no deployment postprocessing no deployment target clang env name iphoneos deployment target deployment target clang flag name miphoneos version min deployment target clang flag prefix miphoneos version min deployment target setting name iphoneos deployment target deployment target suggested values derived files dir users filiph dev hn app build ios runner build release iphoneos runner build derivedsources derived file dir users filiph dev hn app build ios runner build release iphoneos runner build derivedsources derived sources dir users filiph dev hn app build ios runner build release iphoneos runner build derivedsources developer applications dir applications xcode app contents developer applications developer bin dir applications xcode app contents developer usr bin developer dir applications xcode app contents developer developer frameworks dir applications xcode app contents developer library frameworks developer frameworks dir quoted applications xcode app contents developer library frameworks developer library dir applications xcode app contents developer library developer sdk dir applications xcode app contents developer platforms macosx platform developer sdks developer tools dir applications xcode app contents developer tools developer usr dir applications xcode app contents developer usr development language english documentation folder path runner app english lproj documentation do header scanning in jam no dstroot tmp runner dst dt toolchain dir applications xcode app contents developer toolchains xcodedefault xctoolchain dwarf dsym file name runner app dsym dwarf dsym file should accompany product no dwarf dsym folder path users filiph dev hn app build ios release iphoneos effective platform name iphoneos embedded content contains swift no embedded profile name embedded mobileprovision embed asset packs in product bundle no enable bitcode no enable default header search paths yes enable header dependencies yes enable ns assertions no enable on demand resources yes enable strict objc msgsend yes enable testability no entitlements allowed yes entitlements required yes excluded installsrc subdirectory patterns ds store svn git hg cvs excluded recursive search path subdirectories nib lproj framework gch xcode xcassets ds store cvs svn git hg pbproj pbxproj executables folder path runner app executables executable folder path runner app executable name runner executable path runner app runner expanded code sign identity expanded code sign identity name expanded provisioning profile file list users filiph dev hn app build ios runner build release iphoneos runner build objects linkfilelist fixed files dir users filiph dev hn app build ios runner build release iphoneos runner build fixedfiles flutter application path users filiph dev hn app flutter build dir build flutter build mode debug flutter framework dir users filiph dev flutter bin cache artifacts engine ios flutter root users filiph dev flutter flutter target lib main dart frameworks folder path runner app frameworks framework flag prefix framework framework search paths users filiph dev hn app build ios release iphoneos url launcher users filiph dev hn app ios pods symlinks flutter ios users filiph dev hn app build ios release iphoneos url launcher users filiph dev hn app ios pods symlinks flutter ios users filiph dev hn app ios flutter framework version a full product name runner app version gcc c language standard gcc inlines are private extern yes gcc no common blocks yes gcc pfe file c dialects c objective c c objective c gcc preprocessor definitions cocoapods cocoapods gcc symbols private extern yes gcc thumb support yes gcc treat warnings as errors no gcc version com apple compilers llvm clang gcc version identifier com apple compilers llvm clang gcc warn to bit conversion yes gcc warn about return type yes error gcc warn undeclared selector yes gcc warn uninitialized autos yes aggressive gcc warn unused function yes gcc warn unused variable yes generate master object file no generate pkginfo file yes generate profiling code no generate text based stubs no gid group eng headermap includes flat entries for target being built yes headermap includes framework entries for all product types yes headermap includes nonpublic nonprivate headers yes headermap includes project headers yes headermap uses framework prefix entries yes headermap uses vfs no hide bitcode symbols yes home users filiph iconv usr bin iconv infoplist expand build settings yes infoplist file runner info plist infoplist output format binary infoplist path runner app info plist infoplist preprocess no infostrings path runner app english lproj infoplist strings inline private frameworks no installhdrs copy phase no installhdrs script phase no install dir tmp runner dst applications install group eng install mode flag u w go w a rx install owner filiph install path applications install root tmp runner dst iphoneos deployment target javac default flags j j xx newsize j dfile encoding java app stub system library frameworks javavm framework resources macos javaapplicationstub java archive classes yes java archive type jar java compiler usr bin javac java folder path runner app java java framework resources dirs resources java jar flags cv java source subdir java use dependencies yes java zip flags urg jikes default flags e oldcso kasan default cflags dkasan fsanitize address mllvm asan globals live support mllvm asan force dynamic shadow keep private externs no ld dependency info file users filiph dev hn app build ios runner build release iphoneos runner build objects normal runner dependency info dat ld generate map file no ld map file path users filiph dev hn app build ios runner build release iphoneos runner build runner linkmap normal txt ld no pie no ld quote linker arguments for compiler driver yes ld runpath search paths executable path frameworks loader path frameworks executable path frameworks loader path frameworks executable path frameworks legacy developer dir applications xcode app contents plugins ideplugin contents sharedsupport developer lex lex library flag nospace yes library flag prefix l library kext install path library extensions library search paths users filiph dev hn app ios flutter linker displays mangled names no link file list normal link with standard libraries yes localizable content dir localized resources folder path runner app english lproj localized string macro names nslocalizedstring cflocalizedstring local admin apps dir applications utilities local apps dir applications local developer dir library developer local library dir library locroot locsymroot mach o type mh execute mac os x product build version mac os x version actual mac os x version major mac os x version minor metal library file base default metal library output dir users filiph dev hn app build ios release iphoneos runner app module cache dir users filiph library developer xcode deriveddata modulecache noindex mtl enable debug info no native arch native arch bit native arch bit native arch actual no common yes object file dir users filiph dev hn app build ios runner build release iphoneos runner build objects object file dir normal users filiph dev hn app build ios runner build release iphoneos runner build objects normal objroot users filiph dev hn app build ios only active arch no os macos osac usr bin osacompile other cflags iquote users filiph dev hn app build ios release iphoneos url launcher url launcher framework headers iquote users filiph dev hn app build ios release iphoneos url launcher url launcher framework headers other cplusplusflags iquote users filiph dev hn app build ios release iphoneos url launcher url launcher framework headers iquote users filiph dev hn app build ios release iphoneos url launcher url launcher framework headers other ldflags framework flutter framework url launcher framework flutter framework url launcher package type com apple package type wrapper application pascal strings yes path applications xcode app contents developer usr bin applications google cloud sdk bin usr local var pyenv shims users filiph nvm versions node bin users filiph rvm gems ruby bin users filiph rvm gems ruby global bin users filiph rvm rubies ruby bin users filiph dev flutter bin usr local git current bin usr local bin usr bin bin usr local sbin usr sbin sbin applications vmware fusion app contents public usr local go bin opt bin library frameworks mono framework versions current commands applications dart dart sdk bin pub cache bin users filiph gsutil pub cache bin usr local bin depot tools users filiph rvm bin path prefixes excluded from header dependencies usr include usr local include system library frameworks system library privateframeworks applications xcode app contents developer headers applications xcode app contents developer sdks applications xcode app contents developer platforms pbdevelopmentplist path runner app pbdevelopment plist pfe file c dialects objective c pkginfo file path users filiph dev hn app build ios runner build release iphoneos runner build pkginfo pkginfo path runner app pkginfo platform developer applications dir applications xcode app contents developer platforms iphoneos platform developer applications platform developer bin dir applications xcode app contents developer platforms iphoneos platform developer usr bin platform developer library dir applications xcode app contents plugins ideplugin contents sharedsupport developer library platform developer sdk dir applications xcode app contents developer platforms iphoneos platform developer sdks platform developer tools dir applications xcode app contents developer platforms iphoneos platform developer tools platform developer usr dir applications xcode app contents developer platforms iphoneos platform developer usr platform dir applications xcode app contents developer platforms iphoneos platform platform display name ios platform name iphoneos platform preferred arch platform product build version plist file output format binary plugins folder path runner app plugins pods build dir users filiph dev hn app build ios pods configuration build dir users filiph dev hn app build ios release iphoneos pods podfile dir path users filiph dev hn app ios pods root users filiph dev hn app ios pods precomps include headers from built products dir yes precomp destination dir users filiph dev hn app build ios runner build release iphoneos runner build prefixheaders preserve dead code inits and terms no preview dart true private headers folder path runner app privateheaders product bundle identifier hn app flutter io hnapp product module name runner product name runner product settings path users filiph dev hn app ios runner info plist product type com apple product type application profiling code no project runner project derived file dir users filiph dev hn app build ios runner build derivedsources project dir users filiph dev hn app ios project file path users filiph dev hn app ios runner xcodeproj project name runner project temp dir users filiph dev hn app build ios runner build project temp root users filiph dev hn app build ios provisioning profile required yes public headers folder path runner app headers recursive search paths follow symlinks yes remove cvs from resources yes remove git from resources yes remove headers from embedded bundles yes remove hg from resources yes remove svn from resources yes resource rules required yes rez collector dir users filiph dev hn app build ios runner build release iphoneos runner build resourcemanagerresources rez objects dir users filiph dev hn app build ios runner build release iphoneos runner build resourcemanagerresources objects scan all source files for includes no scripts folder path runner app scripts sdkroot applications xcode app contents developer platforms iphoneos platform developer sdks sdk sdk dir applications xcode app contents developer platforms iphoneos platform developer sdks sdk sdk dir applications xcode app contents developer platforms iphoneos platform developer sdks sdk sdk name sdk names sdk product build version sdk version sdk version actual sdk version major sdk version minor sed usr bin sed separate strip no separate symbol edit no set dir mode owner group yes set file mode owner group no shallow bundle yes shared derived file dir users filiph dev hn app build ios release iphoneos derivedsources shared frameworks folder path runner app sharedframeworks shared precomps dir users filiph dev hn app build ios sharedprecompiledheaders shared support folder path runner app sharedsupport skip install no source root users filiph dev hn app ios srcroot users filiph dev hn app ios strings file output encoding binary strip bitcode from copied files yes strip installed product yes strip style all strip swift symbols yes supported device families supported platforms iphonesimulator iphoneos supports text based api no swift compilation mode wholemodule swift objc bridging header runner runner bridging header h swift optimization level o swift platform target prefix ios swift objc inference on swift version symroot users filiph dev hn app build ios system admin apps dir applications utilities system apps dir applications system core services dir system library coreservices system demos dir applications extras system developer apps dir applications xcode app contents developer applications system developer bin dir applications xcode app contents developer usr bin system developer demos dir applications xcode app contents developer applications utilities built examples system developer dir applications xcode app contents developer system developer doc dir applications xcode app contents developer adc reference library system developer graphics tools dir applications xcode app contents developer applications graphics tools system developer java tools dir applications xcode app contents developer applications java tools system developer performance tools dir applications xcode app contents developer applications performance tools system developer releasenotes dir applications xcode app contents developer adc reference library releasenotes system developer tools applications xcode app contents developer tools system developer tools doc dir applications xcode app contents developer adc reference library documentation developertools system developer tools releasenotes dir applications xcode app contents developer adc reference library releasenotes developertools system developer usr dir applications xcode app contents developer usr system developer utilities dir applications xcode app contents developer applications utilities system documentation dir library documentation system kext install path system library extensions system library dir system library tapi verify mode errorsonly targeted device family targetname runner target build dir users filiph dev hn app build ios release iphoneos target name runner target temp dir users filiph dev hn app build ios runner build release iphoneos runner build temp dir users filiph dev hn app build ios runner build release iphoneos runner build temp files dir users filiph dev hn app build ios runner build release iphoneos runner build temp file dir users filiph dev hn app build ios runner build release iphoneos runner build temp root users filiph dev hn app build ios toolchain dir applications xcode app contents developer toolchains xcodedefault xctoolchain treat missing baselines as test failures no uid unlocalized resources folder path runner app unstripped product no user filiph user apps dir users filiph applications user library dir users filiph library use dynamic no pic yes use headermap yes use header symlinks no validate product yes valid archs verbose pbxcp no versionplist path runner app version plist version info builder filiph version info file runner vers c version info string program runner project runner wrapper extension app wrapper name runner app wrapper suffix app wrap asset packs in separate directories no xcode app support dir applications xcode app contents developer library xcode xcode product build version xcode version actual xcode version major xcode version minor xpcservices folder path runner app xpcservices yacc yacc arch variant normal building runner app for script dev null usr bin log stream style syslog predicate processimagepath contains filtering the log data using processimagepath contains timestamp process skipping kernel compilation fingerprint match building bundle writing asset files to build flutter assets wrote build flutter assets usr bin xcrun simctl get app container hn app flutter io hnapp usr bin killall runner python c import six usr bin xcodebuild list exit code from usr bin xcodebuild list information about project runner targets runner build configurations debug release if no build configuration is specified and scheme is not passed then release is used schemes runner trying to resolve native pub services looking for yaml at pubspec yaml no services specified in the manifest found service definition s copying service frameworks to users filiph dev hn app ios frameworks creating service definitions manifest at ios servicedefinitions json pod version system library frameworks ruby framework versions usr lib ruby universal rbconfig rb warning insecure world writable dir usr local git in path mode ignoring eventmachine because its extensions are not built try gem pristine eventmachine version ignoring executable hooks because its extensions are not built try gem pristine executable hooks version ignoring fast stemmer because its extensions are not built try gem pristine fast stemmer version ignoring ffi because its extensions are not built try gem pristine ffi version ignoring ffi because its extensions are not built try gem pristine ffi version ignoring ffi because its extensions are not built try gem pristine ffi version ignoring ffi because its extensions are not built try gem pristine ffi version ignoring ffi because its extensions are not built try gem pristine ffi version ignoring ffi because its extensions are not built try gem pristine ffi version ignoring gem wrappers because its extensions are not built try gem pristine gem wrappers version ignoring hitimes because its extensions are not built try gem pristine hitimes version ignoring http parser rb because its extensions are not built try gem pristine http parser rb version ignoring nokogiri because its extensions are not built try gem pristine nokogiri version ignoring nokogiri because its extensions are not built try gem pristine nokogiri version ignoring nokogiri because its extensions are not built try gem pristine nokogiri version ignoring nokogiri because its extensions are not built try gem pristine nokogiri version ignoring nokogiri because its extensions are not built try gem pristine nokogiri version ignoring nokogiri because its extensions are not built try gem pristine nokogiri version ignoring nokogiri because its extensions are not built try gem pristine nokogiri version ignoring posix spawn because its extensions are not built try gem pristine posix spawn version ignoring redcarpet because its extensions are not built try gem pristine redcarpet version ignoring therubyracer because its extensions are not built try gem pristine therubyracer version ignoring yajl ruby because its extensions are not built try gem pristine yajl ruby version mkfifo var folders p t flutter build log pipeauxxob pipe to stdout exit code from mkfifo var folders p t flutter build log pipeauxxob pipe to stdout starting xcode build usr bin env xcrun xcodebuild configuration debug verbose script logging yes workspace runner xcworkspace scheme runner build dir users filiph dev hn app build ios sdk iphonesimulator arch script output stream file var folders p t flutter build log pipeauxxob pipe to stdout โโassembling flutter resources โโcompiling linking and signing build settings from command line archs build dir users filiph dev hn app build ios script output stream file var folders p t flutter build log pipeauxxob pipe to stdout sdkroot verbose script logging yes build target url launcher of project pods with configuration debug check dependencies build target pods runner of project pods with configuration debug check dependencies build target runner of project runner with configuration debug check dependencies the use of swift objc inference in swift mode is deprecated please address deprecated objc inference warnings test your code with โuse of deprecated swift objc inferenceโ logging enabled and then disable inference by changing the swift objc inference build setting to default for the runner target phasescriptexecution check pods manifest lock users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build script sh cd users filiph dev hn app ios bin sh c users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build script sh phasescriptexecution run script users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build script sh cd users filiph dev hn app ios export action build export ad hoc code signing allowed yes export alternate group eng export alternate mode u w go w a rx export alternate owner filiph export always embed swift standard libraries no export always search user paths no export always use separate headermaps no export apple internal developer dir appleinternal developer export apple internal dir appleinternal export apple internal documentation dir appleinternal documentation export apple internal library dir appleinternal library export apple internal tools appleinternal developer tools export application extension api only no export apply rules in copy files no export archs export archs standard export archs standard bit export archs standard bit export archs standard bit export archs standard including bit export archs universal iphone os export assetcatalog compiler appicon name appicon export available platforms appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator export bitcode generation mode marker export build active resources only yes export build components headers build export build dir users filiph dev hn app build ios export build root users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build products export build style export build variants normal export built products dir users filiph dev hn app build ios debug iphonesimulator export cache root var folders p c com apple developertools xcode export cchroot var folders p c com apple developertools xcode export chmod bin chmod export chown usr sbin chown export clang analyzer nonnull yes export clang cxx language standard gnu export clang cxx library libc export clang enable modules yes export clang enable objc arc yes export clang modules build session file users filiph library developer xcode deriveddata modulecache noindex session modulevalidation export clang warn block capture autoreleasing yes export clang warn bool conversion yes export clang warn comma yes export clang warn constant conversion yes export clang warn direct objc isa usage yes error export clang warn empty body yes export clang warn enum conversion yes export clang warn infinite recursion yes export clang warn int conversion yes export clang warn non literal null conversion yes export clang warn objc literal conversion yes export clang warn objc root class yes error export clang warn range loop analysis yes export clang warn strict prototypes yes export clang warn suspicious move yes export clang warn unreachable code yes export clang warn duplicate method match yes export class file dir users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build javaclasses export clean precomps yes export clone headers no export codesigning folder path users filiph dev hn app build ios debug iphonesimulator runner app export code signing allowed yes export code signing required yes export code sign context class xciphonesimulatorcodesigncontext export code sign identity export code sign inject base entitlements yes export color diagnostics no export combine hidpi images no export command mode legacy export compiler index store enable default export composite sdk dirs users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex compositesdks export compress png files yes export configuration debug export configuration build dir users filiph dev hn app build ios debug iphonesimulator export configuration temp dir users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator export contents folder path runner app export copying preserves hfs data no export copy headers run unifdef no export copy phase strip no export copy resources from static frameworks yes export corresponding device platform dir applications xcode app contents developer platforms iphoneos platform export corresponding device platform name iphoneos export corresponding device sdk dir applications xcode app contents developer platforms iphoneos platform developer sdks sdk export corresponding device sdk name export cp bin cp export create infoplist section in binary no export current arch export current variant normal export dead code stripping yes export debugging symbols yes export debug information format dwarf export default compiler com apple compilers llvm clang export default kext install path system library extensions export defines module no export deployment location no export deployment postprocessing no export deployment target clang env name iphoneos deployment target export deployment target clang flag name mios simulator version min export deployment target clang flag prefix mios simulator version min export deployment target setting name iphoneos deployment target export deployment target suggested values export derived files dir users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build derivedsources export derived file dir users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build derivedsources export derived sources dir users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build derivedsources export developer applications dir applications xcode app contents developer applications export developer bin dir applications xcode app contents developer usr bin export developer dir applications xcode app contents developer export developer frameworks dir applications xcode app contents developer library frameworks export developer frameworks dir quoted applications xcode app contents developer library frameworks export developer library dir applications xcode app contents developer library export developer sdk dir applications xcode app contents developer platforms macosx platform developer sdks export developer tools dir applications xcode app contents developer tools export developer usr dir applications xcode app contents developer usr export development language english export documentation folder path runner app english lproj documentation export do header scanning in jam no export dstroot tmp runner dst export dt toolchain dir applications xcode app contents developer toolchains xcodedefault xctoolchain export dwarf dsym file name runner app dsym export dwarf dsym file should accompany product no export dwarf dsym folder path users filiph dev hn app build ios debug iphonesimulator export effective platform name iphonesimulator export embedded content contains swift no export embed asset packs in product bundle no export enable bitcode no export enable default header search paths yes export enable header dependencies yes export enable on demand resources yes export enable strict objc msgsend yes export enable testability yes export entitlements required yes export excluded installsrc subdirectory patterns ds store svn git hg cvs export excluded recursive search path subdirectories nib lproj framework gch xcode xcassets ds store cvs svn git hg pbproj pbxproj export executables folder path runner app executables export executable folder path runner app export executable name runner export executable path runner app runner export expanded code sign identity export expanded code sign identity name export expanded provisioning profile export file list users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build objects linkfilelist export fixed files dir users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build fixedfiles export flutter application path users filiph dev hn app export flutter build dir build export flutter build mode debug export flutter framework dir users filiph dev flutter bin cache artifacts engine ios export flutter root users filiph dev flutter export flutter target lib main dart export frameworks folder path runner app frameworks export framework flag prefix framework export framework search paths users filiph dev hn app build ios debug iphonesimulator users filiph dev hn app build ios debug iphonesimulator url launcher users filiph dev hn app ios pods symlinks flutter ios users filiph dev hn app ios flutter export framework version a export full product name runner app export version export gcc c language standard export gcc dynamic no pic no export gcc inlines are private extern yes export gcc no common blocks yes export gcc objc legacy dispatch yes export gcc optimization level export gcc pfe file c dialects c objective c c objective c export gcc preprocessor definitions debug cocoapods cocoapods export gcc symbols private extern no export gcc treat warnings as errors no export gcc version com apple compilers llvm clang export gcc version identifier com apple compilers llvm clang export gcc warn to bit conversion yes export gcc warn about return type yes error export gcc warn undeclared selector yes export gcc warn uninitialized autos yes aggressive export gcc warn unused function yes export gcc warn unused variable yes export generate master object file no export generate pkginfo file yes export generate profiling code no export generate text based stubs no export gid export group eng export headermap includes flat entries for target being built yes export headermap includes framework entries for all product types yes export headermap includes nonpublic nonprivate headers yes export headermap includes project headers yes export headermap uses framework prefix entries yes export headermap uses vfs no export header search paths users filiph dev hn app build ios debug iphonesimulator include export hide bitcode symbols yes export home users filiph export iconv usr bin iconv export infoplist expand build settings yes export infoplist file runner info plist export infoplist output format binary export infoplist path runner app info plist export infoplist preprocess no export infostrings path runner app english lproj infoplist strings export inline private frameworks no export installhdrs copy phase no export installhdrs script phase no export install dir tmp runner dst applications export install group eng export install mode flag u w go w a rx export install owner filiph export install path applications export install root tmp runner dst export iphoneos deployment target export javac default flags j j xx newsize j dfile encoding export java app stub system library frameworks javavm framework resources macos javaapplicationstub export java archive classes yes export java archive type jar export java compiler usr bin javac export java folder path runner app java export java framework resources dirs resources export java jar flags cv export java source subdir export java use dependencies yes export java zip flags urg export jikes default flags e oldcso export keep private externs no export ld dependency info file users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build objects normal runner dependency info dat export ld generate map file no export ld map file path users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build runner linkmap normal txt export ld no pie no export ld quote linker arguments for compiler driver yes export ld runpath search paths executable path frameworks loader path frameworks executable path frameworks loader path frameworks executable path frameworks export legacy developer dir applications xcode app contents plugins ideplugin contents sharedsupport developer export lex lex export library flag nospace yes export library flag prefix l export library kext install path library extensions export library search paths users filiph dev hn app build ios debug iphonesimulator users filiph dev hn app ios flutter export linker displays mangled names no export link file list normal users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build objects normal runner linkfilelist export link with standard libraries yes export localizable content dir export localized resources folder path runner app english lproj export localized string macro names nslocalizedstring cflocalizedstring export local admin apps dir applications utilities export local apps dir applications export local developer dir library developer export local library dir library export locroot export locsymroot export mach o type mh execute export mac os x product build version export mac os x version actual export mac os x version major export mac os x version minor export metal library file base default export metal library output dir users filiph dev hn app build ios debug iphonesimulator runner app export module cache dir users filiph library developer xcode deriveddata modulecache noindex export mtl enable debug info yes export native arch export native arch bit export native arch bit export native arch actual export no common yes export objc abi version export object file dir users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build objects export object file dir normal users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build objects normal export objroot users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex export only active arch yes export os macos export osac usr bin osacompile export other cflags iquote users filiph dev hn app build ios debug iphonesimulator url launcher url launcher framework headers iquote users filiph dev hn app build ios debug iphonesimulator url launcher url launcher framework headers export other cplusplusflags iquote users filiph dev hn app build ios debug iphonesimulator url launcher url launcher framework headers iquote users filiph dev hn app build ios debug iphonesimulator url launcher url launcher framework headers export other ldflags framework flutter framework url launcher framework flutter framework url launcher export package type com apple package type wrapper application export pascal strings yes export path applications xcode app contents developer toolchains xcodedefault xctoolchain usr bin applications xcode app contents developer toolchains xcodedefault xctoolchain usr local bin applications xcode app contents developer toolchains xcodedefault xctoolchain usr libexec applications xcode app contents developer platforms iphonesimulator platform developer usr bin applications xcode app contents developer platforms iphonesimulator platform developer usr local bin applications xcode app contents developer platforms iphonesimulator platform usr bin applications xcode app contents developer platforms iphonesimulator platform usr local bin applications xcode app contents developer usr bin applications xcode app contents developer usr local bin applications xcode app contents developer tools applications google cloud sdk bin usr local var pyenv shims users filiph nvm versions node bin users filiph rvm gems ruby bin users filiph rvm gems ruby global bin users filiph rvm rubies ruby bin users filiph dev flutter bin usr local git current bin usr local bin usr bin bin usr local sbin usr sbin sbin applications vmware fusion app contents public usr local go bin opt bin library frameworks mono framework versions current commands applications dart dart sdk bin users filiph pub cache bin users filiph gsutil usr local bin depot tools users filiph rvm bin export path prefixes excluded from header dependencies usr include usr local include system library frameworks system library privateframeworks applications xcode app contents developer headers applications xcode app contents developer sdks applications xcode app contents developer platforms export pbdevelopmentplist path runner app pbdevelopment plist export pfe file c dialects objective c export pkginfo file path users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build pkginfo export pkginfo path runner app pkginfo export platform developer applications dir applications xcode app contents developer platforms iphonesimulator platform developer applications export platform developer bin dir applications xcode app contents developer platforms iphonesimulator platform developer usr bin export platform developer library dir applications xcode app contents plugins ideplugin contents sharedsupport developer library export platform developer sdk dir applications xcode app contents developer platforms iphonesimulator platform developer sdks export platform developer tools dir applications xcode app contents developer platforms iphonesimulator platform developer tools export platform developer usr dir applications xcode app contents developer platforms iphonesimulator platform developer usr export platform dir applications xcode app contents developer platforms iphonesimulator platform export platform display name ios simulator export platform name iphonesimulator export platform preferred arch export plist file output format binary export plugins folder path runner app plugins export pods build dir users filiph dev hn app build ios export pods configuration build dir users filiph dev hn app build ios debug iphonesimulator export pods podfile dir path users filiph dev hn app ios export pods root users filiph dev hn app ios pods export precomps include headers from built products dir yes export precomp destination dir users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build prefixheaders export preserve dead code inits and terms no export preview dart true export private headers folder path runner app privateheaders export product bundle identifier hn app flutter io hnapp export product module name runner export product name runner export product settings path users filiph dev hn app ios runner info plist export product type com apple product type application export profiling code no export project runner export project derived file dir users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build derivedsources export project dir users filiph dev hn app ios export project file path users filiph dev hn app ios runner xcodeproj export project name runner export project temp dir users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build export project temp root users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex export public headers folder path runner app headers export recursive search paths follow symlinks yes export remove cvs from resources yes export remove git from resources yes export remove headers from embedded bundles yes export remove hg from resources yes export remove svn from resources yes export rez collector dir users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build resourcemanagerresources export rez objects dir users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build resourcemanagerresources objects export rez search paths users filiph dev hn app build ios debug iphonesimulator export scan all source files for includes no export scripts folder path runner app scripts export script input file count export script output file count export script output stream file var folders p t flutter build log pipeauxxob pipe to stdout export sdkroot applications xcode app contents developer platforms iphonesimulator platform developer sdks sdk export sdk dir applications xcode app contents developer platforms iphonesimulator platform developer sdks sdk export sdk dir applications xcode app contents developer platforms iphonesimulator platform developer sdks sdk export sdk name export sdk names export sdk product build version export sdk version export sdk version actual export sdk version major export sdk version minor export sed usr bin sed export separate strip no export separate symbol edit no export set dir mode owner group yes export set file mode owner group no export shallow bundle yes export shared derived file dir users filiph dev hn app build ios debug iphonesimulator derivedsources export shared frameworks folder path runner app sharedframeworks export shared precomps dir users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex precompiledheaders export shared support folder path runner app sharedsupport export skip install no export source root users filiph dev hn app ios export srcroot users filiph dev hn app ios export strings file output encoding binary export strip bitcode from copied files no export strip installed product yes export strip style all export strip swift symbols yes export supported device families export supported platforms iphonesimulator iphoneos export supports text based api no export swift objc bridging header runner runner bridging header h export swift optimization level onone export swift platform target prefix ios export swift objc inference on export swift version export symroot users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build products export system admin apps dir applications utilities export system apps dir applications export system core services dir system library coreservices export system demos dir applications extras export system developer apps dir applications xcode app contents developer applications export system developer bin dir applications xcode app contents developer usr bin export system developer demos dir applications xcode app contents developer applications utilities built examples export system developer dir applications xcode app contents developer export system developer doc dir applications xcode app contents developer adc reference library export system developer graphics tools dir applications xcode app contents developer applications graphics tools export system developer java tools dir applications xcode app contents developer applications java tools export system developer performance tools dir applications xcode app contents developer applications performance tools export system developer releasenotes dir applications xcode app contents developer adc reference library releasenotes export system developer tools applications xcode app contents developer tools export system developer tools doc dir applications xcode app contents developer adc reference library documentation developertools export system developer tools releasenotes dir applications xcode app contents developer adc reference library releasenotes developertools export system developer usr dir applications xcode app contents developer usr export system developer utilities dir applications xcode app contents developer applications utilities export system documentation dir library documentation export system kext install path system library extensions export system library dir system library export tapi verify mode errorsonly export targeted device family export targetname runner export target build dir users filiph dev hn app build ios debug iphonesimulator export target device identifier dvtdevice dvtiosdevicesimulatorplaceholder iphonesimulator placeholder export target name runner export target temp dir users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build export temp dir users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build export temp files dir users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build export temp file dir users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build export temp root users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex export toolchains com apple dt toolchain xcodedefault export toolchain dir applications xcode app contents developer toolchains xcodedefault xctoolchain export treat missing baselines as test failures no export uid export unlocalized resources folder path runner app export unstripped product no export user filiph export user apps dir users filiph applications export user library dir users filiph library export use dynamic no pic yes export use headermap yes export use header symlinks no export validate product no export valid archs export verbose pbxcp no export verbose script logging yes export versionplist path runner app version plist export version info builder filiph export version info file runner vers c export version info string program runner project runner export wrapper extension app export wrapper name runner app export wrapper suffix app export wrap asset packs in separate directories no export xcode app support dir applications xcode app contents developer library xcode export xcode product build version export xcode version actual export xcode version major export xcode version minor export xpcservices folder path runner app xpcservices export yacc yacc export arch export variant normal bin sh c users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build script sh โฆ mkdir p users filiph dev hn app ios flutter โฆ rm rf users filiph dev hn app ios flutter flutter framework โฆ rm rf users filiph dev hn app ios flutter app framework โฆ cp r users filiph dev flutter bin cache artifacts engine ios flutter framework users filiph dev hn app ios flutter โฆ find users filiph dev hn app ios flutter flutter framework type f exec chmod a w โฆ mkdir p users filiph dev hn app ios flutter app framework โฆ eval โฆ cp users filiph dev hn app ios flutter appframeworkinfo plist users filiph dev hn app ios flutter app framework info plist โฆ users filiph dev flutter bin flutter suppress analytics verbose build bundle target lib main dart snapshot build snapshot blob bin depfile build snapshot blob bin d asset dir users filiph dev hn app ios flutter flutter assets preview dart git rev parse abbrev ref symbolic u exit code from git rev parse abbrev ref symbolic u origin beta git rev parse abbrev ref head exit code from git rev parse abbrev ref head beta git ls remote get url origin exit code from git ls remote get url origin git log n pretty format h exit code from git log n pretty format h git log n pretty format ar exit code from git log n pretty format ar weeks ago git describe match v first parent long tags exit code from git describe match v first parent long tags found plugin url launcher at users filiph dev flutter pub cache hosted pub dartlang org url launcher skipping kernel compilation fingerprint match building bundle writing asset files to users filiph dev hn app ios flutter flutter assets wrote users filiph dev hn app ios flutter flutter assets flutter bundle took project users filiph dev hn app built and packaged successfully compileswiftsources normal com apple xcode tools swift compiler cd users filiph dev hn app ios export developer dir applications xcode app contents developer export path applications xcode app contents developer platforms iphonesimulator platform developer usr bin applications xcode app contents developer usr bin applications google cloud sdk bin usr local var pyenv shims users filiph nvm versions node bin users filiph rvm gems ruby bin users filiph rvm gems ruby global bin users filiph rvm rubies ruby bin users filiph dev flutter bin usr local git current bin usr local bin usr bin bin usr local sbin usr sbin sbin applications vmware fusion app contents public usr local go bin opt bin library frameworks mono framework versions current commands applications dart dart sdk bin pub cache bin users filiph gsutil pub cache bin usr local bin depot tools users filiph rvm bin export sdkroot applications xcode app contents developer platforms iphonesimulator platform developer sdks sdk applications xcode app contents developer toolchains xcodedefault xctoolchain usr bin swiftc incremental module name runner onone enforce exclusivity checked xfrontend enable objc inference xfrontend warn objc inference minimal sdk applications xcode app contents developer platforms iphonesimulator platform developer sdks sdk target apple g module cache path users filiph library developer xcode deriveddata modulecache noindex xfrontend serialize debugging options enable testing index store path users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku index datastore swift version i users filiph dev hn app build ios debug iphonesimulator f users filiph dev hn app build ios debug iphonesimulator f users filiph dev hn app build ios debug iphonesimulator url launcher f users filiph dev hn app ios pods symlinks flutter ios f users filiph dev hn app ios flutter parse as library c users filiph dev hn app ios runner appdelegate swift output file map users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build objects normal runner outputfilemap json parseable output serialize diagnostics emit dependencies emit module emit module path users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build objects normal runner swiftmodule xcc i users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build swift overrides hmap xcc iquote xcc users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build runner generated files hmap xcc i users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build runner own target headers hmap xcc i users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build runner all non framework target headers hmap xcc ivfsoverlay xcc users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build all product headers yaml xcc iquote xcc users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build runner project headers hmap xcc i users filiph dev hn app build ios debug iphonesimulator include xcc i users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build derivedsources xcc i users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build derivedsources xcc ddebug xcc dcocoapods xcc dcocoapods emit objc header emit objc header path users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build objects normal runner swift h import objc header users filiph dev hn app ios runner runner bridging header h pch output dir users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex precompiledheaders xcc working directory users filiph dev hn app ios precompileswiftbridgingheader normal cd users filiph dev hn app ios applications xcode app contents developer toolchains xcodedefault xctoolchain usr bin swift frontend target apple enable objc interop sdk applications xcode app contents developer platforms iphonesimulator platform developer sdks sdk i users filiph dev hn app build ios debug iphonesimulator f users filiph dev hn app build ios debug iphonesimulator f users filiph dev hn app build ios debug iphonesimulator url launcher f users filiph dev hn app ios pods symlinks flutter ios f users filiph dev hn app ios flutter enable testing g module cache path users filiph library developer xcode deriveddata modulecache noindex swift version enforce exclusivity checked onone enable objc inference warn objc inference minimal serialize debugging options xcc i users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build swift overrides hmap xcc iquote xcc users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build runner generated files hmap xcc i users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build runner own target headers hmap xcc i users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build runner all non framework target headers hmap xcc ivfsoverlay xcc users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build all product headers yaml xcc iquote xcc users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build runner project headers hmap xcc i users filiph dev hn app build ios debug iphonesimulator include xcc i users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build derivedsources xcc i users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build derivedsources xcc ddebug xcc dcocoapods xcc dcocoapods xcc working directory users filiph dev hn app ios serialize diagnostics path users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex precompiledheaders runner bridging header dia users filiph dev hn app ios runner runner bridging header h index store path users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku index datastore emit pch pch output dir users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex precompiledheaders fatal error file users filiph dev hn app ios runner generatedpluginregistrant h has been modified since the precompiled header users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex precompiledheaders runner bridging header swift clang pch was built note please rebuild precompiled header users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex precompiledheaders runner bridging header swift clang pch compileswift normal users filiph dev hn app ios runner appdelegate swift cd users filiph dev hn app ios applications xcode app contents developer toolchains xcodedefault xctoolchain usr bin swift frontend c primary file users filiph dev hn app ios runner appdelegate swift target apple enable objc interop sdk applications xcode app contents developer platforms iphonesimulator platform developer sdks sdk i users filiph dev hn app build ios debug iphonesimulator f users filiph dev hn app build ios debug iphonesimulator f users filiph dev hn app build ios debug iphonesimulator url launcher f users filiph dev hn app ios pods symlinks flutter ios f users filiph dev hn app ios flutter enable testing g module cache path users filiph library developer xcode deriveddata modulecache noindex swift version enforce exclusivity checked onone enable objc inference warn objc inference minimal serialize debugging options xcc i users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build swift overrides hmap xcc iquote xcc users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build runner generated files hmap xcc i users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build runner own target headers hmap xcc i users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build runner all non framework target headers hmap xcc ivfsoverlay xcc users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build all product headers yaml xcc iquote xcc users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build runner project headers hmap xcc i users filiph dev hn app build ios debug iphonesimulator include xcc i users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build derivedsources xcc i users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build derivedsources xcc ddebug xcc dcocoapods xcc dcocoapods xcc working directory users filiph dev hn app ios emit module doc path users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build objects normal appdelegate partial swiftdoc serialize diagnostics path users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build objects normal appdelegate dia import objc header users filiph dev hn app ios runner runner bridging header h pch output dir users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex precompiledheaders pch disable validation parse as library module name runner emit module path users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build objects normal appdelegate partial swiftmodule emit dependencies path users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build objects normal appdelegate d emit reference dependencies path users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build objects normal appdelegate swiftdeps o users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build objects normal appdelegate o index store path users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku index datastore index system modules mergeswiftmodule normal users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build objects normal runner swiftmodule cd users filiph dev hn app ios applications xcode app contents developer toolchains xcodedefault xctoolchain usr bin swift frontend merge modules emit module users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build objects normal appdelegate partial swiftmodule parse as library sil merge partial modules disable diagnostic passes disable sil perf optzns target apple enable objc interop sdk applications xcode app contents developer platforms iphonesimulator platform developer sdks sdk i users filiph dev hn app build ios debug iphonesimulator f users filiph dev hn app build ios debug iphonesimulator f users filiph dev hn app build ios debug iphonesimulator url launcher f users filiph dev hn app ios pods symlinks flutter ios f users filiph dev hn app ios flutter enable testing g module cache path users filiph library developer xcode deriveddata modulecache noindex swift version enforce exclusivity checked onone enable objc inference warn objc inference minimal serialize debugging options xcc i users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build swift overrides hmap xcc iquote xcc users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build runner generated files hmap xcc i users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build runner own target headers hmap xcc i users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build runner all non framework target headers hmap xcc ivfsoverlay xcc users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build all product headers yaml xcc iquote xcc users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build runner project headers hmap xcc i users filiph dev hn app build ios debug iphonesimulator include xcc i users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build derivedsources xcc i users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build derivedsources xcc ddebug xcc dcocoapods xcc dcocoapods xcc working directory users filiph dev hn app ios emit module doc path users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build objects normal runner swiftdoc import objc header users filiph dev hn app ios runner runner bridging header h module name runner emit objc header path users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build objects normal runner swift h o users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build objects normal runner swiftmodule compilec users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build objects normal generatedpluginregistrant o runner generatedpluginregistrant m normal objective c com apple compilers llvm clang compiler cd users filiph dev hn app ios export lang en us us ascii export path applications xcode app contents developer platforms iphonesimulator platform developer usr bin applications xcode app contents developer usr bin applications google cloud sdk bin usr local var pyenv shims users filiph nvm versions node bin users filiph rvm gems ruby bin users filiph rvm gems ruby global bin users filiph rvm rubies ruby bin users filiph dev flutter bin usr local git current bin usr local bin usr bin bin usr local sbin usr sbin sbin applications vmware fusion app contents public usr local go bin opt bin library frameworks mono framework versions current commands applications dart dart sdk bin pub cache bin users filiph gsutil pub cache bin usr local bin depot tools users filiph rvm bin applications xcode app contents developer toolchains xcodedefault xctoolchain usr bin clang x objective c arch fmessage length fdiagnostics show note include stack fmacro backtrace limit std fobjc arc fmodules gmodules fmodules cache path users filiph library developer xcode deriveddata modulecache noindex fmodules prune interval fmodules prune after fbuild session file users filiph library developer xcode deriveddata modulecache noindex session modulevalidation fmodules validate once per build session wnon modular include in framework module werror non modular include in framework module wno trigraphs fpascal strings fno common wno missing field initializers wno missing prototypes werror return type wunreachable code wno implicit atomic properties werror deprecated objc isa usage werror objc root class wno arc repeated use of weak wduplicate method match wno missing braces wparentheses wswitch wunused function wno unused label wno unused parameter wunused variable wunused value wempty body wuninitialized wconditional uninitialized wno unknown pragmas wno shadow wno four char constants wno conversion wconstant conversion wint conversion wbool conversion wenum conversion wno float conversion wnon literal null conversion wobjc literal conversion wshorten to wpointer sign wno newline eof wno selector wno strict selector match wundeclared selector wno deprecated implementations ddebug dcocoapods dcocoapods dobjc old dispatch prototypes isysroot applications xcode app contents developer platforms iphonesimulator platform developer sdks sdk fasm blocks fstrict aliasing wprotocol wdeprecated declarations mios simulator version min g wno sign conversion winfinite recursion wcomma wblock capture autoreleasing wstrict prototypes fobjc abi version fobjc legacy dispatch index store path users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku index datastore iquote users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build runner generated files hmap i users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build runner own target headers hmap i users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build runner all non framework target headers hmap ivfsoverlay users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build all product headers yaml iquote users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build runner project headers hmap i users filiph dev hn app build ios debug iphonesimulator include i users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build derivedsources i users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build derivedsources f users filiph dev hn app build ios debug iphonesimulator f users filiph dev hn app build ios debug iphonesimulator url launcher f users filiph dev hn app ios pods symlinks flutter ios f users filiph dev hn app ios flutter iquote users filiph dev hn app build ios debug iphonesimulator url launcher url launcher framework headers iquote users filiph dev hn app build ios debug iphonesimulator url launcher url launcher framework headers mmd mt dependencies mf users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build objects normal generatedpluginregistrant d serialize diagnostics users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build objects normal generatedpluginregistrant dia c users filiph dev hn app ios runner generatedpluginregistrant m o users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build objects normal generatedpluginregistrant o ld users filiph dev hn app build ios debug iphonesimulator runner app runner normal cd users filiph dev hn app ios export iphoneos deployment target export path applications xcode app contents developer platforms iphonesimulator platform developer usr bin applications xcode app contents developer usr bin applications google cloud sdk bin usr local var pyenv shims users filiph nvm versions node bin users filiph rvm gems ruby bin users filiph rvm gems ruby global bin users filiph rvm rubies ruby bin users filiph dev flutter bin usr local git current bin usr local bin usr bin bin usr local sbin usr sbin sbin applications vmware fusion app contents public usr local go bin opt bin library frameworks mono framework versions current commands applications dart dart sdk bin pub cache bin users filiph gsutil pub cache bin usr local bin depot tools users filiph rvm bin applications xcode app contents developer toolchains xcodedefault xctoolchain usr bin clang arch isysroot applications xcode app contents developer platforms iphonesimulator platform developer sdks sdk l users filiph dev hn app build ios debug iphonesimulator l users filiph dev hn app ios flutter f users filiph dev hn app build ios debug iphonesimulator f users filiph dev hn app build ios debug iphonesimulator url launcher f users filiph dev hn app ios pods symlinks flutter ios f users filiph dev hn app ios flutter filelist users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build objects normal runner linkfilelist xlinker rpath xlinker executable path frameworks xlinker rpath xlinker loader path frameworks xlinker rpath xlinker executable path frameworks xlinker rpath xlinker loader path frameworks xlinker rpath xlinker executable path frameworks mios simulator version min dead strip xlinker object path lto xlinker users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build objects normal runner lto o xlinker export dynamic xlinker no deduplicate xlinker objc abi version xlinker fobjc arc fobjc link runtime l applications xcode app contents developer toolchains xcodedefault xctoolchain usr lib swift iphonesimulator xlinker add ast path xlinker users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build objects normal runner swiftmodule framework flutter framework url launcher framework flutter framework url launcher xlinker sectcreate xlinker text xlinker entitlements xlinker users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build runner app simulated xcent framework flutter framework app framework pods runner xlinker dependency info xlinker users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build objects normal runner dependency info dat o users filiph dev hn app build ios debug iphonesimulator runner app runner cpresource flutter generated xcconfig users filiph dev hn app build ios debug iphonesimulator runner app generated xcconfig cd users filiph dev hn app ios export path applications xcode app contents developer platforms iphonesimulator platform developer usr bin applications xcode app contents developer usr bin applications google cloud sdk bin usr local var pyenv shims users filiph nvm versions node bin users filiph rvm gems ruby bin users filiph rvm gems ruby global bin users filiph rvm rubies ruby bin users filiph dev flutter bin usr local git current bin usr local bin usr bin bin usr local sbin usr sbin sbin applications vmware fusion app contents public usr local go bin opt bin library frameworks mono framework versions current commands applications dart dart sdk bin pub cache bin users filiph gsutil pub cache bin usr local bin depot tools users filiph rvm bin builtin copy exclude ds store exclude cvs exclude svn exclude git exclude hg resolve src symlinks users filiph dev hn app ios flutter generated xcconfig users filiph dev hn app build ios debug iphonesimulator runner app cpresource flutter flutter assets users filiph dev hn app build ios debug iphonesimulator runner app flutter assets cd users filiph dev hn app ios export path applications xcode app contents developer platforms iphonesimulator platform developer usr bin applications xcode app contents developer usr bin applications google cloud sdk bin usr local var pyenv shims users filiph nvm versions node bin users filiph rvm gems ruby bin users filiph rvm gems ruby global bin users filiph rvm rubies ruby bin users filiph dev flutter bin usr local git current bin usr local bin usr bin bin usr local sbin usr sbin sbin applications vmware fusion app contents public usr local go bin opt bin library frameworks mono framework versions current commands applications dart dart sdk bin pub cache bin users filiph gsutil pub cache bin usr local bin depot tools users filiph rvm bin builtin copy exclude ds store exclude cvs exclude svn exclude git exclude hg resolve src symlinks users filiph dev hn app ios flutter flutter assets users filiph dev hn app build ios debug iphonesimulator runner app pbxcp flutter app framework users filiph dev hn app build ios debug iphonesimulator runner app frameworks app framework cd users filiph dev hn app ios export path applications xcode app contents developer platforms iphonesimulator platform developer usr bin applications xcode app contents developer usr bin applications google cloud sdk bin usr local var pyenv shims users filiph nvm versions node bin users filiph rvm gems ruby bin users filiph rvm gems ruby global bin users filiph rvm rubies ruby bin users filiph dev flutter bin usr local git current bin usr local bin usr bin bin usr local sbin usr sbin sbin applications vmware fusion app contents public usr local go bin opt bin library frameworks mono framework versions current commands applications dart dart sdk bin pub cache bin users filiph gsutil pub cache bin usr local bin depot tools users filiph rvm bin builtin copy exclude ds store exclude cvs exclude svn exclude git exclude hg exclude headers exclude privateheaders exclude modules exclude tbd resolve src symlinks users filiph dev hn app ios flutter app framework users filiph dev hn app build ios debug iphonesimulator runner app frameworks pbxcp flutter flutter framework users filiph dev hn app build ios debug iphonesimulator runner app frameworks flutter framework cd users filiph dev hn app ios export path applications xcode app contents developer platforms iphonesimulator platform developer usr bin applications xcode app contents developer usr bin applications google cloud sdk bin usr local var pyenv shims users filiph nvm versions node bin users filiph rvm gems ruby bin users filiph rvm gems ruby global bin users filiph rvm rubies ruby bin users filiph dev flutter bin usr local git current bin usr local bin usr bin bin usr local sbin usr sbin sbin applications vmware fusion app contents public usr local go bin opt bin library frameworks mono framework versions current commands applications dart dart sdk bin pub cache bin users filiph gsutil pub cache bin usr local bin depot tools users filiph rvm bin builtin copy exclude ds store exclude cvs exclude svn exclude git exclude hg exclude headers exclude privateheaders exclude modules exclude tbd resolve src symlinks users filiph dev hn app ios flutter flutter framework users filiph dev hn app build ios debug iphonesimulator runner app frameworks codesign users filiph dev hn app build ios debug iphonesimulator runner app frameworks app framework cd users filiph dev hn app ios export codesign allocate applications xcode app contents developer toolchains xcodedefault xctoolchain usr bin codesign allocate export path applications xcode app contents developer platforms iphonesimulator platform developer usr bin applications xcode app contents developer usr bin applications google cloud sdk bin usr local var pyenv shims users filiph nvm versions node bin users filiph rvm gems ruby bin users filiph rvm gems ruby global bin users filiph rvm rubies ruby bin users filiph dev flutter bin usr local git current bin usr local bin usr bin bin usr local sbin usr sbin sbin applications vmware fusion app contents public usr local go bin opt bin library frameworks mono framework versions current commands applications dart dart sdk bin pub cache bin users filiph gsutil pub cache bin usr local bin depot tools users filiph rvm bin signing identity usr bin codesign force sign preserve metadata identifier entitlements flags timestamp none users filiph dev hn app build ios debug iphonesimulator runner app frameworks app framework phasescriptexecution thin binary users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build script sh cd users filiph dev hn app ios export action build export ad hoc code signing allowed yes export alternate group eng export alternate mode u w go w a rx export alternate owner filiph export always embed swift standard libraries no export always search user paths no export always use separate headermaps no export apple internal developer dir appleinternal developer export apple internal dir appleinternal export apple internal documentation dir appleinternal documentation export apple internal library dir appleinternal library export apple internal tools appleinternal developer tools export application extension api only no export apply rules in copy files no export archs export archs standard export archs standard bit export archs standard bit export archs standard bit export archs standard including bit export archs universal iphone os export assetcatalog compiler appicon name appicon export available platforms appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator export bitcode generation mode marker export build active resources only yes export build components headers build export build dir users filiph dev hn app build ios export build root users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build products export build style export build variants normal export built products dir users filiph dev hn app build ios debug iphonesimulator export cache root var folders p c com apple developertools xcode export cchroot var folders p c com apple developertools xcode export chmod bin chmod export chown usr sbin chown export clang analyzer nonnull yes export clang cxx language standard gnu export clang cxx library libc export clang enable modules yes export clang enable objc arc yes export clang modules build session file users filiph library developer xcode deriveddata modulecache noindex session modulevalidation export clang warn block capture autoreleasing yes export clang warn bool conversion yes export clang warn comma yes export clang warn constant conversion yes export clang warn direct objc isa usage yes error export clang warn empty body yes export clang warn enum conversion yes export clang warn infinite recursion yes export clang warn int conversion yes export clang warn non literal null conversion yes export clang warn objc literal conversion yes export clang warn objc root class yes error export clang warn range loop analysis yes export clang warn strict prototypes yes export clang warn suspicious move yes export clang warn unreachable code yes export clang warn duplicate method match yes export class file dir users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build javaclasses export clean precomps yes export clone headers no export codesigning folder path users filiph dev hn app build ios debug iphonesimulator runner app export code signing allowed yes export code signing required yes export code sign context class xciphonesimulatorcodesigncontext export code sign identity export code sign inject base entitlements yes export color diagnostics no export combine hidpi images no export command mode legacy export compiler index store enable default export composite sdk dirs users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex compositesdks export compress png files yes export configuration debug export configuration build dir users filiph dev hn app build ios debug iphonesimulator export configuration temp dir users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator export contents folder path runner app export copying preserves hfs data no export copy headers run unifdef no export copy phase strip no export copy resources from static frameworks yes export corresponding device platform dir applications xcode app contents developer platforms iphoneos platform export corresponding device platform name iphoneos export corresponding device sdk dir applications xcode app contents developer platforms iphoneos platform developer sdks sdk export corresponding device sdk name export cp bin cp export create infoplist section in binary no export current arch export current variant normal export dead code stripping yes export debugging symbols yes export debug information format dwarf export default compiler com apple compilers llvm clang export default kext install path system library extensions export defines module no export deployment location no export deployment postprocessing no export deployment target clang env name iphoneos deployment target export deployment target clang flag name mios simulator version min export deployment target clang flag prefix mios simulator version min export deployment target setting name iphoneos deployment target export deployment target suggested values export derived files dir users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build derivedsources export derived file dir users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build derivedsources export derived sources dir users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build derivedsources export developer applications dir applications xcode app contents developer applications export developer bin dir applications xcode app contents developer usr bin export developer dir applications xcode app contents developer export developer frameworks dir applications xcode app contents developer library frameworks export developer frameworks dir quoted applications xcode app contents developer library frameworks export developer library dir applications xcode app contents developer library export developer sdk dir applications xcode app contents developer platforms macosx platform developer sdks export developer tools dir applications xcode app contents developer tools export developer usr dir applications xcode app contents developer usr export development language english export documentation folder path runner app english lproj documentation export do header scanning in jam no export dstroot tmp runner dst export dt toolchain dir applications xcode app contents developer toolchains xcodedefault xctoolchain export dwarf dsym file name runner app dsym export dwarf dsym file should accompany product no export dwarf dsym folder path users filiph dev hn app build ios debug iphonesimulator export effective platform name iphonesimulator export embedded content contains swift no export embed asset packs in product bundle no export enable bitcode no export enable default header search paths yes export enable header dependencies yes export enable on demand resources yes export enable strict objc msgsend yes export enable testability yes export entitlements required yes export excluded installsrc subdirectory patterns ds store svn git hg cvs export excluded recursive search path subdirectories nib lproj framework gch xcode xcassets ds store cvs svn git hg pbproj pbxproj export executables folder path runner app executables export executable folder path runner app export executable name runner export executable path runner app runner export expanded code sign identity export expanded code sign identity name export expanded provisioning profile export file list users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build objects linkfilelist export fixed files dir users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build fixedfiles export flutter application path users filiph dev hn app export flutter build dir build export flutter build mode debug export flutter framework dir users filiph dev flutter bin cache artifacts engine ios export flutter root users filiph dev flutter export flutter target lib main dart export frameworks folder path runner app frameworks export framework flag prefix framework export framework search paths users filiph dev hn app build ios debug iphonesimulator users filiph dev hn app build ios debug iphonesimulator url launcher users filiph dev hn app ios pods symlinks flutter ios users filiph dev hn app ios flutter export framework version a export full product name runner app export version export gcc c language standard export gcc dynamic no pic no export gcc inlines are private extern yes export gcc no common blocks yes export gcc objc legacy dispatch yes export gcc optimization level export gcc pfe file c dialects c objective c c objective c export gcc preprocessor definitions debug cocoapods cocoapods export gcc symbols private extern no export gcc treat warnings as errors no export gcc version com apple compilers llvm clang export gcc version identifier com apple compilers llvm clang export gcc warn to bit conversion yes export gcc warn about return type yes error export gcc warn undeclared selector yes export gcc warn uninitialized autos yes aggressive export gcc warn unused function yes export gcc warn unused variable yes export generate master object file no export generate pkginfo file yes export generate profiling code no export generate text based stubs no export gid export group eng export headermap includes flat entries for target being built yes export headermap includes framework entries for all product types yes export headermap includes nonpublic nonprivate headers yes export headermap includes project headers yes export headermap uses framework prefix entries yes export headermap uses vfs no export header search paths users filiph dev hn app build ios debug iphonesimulator include export hide bitcode symbols yes export home users filiph export iconv usr bin iconv export infoplist expand build settings yes export infoplist file runner info plist export infoplist output format binary export infoplist path runner app info plist export infoplist preprocess no export infostrings path runner app english lproj infoplist strings export inline private frameworks no export installhdrs copy phase no export installhdrs script phase no export install dir tmp runner dst applications export install group eng export install mode flag u w go w a rx export install owner filiph export install path applications export install root tmp runner dst export iphoneos deployment target export javac default flags j j xx newsize j dfile encoding export java app stub system library frameworks javavm framework resources macos javaapplicationstub export java archive classes yes export java archive type jar export java compiler usr bin javac export java folder path runner app java export java framework resources dirs resources export java jar flags cv export java source subdir export java use dependencies yes export java zip flags urg export jikes default flags e oldcso export keep private externs no export ld dependency info file users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build objects normal runner dependency info dat export ld generate map file no export ld map file path users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build runner linkmap normal txt export ld no pie no export ld quote linker arguments for compiler driver yes export ld runpath search paths executable path frameworks loader path frameworks executable path frameworks loader path frameworks executable path frameworks export legacy developer dir applications xcode app contents plugins ideplugin contents sharedsupport developer export lex lex export library flag nospace yes export library flag prefix l export library kext install path library extensions export library search paths users filiph dev hn app build ios debug iphonesimulator users filiph dev hn app ios flutter export linker displays mangled names no export link file list normal users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build objects normal runner linkfilelist export link with standard libraries yes export localizable content dir export localized resources folder path runner app english lproj export localized string macro names nslocalizedstring cflocalizedstring export local admin apps dir applications utilities export local apps dir applications export local developer dir library developer export local library dir library export locroot export locsymroot export mach o type mh execute export mac os x product build version export mac os x version actual export mac os x version major export mac os x version minor export metal library file base default export metal library output dir users filiph dev hn app build ios debug iphonesimulator runner app export module cache dir users filiph library developer xcode deriveddata modulecache noindex export mtl enable debug info yes export native arch export native arch bit export native arch bit export native arch actual export no common yes export objc abi version export object file dir users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build objects export object file dir normal users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build objects normal export objroot users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex export only active arch yes export os macos export osac usr bin osacompile export other cflags iquote users filiph dev hn app build ios debug iphonesimulator url launcher url launcher framework headers iquote users filiph dev hn app build ios debug iphonesimulator url launcher url launcher framework headers export other cplusplusflags iquote users filiph dev hn app build ios debug iphonesimulator url launcher url launcher framework headers iquote users filiph dev hn app build ios debug iphonesimulator url launcher url launcher framework headers export other ldflags framework flutter framework url launcher framework flutter framework url launcher export package type com apple package type wrapper application export pascal strings yes export path applications xcode app contents developer toolchains xcodedefault xctoolchain usr bin applications xcode app contents developer toolchains xcodedefault xctoolchain usr local bin applications xcode app contents developer toolchains xcodedefault xctoolchain usr libexec applications xcode app contents developer platforms iphonesimulator platform developer usr bin applications xcode app contents developer platforms iphonesimulator platform developer usr local bin applications xcode app contents developer platforms iphonesimulator platform usr bin applications xcode app contents developer platforms iphonesimulator platform usr local bin applications xcode app contents developer usr bin applications xcode app contents developer usr local bin applications xcode app contents developer tools applications google cloud sdk bin usr local var pyenv shims users filiph nvm versions node bin users filiph rvm gems ruby bin users filiph rvm gems ruby global bin users filiph rvm rubies ruby bin users filiph dev flutter bin usr local git current bin usr local bin usr bin bin usr local sbin usr sbin sbin applications vmware fusion app contents public usr local go bin opt bin library frameworks mono framework versions current commands applications dart dart sdk bin users filiph pub cache bin users filiph gsutil usr local bin depot tools users filiph rvm bin export path prefixes excluded from header dependencies usr include usr local include system library frameworks system library privateframeworks applications xcode app contents developer headers applications xcode app contents developer sdks applications xcode app contents developer platforms export pbdevelopmentplist path runner app pbdevelopment plist export pfe file c dialects objective c export pkginfo file path users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build pkginfo export pkginfo path runner app pkginfo export platform developer applications dir applications xcode app contents developer platforms iphonesimulator platform developer applications export platform developer bin dir applications xcode app contents developer platforms iphonesimulator platform developer usr bin export platform developer library dir applications xcode app contents plugins ideplugin contents sharedsupport developer library export platform developer sdk dir applications xcode app contents developer platforms iphonesimulator platform developer sdks export platform developer tools dir applications xcode app contents developer platforms iphonesimulator platform developer tools export platform developer usr dir applications xcode app contents developer platforms iphonesimulator platform developer usr export platform dir applications xcode app contents developer platforms iphonesimulator platform export platform display name ios simulator export platform name iphonesimulator export platform preferred arch export plist file output format binary export plugins folder path runner app plugins export pods build dir users filiph dev hn app build ios export pods configuration build dir users filiph dev hn app build ios debug iphonesimulator export pods podfile dir path users filiph dev hn app ios export pods root users filiph dev hn app ios pods export precomps include headers from built products dir yes export precomp destination dir users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build prefixheaders export preserve dead code inits and terms no export preview dart true export private headers folder path runner app privateheaders export product bundle identifier hn app flutter io hnapp export product module name runner export product name runner export product settings path users filiph dev hn app ios runner info plist export product type com apple product type application export profiling code no export project runner export project derived file dir users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build derivedsources export project dir users filiph dev hn app ios export project file path users filiph dev hn app ios runner xcodeproj export project name runner export project temp dir users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build export project temp root users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex export public headers folder path runner app headers export recursive search paths follow symlinks yes export remove cvs from resources yes export remove git from resources yes export remove headers from embedded bundles yes export remove hg from resources yes export remove svn from resources yes export rez collector dir users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build resourcemanagerresources export rez objects dir users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build resourcemanagerresources objects export rez search paths users filiph dev hn app build ios debug iphonesimulator export scan all source files for includes no export scripts folder path runner app scripts export script input file count export script output file count export script output stream file var folders p t flutter build log pipeauxxob pipe to stdout export sdkroot applications xcode app contents developer platforms iphonesimulator platform developer sdks sdk export sdk dir applications xcode app contents developer platforms iphonesimulator platform developer sdks sdk export sdk dir applications xcode app contents developer platforms iphonesimulator platform developer sdks sdk export sdk name export sdk names export sdk product build version export sdk version export sdk version actual export sdk version major export sdk version minor export sed usr bin sed export separate strip no export separate symbol edit no export set dir mode owner group yes export set file mode owner group no export shallow bundle yes export shared derived file dir users filiph dev hn app build ios debug iphonesimulator derivedsources export shared frameworks folder path runner app sharedframeworks export shared precomps dir users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex precompiledheaders export shared support folder path runner app sharedsupport export skip install no export source root users filiph dev hn app ios export srcroot users filiph dev hn app ios export strings file output encoding binary export strip bitcode from copied files no export strip installed product yes export strip style all export strip swift symbols yes export supported device families export supported platforms iphonesimulator iphoneos export supports text based api no export swift objc bridging header runner runner bridging header h export swift optimization level onone export swift platform target prefix ios export swift objc inference on export swift version export symroot users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build products export system admin apps dir applications utilities export system apps dir applications export system core services dir system library coreservices export system demos dir applications extras export system developer apps dir applications xcode app contents developer applications export system developer bin dir applications xcode app contents developer usr bin export system developer demos dir applications xcode app contents developer applications utilities built examples export system developer dir applications xcode app contents developer export system developer doc dir applications xcode app contents developer adc reference library export system developer graphics tools dir applications xcode app contents developer applications graphics tools export system developer java tools dir applications xcode app contents developer applications java tools export system developer performance tools dir applications xcode app contents developer applications performance tools export system developer releasenotes dir applications xcode app contents developer adc reference library releasenotes export system developer tools applications xcode app contents developer tools export system developer tools doc dir applications xcode app contents developer adc reference library documentation developertools export system developer tools releasenotes dir applications xcode app contents developer adc reference library releasenotes developertools export system developer usr dir applications xcode app contents developer usr export system developer utilities dir applications xcode app contents developer applications utilities export system documentation dir library documentation export system kext install path system library extensions export system library dir system library export tapi verify mode errorsonly export targeted device family export targetname runner export target build dir users filiph dev hn app build ios debug iphonesimulator export target device identifier dvtdevice dvtiosdevicesimulatorplaceholder iphonesimulator placeholder export target name runner export target temp dir users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build export temp dir users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build export temp files dir users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build export temp file dir users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build export temp root users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex export toolchains com apple dt toolchain xcodedefault export toolchain dir applications xcode app contents developer toolchains xcodedefault xctoolchain export treat missing baselines as test failures no export uid export unlocalized resources folder path runner app export unstripped product no export user filiph export user apps dir users filiph applications export user library dir users filiph library export use dynamic no pic yes export use headermap yes export use header symlinks no export validate product no export valid archs export verbose pbxcp no export verbose script logging yes export versionplist path runner app version plist export version info builder filiph export version info file runner vers c export version info string program runner project runner export wrapper extension app export wrapper name runner app export wrapper suffix app export wrap asset packs in separate directories no export xcode app support dir applications xcode app contents developer library xcode export xcode product build version export xcode version actual export xcode version major export xcode version minor export xpcservices folder path runner app xpcservices export yacc yacc export arch export variant normal bin sh c users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build script sh phasescriptexecution embed pods frameworks users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build script sh cd users filiph dev hn app ios bin sh c users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build script sh mkdir p users filiph dev hn app build ios debug iphonesimulator runner app frameworks rsync delete av filter p filter cvs filter svn filter git filter hg filter headers filter privateheaders filter modules users filiph dev hn app ios pods symlinks flutter ios flutter framework users filiph dev hn app build ios debug iphonesimulator runner app frameworks building file list done flutter framework flutter framework flutter flutter framework info plist flutter framework icudtl dat sent bytes received bytes bytes sec total size is speedup is stripped users filiph dev hn app build ios debug iphonesimulator runner app frameworks flutter framework flutter of architectures code signing users filiph dev hn app build ios debug iphonesimulator runner app frameworks flutter framework with identity usr bin codesign force sign preserve metadata identifier entitlements users filiph dev hn app build ios debug iphonesimulator runner app frameworks flutter framework rsync delete av filter p filter cvs filter svn filter git filter hg filter headers filter privateheaders filter modules users filiph dev hn app build ios debug iphonesimulator url launcher url launcher framework users filiph dev hn app build ios debug iphonesimulator runner app frameworks building file list done deleting url launcher framework codesignature coderesources deleting url launcher framework codesignature url launcher framework url launcher framework url launcher sent bytes received bytes bytes sec total size is speedup is code signing users filiph dev hn app build ios debug iphonesimulator runner app frameworks url launcher framework with identity usr bin codesign force sign preserve metadata identifier entitlements users filiph dev hn app build ios debug iphonesimulator runner app frameworks url launcher framework codesign users filiph dev hn app build ios debug iphonesimulator runner app frameworks flutter framework cd users filiph dev hn app ios export codesign allocate applications xcode app contents developer toolchains xcodedefault xctoolchain usr bin codesign allocate export path applications xcode app contents developer platforms iphonesimulator platform developer usr bin applications xcode app contents developer usr bin applications google cloud sdk bin usr local var pyenv shims users filiph nvm versions node bin users filiph rvm gems ruby bin users filiph rvm gems ruby global bin users filiph rvm rubies ruby bin users filiph dev flutter bin usr local git current bin usr local bin usr bin bin usr local sbin usr sbin sbin applications vmware fusion app contents public usr local go bin opt bin library frameworks mono framework versions current commands applications dart dart sdk bin pub cache bin users filiph gsutil pub cache bin usr local bin depot tools users filiph rvm bin signing identity usr bin codesign force sign preserve metadata identifier entitlements flags timestamp none users filiph dev hn app build ios debug iphonesimulator runner app frameworks flutter framework users filiph dev hn app build ios debug iphonesimulator runner app frameworks flutter framework replacing existing signature copyswiftlibs users filiph dev hn app build ios debug iphonesimulator runner app cd users filiph dev hn app ios export codesign allocate applications xcode app contents developer toolchains xcodedefault xctoolchain usr bin codesign allocate export developer dir applications xcode app contents developer export path applications xcode app contents developer platforms iphonesimulator platform developer usr bin applications xcode app contents developer usr bin applications google cloud sdk bin usr local var pyenv shims users filiph nvm versions node bin users filiph rvm gems ruby bin users filiph rvm gems ruby global bin users filiph rvm rubies ruby bin users filiph dev flutter bin usr local git current bin usr local bin usr bin bin usr local sbin usr sbin sbin applications vmware fusion app contents public usr local go bin opt bin library frameworks mono framework versions current commands applications dart dart sdk bin pub cache bin users filiph gsutil pub cache bin usr local bin depot tools users filiph rvm bin export sdkroot applications xcode app contents developer platforms iphonesimulator platform developer sdks sdk builtin swiftstdlibtool copy verbose sign scan executable users filiph dev hn app build ios debug iphonesimulator runner app runner scan folder users filiph dev hn app build ios debug iphonesimulator runner app frameworks scan folder users filiph dev hn app build ios debug iphonesimulator runner app plugins scan folder users filiph dev hn app ios flutter flutter framework scan folder users filiph dev hn app ios flutter app framework scan folder users filiph dev hn app build ios debug iphonesimulator pods runner framework platform iphonesimulator toolchain applications xcode app contents developer toolchains xcodedefault xctoolchain destination users filiph dev hn app build ios debug iphonesimulator runner app frameworks strip bitcode resource destination users filiph dev hn app build ios debug iphonesimulator runner app resource library libswiftremotemirror dylib requested swift abi version based on scanned binaries libswiftcore dylib is up to date at users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftcore dylib libswiftcoreaudio dylib is up to date at users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftcoreaudio dylib libswiftcorefoundation dylib is up to date at users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftcorefoundation dylib libswiftcoregraphics dylib is up to date at users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftcoregraphics dylib libswiftcoreimage dylib is up to date at users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftcoreimage dylib libswiftcoremedia dylib is up to date at users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftcoremedia dylib libswiftdarwin dylib is up to date at users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftdarwin dylib libswiftdispatch dylib is up to date at users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftdispatch dylib libswiftfoundation dylib is up to date at users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftfoundation dylib libswiftmetal dylib is up to date at users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftmetal dylib libswiftobjectivec dylib is up to date at users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftobjectivec dylib libswiftquartzcore dylib is up to date at users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftquartzcore dylib libswiftuikit dylib is up to date at users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftuikit dylib libswiftos dylib is up to date at users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftos dylib libswiftremotemirror dylib is up to date at users filiph dev hn app build ios debug iphonesimulator runner app libswiftremotemirror dylib probing signature of users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftcore dylib usr bin codesign r display users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftcore dylib codesigning users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftcore dylib usr bin codesign force sign verbose users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftcore dylib probing signature of users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftcore dylib usr bin codesign r display users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftcore dylib code signature of users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftcore dylib is unchanged keeping original probing signature of users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftfoundation dylib probing signature of users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftcoregraphics dylib probing signature of users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftmetal dylib probing signature of users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftcoreimage dylib probing signature of users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftcoreaudio dylibprobing signature of users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftdarwin dylib usr bin codesign r display users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftcoregraphics dylib usr bin codesign r display users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftfoundation dylib usr bin codesign r display users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftcoreimage dylib usr bin codesign r display users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftmetal dylib usr bin codesign r display users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftdarwin dylib usr bin codesign r display users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftcoreaudio dylib probing signature of users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftdispatch dylib usr bin codesign r display users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftdispatch dylib probing signature of users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftcorefoundation dylib usr bin codesign r display users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftcorefoundation dylib codesigning users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftdarwin dylib usr bin codesign force sign verbose users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftdarwin dylib codesigning users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftcoreaudio dylib codesigning users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftcoregraphics dylib usr bin codesign force sign verbose users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftcoreaudio dylib usr bin codesign force sign verbose users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftcoregraphics dylib codesigning users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftmetal dylib codesigning users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftcoreimage dylib usr bin codesign force sign verbose users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftmetal dylib codesigning users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftcorefoundation dylib usr bin codesign force sign verbose users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftcoreimage dylib usr bin codesign force sign verbose users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftcorefoundation dylib codesigning users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftdispatch dylib usr bin codesign force sign verbose users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftdispatch dylib codesigning users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftfoundation dylib usr bin codesign force sign verbose users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftfoundation dylib probing signature of users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftcorefoundation dylib usr bin codesign r display users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftcorefoundation dylib probing signature of users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftdarwin dylib probing signature of users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftcoreaudio dylib usr bin codesign r display users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftdarwin dylib usr bin codesign r display users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftcoreaudio dylib probing signature of users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftmetal dylib usr bin codesign r display users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftmetal dylib probing signature of users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftcoreimage dylib usr bin codesign r display users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftcoreimage dylib code signature of users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftcorefoundation dylib is unchanged keeping original probing signature of users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftcoremedia dylib usr bin codesign r display users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftcoremedia dylib probing signature of users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftdispatch dylib usr bin codesign r display users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftdispatch dylib probing signature of users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftcoregraphics dylib usr bin codesign r display users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftcoregraphics dylib code signature of users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftdarwin dylib is unchanged keeping original code signature of users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftcoreaudio dylib is unchanged keeping original probing signature of users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftobjectivec dylib probing signature of users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftquartzcore dylib usr bin codesign r display users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftobjectivec dylib usr bin codesign r display users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftquartzcore dylib code signature of users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftmetal dylib is unchanged keeping original probing signature of users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftuikit dylib usr bin codesign r display users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftuikit dylib code signature of users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftcoreimage dylib is unchanged keeping original probing signature of users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftos dylib usr bin codesign r display users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftos dylib codesigning users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftcoremedia dylib usr bin codesign force sign verbose users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftcoremedia dylib code signature of users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftdispatch dylib is unchanged keeping original code signature of users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftcoregraphics dylib is unchanged keeping original codesigning users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftquartzcore dylib codesigning users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftobjectivec dylib usr bin codesign force sign verbose users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftquartzcore dylib usr bin codesign force sign verbose users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftobjectivec dylib codesigning users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftuikit dylib usr bin codesign force sign verbose users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftuikit dylib codesigning users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftos dylib usr bin codesign force sign verbose users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftos dylib probing signature of users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftcoremedia dylib usr bin codesign r display users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftcoremedia dylib probing signature of users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftobjectivec dylib usr bin codesign r display users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftobjectivec dylib probing signature of users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftquartzcore dylib usr bin codesign r display users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftquartzcore dylib probing signature of users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftos dylib usr bin codesign r display users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftos dylib probing signature of users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftuikit dylib code signature of users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftcoremedia dylib is unchanged keeping original usr bin codesign r display users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftuikit dylib code signature of users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftobjectivec dylib is unchanged keeping original code signature of users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftquartzcore dylib is unchanged keeping original code signature of users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftos dylib is unchanged keeping original code signature of users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftuikit dylib is unchanged keeping original probing signature of users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftfoundation dylib usr bin codesign r display users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftfoundation dylib code signature of users filiph dev hn app build ios debug iphonesimulator runner app frameworks libswiftfoundation dylib is unchanged keeping original touch users filiph dev hn app build ios debug iphonesimulator runner app cd users filiph dev hn app ios export path applications xcode app contents developer platforms iphonesimulator platform developer usr bin applications xcode app contents developer usr bin applications google cloud sdk bin usr local var pyenv shims users filiph nvm versions node bin users filiph rvm gems ruby bin users filiph rvm gems ruby global bin users filiph rvm rubies ruby bin users filiph dev flutter bin usr local git current bin usr local bin usr bin bin usr local sbin usr sbin sbin applications vmware fusion app contents public usr local go bin opt bin library frameworks mono framework versions current commands applications dart dart sdk bin pub cache bin users filiph gsutil pub cache bin usr local bin depot tools users filiph rvm bin usr bin touch c users filiph dev hn app build ios debug iphonesimulator runner app codesign users filiph dev hn app build ios debug iphonesimulator runner app cd users filiph dev hn app ios export codesign allocate applications xcode app contents developer toolchains xcodedefault xctoolchain usr bin codesign allocate export path applications xcode app contents developer platforms iphonesimulator platform developer usr bin applications xcode app contents developer usr bin applications google cloud sdk bin usr local var pyenv shims users filiph nvm versions node bin users filiph rvm gems ruby bin users filiph rvm gems ruby global bin users filiph rvm rubies ruby bin users filiph dev flutter bin usr local git current bin usr local bin usr bin bin usr local sbin usr sbin sbin applications vmware fusion app contents public usr local go bin opt bin library frameworks mono framework versions current commands applications dart dart sdk bin pub cache bin users filiph gsutil pub cache bin usr local bin depot tools users filiph rvm bin signing identity usr bin codesign force sign entitlements users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build runner app xcent timestamp none users filiph dev hn app build ios debug iphonesimulator runner app build succeeded xcode build done usr bin env xcrun xcodebuild configuration debug verbose script logging yes workspace runner xcworkspace scheme runner build dir users filiph dev hn app build ios sdk iphonesimulator arch script output stream file var folders p t flutter build log pipeauxxob pipe to stdout showbuildsettings exit code from usr bin env xcrun xcodebuild configuration debug verbose script logging yes workspace runner xcworkspace scheme runner build dir users filiph dev hn app build ios sdk iphonesimulator arch script output stream file var folders p t flutter build log pipeauxxob pipe to stdout showbuildsettings build settings from command line archs build dir users filiph dev hn app build ios script output stream file var folders p t flutter build log pipeauxxob pipe to stdout sdkroot verbose script logging yes build settings for action build and target runner action build ad hoc code signing allowed yes alternate group eng alternate mode u w go w a rx alternate owner filiph always embed swift standard libraries no always search user paths no always use separate headermaps no apple internal developer dir appleinternal developer apple internal dir appleinternal apple internal documentation dir appleinternal documentation apple internal library dir appleinternal library apple internal tools appleinternal developer tools application extension api only no apply rules in copy files no archs archs standard archs standard bit archs standard bit archs standard bit archs standard including bit archs universal iphone os assetcatalog compiler appicon name appicon available platforms appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator bitcode generation mode marker build active resources only no build components headers build build dir users filiph dev hn app build ios build root users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build products build style build variants normal built products dir users filiph dev hn app build ios debug iphonesimulator cache root var folders p c com apple developertools xcode cchroot var folders p c com apple developertools xcode chmod bin chmod chown usr sbin chown clang analyzer nonnull yes clang cxx language standard gnu clang cxx library libc clang enable modules yes clang enable objc arc yes clang warn block capture autoreleasing yes clang warn bool conversion yes clang warn comma yes clang warn constant conversion yes clang warn direct objc isa usage yes error clang warn empty body yes clang warn enum conversion yes clang warn infinite recursion yes clang warn int conversion yes clang warn non literal null conversion yes clang warn objc literal conversion yes clang warn objc root class yes error clang warn range loop analysis yes clang warn strict prototypes yes clang warn suspicious move yes clang warn unreachable code yes clang warn duplicate method match yes class file dir users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build javaclasses clean precomps yes clone headers no codesigning folder path users filiph dev hn app build ios debug iphonesimulator runner app code signing allowed yes code signing required yes code sign context class xciphonesimulatorcodesigncontext code sign identity code sign inject base entitlements yes color diagnostics no combine hidpi images no compiler index store enable default composite sdk dirs users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex compositesdks compress png files yes configuration debug configuration build dir users filiph dev hn app build ios debug iphonesimulator configuration temp dir users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator contents folder path runner app copying preserves hfs data no copy headers run unifdef no copy phase strip no copy resources from static frameworks yes corresponding device platform dir applications xcode app contents developer platforms iphoneos platform corresponding device platform name iphoneos corresponding device sdk dir applications xcode app contents developer platforms iphoneos platform developer sdks sdk corresponding device sdk name cp bin cp create infoplist section in binary no current arch current variant normal dead code stripping yes debugging symbols yes debug information format dwarf default compiler com apple compilers llvm clang default kext install path system library extensions defines module no deployment location no deployment postprocessing no deployment target clang env name iphoneos deployment target deployment target clang flag name mios simulator version min deployment target clang flag prefix mios simulator version min deployment target setting name iphoneos deployment target deployment target suggested values derived files dir users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build derivedsources derived file dir users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build derivedsources derived sources dir users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build derivedsources developer applications dir applications xcode app contents developer applications developer bin dir applications xcode app contents developer usr bin developer dir applications xcode app contents developer developer frameworks dir applications xcode app contents developer library frameworks developer frameworks dir quoted applications xcode app contents developer library frameworks developer library dir applications xcode app contents developer library developer sdk dir applications xcode app contents developer platforms macosx platform developer sdks developer tools dir applications xcode app contents developer tools developer usr dir applications xcode app contents developer usr development language english documentation folder path runner app english lproj documentation do header scanning in jam no dstroot tmp runner dst dt toolchain dir applications xcode app contents developer toolchains xcodedefault xctoolchain dwarf dsym file name runner app dsym dwarf dsym file should accompany product no dwarf dsym folder path users filiph dev hn app build ios debug iphonesimulator effective platform name iphonesimulator embedded content contains swift no embed asset packs in product bundle no enable bitcode no enable default header search paths yes enable header dependencies yes enable on demand resources yes enable strict objc msgsend yes enable testability yes entitlements required yes excluded installsrc subdirectory patterns ds store svn git hg cvs excluded recursive search path subdirectories nib lproj framework gch xcode xcassets ds store cvs svn git hg pbproj pbxproj executables folder path runner app executables executable folder path runner app executable name runner executable path runner app runner expanded code sign identity expanded code sign identity name expanded provisioning profile file list users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build objects linkfilelist fixed files dir users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build fixedfiles flutter application path users filiph dev hn app flutter build dir build flutter build mode debug flutter framework dir users filiph dev flutter bin cache artifacts engine ios flutter root users filiph dev flutter flutter target lib main dart frameworks folder path runner app frameworks framework flag prefix framework framework search paths users filiph dev hn app build ios debug iphonesimulator url launcher users filiph dev hn app ios pods symlinks flutter ios users filiph dev hn app build ios debug iphonesimulator url launcher users filiph dev hn app ios pods symlinks flutter ios users filiph dev hn app ios flutter framework version a full product name runner app version gcc c language standard gcc dynamic no pic no gcc inlines are private extern yes gcc no common blocks yes gcc objc legacy dispatch yes gcc optimization level gcc pfe file c dialects c objective c c objective c gcc preprocessor definitions debug cocoapods cocoapods gcc symbols private extern no gcc treat warnings as errors no gcc version com apple compilers llvm clang gcc version identifier com apple compilers llvm clang gcc warn to bit conversion yes gcc warn about return type yes error gcc warn undeclared selector yes gcc warn uninitialized autos yes aggressive gcc warn unused function yes gcc warn unused variable yes generate master object file no generate pkginfo file yes generate profiling code no generate text based stubs no gid group eng headermap includes flat entries for target being built yes headermap includes framework entries for all product types yes headermap includes nonpublic nonprivate headers yes headermap includes project headers yes headermap uses framework prefix entries yes headermap uses vfs no hide bitcode symbols yes home users filiph iconv usr bin iconv infoplist expand build settings yes infoplist file runner info plist infoplist output format binary infoplist path runner app info plist infoplist preprocess no infostrings path runner app english lproj infoplist strings inline private frameworks no installhdrs copy phase no installhdrs script phase no install dir tmp runner dst applications install group eng install mode flag u w go w a rx install owner filiph install path applications install root tmp runner dst iphoneos deployment target javac default flags j j xx newsize j dfile encoding java app stub system library frameworks javavm framework resources macos javaapplicationstub java archive classes yes java archive type jar java compiler usr bin javac java folder path runner app java java framework resources dirs resources java jar flags cv java source subdir java use dependencies yes java zip flags urg jikes default flags e oldcso keep private externs no ld dependency info file users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build objects normal runner dependency info dat ld generate map file no ld map file path users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build runner linkmap normal txt ld no pie no ld quote linker arguments for compiler driver yes ld runpath search paths executable path frameworks loader path frameworks executable path frameworks loader path frameworks executable path frameworks legacy developer dir applications xcode app contents plugins ideplugin contents sharedsupport developer lex lex library flag nospace yes library flag prefix l library kext install path library extensions library search paths users filiph dev hn app ios flutter linker displays mangled names no link file list normal link with standard libraries yes localizable content dir localized resources folder path runner app english lproj localized string macro names nslocalizedstring cflocalizedstring local admin apps dir applications utilities local apps dir applications local developer dir library developer local library dir library locroot locsymroot mach o type mh execute mac os x product build version mac os x version actual mac os x version major mac os x version minor metal library file base default metal library output dir users filiph dev hn app build ios debug iphonesimulator runner app module cache dir users filiph library developer xcode deriveddata modulecache noindex mtl enable debug info yes native arch native arch bit native arch bit native arch actual no common yes objc abi version object file dir users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build objects object file dir normal users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build objects normal objroot users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex only active arch yes os macos osac usr bin osacompile other cflags iquote users filiph dev hn app build ios debug iphonesimulator url launcher url launcher framework headers iquote users filiph dev hn app build ios debug iphonesimulator url launcher url launcher framework headers other cplusplusflags iquote users filiph dev hn app build ios debug iphonesimulator url launcher url launcher framework headers iquote users filiph dev hn app build ios debug iphonesimulator url launcher url launcher framework headers other ldflags framework flutter framework url launcher framework flutter framework url launcher package type com apple package type wrapper application pascal strings yes path applications xcode app contents developer usr bin applications google cloud sdk bin usr local var pyenv shims users filiph nvm versions node bin users filiph rvm gems ruby bin users filiph rvm gems ruby global bin users filiph rvm rubies ruby bin users filiph dev flutter bin usr local git current bin usr local bin usr bin bin usr local sbin usr sbin sbin applications vmware fusion app contents public usr local go bin opt bin library frameworks mono framework versions current commands applications dart dart sdk bin pub cache bin users filiph gsutil pub cache bin usr local bin depot tools users filiph rvm bin path prefixes excluded from header dependencies usr include usr local include system library frameworks system library privateframeworks applications xcode app contents developer headers applications xcode app contents developer sdks applications xcode app contents developer platforms pbdevelopmentplist path runner app pbdevelopment plist pfe file c dialects objective c pkginfo file path users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build pkginfo pkginfo path runner app pkginfo platform developer applications dir applications xcode app contents developer platforms iphonesimulator platform developer applications platform developer bin dir applications xcode app contents developer platforms iphonesimulator platform developer usr bin platform developer library dir applications xcode app contents plugins ideplugin contents sharedsupport developer library platform developer sdk dir applications xcode app contents developer platforms iphonesimulator platform developer sdks platform developer tools dir applications xcode app contents developer platforms iphonesimulator platform developer tools platform developer usr dir applications xcode app contents developer platforms iphonesimulator platform developer usr platform dir applications xcode app contents developer platforms iphonesimulator platform platform display name ios simulator platform name iphonesimulator platform preferred arch plist file output format binary plugins folder path runner app plugins pods build dir users filiph dev hn app build ios pods configuration build dir users filiph dev hn app build ios debug iphonesimulator pods podfile dir path users filiph dev hn app ios pods root users filiph dev hn app ios pods precomps include headers from built products dir yes precomp destination dir users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build prefixheaders preserve dead code inits and terms no preview dart true private headers folder path runner app privateheaders product bundle identifier hn app flutter io hnapp product module name runner product name runner product settings path users filiph dev hn app ios runner info plist product type com apple product type application profiling code no project runner project derived file dir users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build derivedsources project dir users filiph dev hn app ios project file path users filiph dev hn app ios runner xcodeproj project name runner project temp dir users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build project temp root users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex public headers folder path runner app headers recursive search paths follow symlinks yes remove cvs from resources yes remove git from resources yes remove headers from embedded bundles yes remove hg from resources yes remove svn from resources yes rez collector dir users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build resourcemanagerresources rez objects dir users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build resourcemanagerresources objects scan all source files for includes no scripts folder path runner app scripts script output stream file var folders p t flutter build log pipeauxxob pipe to stdout sdkroot applications xcode app contents developer platforms iphonesimulator platform developer sdks sdk sdk dir applications xcode app contents developer platforms iphonesimulator platform developer sdks sdk sdk dir applications xcode app contents developer platforms iphonesimulator platform developer sdks sdk sdk name sdk names sdk product build version sdk version sdk version actual sdk version major sdk version minor sed usr bin sed separate strip no separate symbol edit no set dir mode owner group yes set file mode owner group no shallow bundle yes shared derived file dir users filiph dev hn app build ios debug iphonesimulator derivedsources shared frameworks folder path runner app sharedframeworks shared precomps dir users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex precompiledheaders shared support folder path runner app sharedsupport skip install no source root users filiph dev hn app ios srcroot users filiph dev hn app ios strings file output encoding binary strip bitcode from copied files no strip installed product yes strip style all strip swift symbols yes supported device families supported platforms iphonesimulator iphoneos supports text based api no swift objc bridging header runner runner bridging header h swift optimization level onone swift platform target prefix ios swift objc inference on swift version symroot users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build products system admin apps dir applications utilities system apps dir applications system core services dir system library coreservices system demos dir applications extras system developer apps dir applications xcode app contents developer applications system developer bin dir applications xcode app contents developer usr bin system developer demos dir applications xcode app contents developer applications utilities built examples system developer dir applications xcode app contents developer system developer doc dir applications xcode app contents developer adc reference library system developer graphics tools dir applications xcode app contents developer applications graphics tools system developer java tools dir applications xcode app contents developer applications java tools system developer performance tools dir applications xcode app contents developer applications performance tools system developer releasenotes dir applications xcode app contents developer adc reference library releasenotes system developer tools applications xcode app contents developer tools system developer tools doc dir applications xcode app contents developer adc reference library documentation developertools system developer tools releasenotes dir applications xcode app contents developer adc reference library releasenotes developertools system developer usr dir applications xcode app contents developer usr system developer utilities dir applications xcode app contents developer applications utilities system documentation dir library documentation system kext install path system library extensions system library dir system library tapi verify mode errorsonly targeted device family targetname runner target build dir users filiph dev hn app build ios debug iphonesimulator target name runner target temp dir users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build temp dir users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build temp files dir users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build temp file dir users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex runner build debug iphonesimulator runner build temp root users filiph library developer xcode deriveddata runner dhyyuvkuzqyczeahzyyuxbdvdjku build intermediates noindex toolchain dir applications xcode app contents developer toolchains xcodedefault xctoolchain treat missing baselines as test failures no uid unlocalized resources folder path runner app unstripped product no user filiph user apps dir users filiph applications user library dir users filiph library use dynamic no pic yes use headermap yes use header symlinks no validate product no valid archs verbose pbxcp no verbose script logging yes versionplist path runner app version plist version info builder filiph version info file runner vers c version info string program runner project runner wrapper extension app wrapper name runner app wrapper suffix app wrap asset packs in separate directories no xcode app support dir applications xcode app contents developer library xcode xcode product build version xcode version actual xcode version major xcode version minor xpcservices folder path runner app xpcservices yacc yacc arch variant normal usr bin xcrun simctl install users filiph dev hn app build ios iphonesimulator runner app usr bin xcrun simctl launch hn app flutter io hnapp enable dart profiling enable checked mode observatory port hn app flutter io hnapp waiting for observatory port to be available localhost runner runner created activity id description loading preferences from system cfprefsd for search list localhost runner runner created activity id description loading preferences from system cfprefsd for search list localhost runner runner created activity id description loading preferences from system cfprefsd for search list localhost runner libaccessibility dylib retrieving resting unlock localhost runner uikit you ve implemented but you still need to add fetch to the list of your supported uibackgroundmodes in your info plist localhost runner uikit you ve implemented but you still need to add remote notification to the list of your supported uibackgroundmodes in your info plist localhost runner flutter flutter observatory listening on observatory url on device connecting to service protocol successfully connected to service protocol getvm getisolate isolateid isolates flutter listviews devfs creating new filesystem on the device null createdevfs fsname hn app devfs created new filesystem on the device file users filiph library developer coresimulator devices data containers data application tmp hn hn app updating assets syncing files to device iphone x devfs starting sync from localdirectory users filiph dev hn app scanning project files scanning package files scanning asset files scanning for deleted files compiling dart to kernel with updated files users filiph dev flutter bin cache dart sdk bin dart users filiph dev flutter bin cache artifacts engine darwin frontend server dart snapshot sdk root users filiph dev flutter bin cache artifacts engine common flutter patched sdk incremental strong target flutter output dill build app dill packages users filiph dev hn app packages filesystem scheme org dartlang root updating files devfs sync finished synced flutter listviews connected to flutterview ๐ฅ to hot reload your app on the fly press r to restart the app entirely press r an observatory debugger and profiler on iphone x is available at for a more detailed help message press h to quit press q flutter analyze analyzing hn app no issues found ran in flutter doctor v flutter channel beta on mac os x locale en us โข flutter version at users filiph dev flutter โข framework revision weeks ago โข engine revision โข dart version dev flutter android toolchain develop for android devices android sdk โข android sdk at users filiph library android sdk โข android ndk location not configured optional useful for native profiling support โข platform android build tools โข java binary at applications android studio app contents jre jdk contents home bin java โข java version openjdk runtime environment build release โข all android licenses accepted ios toolchain develop for ios devices xcode โข xcode at applications xcode app contents developer โข xcode build version โข ios deploy โข cocoapods version android studio version โข android studio at applications android studio app contents โข flutter plugin version โข dart plugin version โข java version openjdk runtime environment build release intellij idea community edition version โข intellij at applications intellij idea ce app โ flutter plugin not installed this adds flutter specific functionality โ dart plugin not installed this adds dart specific functionality โข for information about installing plugins see vs code version โข vs code at applications visual studio code app contents โข dart code extension version connected devices available โข iphone x โข โข ios โข ios simulator doctor found issues in category | 1 |
188,578 | 14,447,513,142 | IssuesEvent | 2020-12-08 03:58:54 | kalexmills/github-vet-tests-dec2020 | https://api.github.com/repos/kalexmills/github-vet-tests-dec2020 | closed | BinaryTreeNode/KDS: vendor/k8s.io/apiserver/pkg/endpoints/handlers/responsewriters/status_test.go; 8 LoC | fresh test tiny vendored |
Found a possible issue in [BinaryTreeNode/KDS](https://www.github.com/BinaryTreeNode/KDS) at [vendor/k8s.io/apiserver/pkg/endpoints/handlers/responsewriters/status_test.go](https://github.com/BinaryTreeNode/KDS/blob/6220475814b42733c86ac0005e8548bb9a481c75/vendor/k8s.io/apiserver/pkg/endpoints/handlers/responsewriters/status_test.go#L66-L73)
Below is the message reported by the analyzer for this snippet of code. Beware that the analyzer only reports the first
issue it finds, so please do not limit your consideration to the contents of the below message.
> function call which takes a reference to v at line 70 may start a goroutine
[Click here to see the code in its original context.](https://github.com/BinaryTreeNode/KDS/blob/6220475814b42733c86ac0005e8548bb9a481c75/vendor/k8s.io/apiserver/pkg/endpoints/handlers/responsewriters/status_test.go#L66-L73)
<details>
<summary>Click here to show the 8 line(s) of Go which triggered the analyzer.</summary>
```go
for k, v := range cases {
actual := ErrorToAPIStatus(k)
v.APIVersion = "v1"
v.Kind = "Status"
if !reflect.DeepEqual(actual, &v) {
t.Errorf("%s: Expected %#v, Got %#v", k, v, actual)
}
}
```
</details>
Leave a reaction on this issue to contribute to the project by classifying this instance as a **Bug** :-1:, **Mitigated** :+1:, or **Desirable Behavior** :rocket:
See the descriptions of the classifications [here](https://github.com/github-vet/rangeclosure-findings#how-can-i-help) for more information.
commit ID: 6220475814b42733c86ac0005e8548bb9a481c75
| 1.0 | BinaryTreeNode/KDS: vendor/k8s.io/apiserver/pkg/endpoints/handlers/responsewriters/status_test.go; 8 LoC -
Found a possible issue in [BinaryTreeNode/KDS](https://www.github.com/BinaryTreeNode/KDS) at [vendor/k8s.io/apiserver/pkg/endpoints/handlers/responsewriters/status_test.go](https://github.com/BinaryTreeNode/KDS/blob/6220475814b42733c86ac0005e8548bb9a481c75/vendor/k8s.io/apiserver/pkg/endpoints/handlers/responsewriters/status_test.go#L66-L73)
Below is the message reported by the analyzer for this snippet of code. Beware that the analyzer only reports the first
issue it finds, so please do not limit your consideration to the contents of the below message.
> function call which takes a reference to v at line 70 may start a goroutine
[Click here to see the code in its original context.](https://github.com/BinaryTreeNode/KDS/blob/6220475814b42733c86ac0005e8548bb9a481c75/vendor/k8s.io/apiserver/pkg/endpoints/handlers/responsewriters/status_test.go#L66-L73)
<details>
<summary>Click here to show the 8 line(s) of Go which triggered the analyzer.</summary>
```go
for k, v := range cases {
actual := ErrorToAPIStatus(k)
v.APIVersion = "v1"
v.Kind = "Status"
if !reflect.DeepEqual(actual, &v) {
t.Errorf("%s: Expected %#v, Got %#v", k, v, actual)
}
}
```
</details>
Leave a reaction on this issue to contribute to the project by classifying this instance as a **Bug** :-1:, **Mitigated** :+1:, or **Desirable Behavior** :rocket:
See the descriptions of the classifications [here](https://github.com/github-vet/rangeclosure-findings#how-can-i-help) for more information.
commit ID: 6220475814b42733c86ac0005e8548bb9a481c75
| test | binarytreenode kds vendor io apiserver pkg endpoints handlers responsewriters status test go loc found a possible issue in at below is the message reported by the analyzer for this snippet of code beware that the analyzer only reports the first issue it finds so please do not limit your consideration to the contents of the below message function call which takes a reference to v at line may start a goroutine click here to show the line s of go which triggered the analyzer go for k v range cases actual errortoapistatus k v apiversion v kind status if reflect deepequal actual v t errorf s expected v got v k v actual leave a reaction on this issue to contribute to the project by classifying this instance as a bug mitigated or desirable behavior rocket see the descriptions of the classifications for more information commit id | 1 |
376,720 | 26,213,960,825 | IssuesEvent | 2023-01-04 09:24:00 | DoubleML/doubleml-docs | https://api.github.com/repos/DoubleML/doubleml-docs | opened | Add short sections on export of ML models to user guide and brief examples to gallery | documentation | ### Description of the issue or change proposal
We should update our user guide by adding brief demos and explanatations on
- [ ] export of ML models & predictions โก๏ธ [Learners chapter](https://docs.doubleml.org/dev/guide/learners.html); see https://github.com/DoubleML/doubleml-for-py/pull/159 & https://github.com/DoubleML/doubleml-for-r/pull/169 โ https://github.com/DoubleML/doubleml-for-py/pull/91 & https://github.com/DoubleML/doubleml-for-r/pull/74
- [ ] clustered standard errors โก๏ธ [Inference section](https://docs.doubleml.org/dev/guide/se_confint.html) , see https://github.com/DoubleML/doubleml-for-py/pull/116 & https://github.com/DoubleML/doubleml-for-r/pull/119
### Comments, context or references
_No response_ | 1.0 | Add short sections on export of ML models to user guide and brief examples to gallery - ### Description of the issue or change proposal
We should update our user guide by adding brief demos and explanatations on
- [ ] export of ML models & predictions โก๏ธ [Learners chapter](https://docs.doubleml.org/dev/guide/learners.html); see https://github.com/DoubleML/doubleml-for-py/pull/159 & https://github.com/DoubleML/doubleml-for-r/pull/169 โ https://github.com/DoubleML/doubleml-for-py/pull/91 & https://github.com/DoubleML/doubleml-for-r/pull/74
- [ ] clustered standard errors โก๏ธ [Inference section](https://docs.doubleml.org/dev/guide/se_confint.html) , see https://github.com/DoubleML/doubleml-for-py/pull/116 & https://github.com/DoubleML/doubleml-for-r/pull/119
### Comments, context or references
_No response_ | non_test | add short sections on export of ml models to user guide and brief examples to gallery description of the issue or change proposal we should update our user guide by adding brief demos and explanatations on export of ml models predictions โก๏ธ see โ clustered standard errors โก๏ธ see comments context or references no response | 0 |
217,142 | 16,844,760,089 | IssuesEvent | 2021-06-19 08:28:19 | brave/brave-browser | https://api.github.com/repos/brave/brave-browser | closed | Device frame not visible when activated in developer tools | QA/Test-Plan-Specified QA/Yes bug feature/dev-tools priority/P4 | ## Description
The device frame in developer tools not visible when activated.
## Steps to Reproduce
1. Visit any website.
2. Open developer tools and toggle device toolbar.
3. Select device such as iPhone 6/7/8.
4. Open dropdown and select show device frame.
## Actual result:

## Expected result:
There should be a device mockup/image around the viewport.
## Reproduces how often:
Every time.
## Brave version (brave://version)
Brave | 1.2.41 Chromium: 79.0.3945.88ย (Official Build)ย (64-bit)
-- | --
OS | macOS Version 10.15.2 (Build 19C57)
## Version/Channel Information:
- Can you reproduce this issue with the current release? Yes
- Can you reproduce this issue with the beta channel? N/A
- Can you reproduce this issue with the dev channel? N/A
- Can you reproduce this issue with the nightly channel? N/A
## Other Additional Information:
N/A
## Miscellaneous Information:
N/A
| 1.0 | Device frame not visible when activated in developer tools - ## Description
The device frame in developer tools not visible when activated.
## Steps to Reproduce
1. Visit any website.
2. Open developer tools and toggle device toolbar.
3. Select device such as iPhone 6/7/8.
4. Open dropdown and select show device frame.
## Actual result:

## Expected result:
There should be a device mockup/image around the viewport.
## Reproduces how often:
Every time.
## Brave version (brave://version)
Brave | 1.2.41 Chromium: 79.0.3945.88ย (Official Build)ย (64-bit)
-- | --
OS | macOS Version 10.15.2 (Build 19C57)
## Version/Channel Information:
- Can you reproduce this issue with the current release? Yes
- Can you reproduce this issue with the beta channel? N/A
- Can you reproduce this issue with the dev channel? N/A
- Can you reproduce this issue with the nightly channel? N/A
## Other Additional Information:
N/A
## Miscellaneous Information:
N/A
| test | device frame not visible when activated in developer tools description the device frame in developer tools not visible when activated steps to reproduce visit any website open developer tools and toggle device toolbar select device such as iphone open dropdown and select show device frame actual result expected result there should be a device mockup image around the viewport reproduces how often every time brave version brave version brave chromium ย official build ย bit os macos version build version channel information can you reproduce this issue with the current release yes can you reproduce this issue with the beta channel n a can you reproduce this issue with the dev channel n a can you reproduce this issue with the nightly channel n a other additional information n a miscellaneous information n a | 1 |
198,253 | 14,970,125,023 | IssuesEvent | 2021-01-27 19:08:54 | elastic/kibana | https://api.github.com/repos/elastic/kibana | closed | Failing test: X-Pack Detection Engine API Integration Tests.x-pack/test/detection_engine_api_integration/security_and_spaces/tests/generating_signalsยทts - detection engine api security and spaces enabled Generating signals from source indexes Signals from audit beat are of the expected structure EQL Rules generates building block signals from EQL sequences in the expected form | Team: SecuritySolution Team:Detections and Resp Team:SIEM failed-test | A test failed on a tracked branch
```
TypeError: Cannot read property '_source' of undefined
at Context.<anonymous> (test/detection_engine_api_integration/security_and_spaces/tests/generating_signals.ts:266:42)
at Object.apply (/dev/shm/workspace/parallel/4/kibana/packages/kbn-test/src/functional_test_runner/lib/mocha/wrap_function.js:84:16)
```
First failure: [Jenkins Build](https://kibana-ci.elastic.co/job/elastic+kibana+master/9762/)
<!-- kibanaCiData = {"failed-test":{"test.class":"X-Pack Detection Engine API Integration Tests.x-pack/test/detection_engine_api_integration/security_and_spaces/tests/generating_signalsยทts","test.name":"detection engine api security and spaces enabled Generating signals from source indexes Signals from audit beat are of the expected structure EQL Rules generates building block signals from EQL sequences in the expected form","test.failCount":4}} --> | 1.0 | Failing test: X-Pack Detection Engine API Integration Tests.x-pack/test/detection_engine_api_integration/security_and_spaces/tests/generating_signalsยทts - detection engine api security and spaces enabled Generating signals from source indexes Signals from audit beat are of the expected structure EQL Rules generates building block signals from EQL sequences in the expected form - A test failed on a tracked branch
```
TypeError: Cannot read property '_source' of undefined
at Context.<anonymous> (test/detection_engine_api_integration/security_and_spaces/tests/generating_signals.ts:266:42)
at Object.apply (/dev/shm/workspace/parallel/4/kibana/packages/kbn-test/src/functional_test_runner/lib/mocha/wrap_function.js:84:16)
```
First failure: [Jenkins Build](https://kibana-ci.elastic.co/job/elastic+kibana+master/9762/)
<!-- kibanaCiData = {"failed-test":{"test.class":"X-Pack Detection Engine API Integration Tests.x-pack/test/detection_engine_api_integration/security_and_spaces/tests/generating_signalsยทts","test.name":"detection engine api security and spaces enabled Generating signals from source indexes Signals from audit beat are of the expected structure EQL Rules generates building block signals from EQL sequences in the expected form","test.failCount":4}} --> | test | failing test x pack detection engine api integration tests x pack test detection engine api integration security and spaces tests generating signalsยทts detection engine api security and spaces enabled generating signals from source indexes signals from audit beat are of the expected structure eql rules generates building block signals from eql sequences in the expected form a test failed on a tracked branch typeerror cannot read property source of undefined at context test detection engine api integration security and spaces tests generating signals ts at object apply dev shm workspace parallel kibana packages kbn test src functional test runner lib mocha wrap function js first failure | 1 |
7,388 | 2,899,274,330 | IssuesEvent | 2015-06-17 10:15:15 | backbee/backbee-standard | https://api.github.com/repos/backbee/backbee-standard | closed | [SOCIAL] find a way to prevent user from reloading the page to see social blocks | Fixed Merged news-template To test | find a way to prevent user from reloading the page to see social blocks | 1.0 | [SOCIAL] find a way to prevent user from reloading the page to see social blocks - find a way to prevent user from reloading the page to see social blocks | test | find a way to prevent user from reloading the page to see social blocks find a way to prevent user from reloading the page to see social blocks | 1 |
12,523 | 7,896,049,300 | IssuesEvent | 2018-06-29 07:05:09 | storybooks/storybook | https://api.github.com/repos/storybooks/storybook | closed | a11y accessibility plugin slow on larger components | addon: a11y feature request inactive performance issue | ### Bug or support request summary
The a11y accessibility plugin for good reasons takes some time to run its analysis.
We have a somewhat large component and it takes the plugin about 3 seconds to complete the analysis.
From reading the code, it appears that the accessibility analysis is run as soon as the component is mounted. Maybe it would make sense to run the analysis on request only?
### Steps to reproduce
1. Start a performance recording in chrome
2. Mount a somewhat large component
3. Search for "runA11yCheck"
I have attached a screenshot of the local test results.
### Please specify which version of Storybook and optionally any affected addons that you're running
- @storybook/react 3.4.3
- @storybook/addon-a11y 3.4.3
### Affected platforms
Chrome, Mac OS
### Screenshots / Screencast / Code Snippets (Optional)

### Solution suggestion
I think that it would make sense to run the analysis _on demand_ only. So whenever the accessibility tab is actually opened. As of right now, the analysis is always run. | True | a11y accessibility plugin slow on larger components - ### Bug or support request summary
The a11y accessibility plugin for good reasons takes some time to run its analysis.
We have a somewhat large component and it takes the plugin about 3 seconds to complete the analysis.
From reading the code, it appears that the accessibility analysis is run as soon as the component is mounted. Maybe it would make sense to run the analysis on request only?
### Steps to reproduce
1. Start a performance recording in chrome
2. Mount a somewhat large component
3. Search for "runA11yCheck"
I have attached a screenshot of the local test results.
### Please specify which version of Storybook and optionally any affected addons that you're running
- @storybook/react 3.4.3
- @storybook/addon-a11y 3.4.3
### Affected platforms
Chrome, Mac OS
### Screenshots / Screencast / Code Snippets (Optional)

### Solution suggestion
I think that it would make sense to run the analysis _on demand_ only. So whenever the accessibility tab is actually opened. As of right now, the analysis is always run. | non_test | accessibility plugin slow on larger components bug or support request summary the accessibility plugin for good reasons takes some time to run its analysis we have a somewhat large component and it takes the plugin about seconds to complete the analysis from reading the code it appears that the accessibility analysis is run as soon as the component is mounted maybe it would make sense to run the analysis on request only steps to reproduce start a performance recording in chrome mount a somewhat large component search for i have attached a screenshot of the local test results please specify which version of storybook and optionally any affected addons that you re running storybook react storybook addon affected platforms chrome mac os screenshots screencast code snippets optional solution suggestion i think that it would make sense to run the analysis on demand only so whenever the accessibility tab is actually opened as of right now the analysis is always run | 0 |
32,564 | 26,790,037,960 | IssuesEvent | 2023-02-01 07:42:06 | microsoftgraph/microsoft-graph-explorer-v4 | https://api.github.com/repos/microsoftgraph/microsoft-graph-explorer-v4 | closed | Create a time series report of component usage on Power BI | Type: Eng Infrastructure | More details to be provided on Azure DevOps | 1.0 | Create a time series report of component usage on Power BI - More details to be provided on Azure DevOps | non_test | create a time series report of component usage on power bi more details to be provided on azure devops | 0 |
88,958 | 8,182,371,264 | IssuesEvent | 2018-08-29 04:39:18 | kubevirt/containerized-data-importer | https://api.github.com/repos/kubevirt/containerized-data-importer | closed | cloner functional test fails | P1 testing | On latest master:
```
...
Cloner Test Suite A valid source and target given
Should clone data within same name space
/root/go/src/kubevirt.io/containerized-data-importer/tests/cloner_test.go:52
STEP: Creating a kubernetes client
STEP: Creating a CDI client
STEP: Building a "cloner" namespace api object
โข Failure in Spec Setup (BeforeEach) [0.003 seconds]
Cloner Test Suite
/root/go/src/kubevirt.io/containerized-data-importer/tests/cloner_test.go:31
A valid source and target given [BeforeEach]
/root/go/src/kubevirt.io/containerized-data-importer/tests/cloner_test.go:51
Should clone data within same name space
/root/go/src/kubevirt.io/containerized-data-importer/tests/cloner_test.go:52
Expected error:
<*url.Error | 0xc420338d20>: {
Op: "Post",
URL: "https://localhost:6443/api/v1/namespaces",
Err: {
Op: "dial",
Net: "tcp",
Source: nil,
Addr: {
IP: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1],
Port: 6443,
Zone: "",
},
Err: {Syscall: "connect", Err: 0x6f},
},
}
Post https://localhost:6443/api/v1/namespaces: dial tcp [::1]:6443: connect: connection refused
not to have occurred
/root/go/src/kubevirt.io/containerized-data-importer/tests/framework/framework.go:148
...
```
_framework.go_ [L148](https://github.com/kubevirt/containerized-data-importer/blob/master/tests/framework/framework.go#L148)
@awels can you ptal? | 1.0 | cloner functional test fails - On latest master:
```
...
Cloner Test Suite A valid source and target given
Should clone data within same name space
/root/go/src/kubevirt.io/containerized-data-importer/tests/cloner_test.go:52
STEP: Creating a kubernetes client
STEP: Creating a CDI client
STEP: Building a "cloner" namespace api object
โข Failure in Spec Setup (BeforeEach) [0.003 seconds]
Cloner Test Suite
/root/go/src/kubevirt.io/containerized-data-importer/tests/cloner_test.go:31
A valid source and target given [BeforeEach]
/root/go/src/kubevirt.io/containerized-data-importer/tests/cloner_test.go:51
Should clone data within same name space
/root/go/src/kubevirt.io/containerized-data-importer/tests/cloner_test.go:52
Expected error:
<*url.Error | 0xc420338d20>: {
Op: "Post",
URL: "https://localhost:6443/api/v1/namespaces",
Err: {
Op: "dial",
Net: "tcp",
Source: nil,
Addr: {
IP: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1],
Port: 6443,
Zone: "",
},
Err: {Syscall: "connect", Err: 0x6f},
},
}
Post https://localhost:6443/api/v1/namespaces: dial tcp [::1]:6443: connect: connection refused
not to have occurred
/root/go/src/kubevirt.io/containerized-data-importer/tests/framework/framework.go:148
...
```
_framework.go_ [L148](https://github.com/kubevirt/containerized-data-importer/blob/master/tests/framework/framework.go#L148)
@awels can you ptal? | test | cloner functional test fails on latest master cloner test suite a valid source and target given should clone data within same name space root go src kubevirt io containerized data importer tests cloner test go step creating a kubernetes client step creating a cdi client step building a cloner namespace api object โข failure in spec setup beforeeach cloner test suite root go src kubevirt io containerized data importer tests cloner test go a valid source and target given root go src kubevirt io containerized data importer tests cloner test go should clone data within same name space root go src kubevirt io containerized data importer tests cloner test go expected error op post url err op dial net tcp source nil addr ip port zone err syscall connect err post dial tcp connect connection refused not to have occurred root go src kubevirt io containerized data importer tests framework framework go framework go awels can you ptal | 1 |
7,014 | 3,933,950,897 | IssuesEvent | 2016-04-25 20:52:57 | jens-maus/yam | https://api.github.com/repos/jens-maus/yam | closed | Email not Base64 decoding | #major @undecided bug fixed nightly build | **Originally by @chris-y on 2011-06-21 07:49:46 +0200**
___
The attached message displays in YAM 2.6p1 as a Base64 encoded block, rather than a correctly decoded message. I've checked it with the latest nightly build (2011-06-07) and the problem still exists in that version. | 1.0 | Email not Base64 decoding - **Originally by @chris-y on 2011-06-21 07:49:46 +0200**
___
The attached message displays in YAM 2.6p1 as a Base64 encoded block, rather than a correctly decoded message. I've checked it with the latest nightly build (2011-06-07) and the problem still exists in that version. | non_test | email not decoding originally by chris y on the attached message displays in yam as a encoded block rather than a correctly decoded message i ve checked it with the latest nightly build and the problem still exists in that version | 0 |
43,866 | 5,575,469,579 | IssuesEvent | 2017-03-28 02:07:03 | elixir-lang/vim-elixir | https://api.github.com/repos/elixir-lang/vim-elixir | closed | Treat operator indentation like pipelines | bug fixed-by-289 indent with-test-case | Expected:
``` ex
def hello do
expected = "hello"
<> "world"
IO.puts expected
end
```
Actual:
```ex
def hello do
expected = "hello"
<> "world"
IO.puts expected
end
```
| 1.0 | Treat operator indentation like pipelines - Expected:
``` ex
def hello do
expected = "hello"
<> "world"
IO.puts expected
end
```
Actual:
```ex
def hello do
expected = "hello"
<> "world"
IO.puts expected
end
```
| test | treat operator indentation like pipelines expected ex def hello do expected hello world io puts expected end actual ex def hello do expected hello world io puts expected end | 1 |
230,257 | 18,527,303,154 | IssuesEvent | 2021-10-20 22:26:51 | elastic/kibana | https://api.github.com/repos/elastic/kibana | closed | Failing test: X-Pack Detection Engine API Integration Tests.x-pack/test/detection_engine_api_integration/security_and_spaces/tests/aliasesยทts - detection engine api security and spaces enabled Tests involving aliases of source indexes and the signals index should copy alias data from a source index into the signals index in the same position when the target is ECS compatible | failed-test Team: SecuritySolution | A test failed on a tracked branch
```
Error: expected [ 'host name 4',
'host name 1',
'host name 2',
'host name 3' ] to sort of equal [ 'host name 1',
'host name 2',
'host name 3',
'host name 4' ]
at Assertion.assert (/opt/local-ssd/buildkite/builds/kb-cigroup-6-16fc07a03f566665/elastic/kibana-hourly/kibana/node_modules/@kbn/expect/expect.js:100:11)
at Assertion.eql (/opt/local-ssd/buildkite/builds/kb-cigroup-6-16fc07a03f566665/elastic/kibana-hourly/kibana/node_modules/@kbn/expect/expect.js:244:8)
at Context.<anonymous> (test/detection_engine_api_integration/security_and_spaces/tests/aliases.ts:67:23)
at runMicrotasks (<anonymous>)
at processTicksAndRejections (node:internal/process/task_queues:96:5)
at Object.apply (/opt/local-ssd/buildkite/builds/kb-cigroup-6-16fc07a03f566665/elastic/kibana-hourly/kibana/node_modules/@kbn/test/target_node/functional_test_runner/lib/mocha/wrap_function.js:87:16) {
actual: '[\n "host name 4"\n "host name 1"\n "host name 2"\n "host name 3"\n]',
expected: '[\n "host name 1"\n "host name 2"\n "host name 3"\n "host name 4"\n]',
showDiff: true
}
```
First failure: [CI Build - 7.x](https://buildkite.com/elastic/kibana-hourly/builds/1554#5621b925-d5ff-4203-b135-a7e5d5085882)
<!-- kibanaCiData = {"failed-test":{"test.class":"X-Pack Detection Engine API Integration Tests.x-pack/test/detection_engine_api_integration/security_and_spaces/tests/aliasesยทts","test.name":"detection engine api security and spaces enabled Tests involving aliases of source indexes and the signals index should copy alias data from a source index into the signals index in the same position when the target is ECS compatible","test.failCount":1}} --> | 1.0 | Failing test: X-Pack Detection Engine API Integration Tests.x-pack/test/detection_engine_api_integration/security_and_spaces/tests/aliasesยทts - detection engine api security and spaces enabled Tests involving aliases of source indexes and the signals index should copy alias data from a source index into the signals index in the same position when the target is ECS compatible - A test failed on a tracked branch
```
Error: expected [ 'host name 4',
'host name 1',
'host name 2',
'host name 3' ] to sort of equal [ 'host name 1',
'host name 2',
'host name 3',
'host name 4' ]
at Assertion.assert (/opt/local-ssd/buildkite/builds/kb-cigroup-6-16fc07a03f566665/elastic/kibana-hourly/kibana/node_modules/@kbn/expect/expect.js:100:11)
at Assertion.eql (/opt/local-ssd/buildkite/builds/kb-cigroup-6-16fc07a03f566665/elastic/kibana-hourly/kibana/node_modules/@kbn/expect/expect.js:244:8)
at Context.<anonymous> (test/detection_engine_api_integration/security_and_spaces/tests/aliases.ts:67:23)
at runMicrotasks (<anonymous>)
at processTicksAndRejections (node:internal/process/task_queues:96:5)
at Object.apply (/opt/local-ssd/buildkite/builds/kb-cigroup-6-16fc07a03f566665/elastic/kibana-hourly/kibana/node_modules/@kbn/test/target_node/functional_test_runner/lib/mocha/wrap_function.js:87:16) {
actual: '[\n "host name 4"\n "host name 1"\n "host name 2"\n "host name 3"\n]',
expected: '[\n "host name 1"\n "host name 2"\n "host name 3"\n "host name 4"\n]',
showDiff: true
}
```
First failure: [CI Build - 7.x](https://buildkite.com/elastic/kibana-hourly/builds/1554#5621b925-d5ff-4203-b135-a7e5d5085882)
<!-- kibanaCiData = {"failed-test":{"test.class":"X-Pack Detection Engine API Integration Tests.x-pack/test/detection_engine_api_integration/security_and_spaces/tests/aliasesยทts","test.name":"detection engine api security and spaces enabled Tests involving aliases of source indexes and the signals index should copy alias data from a source index into the signals index in the same position when the target is ECS compatible","test.failCount":1}} --> | test | failing test x pack detection engine api integration tests x pack test detection engine api integration security and spaces tests aliasesยทts detection engine api security and spaces enabled tests involving aliases of source indexes and the signals index should copy alias data from a source index into the signals index in the same position when the target is ecs compatible a test failed on a tracked branch error expected host name host name host name host name to sort of equal host name host name host name host name at assertion assert opt local ssd buildkite builds kb cigroup elastic kibana hourly kibana node modules kbn expect expect js at assertion eql opt local ssd buildkite builds kb cigroup elastic kibana hourly kibana node modules kbn expect expect js at context test detection engine api integration security and spaces tests aliases ts at runmicrotasks at processticksandrejections node internal process task queues at object apply opt local ssd buildkite builds kb cigroup elastic kibana hourly kibana node modules kbn test target node functional test runner lib mocha wrap function js actual expected showdiff true first failure | 1 |
90,000 | 8,223,780,305 | IssuesEvent | 2018-09-06 11:46:45 | lappis-unb/salic-ml-web | https://api.github.com/repos/lappis-unb/salic-ml-web | opened | Criar testes de integraรงรฃo para as rotas da API | teste | Deve-se criar testes de integraรงรฃo para as rotas disponibilizadas para a API.
Alรฉm disso, pelos testes, perceber-se-รก possรญveis necessidades de refatoraรงรฃo dos objetos retornados. Estas necessidades devem ser documentadas nos comentรกrios desta issue. | 1.0 | Criar testes de integraรงรฃo para as rotas da API - Deve-se criar testes de integraรงรฃo para as rotas disponibilizadas para a API.
Alรฉm disso, pelos testes, perceber-se-รก possรญveis necessidades de refatoraรงรฃo dos objetos retornados. Estas necessidades devem ser documentadas nos comentรกrios desta issue. | test | criar testes de integraรงรฃo para as rotas da api deve se criar testes de integraรงรฃo para as rotas disponibilizadas para a api alรฉm disso pelos testes perceber se รก possรญveis necessidades de refatoraรงรฃo dos objetos retornados estas necessidades devem ser documentadas nos comentรกrios desta issue | 1 |
187,931 | 14,434,375,979 | IssuesEvent | 2020-12-07 06:57:48 | kalexmills/github-vet-tests-dec2020 | https://api.github.com/repos/kalexmills/github-vet-tests-dec2020 | closed | openshift/ocs-operator: metrics/internal/collectors/ceph-object-store_test.go; 31 LoC | fresh small test |
Found a possible issue in [openshift/ocs-operator](https://www.github.com/openshift/ocs-operator) at [metrics/internal/collectors/ceph-object-store_test.go](https://github.com/openshift/ocs-operator/blob/385c5e8bb0f87cbfff0d4b067d1a87da3dd42740/metrics/internal/collectors/ceph-object-store_test.go#L260-L290)
Below is the message reported by the analyzer for this snippet of code. Beware that the analyzer only reports the first
issue it finds, so please do not limit your consideration to the contents of the below message.
> range-loop variable tt used in defer or goroutine at line 264
[Click here to see the code in its original context.](https://github.com/openshift/ocs-operator/blob/385c5e8bb0f87cbfff0d4b067d1a87da3dd42740/metrics/internal/collectors/ceph-object-store_test.go#L260-L290)
<details>
<summary>Click here to show the 31 line(s) of Go which triggered the analyzer.</summary>
```go
for _, tt := range tests {
ch := make(chan prometheus.Metric)
metric := dto.Metric{}
go func() {
cephObjectStoreCollector.collectObjectStoreHealth(tt.args.cephObjectStores, ch)
close(ch)
}()
for m := range ch {
assert.Contains(t, m.Desc().String(), "health_status")
metric.Reset()
err := m.Write(&metric)
assert.Nil(t, err)
labels := metric.GetLabel()
for _, label := range labels {
if *label.Name == "name" {
if *label.Value == objConnected.Name {
assert.Equal(t, *metric.Gauge.Value, float64(0))
} else if *label.Value == objProgressing.Name {
assert.Equal(t, *metric.Gauge.Value, float64(1))
} else if *label.Value == objFailure.Name {
assert.Equal(t, *metric.Gauge.Value, float64(2))
}
} else if *label.Name == "namespace" {
assert.Contains(t, cephObjectStoreCollector.AllowedNamespaces, *label.Value)
} else if *label.Name == "rgw_endpoint" {
assert.Equal(t, mockInfo["endpoint"], *label.Value)
}
}
}
}
```
</details>
Leave a reaction on this issue to contribute to the project by classifying this instance as a **Bug** :-1:, **Mitigated** :+1:, or **Desirable Behavior** :rocket:
See the descriptions of the classifications [here](https://github.com/github-vet/rangeclosure-findings#how-can-i-help) for more information.
commit ID: 385c5e8bb0f87cbfff0d4b067d1a87da3dd42740
| 1.0 | openshift/ocs-operator: metrics/internal/collectors/ceph-object-store_test.go; 31 LoC -
Found a possible issue in [openshift/ocs-operator](https://www.github.com/openshift/ocs-operator) at [metrics/internal/collectors/ceph-object-store_test.go](https://github.com/openshift/ocs-operator/blob/385c5e8bb0f87cbfff0d4b067d1a87da3dd42740/metrics/internal/collectors/ceph-object-store_test.go#L260-L290)
Below is the message reported by the analyzer for this snippet of code. Beware that the analyzer only reports the first
issue it finds, so please do not limit your consideration to the contents of the below message.
> range-loop variable tt used in defer or goroutine at line 264
[Click here to see the code in its original context.](https://github.com/openshift/ocs-operator/blob/385c5e8bb0f87cbfff0d4b067d1a87da3dd42740/metrics/internal/collectors/ceph-object-store_test.go#L260-L290)
<details>
<summary>Click here to show the 31 line(s) of Go which triggered the analyzer.</summary>
```go
for _, tt := range tests {
ch := make(chan prometheus.Metric)
metric := dto.Metric{}
go func() {
cephObjectStoreCollector.collectObjectStoreHealth(tt.args.cephObjectStores, ch)
close(ch)
}()
for m := range ch {
assert.Contains(t, m.Desc().String(), "health_status")
metric.Reset()
err := m.Write(&metric)
assert.Nil(t, err)
labels := metric.GetLabel()
for _, label := range labels {
if *label.Name == "name" {
if *label.Value == objConnected.Name {
assert.Equal(t, *metric.Gauge.Value, float64(0))
} else if *label.Value == objProgressing.Name {
assert.Equal(t, *metric.Gauge.Value, float64(1))
} else if *label.Value == objFailure.Name {
assert.Equal(t, *metric.Gauge.Value, float64(2))
}
} else if *label.Name == "namespace" {
assert.Contains(t, cephObjectStoreCollector.AllowedNamespaces, *label.Value)
} else if *label.Name == "rgw_endpoint" {
assert.Equal(t, mockInfo["endpoint"], *label.Value)
}
}
}
}
```
</details>
Leave a reaction on this issue to contribute to the project by classifying this instance as a **Bug** :-1:, **Mitigated** :+1:, or **Desirable Behavior** :rocket:
See the descriptions of the classifications [here](https://github.com/github-vet/rangeclosure-findings#how-can-i-help) for more information.
commit ID: 385c5e8bb0f87cbfff0d4b067d1a87da3dd42740
| test | openshift ocs operator metrics internal collectors ceph object store test go loc found a possible issue in at below is the message reported by the analyzer for this snippet of code beware that the analyzer only reports the first issue it finds so please do not limit your consideration to the contents of the below message range loop variable tt used in defer or goroutine at line click here to show the line s of go which triggered the analyzer go for tt range tests ch make chan prometheus metric metric dto metric go func cephobjectstorecollector collectobjectstorehealth tt args cephobjectstores ch close ch for m range ch assert contains t m desc string health status metric reset err m write metric assert nil t err labels metric getlabel for label range labels if label name name if label value objconnected name assert equal t metric gauge value else if label value objprogressing name assert equal t metric gauge value else if label value objfailure name assert equal t metric gauge value else if label name namespace assert contains t cephobjectstorecollector allowednamespaces label value else if label name rgw endpoint assert equal t mockinfo label value leave a reaction on this issue to contribute to the project by classifying this instance as a bug mitigated or desirable behavior rocket see the descriptions of the classifications for more information commit id | 1 |
586,624 | 17,593,721,414 | IssuesEvent | 2021-08-17 00:02:25 | ethereum/clrfund | https://api.github.com/repos/ethereum/clrfund | closed | If time less than a minute, show minutes/seconds not hours | good first issue priority: low | https://www.notion.so/efdn/Create-general-countdown-utility-function-timer-28ab69b08fba4360a691ab6257421f7f

If more than 24 hours... show x day y hours
if less than 24 hours... show x hours 7 minutes
if less than 1 hour should x minutes
if less than 1 minute show x seconds
where we show seconds we'll need it to countdown
This will likely involve updating the `getTimeLeft` function to display differently if time is <1 minute. | 1.0 | If time less than a minute, show minutes/seconds not hours - https://www.notion.so/efdn/Create-general-countdown-utility-function-timer-28ab69b08fba4360a691ab6257421f7f

If more than 24 hours... show x day y hours
if less than 24 hours... show x hours 7 minutes
if less than 1 hour should x minutes
if less than 1 minute show x seconds
where we show seconds we'll need it to countdown
This will likely involve updating the `getTimeLeft` function to display differently if time is <1 minute. | non_test | if time less than a minute show minutes seconds not hours if more than hours show x day y hours if less than hours show x hours minutes if less than hour should x minutes if less than minute show x seconds where we show seconds we ll need it to countdown this will likely involve updating the gettimeleft function to display differently if time is minute | 0 |
344,156 | 30,720,785,415 | IssuesEvent | 2023-07-27 15:46:55 | modin-project/modin | https://api.github.com/repos/modin-project/modin | closed | read_csv tests should be enabled in the `cloud` mode | bug ๐ฆ Testing ๐ P2 CI | ### System information
- **OS Platform and Distribution (e.g., Linux Ubuntu 16.04)**: Ubuntu 18.04
- **Modin version** (`modin.__version__`): 0.8.1.1+34.ga571e10
- **Python version**: 3.8.6
- **Code we can use to reproduce**:
<!--
You can obtain the Modin version with
python -c "import modin; print(modin.__version__)"
-->
### Describe the problem
<!-- Describe the problem clearly here. -->
Currently `read_csv` unit tests are xfailed.
### Source code / logs
<!-- Include any logs or source code that would be helpful to diagnose the problem. If including tracebacks, please include the full traceback. Large logs and files should be attached. Try to provide a reproducible test case that is the bare minimum necessary to generate the problem. -->
```
_
modin/pandas/test/utils.py:731: in eval_io
eval_general(
modin/pandas/test/utils.py:691: in eval_general
comparator(*values)
modin/pandas/test/utils.py:518: in df_equals
assert_frame_equal(
../miniconda3/envs/modin/lib/python3.8/site-packages/pandas/core/indexes/base.py:338: in __new__
return _maybe_asobject(dtype, DatetimeIndex, data, copy, name, **kwargs)
../miniconda3/envs/modin/lib/python3.8/site-packages/pandas/core/indexes/base.py:5872: in _maybe_asobject
return klass(data, dtype=dtype, copy=copy, name=name, **kwargs)
../miniconda3/envs/modin/lib/python3.8/site-packages/pandas/core/indexes/datetimes.py:271: in __new__
dtarr = DatetimeArray._from_sequence(
../miniconda3/envs/modin/lib/python3.8/site-packages/pandas/core/arrays/datetimes.py:316: in _from_sequence
subarr, tz, inferred_freq = sequence_to_dt64ns(
../miniconda3/envs/modin/lib/python3.8/site-packages/pandas/core/arrays/datetimes.py:1965: in sequence_to_dt64ns
if data.dtype != DT64NS_DTYPE:
../miniconda3/envs/modin/lib/python3.8/site-packages/rpyc/core/netref.py:194: in __ne__
return syncreq(self, consts.HANDLE_CMP, other, '__ne__')
../miniconda3/envs/modin/lib/python3.8/site-packages/rpyc/core/netref.py:76: in syncreq
return conn.sync_request(handler, proxy, *args)
modin/experimental/cloud/rpyc_proxy.py:160: in sync_request
return super().sync_request(handler, *args)
../miniconda3/envs/modin/lib/python3.8/site-packages/rpyc/core/protocol.py:469: in sync_request
return self.async_request(handler, *args, timeout=timeout).value
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <AsyncResult object (ready) at 0x7f8511af9cc0>
@property
def value(self):
"""Returns the result of the operation. If the result has not yet
arrived, accessing this property will wait for it. If the result does
not arrive before the expiry time elapses, :class:`AsyncResultTimeout`
is raised. If the returned result is an exception, it will be raised
here. Otherwise, the result is returned directly.
"""
self.wait()
if self._is_exc:
> raise self._obj
E _get_exception_class.<locals>.Derived: Cannot interpret 'dtype('<M8[ns]')' as a data type
E
E ========= Remote Traceback (1) =========
E Traceback (most recent call last):
E File "/localdisk/amyskov/miniconda3/envs/modin/lib/python3.8/site-packages/rpyc/core/protocol.py", line 320, in _dispatch_request
E res = self._HANDLERS[handler](self, *args)
E File "/localdisk/amyskov/miniconda3/envs/modin/lib/python3.8/site-packages/rpyc/core/protocol.py", line 585, in _handle_cmp
E return self._access_attr(type(obj), op, (), "_rpyc_getattr", "allow_getattr", getattr)(obj, other)
E TypeError: Cannot interpret 'dtype('<M8[ns]')' as a data type
../miniconda3/envs/modin/lib/python3.8/site-packages/rpyc/core/async_.py:102: TypeError
``` | 1.0 | read_csv tests should be enabled in the `cloud` mode - ### System information
- **OS Platform and Distribution (e.g., Linux Ubuntu 16.04)**: Ubuntu 18.04
- **Modin version** (`modin.__version__`): 0.8.1.1+34.ga571e10
- **Python version**: 3.8.6
- **Code we can use to reproduce**:
<!--
You can obtain the Modin version with
python -c "import modin; print(modin.__version__)"
-->
### Describe the problem
<!-- Describe the problem clearly here. -->
Currently `read_csv` unit tests are xfailed.
### Source code / logs
<!-- Include any logs or source code that would be helpful to diagnose the problem. If including tracebacks, please include the full traceback. Large logs and files should be attached. Try to provide a reproducible test case that is the bare minimum necessary to generate the problem. -->
```
_
modin/pandas/test/utils.py:731: in eval_io
eval_general(
modin/pandas/test/utils.py:691: in eval_general
comparator(*values)
modin/pandas/test/utils.py:518: in df_equals
assert_frame_equal(
../miniconda3/envs/modin/lib/python3.8/site-packages/pandas/core/indexes/base.py:338: in __new__
return _maybe_asobject(dtype, DatetimeIndex, data, copy, name, **kwargs)
../miniconda3/envs/modin/lib/python3.8/site-packages/pandas/core/indexes/base.py:5872: in _maybe_asobject
return klass(data, dtype=dtype, copy=copy, name=name, **kwargs)
../miniconda3/envs/modin/lib/python3.8/site-packages/pandas/core/indexes/datetimes.py:271: in __new__
dtarr = DatetimeArray._from_sequence(
../miniconda3/envs/modin/lib/python3.8/site-packages/pandas/core/arrays/datetimes.py:316: in _from_sequence
subarr, tz, inferred_freq = sequence_to_dt64ns(
../miniconda3/envs/modin/lib/python3.8/site-packages/pandas/core/arrays/datetimes.py:1965: in sequence_to_dt64ns
if data.dtype != DT64NS_DTYPE:
../miniconda3/envs/modin/lib/python3.8/site-packages/rpyc/core/netref.py:194: in __ne__
return syncreq(self, consts.HANDLE_CMP, other, '__ne__')
../miniconda3/envs/modin/lib/python3.8/site-packages/rpyc/core/netref.py:76: in syncreq
return conn.sync_request(handler, proxy, *args)
modin/experimental/cloud/rpyc_proxy.py:160: in sync_request
return super().sync_request(handler, *args)
../miniconda3/envs/modin/lib/python3.8/site-packages/rpyc/core/protocol.py:469: in sync_request
return self.async_request(handler, *args, timeout=timeout).value
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <AsyncResult object (ready) at 0x7f8511af9cc0>
@property
def value(self):
"""Returns the result of the operation. If the result has not yet
arrived, accessing this property will wait for it. If the result does
not arrive before the expiry time elapses, :class:`AsyncResultTimeout`
is raised. If the returned result is an exception, it will be raised
here. Otherwise, the result is returned directly.
"""
self.wait()
if self._is_exc:
> raise self._obj
E _get_exception_class.<locals>.Derived: Cannot interpret 'dtype('<M8[ns]')' as a data type
E
E ========= Remote Traceback (1) =========
E Traceback (most recent call last):
E File "/localdisk/amyskov/miniconda3/envs/modin/lib/python3.8/site-packages/rpyc/core/protocol.py", line 320, in _dispatch_request
E res = self._HANDLERS[handler](self, *args)
E File "/localdisk/amyskov/miniconda3/envs/modin/lib/python3.8/site-packages/rpyc/core/protocol.py", line 585, in _handle_cmp
E return self._access_attr(type(obj), op, (), "_rpyc_getattr", "allow_getattr", getattr)(obj, other)
E TypeError: Cannot interpret 'dtype('<M8[ns]')' as a data type
../miniconda3/envs/modin/lib/python3.8/site-packages/rpyc/core/async_.py:102: TypeError
``` | test | read csv tests should be enabled in the cloud mode system information os platform and distribution e g linux ubuntu ubuntu modin version modin version python version code we can use to reproduce you can obtain the modin version with python c import modin print modin version describe the problem currently read csv unit tests are xfailed source code logs modin pandas test utils py in eval io eval general modin pandas test utils py in eval general comparator values modin pandas test utils py in df equals assert frame equal envs modin lib site packages pandas core indexes base py in new return maybe asobject dtype datetimeindex data copy name kwargs envs modin lib site packages pandas core indexes base py in maybe asobject return klass data dtype dtype copy copy name name kwargs envs modin lib site packages pandas core indexes datetimes py in new dtarr datetimearray from sequence envs modin lib site packages pandas core arrays datetimes py in from sequence subarr tz inferred freq sequence to envs modin lib site packages pandas core arrays datetimes py in sequence to if data dtype dtype envs modin lib site packages rpyc core netref py in ne return syncreq self consts handle cmp other ne envs modin lib site packages rpyc core netref py in syncreq return conn sync request handler proxy args modin experimental cloud rpyc proxy py in sync request return super sync request handler args envs modin lib site packages rpyc core protocol py in sync request return self async request handler args timeout timeout value self property def value self returns the result of the operation if the result has not yet arrived accessing this property will wait for it if the result does not arrive before the expiry time elapses class asyncresulttimeout is raised if the returned result is an exception it will be raised here otherwise the result is returned directly self wait if self is exc raise self obj e get exception class derived cannot interpret dtype as a data type e e remote traceback e traceback most recent call last e file localdisk amyskov envs modin lib site packages rpyc core protocol py line in dispatch request e res self handlers self args e file localdisk amyskov envs modin lib site packages rpyc core protocol py line in handle cmp e return self access attr type obj op rpyc getattr allow getattr getattr obj other e typeerror cannot interpret dtype as a data type envs modin lib site packages rpyc core async py typeerror | 1 |
235,083 | 25,901,490,534 | IssuesEvent | 2022-12-15 06:17:46 | Trinadh465/linux-3.0.35_CVE-2019-10220 | https://api.github.com/repos/Trinadh465/linux-3.0.35_CVE-2019-10220 | opened | CVE-2014-1737 (High) detected in linuxlinux-3.0.40 | security vulnerability | ## CVE-2014-1737 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>linuxlinux-3.0.40</b></p></summary>
<p>
<p>Apache Software Foundation (ASF)</p>
<p>Library home page: <a href=https://mirrors.edge.kernel.org/pub/linux/kernel/v3.0/?wsslib=linux>https://mirrors.edge.kernel.org/pub/linux/kernel/v3.0/?wsslib=linux</a></p>
<p>Found in HEAD commit: <a href="https://github.com/Trinadh465/linux-3.0.35_CVE-2019-10220/commit/1ad216eff9de6bc4364330a52955ad1743ba56e2">1ad216eff9de6bc4364330a52955ad1743ba56e2</a></p>
<p>Found in base branch: <b>master</b></p></p>
</details>
</p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Source Files (3)</summary>
<p></p>
<p>
<img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/drivers/block/floppy.c</b>
<img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/drivers/block/floppy.c</b>
<img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/drivers/block/floppy.c</b>
</p>
</details>
<p></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
The raw_cmd_copyin function in drivers/block/floppy.c in the Linux kernel through 3.14.3 does not properly handle error conditions during processing of an FDRAWCMD ioctl call, which allows local users to trigger kfree operations and gain privileges by leveraging write access to a /dev/fd device.
<p>Publish Date: 2014-05-11
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2014-1737>CVE-2014-1737</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>8.4</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Local
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: High
- Integrity Impact: High
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2014-1737">http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2014-1737</a></p>
<p>Release Date: 2014-05-11</p>
<p>Fix Resolution: v3.15-rc5</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) | True | CVE-2014-1737 (High) detected in linuxlinux-3.0.40 - ## CVE-2014-1737 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>linuxlinux-3.0.40</b></p></summary>
<p>
<p>Apache Software Foundation (ASF)</p>
<p>Library home page: <a href=https://mirrors.edge.kernel.org/pub/linux/kernel/v3.0/?wsslib=linux>https://mirrors.edge.kernel.org/pub/linux/kernel/v3.0/?wsslib=linux</a></p>
<p>Found in HEAD commit: <a href="https://github.com/Trinadh465/linux-3.0.35_CVE-2019-10220/commit/1ad216eff9de6bc4364330a52955ad1743ba56e2">1ad216eff9de6bc4364330a52955ad1743ba56e2</a></p>
<p>Found in base branch: <b>master</b></p></p>
</details>
</p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Source Files (3)</summary>
<p></p>
<p>
<img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/drivers/block/floppy.c</b>
<img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/drivers/block/floppy.c</b>
<img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/drivers/block/floppy.c</b>
</p>
</details>
<p></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
The raw_cmd_copyin function in drivers/block/floppy.c in the Linux kernel through 3.14.3 does not properly handle error conditions during processing of an FDRAWCMD ioctl call, which allows local users to trigger kfree operations and gain privileges by leveraging write access to a /dev/fd device.
<p>Publish Date: 2014-05-11
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2014-1737>CVE-2014-1737</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>8.4</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Local
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: High
- Integrity Impact: High
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2014-1737">http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2014-1737</a></p>
<p>Release Date: 2014-05-11</p>
<p>Fix Resolution: v3.15-rc5</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) | non_test | cve high detected in linuxlinux cve high severity vulnerability vulnerable library linuxlinux apache software foundation asf library home page a href found in head commit a href found in base branch master vulnerable source files drivers block floppy c drivers block floppy c drivers block floppy c vulnerability details the raw cmd copyin function in drivers block floppy c in the linux kernel through does not properly handle error conditions during processing of an fdrawcmd ioctl call which allows local users to trigger kfree operations and gain privileges by leveraging write access to a dev fd device publish date url a href cvss score details base score metrics exploitability metrics attack vector local attack complexity low privileges required none user interaction none scope unchanged impact metrics confidentiality impact high integrity impact high availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution step up your open source security game with mend | 0 |
114,148 | 9,690,240,524 | IssuesEvent | 2019-05-24 08:07:51 | mozilla-mobile/firefox-ios | https://api.github.com/repos/mozilla-mobile/firefox-ios | closed | Tests are not running on Bitrise - LeanPlum scheme is not building | Test Automation :robot: | The Carthage step is failing with:
```
*** Building scheme "LeanplumSDK-iOS" in Leanplum-SDK.xcworkspace
Build Failed
Task failed with exit code 65:
/usr/bin/xcrun xcodebuild -workspace /Users/vagrant/git/Carthage/Checkouts/Leanplum-iOS-SDK/Leanplum-SDK.xcworkspace -scheme LeanplumSDK-iOS -configuration Release -derivedDataPath /Users/vagrant/Library/Caches/org.carthage.CarthageKit/DerivedData/10.2.1_10E1001/Leanplum-iOS-SDK/2.4.1 -sdk iphoneos ONLY_ACTIVE_ARCH=NO CODE_SIGNING_REQUIRED=NO CODE_SIGN_IDENTITY= CARTHAGE=YES archive -archivePath /var/folders/6q/wgy6jtp12w5gzgm9lzcglpqw0000gn/T/Leanplum-iOS-SDK SKIP_INSTALL=YES GCC_INSTRUMENT_PROGRAM_FLOW_ARCS=NO CLANG_ENABLE_CODE_COVERAGE=NO STRIP_INSTALLED_PRODUCT=NO (launched in /Users/vagrant/git/Carthage/Checkouts/Leanplum-iOS-SDK)
```
| 1.0 | Tests are not running on Bitrise - LeanPlum scheme is not building - The Carthage step is failing with:
```
*** Building scheme "LeanplumSDK-iOS" in Leanplum-SDK.xcworkspace
Build Failed
Task failed with exit code 65:
/usr/bin/xcrun xcodebuild -workspace /Users/vagrant/git/Carthage/Checkouts/Leanplum-iOS-SDK/Leanplum-SDK.xcworkspace -scheme LeanplumSDK-iOS -configuration Release -derivedDataPath /Users/vagrant/Library/Caches/org.carthage.CarthageKit/DerivedData/10.2.1_10E1001/Leanplum-iOS-SDK/2.4.1 -sdk iphoneos ONLY_ACTIVE_ARCH=NO CODE_SIGNING_REQUIRED=NO CODE_SIGN_IDENTITY= CARTHAGE=YES archive -archivePath /var/folders/6q/wgy6jtp12w5gzgm9lzcglpqw0000gn/T/Leanplum-iOS-SDK SKIP_INSTALL=YES GCC_INSTRUMENT_PROGRAM_FLOW_ARCS=NO CLANG_ENABLE_CODE_COVERAGE=NO STRIP_INSTALLED_PRODUCT=NO (launched in /Users/vagrant/git/Carthage/Checkouts/Leanplum-iOS-SDK)
```
| test | tests are not running on bitrise leanplum scheme is not building the carthage step is failing with building scheme leanplumsdk ios in leanplum sdk xcworkspace build failed task failed with exit code usr bin xcrun xcodebuild workspace users vagrant git carthage checkouts leanplum ios sdk leanplum sdk xcworkspace scheme leanplumsdk ios configuration release deriveddatapath users vagrant library caches org carthage carthagekit deriveddata leanplum ios sdk sdk iphoneos only active arch no code signing required no code sign identity carthage yes archive archivepath var folders t leanplum ios sdk skip install yes gcc instrument program flow arcs no clang enable code coverage no strip installed product no launched in users vagrant git carthage checkouts leanplum ios sdk | 1 |
62,553 | 6,799,786,163 | IssuesEvent | 2017-11-02 11:38:15 | UniPiTechnology/evok | https://api.github.com/repos/UniPiTechnology/evok | closed | [GENERAL] Webhook http rest way to get input changes | bug enhancement incomplete feature more input needed more testing needed request | It would be great if one could set a webhook, or another form of feedback without websockets to get input changes.
| 1.0 | [GENERAL] Webhook http rest way to get input changes - It would be great if one could set a webhook, or another form of feedback without websockets to get input changes.
| test | webhook http rest way to get input changes it would be great if one could set a webhook or another form of feedback without websockets to get input changes | 1 |
209,152 | 16,005,426,170 | IssuesEvent | 2021-04-20 01:47:41 | elastic/kibana | https://api.github.com/repos/elastic/kibana | opened | Failing test: API Integration Tests.test/api_integration/apis/ui_counters/ui_countersยทts - apis UI Counters UI Counters API supports multiple events | failed-test | A test failed on a tracked branch
```
Error: Unable to find savedObject id uiCounter:19042021:count:myApp:my_event_751323081641
at getCounterById (test/api_integration/apis/ui_counters/ui_counters.ts:44:13)
at Context.<anonymous> (test/api_integration/apis/ui_counters/ui_counters.ts:97:30)
at Object.apply (node_modules/@kbn/test/src/functional_test_runner/lib/mocha/wrap_function.js:73:16)
```
First failure: [Jenkins Build](https://kibana-ci.elastic.co/job/elastic+kibana+7.x/13320/)
<!-- kibanaCiData = {"failed-test":{"test.class":"API Integration Tests.test/api_integration/apis/ui_counters/ui_countersยทts","test.name":"apis UI Counters UI Counters API supports multiple events","test.failCount":1}} --> | 1.0 | Failing test: API Integration Tests.test/api_integration/apis/ui_counters/ui_countersยทts - apis UI Counters UI Counters API supports multiple events - A test failed on a tracked branch
```
Error: Unable to find savedObject id uiCounter:19042021:count:myApp:my_event_751323081641
at getCounterById (test/api_integration/apis/ui_counters/ui_counters.ts:44:13)
at Context.<anonymous> (test/api_integration/apis/ui_counters/ui_counters.ts:97:30)
at Object.apply (node_modules/@kbn/test/src/functional_test_runner/lib/mocha/wrap_function.js:73:16)
```
First failure: [Jenkins Build](https://kibana-ci.elastic.co/job/elastic+kibana+7.x/13320/)
<!-- kibanaCiData = {"failed-test":{"test.class":"API Integration Tests.test/api_integration/apis/ui_counters/ui_countersยทts","test.name":"apis UI Counters UI Counters API supports multiple events","test.failCount":1}} --> | test | failing test api integration tests test api integration apis ui counters ui countersยทts apis ui counters ui counters api supports multiple events a test failed on a tracked branch error unable to find savedobject id uicounter count myapp my event at getcounterbyid test api integration apis ui counters ui counters ts at context test api integration apis ui counters ui counters ts at object apply node modules kbn test src functional test runner lib mocha wrap function js first failure | 1 |
130,000 | 17,970,700,752 | IssuesEvent | 2021-09-14 01:20:27 | SAP/fundamental-ngx | https://api.github.com/repos/SAP/fundamental-ngx | opened | Bug: Flexible Column Layout is missing left divider or "column spacer" when the right End Column is expanded. | bug core design_team | #### Is this a bug, enhancement, or feature request?
Bug
#### Briefly describe your proposal.

#### Which versions of Angular and Fundamental Library for Angular are affected? (If this is a feature request, use current version.)
v0.32.1-rc30
#### If this is a bug, please provide steps for reproducing it.
1. Go to https://fundamental-ngx.netlify.app/#/core/flexible-column-layout
2. Scroll to the first example and "Click to open full screen"
3. Open all 3 columns and expand the third column
| 1.0 | Bug: Flexible Column Layout is missing left divider or "column spacer" when the right End Column is expanded. - #### Is this a bug, enhancement, or feature request?
Bug
#### Briefly describe your proposal.

#### Which versions of Angular and Fundamental Library for Angular are affected? (If this is a feature request, use current version.)
v0.32.1-rc30
#### If this is a bug, please provide steps for reproducing it.
1. Go to https://fundamental-ngx.netlify.app/#/core/flexible-column-layout
2. Scroll to the first example and "Click to open full screen"
3. Open all 3 columns and expand the third column
| non_test | bug flexible column layout is missing left divider or column spacer when the right end column is expanded is this a bug enhancement or feature request bug briefly describe your proposal which versions of angular and fundamental library for angular are affected if this is a feature request use current version if this is a bug please provide steps for reproducing it go to scroll to the first example and click to open full screen open all columns and expand the third column | 0 |
67,702 | 17,046,605,738 | IssuesEvent | 2021-07-06 00:18:02 | neovim/neovim | https://api.github.com/repos/neovim/neovim | closed | Bundled libluv failes to build, cmake syntax error | bug topic: build | <!-- Before reporting: search existing issues and check the FAQ. -->
- `nvim --version`: 0.4.4
- Operating system/version: Linux
### Steps to reproduce
Attempting to build `neovim` with all bundled dependencies, using the following:
```
make \
CMAKE_BUILD_TYPE=Release \
CMAKE_INSTALL_PREFIX=/usr \
CMAKE_INSTALL_LIBDIR=lib
```
### Actual behaviour
Build fails for libluv:
```
[72/89] Performing build step for 'luv-static'
ninja: job failed: cd /home/thermatix/.cache/kiss/proc/2660/build/neovim/.deps/build/src/luv-static-build && /usr/bin/cmake -DLUA_COMPAT53_DIR=/home/thermatix/.cache/kiss/proc/2660/build/neovim/.deps/build/src/lua-compat-5.3 --build . && /usr/bin/cmake -E touch /home/thermatix/.cache/kiss/proc/2660/build/neovim/.deps/build/src/luv-static-stamp/luv-static-build
CMake Error: Unknown argument --build
CMake Error: Run 'cmake --help' for all supported options.
```
### Expected behaviour
`neovim` compiles.
0.4.4 was previously buildable; the only updates that have happened related to it are with `cmake`; currently using 3.20.1.
Using https://github.com/neovim/neovim/pull/14167 it builds just fine, though it seemed related to https://github.com/neovim/neovim/pull/12676 at first.
| 1.0 | Bundled libluv failes to build, cmake syntax error - <!-- Before reporting: search existing issues and check the FAQ. -->
- `nvim --version`: 0.4.4
- Operating system/version: Linux
### Steps to reproduce
Attempting to build `neovim` with all bundled dependencies, using the following:
```
make \
CMAKE_BUILD_TYPE=Release \
CMAKE_INSTALL_PREFIX=/usr \
CMAKE_INSTALL_LIBDIR=lib
```
### Actual behaviour
Build fails for libluv:
```
[72/89] Performing build step for 'luv-static'
ninja: job failed: cd /home/thermatix/.cache/kiss/proc/2660/build/neovim/.deps/build/src/luv-static-build && /usr/bin/cmake -DLUA_COMPAT53_DIR=/home/thermatix/.cache/kiss/proc/2660/build/neovim/.deps/build/src/lua-compat-5.3 --build . && /usr/bin/cmake -E touch /home/thermatix/.cache/kiss/proc/2660/build/neovim/.deps/build/src/luv-static-stamp/luv-static-build
CMake Error: Unknown argument --build
CMake Error: Run 'cmake --help' for all supported options.
```
### Expected behaviour
`neovim` compiles.
0.4.4 was previously buildable; the only updates that have happened related to it are with `cmake`; currently using 3.20.1.
Using https://github.com/neovim/neovim/pull/14167 it builds just fine, though it seemed related to https://github.com/neovim/neovim/pull/12676 at first.
| non_test | bundled libluv failes to build cmake syntax error nvim version operating system version linux steps to reproduce attempting to build neovim with all bundled dependencies using the following make cmake build type release cmake install prefix usr cmake install libdir lib actual behaviour build fails for libluv performing build step for luv static ninja job failed cd home thermatix cache kiss proc build neovim deps build src luv static build usr bin cmake dlua dir home thermatix cache kiss proc build neovim deps build src lua compat build usr bin cmake e touch home thermatix cache kiss proc build neovim deps build src luv static stamp luv static build cmake error unknown argument build cmake error run cmake help for all supported options expected behaviour neovim compiles was previously buildable the only updates that have happened related to it are with cmake currently using using it builds just fine though it seemed related to at first | 0 |
1,199 | 2,601,757,731 | IssuesEvent | 2015-02-24 00:33:44 | chrsmith/bwapi | https://api.github.com/repos/chrsmith/bwapi | closed | auto_menu causes desynch in network play | auto-migrated Priority-High Type-Defect Usability | ```
Any client using auto_menu for network play will desynchronize from other
clients.
This isn't supposed to happen and I can't possibly think of anything that could
be causing it.
```
-----
Original issue reported on code.google.com by `AHeinerm` on 17 Nov 2010 at 9:15 | 1.0 | auto_menu causes desynch in network play - ```
Any client using auto_menu for network play will desynchronize from other
clients.
This isn't supposed to happen and I can't possibly think of anything that could
be causing it.
```
-----
Original issue reported on code.google.com by `AHeinerm` on 17 Nov 2010 at 9:15 | non_test | auto menu causes desynch in network play any client using auto menu for network play will desynchronize from other clients this isn t supposed to happen and i can t possibly think of anything that could be causing it original issue reported on code google com by aheinerm on nov at | 0 |
296,015 | 25,522,036,940 | IssuesEvent | 2022-11-28 21:25:01 | ubtue/tuefind | https://api.github.com/repos/ubtue/tuefind | closed | Zusammenspiel Trefferanzahl / Sortierung | ready for testing | Wenn man einen Aspekt der Sortierung eingestellt hat (z.B. Verfasser), dann wird er zurรผck auf Relevanz-Sortierung gestellt, sobald man die Anzahl der Treffer erhรถht oder erniedrigt.
<img width="807" alt="Bildschirmยญfoto 2022-11-22 um 07 41 01" src="https://user-images.githubusercontent.com/14169098/203243353-d5b46e32-36fd-402f-879d-fc167231149e.png">
<img width="805" alt="Bildschirmยญfoto 2022-11-22 um 07 41 13" src="https://user-images.githubusercontent.com/14169098/203243366-6e298f4d-18c2-4fe5-89e2-2c23549e33e1.png">
*****
Das Blรคttern in einer Treffermenge dauert gefรผhlt zu lange. Weiร aber nicht genau, ob das vor der Version 8.1 auch schon so war.
| 1.0 | Zusammenspiel Trefferanzahl / Sortierung - Wenn man einen Aspekt der Sortierung eingestellt hat (z.B. Verfasser), dann wird er zurรผck auf Relevanz-Sortierung gestellt, sobald man die Anzahl der Treffer erhรถht oder erniedrigt.
<img width="807" alt="Bildschirmยญfoto 2022-11-22 um 07 41 01" src="https://user-images.githubusercontent.com/14169098/203243353-d5b46e32-36fd-402f-879d-fc167231149e.png">
<img width="805" alt="Bildschirmยญfoto 2022-11-22 um 07 41 13" src="https://user-images.githubusercontent.com/14169098/203243366-6e298f4d-18c2-4fe5-89e2-2c23549e33e1.png">
*****
Das Blรคttern in einer Treffermenge dauert gefรผhlt zu lange. Weiร aber nicht genau, ob das vor der Version 8.1 auch schon so war.
| test | zusammenspiel trefferanzahl sortierung wenn man einen aspekt der sortierung eingestellt hat z b verfasser dann wird er zurรผck auf relevanz sortierung gestellt sobald man die anzahl der treffer erhรถht oder erniedrigt img width alt bildschirmยญfoto um src img width alt bildschirmยญfoto um src das blรคttern in einer treffermenge dauert gefรผhlt zu lange weiร aber nicht genau ob das vor der version auch schon so war | 1 |
101,674 | 8,793,436,010 | IssuesEvent | 2018-12-21 19:54:55 | WhitewaterFoundry/WLinux | https://api.github.com/repos/WhitewaterFoundry/WLinux | closed | Update README.md to match current state of project | Undergoing Testing | README.md needs to be updated as it currently references upcoming 1.1.25. Any new features we want mentioned need to be documented too. Perhaps a reference / link to WLE project for those enterprise folk that either hear about us through WLinux or end up on this project instead? | 1.0 | Update README.md to match current state of project - README.md needs to be updated as it currently references upcoming 1.1.25. Any new features we want mentioned need to be documented too. Perhaps a reference / link to WLE project for those enterprise folk that either hear about us through WLinux or end up on this project instead? | test | update readme md to match current state of project readme md needs to be updated as it currently references upcoming any new features we want mentioned need to be documented too perhaps a reference link to wle project for those enterprise folk that either hear about us through wlinux or end up on this project instead | 1 |
259,918 | 27,740,998,492 | IssuesEvent | 2023-03-15 14:18:31 | Dima2021/juice-shop | https://api.github.com/repos/Dima2021/juice-shop | closed | WS-2022-0280 (High) detected in moment-timezone-0.5.34.tgz - autoclosed | Mend: dependency security vulnerability | ## WS-2022-0280 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>moment-timezone-0.5.34.tgz</b></p></summary>
<p>Parse and display moments in any timezone.</p>
<p>Library home page: <a href="https://registry.npmjs.org/moment-timezone/-/moment-timezone-0.5.34.tgz">https://registry.npmjs.org/moment-timezone/-/moment-timezone-0.5.34.tgz</a></p>
<p>Path to dependency file: /package.json</p>
<p>Path to vulnerable library: /node_modules/moment-timezone/package.json</p>
<p>
Dependency Hierarchy:
- sequelize-6.9.0.tgz (Root Library)
- :x: **moment-timezone-0.5.34.tgz** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/Dima2021/juice-shop/commit/2b993a14d39c90a77f08a7037a4146893648b6f5">2b993a14d39c90a77f08a7037a4146893648b6f5</a></p>
<p>Found in base branch: <b>master</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
Command Injection in moment-timezone before 0.5.35.
<p>Publish Date: 2022-08-30
<p>URL: <a href=https://github.com/moment/moment-timezone/commit/ce955a301ff372e8e9fb3a5b516620c60e7a082a>WS-2022-0280</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>9.8</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: High
- Integrity Impact: High
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://github.com/advisories/GHSA-56x4-j7p9-fcf9">https://github.com/advisories/GHSA-56x4-j7p9-fcf9</a></p>
<p>Release Date: 2022-08-30</p>
<p>Fix Resolution (moment-timezone): 0.5.35</p>
<p>Direct dependency fix Resolution (sequelize): 6.16.1</p>
</p>
</details>
<p></p>
***
:rescue_worker_helmet: Automatic Remediation is available for this issue | True | WS-2022-0280 (High) detected in moment-timezone-0.5.34.tgz - autoclosed - ## WS-2022-0280 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>moment-timezone-0.5.34.tgz</b></p></summary>
<p>Parse and display moments in any timezone.</p>
<p>Library home page: <a href="https://registry.npmjs.org/moment-timezone/-/moment-timezone-0.5.34.tgz">https://registry.npmjs.org/moment-timezone/-/moment-timezone-0.5.34.tgz</a></p>
<p>Path to dependency file: /package.json</p>
<p>Path to vulnerable library: /node_modules/moment-timezone/package.json</p>
<p>
Dependency Hierarchy:
- sequelize-6.9.0.tgz (Root Library)
- :x: **moment-timezone-0.5.34.tgz** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/Dima2021/juice-shop/commit/2b993a14d39c90a77f08a7037a4146893648b6f5">2b993a14d39c90a77f08a7037a4146893648b6f5</a></p>
<p>Found in base branch: <b>master</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
Command Injection in moment-timezone before 0.5.35.
<p>Publish Date: 2022-08-30
<p>URL: <a href=https://github.com/moment/moment-timezone/commit/ce955a301ff372e8e9fb3a5b516620c60e7a082a>WS-2022-0280</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>9.8</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: High
- Integrity Impact: High
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://github.com/advisories/GHSA-56x4-j7p9-fcf9">https://github.com/advisories/GHSA-56x4-j7p9-fcf9</a></p>
<p>Release Date: 2022-08-30</p>
<p>Fix Resolution (moment-timezone): 0.5.35</p>
<p>Direct dependency fix Resolution (sequelize): 6.16.1</p>
</p>
</details>
<p></p>
***
:rescue_worker_helmet: Automatic Remediation is available for this issue | non_test | ws high detected in moment timezone tgz autoclosed ws high severity vulnerability vulnerable library moment timezone tgz parse and display moments in any timezone library home page a href path to dependency file package json path to vulnerable library node modules moment timezone package json dependency hierarchy sequelize tgz root library x moment timezone tgz vulnerable library found in head commit a href found in base branch master vulnerability details command injection in moment timezone before publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction none scope unchanged impact metrics confidentiality impact high integrity impact high availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution moment timezone direct dependency fix resolution sequelize rescue worker helmet automatic remediation is available for this issue | 0 |
266,561 | 23,245,933,392 | IssuesEvent | 2022-08-03 20:09:48 | o3de/o3de | https://api.github.com/repos/o3de/o3de | opened | Solution needed for azlmbr.atomtools.general & azlmbr.legacy.general function collisions. | needs-sig needs-triage sig/content sig/testing | **Is your feature request related to a problem? Please describe.**
1. Currently there exists test code in [C:\git\o3de\AutomatedTesting\Gem\PythonTests\EditorPythonTestTools\editor_python_test_tools\utils.py](https://github.com/o3de/o3de/blob/development/AutomatedTesting/Gem/PythonTests/EditorPythonTestTools/editor_python_test_tools/utils.py) where the `general` library used has to be alternated from `azlmbr.atomtools.general` or `azlmbr.legacy.general` based on the current executable environment (in my use case it was MaterialEditor.exe and Editor.exe).
2. We should solve this environment-based alternation implementation because its an implicit design band aid instead of an explicit path we can rely on. This alternating creates the possibility for Editor test code or MaterialEditor test code to use the wrong bindings if the libraries exist in both in the future.
**Describe the solution you'd like**
My favored solution is to use the same module name for Editor and MaterialEditor general functions but it would not be `legacy.general`.
**Describe alternatives you've considered**
There are a few alternative solutions we could go with, but I will share the ones @gadams3 mentioned as he covered my own suggestions plus added even more. I'm not sure what the best option is, it will probably come down to whichever sig takes this on, but the options are below:
- Unify both implementations on the C++ side then move them to the same Python module.
- Implement an abstraction in Python so that you have a class where you can assign the functions based on how the test is launched. _Example:_ `class EditorTestUtils(idle_function, exit_function, ...)` # set-up some utility functions Python test utility function bindings that might be different in different test environments like Editor versus MaterialEditor and then you would call the functions in this class instead of calling the ones from the module directly.
- Have a function or bus call instead of those general functions that everyone has to implement.
**Additional context**
Nothing additional to list, but I will share the [utils.py](https://github.com/o3de/o3de/blob/development/AutomatedTesting/Gem/PythonTests/EditorPythonTestTools/editor_python_test_tools/utils.py) code snippet below for easy reference in this ticket:
```
``` | 1.0 | Solution needed for azlmbr.atomtools.general & azlmbr.legacy.general function collisions. - **Is your feature request related to a problem? Please describe.**
1. Currently there exists test code in [C:\git\o3de\AutomatedTesting\Gem\PythonTests\EditorPythonTestTools\editor_python_test_tools\utils.py](https://github.com/o3de/o3de/blob/development/AutomatedTesting/Gem/PythonTests/EditorPythonTestTools/editor_python_test_tools/utils.py) where the `general` library used has to be alternated from `azlmbr.atomtools.general` or `azlmbr.legacy.general` based on the current executable environment (in my use case it was MaterialEditor.exe and Editor.exe).
2. We should solve this environment-based alternation implementation because its an implicit design band aid instead of an explicit path we can rely on. This alternating creates the possibility for Editor test code or MaterialEditor test code to use the wrong bindings if the libraries exist in both in the future.
**Describe the solution you'd like**
My favored solution is to use the same module name for Editor and MaterialEditor general functions but it would not be `legacy.general`.
**Describe alternatives you've considered**
There are a few alternative solutions we could go with, but I will share the ones @gadams3 mentioned as he covered my own suggestions plus added even more. I'm not sure what the best option is, it will probably come down to whichever sig takes this on, but the options are below:
- Unify both implementations on the C++ side then move them to the same Python module.
- Implement an abstraction in Python so that you have a class where you can assign the functions based on how the test is launched. _Example:_ `class EditorTestUtils(idle_function, exit_function, ...)` # set-up some utility functions Python test utility function bindings that might be different in different test environments like Editor versus MaterialEditor and then you would call the functions in this class instead of calling the ones from the module directly.
- Have a function or bus call instead of those general functions that everyone has to implement.
**Additional context**
Nothing additional to list, but I will share the [utils.py](https://github.com/o3de/o3de/blob/development/AutomatedTesting/Gem/PythonTests/EditorPythonTestTools/editor_python_test_tools/utils.py) code snippet below for easy reference in this ticket:
```
``` | test | solution needed for azlmbr atomtools general azlmbr legacy general function collisions is your feature request related to a problem please describe currently there exists test code in where the general library used has to be alternated from azlmbr atomtools general or azlmbr legacy general based on the current executable environment in my use case it was materialeditor exe and editor exe we should solve this environment based alternation implementation because its an implicit design band aid instead of an explicit path we can rely on this alternating creates the possibility for editor test code or materialeditor test code to use the wrong bindings if the libraries exist in both in the future describe the solution you d like my favored solution is to use the same module name for editor and materialeditor general functions but it would not be legacy general describe alternatives you ve considered there are a few alternative solutions we could go with but i will share the ones mentioned as he covered my own suggestions plus added even more i m not sure what the best option is it will probably come down to whichever sig takes this on but the options are below unify both implementations on the c side then move them to the same python module implement an abstraction in python so that you have a class where you can assign the functions based on how the test is launched example class editortestutils idle function exit function set up some utility functions python test utility function bindings that might be different in different test environments like editor versus materialeditor and then you would call the functions in this class instead of calling the ones from the module directly have a function or bus call instead of those general functions that everyone has to implement additional context nothing additional to list but i will share the code snippet below for easy reference in this ticket | 1 |
156,493 | 12,312,508,076 | IssuesEvent | 2020-05-12 14:01:59 | bazelbuild/bazel | https://api.github.com/repos/bazelbuild/bazel | closed | xx_test.args: argument with space is split up | P2 category: misc > testing team-Local-Exec type: bug | ### Description of the problem / feature request:
If a test arguments in `*_test.args` contains a space, Bazel splits it up before passing it to the test, but doesn't do the same for args from `--test_arg`
### Bugs: what's the simplest, easiest way to reproduce this bug? Please provide a minimal example if possible.
`BUILD` file:
```
cc_test(
name = "x",
srcs = ["x.cc"],
args = [
"foo",
"a b",
"bar",
],
)
```
`x.cc` file:
```
#include <stdio.h>
int main(int argc, char** argv) {
printf("TEST: argc=%d\n", argc);
for (int i = 0; i < argc; ++i) {
printf("TEST: argv[%d]=(%s)\n", i, argv[i]);
}
return 1; // make sure the test fails, so --test_output=errors prints the output
}
```
Repro:
```
$ bazel test //:x -s --test_output=errors --test_arg="baz" --test_arg="c d" --test_arg="qux"
(...)
external/bazel_tools/tools/test/test-setup.sh ./x foo a b bar baz 'c d' qux)
FAIL: //:x (see (...)/testlogs/x/test.log)
INFO: From Testing //:x:
==================== Test output for //:x:
TEST: argc=8
TEST: argv[0]=((...)/bin/x.runfiles/__main__/x)
TEST: argv[1]=(foo)
TEST: argv[2]=(a)
TEST: argv[3]=(b)
TEST: argv[4]=(bar)
TEST: argv[5]=(baz)
TEST: argv[6]=(c d)
TEST: argv[7]=(qux)
```
### What operating system are you running Bazel on?
Linux
### What's the output of `bazel info release`?
```
$ bazel info release
release 0.17.2
```
### Have you found anything relevant by searching the web?
See also https://github.com/bazelbuild/bazel/issues/6274 | 1.0 | xx_test.args: argument with space is split up - ### Description of the problem / feature request:
If a test arguments in `*_test.args` contains a space, Bazel splits it up before passing it to the test, but doesn't do the same for args from `--test_arg`
### Bugs: what's the simplest, easiest way to reproduce this bug? Please provide a minimal example if possible.
`BUILD` file:
```
cc_test(
name = "x",
srcs = ["x.cc"],
args = [
"foo",
"a b",
"bar",
],
)
```
`x.cc` file:
```
#include <stdio.h>
int main(int argc, char** argv) {
printf("TEST: argc=%d\n", argc);
for (int i = 0; i < argc; ++i) {
printf("TEST: argv[%d]=(%s)\n", i, argv[i]);
}
return 1; // make sure the test fails, so --test_output=errors prints the output
}
```
Repro:
```
$ bazel test //:x -s --test_output=errors --test_arg="baz" --test_arg="c d" --test_arg="qux"
(...)
external/bazel_tools/tools/test/test-setup.sh ./x foo a b bar baz 'c d' qux)
FAIL: //:x (see (...)/testlogs/x/test.log)
INFO: From Testing //:x:
==================== Test output for //:x:
TEST: argc=8
TEST: argv[0]=((...)/bin/x.runfiles/__main__/x)
TEST: argv[1]=(foo)
TEST: argv[2]=(a)
TEST: argv[3]=(b)
TEST: argv[4]=(bar)
TEST: argv[5]=(baz)
TEST: argv[6]=(c d)
TEST: argv[7]=(qux)
```
### What operating system are you running Bazel on?
Linux
### What's the output of `bazel info release`?
```
$ bazel info release
release 0.17.2
```
### Have you found anything relevant by searching the web?
See also https://github.com/bazelbuild/bazel/issues/6274 | test | xx test args argument with space is split up description of the problem feature request if a test arguments in test args contains a space bazel splits it up before passing it to the test but doesn t do the same for args from test arg bugs what s the simplest easiest way to reproduce this bug please provide a minimal example if possible build file cc test name x srcs args foo a b bar x cc file include int main int argc char argv printf test argc d n argc for int i i argc i printf test argv s n i argv return make sure the test fails so test output errors prints the output repro bazel test x s test output errors test arg baz test arg c d test arg qux external bazel tools tools test test setup sh x foo a b bar baz c d qux fail x see testlogs x test log info from testing x test output for x test argc test argv bin x runfiles main x test argv foo test argv a test argv b test argv bar test argv baz test argv c d test argv qux what operating system are you running bazel on linux what s the output of bazel info release bazel info release release have you found anything relevant by searching the web see also | 1 |
194,568 | 14,681,523,309 | IssuesEvent | 2020-12-31 13:30:41 | mapasculturais/mapasculturais | https://api.github.com/repos/mapasculturais/mapasculturais | closed | Abstrair os mรฉtodos de avaliaรงรฃo: criar base para definiรงรฃo de mรฉtodos de avaliaรงรฃo | BACKEND secao:OPORTUNIDADES status:tested tipo:FUNCIONALIDADE | Criar classe abstrata para os mรฉtodos de avaliaรงรฃo lembrando que as permissรตes sobre a mudanรงa de status das inscriรงรตes serรฃo delegadas ao mรฉtodo de avaliaรงรฃo. Esta classe pode estender a classe Plugin.
referente a #1058 | 1.0 | Abstrair os mรฉtodos de avaliaรงรฃo: criar base para definiรงรฃo de mรฉtodos de avaliaรงรฃo - Criar classe abstrata para os mรฉtodos de avaliaรงรฃo lembrando que as permissรตes sobre a mudanรงa de status das inscriรงรตes serรฃo delegadas ao mรฉtodo de avaliaรงรฃo. Esta classe pode estender a classe Plugin.
referente a #1058 | test | abstrair os mรฉtodos de avaliaรงรฃo criar base para definiรงรฃo de mรฉtodos de avaliaรงรฃo criar classe abstrata para os mรฉtodos de avaliaรงรฃo lembrando que as permissรตes sobre a mudanรงa de status das inscriรงรตes serรฃo delegadas ao mรฉtodo de avaliaรงรฃo esta classe pode estender a classe plugin referente a | 1 |
448,126 | 31,769,079,629 | IssuesEvent | 2023-09-12 10:34:34 | Xujiayao/MCDiscordChat | https://api.github.com/repos/Xujiayao/MCDiscordChat | closed | [Enhancement] Provide a clear list of Minecraft versions supported by each MCDC release | documentation enhancement | ### Checks
- [X] I confirm that I have [searched for existing issues / pull requests](https://github.com/Xujiayao/MCDiscordChat/issues?q=) before reporting to avoid duplicate reporting.
- [X] I confirm that I noted that if I don't follow the instructions, the issue may be closed directly.
### Description
TODO | 1.0 | [Enhancement] Provide a clear list of Minecraft versions supported by each MCDC release - ### Checks
- [X] I confirm that I have [searched for existing issues / pull requests](https://github.com/Xujiayao/MCDiscordChat/issues?q=) before reporting to avoid duplicate reporting.
- [X] I confirm that I noted that if I don't follow the instructions, the issue may be closed directly.
### Description
TODO | non_test | provide a clear list of minecraft versions supported by each mcdc release checks i confirm that i have before reporting to avoid duplicate reporting i confirm that i noted that if i don t follow the instructions the issue may be closed directly description todo | 0 |
76,869 | 26,648,506,252 | IssuesEvent | 2023-01-25 11:54:08 | scoutplan/scoutplan | https://api.github.com/repos/scoutplan/scoutplan | closed | [Scoutplan Production/production] Pundit::NotAuthorizedError: not allowed to show? this Event | defect | ## Backtrace
line 138 of [PROJECT_ROOT]/app/controllers/events_controller.rb: show
line 45 of [PROJECT_ROOT]/app/controllers/unit_context_controller.rb: time_zone
[View full backtrace and more info at honeybadger.io](https://app.honeybadger.io/projects/97676/faults/92808112) | 1.0 | [Scoutplan Production/production] Pundit::NotAuthorizedError: not allowed to show? this Event - ## Backtrace
line 138 of [PROJECT_ROOT]/app/controllers/events_controller.rb: show
line 45 of [PROJECT_ROOT]/app/controllers/unit_context_controller.rb: time_zone
[View full backtrace and more info at honeybadger.io](https://app.honeybadger.io/projects/97676/faults/92808112) | non_test | pundit notauthorizederror not allowed to show this event backtrace line of app controllers events controller rb show line of app controllers unit context controller rb time zone | 0 |
112,378 | 24,260,264,586 | IssuesEvent | 2022-09-27 21:49:59 | Azure/autorest.python | https://api.github.com/repos/Azure/autorest.python | closed | [Cadl][Model] Unproper model name when using template of `@azure-tools/cadl-azure-core` | DPG/RLC v2.0b2 Epic: Model Generation WS: Code Generation | when we generate SDK from the following cadl:
```
import "@cadl-lang/rest";
import "@cadl-lang/versioning";
import "@azure-tools/cadl-azure-core";
using Cadl.Http;
using Cadl.Rest;
using Cadl.Versioning;
using Azure.Core;
// NOTE: These features are missing:
// - Security definition for apiKey
@server(
"{Endpoint}/language",
"Language Service",
{
Endpoint: Endpoint,
}
)
@serviceTitle("Microsoft Cognitive Language Service - Analyze Text Authoring")
@serviceVersion("2022-05-15-preview")
@versionedDependency(Azure.Core.Versions.v1_0_Preview_1)
@route("/authoring/analyze-text/")
namespace Azure.Language.Authoring;
// Common Parameters
// TODO: Use the common parameter for this
@doc("The endpoint to use.")
model Endpoint is string;
// Models
model Project {
@key
@segment("projects")
projectName: string;
@doc("The project kind.")
projectKind: string;
@doc("The storage container name.")
storageInputContainerName: string;
}
interface Projects {
@doc("Creates a new project or updates an existing one.")
@pollingOperation
createOrUpdate is LongRunningResourceCreateOrUpdate<Project>;
}
```
it will generate unproper model like:

| 1.0 | [Cadl][Model] Unproper model name when using template of `@azure-tools/cadl-azure-core` - when we generate SDK from the following cadl:
```
import "@cadl-lang/rest";
import "@cadl-lang/versioning";
import "@azure-tools/cadl-azure-core";
using Cadl.Http;
using Cadl.Rest;
using Cadl.Versioning;
using Azure.Core;
// NOTE: These features are missing:
// - Security definition for apiKey
@server(
"{Endpoint}/language",
"Language Service",
{
Endpoint: Endpoint,
}
)
@serviceTitle("Microsoft Cognitive Language Service - Analyze Text Authoring")
@serviceVersion("2022-05-15-preview")
@versionedDependency(Azure.Core.Versions.v1_0_Preview_1)
@route("/authoring/analyze-text/")
namespace Azure.Language.Authoring;
// Common Parameters
// TODO: Use the common parameter for this
@doc("The endpoint to use.")
model Endpoint is string;
// Models
model Project {
@key
@segment("projects")
projectName: string;
@doc("The project kind.")
projectKind: string;
@doc("The storage container name.")
storageInputContainerName: string;
}
interface Projects {
@doc("Creates a new project or updates an existing one.")
@pollingOperation
createOrUpdate is LongRunningResourceCreateOrUpdate<Project>;
}
```
it will generate unproper model like:

| non_test | unproper model name when using template of azure tools cadl azure core when we generate sdk from the following cadl import cadl lang rest import cadl lang versioning import azure tools cadl azure core using cadl http using cadl rest using cadl versioning using azure core note these features are missing security definition for apikey server endpoint language language service endpoint endpoint servicetitle microsoft cognitive language service analyze text authoring serviceversion preview versioneddependency azure core versions preview route authoring analyze text namespace azure language authoring common parameters todo use the common parameter for this doc the endpoint to use model endpoint is string models model project key segment projects projectname string doc the project kind projectkind string doc the storage container name storageinputcontainername string interface projects doc creates a new project or updates an existing one pollingoperation createorupdate is longrunningresourcecreateorupdate it will generate unproper model like | 0 |
334,892 | 29,995,891,892 | IssuesEvent | 2023-06-26 05:27:23 | 3DAsset-eCommerce/3D-BE | https://api.github.com/repos/3DAsset-eCommerce/3D-BE | closed | [feat] ์์๋ฆฌ์คํธ ์ญ์ | Available Low Test | ## Description
>> ์ฌ์ฉ์์ ์์๋ฆฌ์คํธ์์ ์์
์ ์ญ์ ํ๋ ๊ธฐ๋ฅ
## Tasks
- [x] ์ฌ์ฉ์์ id์ ์ญ์ ๋ฅผ ์์ฒญํ id๊ฐ ๊ฐ์์ง ํ์ธ
- [x] ์ญ์ ๋ฅผ ์์ฒญํ cartId๋ฅผ cartRepository์์ delete
- [x] Controller Test
- [x] Service Test
| 1.0 | [feat] ์์๋ฆฌ์คํธ ์ญ์ - ## Description
>> ์ฌ์ฉ์์ ์์๋ฆฌ์คํธ์์ ์์
์ ์ญ์ ํ๋ ๊ธฐ๋ฅ
## Tasks
- [x] ์ฌ์ฉ์์ id์ ์ญ์ ๋ฅผ ์์ฒญํ id๊ฐ ๊ฐ์์ง ํ์ธ
- [x] ์ญ์ ๋ฅผ ์์ฒญํ cartId๋ฅผ cartRepository์์ delete
- [x] Controller Test
- [x] Service Test
| test | ์์๋ฆฌ์คํธ ์ญ์ description ์ฌ์ฉ์์ ์์๋ฆฌ์คํธ์์ ์์
์ ์ญ์ ํ๋ ๊ธฐ๋ฅ tasks ์ฌ์ฉ์์ id์ ์ญ์ ๋ฅผ ์์ฒญํ id๊ฐ ๊ฐ์์ง ํ์ธ ์ญ์ ๋ฅผ ์์ฒญํ cartid๋ฅผ cartrepository์์ delete controller test service test | 1 |
127,598 | 12,334,736,547 | IssuesEvent | 2020-05-14 10:43:20 | EMS-TU-Ilmenau/chefkoch | https://api.github.com/repos/EMS-TU-Ilmenau/chefkoch | opened | Polish the documentation | documentation | It should be
- [ ] complete
- [ ] correct
- [ ] in sphinx-numpy format, which is:
```
This function does bla.
Parameters
------------
boo (type):
This parameter is used for bees.
Returns
--------
A magnificant value of type blub.
Raises
-------
BlobError:
If there is a blob forming that swallows everything along the way.
``` | 1.0 | Polish the documentation - It should be
- [ ] complete
- [ ] correct
- [ ] in sphinx-numpy format, which is:
```
This function does bla.
Parameters
------------
boo (type):
This parameter is used for bees.
Returns
--------
A magnificant value of type blub.
Raises
-------
BlobError:
If there is a blob forming that swallows everything along the way.
``` | non_test | polish the documentation it should be complete correct in sphinx numpy format which is this function does bla parameters boo type this parameter is used for bees returns a magnificant value of type blub raises bloberror if there is a blob forming that swallows everything along the way | 0 |
499,861 | 14,480,987,879 | IssuesEvent | 2020-12-10 11:58:40 | canonical-web-and-design/ubuntu.com | https://api.github.com/repos/canonical-web-and-design/ubuntu.com | closed | K8s release cycle chart hard to understand | Priority: Medium |

Depending on the size of your screen, the k8s release cycle chart is very hard to read. At worst, "October" and "2021" overlap. At best, it is confusing and reads like "October 2021" which provides a misleading EOL.
---
*Reported from: https://ubuntu.com/about/release-cycle* | 1.0 | K8s release cycle chart hard to understand -

Depending on the size of your screen, the k8s release cycle chart is very hard to read. At worst, "October" and "2021" overlap. At best, it is confusing and reads like "October 2021" which provides a misleading EOL.
---
*Reported from: https://ubuntu.com/about/release-cycle* | non_test | release cycle chart hard to understand depending on the size of your screen the release cycle chart is very hard to read at worst october and overlap at best it is confusing and reads like october which provides a misleading eol reported from | 0 |
317,880 | 27,273,067,061 | IssuesEvent | 2023-02-23 00:52:55 | harvester/harvester | https://api.github.com/repos/harvester/harvester | closed | [FEATURE] Boot harvester live iso without launcing harvester-installler | require/doc kind/enhancement area/installer priority/2 not-require/test-plan required-for-rc/v1.1.2 | **Problem**
I regularly starting harvester-live configuration on an node for debugging and inspecting purposes.
This is extract from my ipxe configuration
<pre>
:harvester_live
kernel ${http_harvester}/harvester${harvester_release}-vmlinuz-amd64 ${k_cmd} ip=dhcp net.ifnames=1 rd.cos.disable rd.noverifyssl root=live:${http_harvester}/harvester${harvester_release}-rootfs-amd64.squashfs
initrd ${http_harvester}/harvester${harvester_release}-initrd-amd64
boot
</pre>
The problem is it always launches harvester-installer, which we don't want in that scenario.
**Solution**
The solution that satisfies me is additional kernel parameter which prevents harvester-installer start:
<pre>
harvester.setupinstaller=false
</pre>
I have implemented that with this commit:
https://github.com/hernad/harvester-installer/commit/abbdd359eebbc33ed9de746123a1a71d4d27d9f9
| 1.0 | [FEATURE] Boot harvester live iso without launcing harvester-installler - **Problem**
I regularly starting harvester-live configuration on an node for debugging and inspecting purposes.
This is extract from my ipxe configuration
<pre>
:harvester_live
kernel ${http_harvester}/harvester${harvester_release}-vmlinuz-amd64 ${k_cmd} ip=dhcp net.ifnames=1 rd.cos.disable rd.noverifyssl root=live:${http_harvester}/harvester${harvester_release}-rootfs-amd64.squashfs
initrd ${http_harvester}/harvester${harvester_release}-initrd-amd64
boot
</pre>
The problem is it always launches harvester-installer, which we don't want in that scenario.
**Solution**
The solution that satisfies me is additional kernel parameter which prevents harvester-installer start:
<pre>
harvester.setupinstaller=false
</pre>
I have implemented that with this commit:
https://github.com/hernad/harvester-installer/commit/abbdd359eebbc33ed9de746123a1a71d4d27d9f9
| test | boot harvester live iso without launcing harvester installler problem i regularly starting harvester live configuration on an node for debugging and inspecting purposes this is extract from my ipxe configuration harvester live kernel http harvester harvester harvester release vmlinuz k cmd ip dhcp net ifnames rd cos disable rd noverifyssl root live http harvester harvester harvester release rootfs squashfs initrd http harvester harvester harvester release initrd boot the problem is it always launches harvester installer which we don t want in that scenario solution the solution that satisfies me is additional kernel parameter which prevents harvester installer start harvester setupinstaller false i have implemented that with this commit | 1 |
123,561 | 10,272,878,541 | IssuesEvent | 2019-08-23 17:41:36 | sylabs/singularity | https://api.github.com/repos/sylabs/singularity | closed | [E2E] port integration test "security " to the e2e framework | Testing e2e | ## E2E Task
Port
- https://github.com/sylabs/singularity/blob/master/cmd/singularity/security_test.go
to the E2E framework
- https://github.com/sylabs/singularity/tree/master/e2e
under `e2e/security`
| 1.0 | [E2E] port integration test "security " to the e2e framework - ## E2E Task
Port
- https://github.com/sylabs/singularity/blob/master/cmd/singularity/security_test.go
to the E2E framework
- https://github.com/sylabs/singularity/tree/master/e2e
under `e2e/security`
| test | port integration test security to the framework task port to the framework under security | 1 |
176,734 | 13,651,107,076 | IssuesEvent | 2020-09-26 22:53:55 | OllisGit/OctoPrint-DisplayLayerProgress | https://api.github.com/repos/OllisGit/OctoPrint-DisplayLayerProgress | closed | Ignore negative extruder moves when calculating max height | status: markedForAutoClose status: waitingForTestFeedback | The default settings for cura-lulzbot and my TAZ6 does this as part of the end of print job:
...
G91
G1 E-1 F300 ; filament retraction to release pressure
G1 Z20 E-5 X-20 Y-20 F3000 ; lift up and retract even more filament
G1 E6 ; re-prime extruder
This means that DisplayLayerProgress shows 20mm as the height even if the model is lower than that.
If the plugin kept count of negative extruder moves and added them back to positives, it could detect the highest position for actual extrusion. | 1.0 | Ignore negative extruder moves when calculating max height - The default settings for cura-lulzbot and my TAZ6 does this as part of the end of print job:
...
G91
G1 E-1 F300 ; filament retraction to release pressure
G1 Z20 E-5 X-20 Y-20 F3000 ; lift up and retract even more filament
G1 E6 ; re-prime extruder
This means that DisplayLayerProgress shows 20mm as the height even if the model is lower than that.
If the plugin kept count of negative extruder moves and added them back to positives, it could detect the highest position for actual extrusion. | test | ignore negative extruder moves when calculating max height the default settings for cura lulzbot and my does this as part of the end of print job e filament retraction to release pressure e x y lift up and retract even more filament re prime extruder this means that displaylayerprogress shows as the height even if the model is lower than that if the plugin kept count of negative extruder moves and added them back to positives it could detect the highest position for actual extrusion | 1 |
64,157 | 15,815,406,639 | IssuesEvent | 2021-04-05 11:14:55 | spack/spack | https://api.github.com/repos/spack/spack | closed | hdf5@1.8.21 fails to build with gcc@10.2 | build-error | ```
$ spack spec hdf5@1.8.21 ~mpi %gcc@10.2.0
Input spec
--------------------------------
hdf5@1.8.21%gcc@10.2.0~mpi
Concretized
--------------------------------
hdf5@1.8.21%gcc@10.2.0 api=none +cxx~debug+fortran+hl~java~mpi+pic+shared+szip+threadsafe arch=linux-centos7-zen2
^libszip@2.1.1%gcc@10.2.0 arch=linux-centos7-zen2
^zlib@1.2.11%gcc@10.2.0+optimize+pic+shared arch=linux-centos7-zen2
```
Build error:
```
10631 | 1
>> 10632 Error: BOZ literal constant at (1) is neither a data-stmt-constant nor an actual argument to INT, REAL, DBLE, o
r CMPLX intrinsic function [see '-fno-allow-invalid-boz']
10633 tH5T_F03.f90:1554:69:
10634
10635 1554 | wdata(i+1,j+1) = IOR( wdata(i+1,j+1), INT(IAND(i * j - j, hex),C_SIGNED_CHAR) ) ! Field "A"
10636 | 1
>> 10637 Error: Symbol 'hex' at (1) has no IMPLICIT type
>> 10638 make[2]: *** [tH5T_F03.o] Error 1
10639 make[2]: Leaving directory `/tmp/amaji/spack-stage-hdf5-1.8.21-z4vjcj43q5cxuyiz576n6mtriwn3tyyx/spack-src/fortr
an/test'
>> 10640 make[1]: *** [all-recursive] Error 1
10641 make[1]: Leaving directory `/tmp/amaji/spack-stage-hdf5-1.8.21-z4vjcj43q5cxuyiz576n6mtriwn3tyyx/spack-src/fortr
an'
>> 10642 make: *** [all-recursive] Error 1
```
Has anyone else seen this? | 1.0 | hdf5@1.8.21 fails to build with gcc@10.2 - ```
$ spack spec hdf5@1.8.21 ~mpi %gcc@10.2.0
Input spec
--------------------------------
hdf5@1.8.21%gcc@10.2.0~mpi
Concretized
--------------------------------
hdf5@1.8.21%gcc@10.2.0 api=none +cxx~debug+fortran+hl~java~mpi+pic+shared+szip+threadsafe arch=linux-centos7-zen2
^libszip@2.1.1%gcc@10.2.0 arch=linux-centos7-zen2
^zlib@1.2.11%gcc@10.2.0+optimize+pic+shared arch=linux-centos7-zen2
```
Build error:
```
10631 | 1
>> 10632 Error: BOZ literal constant at (1) is neither a data-stmt-constant nor an actual argument to INT, REAL, DBLE, o
r CMPLX intrinsic function [see '-fno-allow-invalid-boz']
10633 tH5T_F03.f90:1554:69:
10634
10635 1554 | wdata(i+1,j+1) = IOR( wdata(i+1,j+1), INT(IAND(i * j - j, hex),C_SIGNED_CHAR) ) ! Field "A"
10636 | 1
>> 10637 Error: Symbol 'hex' at (1) has no IMPLICIT type
>> 10638 make[2]: *** [tH5T_F03.o] Error 1
10639 make[2]: Leaving directory `/tmp/amaji/spack-stage-hdf5-1.8.21-z4vjcj43q5cxuyiz576n6mtriwn3tyyx/spack-src/fortr
an/test'
>> 10640 make[1]: *** [all-recursive] Error 1
10641 make[1]: Leaving directory `/tmp/amaji/spack-stage-hdf5-1.8.21-z4vjcj43q5cxuyiz576n6mtriwn3tyyx/spack-src/fortr
an'
>> 10642 make: *** [all-recursive] Error 1
```
Has anyone else seen this? | non_test | fails to build with gcc spack spec mpi gcc input spec gcc mpi concretized gcc api none cxx debug fortran hl java mpi pic shared szip threadsafe arch linux libszip gcc arch linux zlib gcc optimize pic shared arch linux build error error boz literal constant at is neither a data stmt constant nor an actual argument to int real dble o r cmplx intrinsic function wdata i j ior wdata i j int iand i j j hex c signed char field a error symbol hex at has no implicit type make error make leaving directory tmp amaji spack stage spack src fortr an test make error make leaving directory tmp amaji spack stage spack src fortr an make error has anyone else seen this | 0 |
39,114 | 9,204,212,217 | IssuesEvent | 2019-03-08 06:26:09 | bridgedotnet/Bridge | https://api.github.com/repos/bridgedotnet/Bridge | closed | Missing Field At auto get set property | defect in-progress | this bug is about reflection
https://deck.net/ba436f5e4c832500a0f0a776ceb7f426
on MyModel class metadata is ok exception of one
no field found for Name property, in fact not builded
```csharp
public class MyModel
{
public string Name { get; set; }
public string Name2;
}
```
sample :
```csharp
public class Program
{
public static void Main()
{
var t = typeof(MyModel);
foreach (var Member in t.GetFields(BindingFlags.Public |BindingFlags.NonPublic| BindingFlags.Instance))
{
Console.WriteLine(Member.Name);
}
}
public class MyModel
{
public string Name { get; set; }
public string Name2;
}
}
```
### Expected Result on console
Name_$k__BackingField
Name2
### Actual Result on console
Name2
| 1.0 | Missing Field At auto get set property - this bug is about reflection
https://deck.net/ba436f5e4c832500a0f0a776ceb7f426
on MyModel class metadata is ok exception of one
no field found for Name property, in fact not builded
```csharp
public class MyModel
{
public string Name { get; set; }
public string Name2;
}
```
sample :
```csharp
public class Program
{
public static void Main()
{
var t = typeof(MyModel);
foreach (var Member in t.GetFields(BindingFlags.Public |BindingFlags.NonPublic| BindingFlags.Instance))
{
Console.WriteLine(Member.Name);
}
}
public class MyModel
{
public string Name { get; set; }
public string Name2;
}
}
```
### Expected Result on console
Name_$k__BackingField
Name2
### Actual Result on console
Name2
| non_test | missing field at auto get set property this bug is about reflection on mymodel class metadata is ok exception of one no field found for name property in fact not builded csharp public class mymodel public string name get set public string sample csharp public class program public static void main var t typeof mymodel foreach var member in t getfields bindingflags public bindingflags nonpublic bindingflags instance console writeline member name public class mymodel public string name get set public string expected result on console name k backingfield actual result on console | 0 |
348,392 | 31,560,956,802 | IssuesEvent | 2023-09-03 08:45:05 | gear-foundation/vara-network | https://api.github.com/repos/gear-foundation/vara-network | opened | I cant get faucet | bug testnet | ### Problem
I claimed faucet but it didn't fall into my wallet

### Steps
1.
2.
3.
### Expected Behavior
_No response_
### Your Substrate Address
_No response_
### What browsers are you seeing the problem on?
- [ ] Firefox
- [X] Chrome
- [ ] Safari
- [ ] Microsoft Edge
- [ ] Other
### Other browser
_No response_
### Which wallet you are using?
- [X] PolkadotJS
- [ ] Talisman
- [ ] Nova Wallet
- [ ] SubWallet
### Screenshots
_No response_
### Notes
_No response_ | 1.0 | I cant get faucet - ### Problem
I claimed faucet but it didn't fall into my wallet

### Steps
1.
2.
3.
### Expected Behavior
_No response_
### Your Substrate Address
_No response_
### What browsers are you seeing the problem on?
- [ ] Firefox
- [X] Chrome
- [ ] Safari
- [ ] Microsoft Edge
- [ ] Other
### Other browser
_No response_
### Which wallet you are using?
- [X] PolkadotJS
- [ ] Talisman
- [ ] Nova Wallet
- [ ] SubWallet
### Screenshots
_No response_
### Notes
_No response_ | test | i cant get faucet problem i claimed faucet but it didn t fall into my wallet steps expected behavior no response your substrate address no response what browsers are you seeing the problem on firefox chrome safari microsoft edge other other browser no response which wallet you are using polkadotjs talisman nova wallet subwallet screenshots no response notes no response | 1 |
440,997 | 12,707,014,639 | IssuesEvent | 2020-06-23 08:13:04 | luna/luna | https://api.github.com/repos/luna/luna | closed | Inconsistent type inference when connecting values to ports | Category: Compiler Category: Type-System Change: Non-Breaking Difficulty: Core Contributor Priority: High Type: Bug | Please ensure that you are running the latest version of Luna before reporting the bug! It may have been fixed since.
### General Summary
The order in which you connect ports has an effect on the type inference. For example, if you have a node whose expressions is `+`, you will have two input ports, `a0` and `a1`. If you connect an `Int` value to port `a0` first, the type of the node will change to `Int -> Int`. If you connect a value to `a1` first, the type will change to `a3 -> *`. The number of input ports also varies in each case: with `a0`, an input port disappears, leaving just one port. With `a1`, both ports remaining separate and distinct.

### Steps to Reproduce
Please list the reproduction steps for your bug. For example:
1. Create a new project with `luna init MyProject`.
2. Enter the node editor.
3. Create a node with expression `+`.
4. Create an `Int` value node.
5. Connect that value first to `a0`.
6. Disconnect the value from `a0`.
7. Connect the value to `a1`.
### Expected Result
The order of port connection should not affect the result of type inference: in both cases, the type parameter should take the `Int` value.
### Luna Version
1.4 beta
| 1.0 | Inconsistent type inference when connecting values to ports - Please ensure that you are running the latest version of Luna before reporting the bug! It may have been fixed since.
### General Summary
The order in which you connect ports has an effect on the type inference. For example, if you have a node whose expressions is `+`, you will have two input ports, `a0` and `a1`. If you connect an `Int` value to port `a0` first, the type of the node will change to `Int -> Int`. If you connect a value to `a1` first, the type will change to `a3 -> *`. The number of input ports also varies in each case: with `a0`, an input port disappears, leaving just one port. With `a1`, both ports remaining separate and distinct.

### Steps to Reproduce
Please list the reproduction steps for your bug. For example:
1. Create a new project with `luna init MyProject`.
2. Enter the node editor.
3. Create a node with expression `+`.
4. Create an `Int` value node.
5. Connect that value first to `a0`.
6. Disconnect the value from `a0`.
7. Connect the value to `a1`.
### Expected Result
The order of port connection should not affect the result of type inference: in both cases, the type parameter should take the `Int` value.
### Luna Version
1.4 beta
| non_test | inconsistent type inference when connecting values to ports please ensure that you are running the latest version of luna before reporting the bug it may have been fixed since general summary the order in which you connect ports has an effect on the type inference for example if you have a node whose expressions is you will have two input ports and if you connect an int value to port first the type of the node will change to int int if you connect a value to first the type will change to the number of input ports also varies in each case with an input port disappears leaving just one port with both ports remaining separate and distinct steps to reproduce please list the reproduction steps for your bug for example create a new project with luna init myproject enter the node editor create a node with expression create an int value node connect that value first to disconnect the value from connect the value to expected result the order of port connection should not affect the result of type inference in both cases the type parameter should take the int value luna version beta | 0 |
633,942 | 20,271,170,166 | IssuesEvent | 2022-02-15 16:19:03 | ArctosDB/arctos | https://api.github.com/repos/ArctosDB/arctos | closed | West Indies = Continent? | Priority-High (Needed for work) Function-Locality/Event/Georeferencing Aggregator issues | See https://github.com/ArctosDB/arctos/issues/1291#issuecomment-677929819
Also see [documentation](https://handbook.arctosdb.org/documentation/higher-geography.html#continent--ocean).
I think this needs to be fixed pretty quickly, but that's just my opinion.

| 1.0 | West Indies = Continent? - See https://github.com/ArctosDB/arctos/issues/1291#issuecomment-677929819
Also see [documentation](https://handbook.arctosdb.org/documentation/higher-geography.html#continent--ocean).
I think this needs to be fixed pretty quickly, but that's just my opinion.

| non_test | west indies continent see also see i think this needs to be fixed pretty quickly but that s just my opinion | 0 |
276,302 | 23,983,714,517 | IssuesEvent | 2022-09-13 17:06:45 | dmwm/WMCore | https://api.github.com/repos/dmwm/WMCore | closed | Run WMAgent validation for 2.1.2 production release candidate | Operations High Priority Testing | **Impact of the new feature**
WMAgent
**Is your feature request related to a problem? Please describe.**
By-monthly task
**Describe the solution you'd like**
We need to release a new WMAgent stable version in September, so this issue is to keep track of the full validation activity to be carried out in the first weeks of September, once we have a final 2.1.2 tag. Note that this agent will likely be the first version to run CouchDB 3.2.2, so extra attention during the validation is required.
In addition to the validation results, WMAgent release notes and the validation check-list twiki need to be created as well.
**Describe alternatives you've considered**
none
**Additional context**
none | 1.0 | Run WMAgent validation for 2.1.2 production release candidate - **Impact of the new feature**
WMAgent
**Is your feature request related to a problem? Please describe.**
By-monthly task
**Describe the solution you'd like**
We need to release a new WMAgent stable version in September, so this issue is to keep track of the full validation activity to be carried out in the first weeks of September, once we have a final 2.1.2 tag. Note that this agent will likely be the first version to run CouchDB 3.2.2, so extra attention during the validation is required.
In addition to the validation results, WMAgent release notes and the validation check-list twiki need to be created as well.
**Describe alternatives you've considered**
none
**Additional context**
none | test | run wmagent validation for production release candidate impact of the new feature wmagent is your feature request related to a problem please describe by monthly task describe the solution you d like we need to release a new wmagent stable version in september so this issue is to keep track of the full validation activity to be carried out in the first weeks of september once we have a final tag note that this agent will likely be the first version to run couchdb so extra attention during the validation is required in addition to the validation results wmagent release notes and the validation check list twiki need to be created as well describe alternatives you ve considered none additional context none | 1 |
277,068 | 24,046,232,365 | IssuesEvent | 2022-09-16 08:35:24 | celestiaorg/test-infra | https://api.github.com/repos/celestiaorg/test-infra | opened | testground/node: more test-cases for big blocks plan | enhancement test testground | Now, light nodes are syncing from bridges as fulls are. We need to do a small adaptation to see how light syncs from fulls and not from bridges in additional test-cases
| 2.0 | testground/node: more test-cases for big blocks plan - Now, light nodes are syncing from bridges as fulls are. We need to do a small adaptation to see how light syncs from fulls and not from bridges in additional test-cases
| test | testground node more test cases for big blocks plan now light nodes are syncing from bridges as fulls are we need to do a small adaptation to see how light syncs from fulls and not from bridges in additional test cases | 1 |
111,168 | 9,516,050,665 | IssuesEvent | 2019-04-26 07:49:03 | rsyslog/rsyslog | https://api.github.com/repos/rsyslog/rsyslog | closed | testbench: kafka test instabilities | testbench | unfortunately, we still have them.
All recorded kafka test failures: http://build.rsyslog.com/testbench-showtest.php?testname=%kafka%.sh
Samples:
* sequence error
* https://build.rsyslog.com/#/builders/142/builds/1619
* https://build.rsyslog.com/#/builders/142/builds/1620
* https://build.rsyslog.com/#/builders/142/builds/1621
* https://build.rsyslog.com/#/builders/142/builds/1624
* https://build.rsyslog.com/#/builders/138/builds/762
... and many more - looks like it now fails in 90% of the cases
* https://build.rsyslog.com/#/builders/137/builds/984 - different one, broker die while rsyslog runs
For things like this, we could check for "broker died" error messages from rsyslog and, if found, skip the test.
* topic creation error
* https://build.rsyslog.com/#/builders/137/builds/962 | 1.0 | testbench: kafka test instabilities - unfortunately, we still have them.
All recorded kafka test failures: http://build.rsyslog.com/testbench-showtest.php?testname=%kafka%.sh
Samples:
* sequence error
* https://build.rsyslog.com/#/builders/142/builds/1619
* https://build.rsyslog.com/#/builders/142/builds/1620
* https://build.rsyslog.com/#/builders/142/builds/1621
* https://build.rsyslog.com/#/builders/142/builds/1624
* https://build.rsyslog.com/#/builders/138/builds/762
... and many more - looks like it now fails in 90% of the cases
* https://build.rsyslog.com/#/builders/137/builds/984 - different one, broker die while rsyslog runs
For things like this, we could check for "broker died" error messages from rsyslog and, if found, skip the test.
* topic creation error
* https://build.rsyslog.com/#/builders/137/builds/962 | test | testbench kafka test instabilities unfortunately we still have them all recorded kafka test failures samples sequence error and many more looks like it now fails in of the cases different one broker die while rsyslog runs for things like this we could check for broker died error messages from rsyslog and if found skip the test topic creation error | 1 |
270,564 | 23,519,024,375 | IssuesEvent | 2022-08-19 02:25:09 | woowa-techcamp-2022/android-banchan-04 | https://api.github.com/repos/woowa-techcamp-2022/android-banchan-04 | closed | ๋ฐ์ดํฐ๋ฒ ์ด์ค insert์ update ๋ถ๋ฆฌ ๋ฌธ์ | fix test day11 | ## CheckList
- [ ] Primary Key๊ฐ `autoGenerate = true` ์ธ ๊ฒฝ์ฐ insert ์ ์๋์ผ๋ก ์ entity id๋ฅผ ์์ฑํ๋ฏ๋ก insert์ update๋ฅผ ๋ช
์ํ์ฌ Transaction์ผ๋กconflict๋ฅผ ์๋ฐฉํ์ฌ update๋ฅผ ๊ตฌํ | 1.0 | ๋ฐ์ดํฐ๋ฒ ์ด์ค insert์ update ๋ถ๋ฆฌ ๋ฌธ์ - ## CheckList
- [ ] Primary Key๊ฐ `autoGenerate = true` ์ธ ๊ฒฝ์ฐ insert ์ ์๋์ผ๋ก ์ entity id๋ฅผ ์์ฑํ๋ฏ๋ก insert์ update๋ฅผ ๋ช
์ํ์ฌ Transaction์ผ๋กconflict๋ฅผ ์๋ฐฉํ์ฌ update๋ฅผ ๊ตฌํ | test | ๋ฐ์ดํฐ๋ฒ ์ด์ค insert์ update ๋ถ๋ฆฌ ๋ฌธ์ checklist primary key๊ฐ autogenerate true ์ธ ๊ฒฝ์ฐ insert ์ ์๋์ผ๋ก ์ entity id๋ฅผ ์์ฑํ๋ฏ๋ก insert์ update๋ฅผ ๋ช
์ํ์ฌ transaction์ผ๋กconflict๋ฅผ ์๋ฐฉํ์ฌ update๋ฅผ ๊ตฌํ | 1 |
37,374 | 5,114,680,815 | IssuesEvent | 2017-01-06 19:17:50 | dotnet/corefx | https://api.github.com/repos/dotnet/corefx | closed | Test failure: System.Xml.Tests.AsyncReaderLateInitTests/ReadAfterInitializationWithUriOnAsyncReaderTrows | area-System.Xml test bug test-run-desktop | Opened on behalf of @jiangzeng
The test `System.Xml.Tests.AsyncReaderLateInitTests/ReadAfterInitializationWithUriOnAsyncReaderTrows` has failed.
Assert.Throws() Failure\r
Expected: typeof(System.Xml.XmlException)\r
Actual: typeof(System.AggregateException): One or more errors occurred.
Stack Trace:
at System.Threading.Tasks.Task.ThrowIfExceptional(Boolean includeTaskCanceledExceptions)
at System.Threading.Tasks.Task.Wait(Int32 millisecondsTimeout, CancellationToken cancellationToken)
at System.Xml.XmlTextReaderImpl.FinishInitUriString()
at System.Xml.XmlTextReaderImpl.Read()
at System.Xml.Tests.AsyncReaderLateInitTests.<>c__DisplayClass8_0.<ReadAfterInitializationWithUriOnAsyncReaderTrows>b__0() in D:\A\_work\32\s\corefx\src\System.Private.Xml\tests\XmlReader\Tests\AsyncReaderLateInitTests.cs:line 86
Build : Master - 20161031.01 (Full Framework Tests)
Failing configurations:
- Windows.10.Amd64
- AnyCPU-Debug
- AnyCPU-Release
Details:
https://mc.dot.net/#/product/netcore/master/source/official~2Fcorefx~2Fmaster~2F/type/test~2Ffunctional~2Fdesktop~2Fcli~2F/build/20161031.01/workItem/System.Xml.RW.XmlReader.Tests/analysis/xunit/System.Xml.Tests.AsyncReaderLateInitTests~2FReadAfterInitializationWithUriOnAsyncReaderTrows | 2.0 | Test failure: System.Xml.Tests.AsyncReaderLateInitTests/ReadAfterInitializationWithUriOnAsyncReaderTrows - Opened on behalf of @jiangzeng
The test `System.Xml.Tests.AsyncReaderLateInitTests/ReadAfterInitializationWithUriOnAsyncReaderTrows` has failed.
Assert.Throws() Failure\r
Expected: typeof(System.Xml.XmlException)\r
Actual: typeof(System.AggregateException): One or more errors occurred.
Stack Trace:
at System.Threading.Tasks.Task.ThrowIfExceptional(Boolean includeTaskCanceledExceptions)
at System.Threading.Tasks.Task.Wait(Int32 millisecondsTimeout, CancellationToken cancellationToken)
at System.Xml.XmlTextReaderImpl.FinishInitUriString()
at System.Xml.XmlTextReaderImpl.Read()
at System.Xml.Tests.AsyncReaderLateInitTests.<>c__DisplayClass8_0.<ReadAfterInitializationWithUriOnAsyncReaderTrows>b__0() in D:\A\_work\32\s\corefx\src\System.Private.Xml\tests\XmlReader\Tests\AsyncReaderLateInitTests.cs:line 86
Build : Master - 20161031.01 (Full Framework Tests)
Failing configurations:
- Windows.10.Amd64
- AnyCPU-Debug
- AnyCPU-Release
Details:
https://mc.dot.net/#/product/netcore/master/source/official~2Fcorefx~2Fmaster~2F/type/test~2Ffunctional~2Fdesktop~2Fcli~2F/build/20161031.01/workItem/System.Xml.RW.XmlReader.Tests/analysis/xunit/System.Xml.Tests.AsyncReaderLateInitTests~2FReadAfterInitializationWithUriOnAsyncReaderTrows | test | test failure system xml tests asyncreaderlateinittests readafterinitializationwithurionasyncreadertrows opened on behalf of jiangzeng the test system xml tests asyncreaderlateinittests readafterinitializationwithurionasyncreadertrows has failed assert throws failure r expected typeof system xml xmlexception r actual typeof system aggregateexception one or more errors occurred stack trace at system threading tasks task throwifexceptional boolean includetaskcanceledexceptions at system threading tasks task wait millisecondstimeout cancellationtoken cancellationtoken at system xml xmltextreaderimpl finishinituristring at system xml xmltextreaderimpl read at system xml tests asyncreaderlateinittests c b in d a work s corefx src system private xml tests xmlreader tests asyncreaderlateinittests cs line build master full framework tests failing configurations windows anycpu debug anycpu release details | 1 |
37,555 | 5,119,408,745 | IssuesEvent | 2017-01-08 17:38:10 | MajkiIT/polish-ads-filter | https://api.github.com/repos/MajkiIT/polish-ads-filter | closed | antyweb.pl | reguลy gotowe/testowanie reklama | nie moge sie tego pozbyc caly czas wyskakuje naciskam not now i dalej wyskakuje

| 1.0 | antyweb.pl - nie moge sie tego pozbyc caly czas wyskakuje naciskam not now i dalej wyskakuje

| test | antyweb pl nie moge sie tego pozbyc caly czas wyskakuje naciskam not now i dalej wyskakuje | 1 |
293,887 | 9,010,729,069 | IssuesEvent | 2019-02-05 12:53:11 | pgmpy/pgmpy | https://api.github.com/repos/pgmpy/pgmpy | closed | Bug in BIFReader function | High Priority bug release 0.2 | ### Subject of the issue
There is a bug in the BIFReader function. I think while reading the CPD only the order in which the states are specified is taken into account , not the actual values of the state.
e.g. variable Pollution {low high} **high - 1 low - 0**
variable Smoker {True False} **True - 0, False-1**
probability ( Cancer | Pollution, Smoker ) {
(low, True) 0.03, 0.97;
(high, True) 0.05, 0.95; **should be 1,0 instead of 0,1**
(low, False) 0.001, 0.999;**should be 0,1 instead of 1,0**
(high, False) 0.02, 0.98;
}
probability ( Cancer | Pollution, Smoker ) {
(low, True) 0.03, 0.97;
(low, False) 0.001, 0.999;
(high, True) 0.05, 0.95;
(high, False) 0.02, 0.98;
}
The two CPDs are equivalent but read differently by the function.
### Your environment
* pgmpy version 0.1.7
* Python version 3.5
* Operating System Unbuntu16.04
### Steps to reproduce
Attached are two benchmark files cancer1.bif and cancer2.bif with the same data but the order of specifying the states of CPD is changed for one of the tables. Inference on both models gives different results even though the model is the same.
Sample run file is also attached.
### Expected behaviour
The result of the query should be same in both cases since models are equivalent.
### Actual behaviour
Results with model file1:
```
+----------+---------------+
| Cancer | phi(Cancer) |
+==========+===============+
| Cancer_0 | 0.0116 |
+----------+---------------+
| Cancer_1 | 0.9884 |
+----------+---------------+
Results with model file2:
+----------+---------------+
| Cancer | phi(Cancer) |
+==========+===============+
| Cancer_0 | 0.0410 |
+----------+---------------+
| Cancer_1 | 0.9590 |
+----------+---------------+
```
[test.zip](https://github.com/pgmpy/pgmpy/files/2775737/test.zip)
| 1.0 | Bug in BIFReader function - ### Subject of the issue
There is a bug in the BIFReader function. I think while reading the CPD only the order in which the states are specified is taken into account , not the actual values of the state.
e.g. variable Pollution {low high} **high - 1 low - 0**
variable Smoker {True False} **True - 0, False-1**
probability ( Cancer | Pollution, Smoker ) {
(low, True) 0.03, 0.97;
(high, True) 0.05, 0.95; **should be 1,0 instead of 0,1**
(low, False) 0.001, 0.999;**should be 0,1 instead of 1,0**
(high, False) 0.02, 0.98;
}
probability ( Cancer | Pollution, Smoker ) {
(low, True) 0.03, 0.97;
(low, False) 0.001, 0.999;
(high, True) 0.05, 0.95;
(high, False) 0.02, 0.98;
}
The two CPDs are equivalent but read differently by the function.
### Your environment
* pgmpy version 0.1.7
* Python version 3.5
* Operating System Unbuntu16.04
### Steps to reproduce
Attached are two benchmark files cancer1.bif and cancer2.bif with the same data but the order of specifying the states of CPD is changed for one of the tables. Inference on both models gives different results even though the model is the same.
Sample run file is also attached.
### Expected behaviour
The result of the query should be same in both cases since models are equivalent.
### Actual behaviour
Results with model file1:
```
+----------+---------------+
| Cancer | phi(Cancer) |
+==========+===============+
| Cancer_0 | 0.0116 |
+----------+---------------+
| Cancer_1 | 0.9884 |
+----------+---------------+
Results with model file2:
+----------+---------------+
| Cancer | phi(Cancer) |
+==========+===============+
| Cancer_0 | 0.0410 |
+----------+---------------+
| Cancer_1 | 0.9590 |
+----------+---------------+
```
[test.zip](https://github.com/pgmpy/pgmpy/files/2775737/test.zip)
| non_test | bug in bifreader function subject of the issue there is a bug in the bifreader function i think while reading the cpd only the order in which the states are specified is taken into account not the actual values of the state e g variable pollution low high high low variable smoker true false true false probability cancer pollution smoker low true high true should be instead of low false should be instead of high false probability cancer pollution smoker low true low false high true high false the two cpds are equivalent but read differently by the function your environment pgmpy version python version operating system steps to reproduce attached are two benchmark files bif and bif with the same data but the order of specifying the states of cpd is changed for one of the tables inference on both models gives different results even though the model is the same sample run file is also attached expected behaviour the result of the query should be same in both cases since models are equivalent actual behaviour results with model cancer phi cancer cancer cancer results with model cancer phi cancer cancer cancer | 0 |
151,598 | 23,846,530,526 | IssuesEvent | 2022-09-06 14:25:00 | Altinn/altinn-studio | https://api.github.com/repos/Altinn/altinn-studio | opened | v2 DELETE endpoint for languages | area/language solution/studio/designer solution/app-backend team/studio | ### Description
This endpoint will delete a file from the app repository for a specific language.
`DELETE altinn3.no/designer/api/v2/ttd/identical-ids/texts/uk`
TODO: Add figma sketch for where the endpoint should be called from.
### Additional Information
_No response_
### Tasks
_No response_
### Acceptance Criterias
- [ ] Implementation of DeleteText() endpoint
- [ ] Unit/integration tests for the endpoint | 1.0 | v2 DELETE endpoint for languages - ### Description
This endpoint will delete a file from the app repository for a specific language.
`DELETE altinn3.no/designer/api/v2/ttd/identical-ids/texts/uk`
TODO: Add figma sketch for where the endpoint should be called from.
### Additional Information
_No response_
### Tasks
_No response_
### Acceptance Criterias
- [ ] Implementation of DeleteText() endpoint
- [ ] Unit/integration tests for the endpoint | non_test | delete endpoint for languages description this endpoint will delete a file from the app repository for a specific language delete no designer api ttd identical ids texts uk todo add figma sketch for where the endpoint should be called from additional information no response tasks no response acceptance criterias implementation of deletetext endpoint unit integration tests for the endpoint | 0 |
154,617 | 12,221,786,305 | IssuesEvent | 2020-05-02 09:52:41 | WoWManiaUK/Blackwing-Lair | https://api.github.com/repos/WoWManiaUK/Blackwing-Lair | reopened | [Quest] Faces of Evil - ID 26521- (Ally) - The Hinterlands | Confirmed By Tester Quest zone 30 - 40 | Quest - https://www.wowhead.com/quest=26521/faces-of-evil
NPC -https://www.wowhead.com/npc=43156
Item - https://www.wowhead.com/item=58209/tiki-torch
The faces cannot be targeted there for when the item is registered it doesn't set fire to the mask's. Unable to complete quest. | 1.0 | [Quest] Faces of Evil - ID 26521- (Ally) - The Hinterlands - Quest - https://www.wowhead.com/quest=26521/faces-of-evil
NPC -https://www.wowhead.com/npc=43156
Item - https://www.wowhead.com/item=58209/tiki-torch
The faces cannot be targeted there for when the item is registered it doesn't set fire to the mask's. Unable to complete quest. | test | faces of evil id ally the hinterlands quest npc item the faces cannot be targeted there for when the item is registered it doesn t set fire to the mask s unable to complete quest | 1 |
277,050 | 24,045,064,507 | IssuesEvent | 2022-09-16 07:33:02 | hzi-braunschweig/SORMAS-Project | https://api.github.com/repos/hzi-braunschweig/SORMAS-Project | closed | Create automated test to cover Statistics directory | task e2e-tests | The aim of this task is to create automated tests for the following flows in order to reach a coverage for this functionality.
- [x] Test1: Validate Statistics directory layout
Navigate to Statistics directory
Validate presence of Filters section: add filter button + reset button
Validate presence of Visualization section: type, rows, column options
Validate presence of Options section
Validate presence of generate button
Validate presence of results section
- [x] Test2: Validate Statistics directory database export tab layout
Navigate to Statistics directory
Click on DATABASE EXPORT tab
Validate presence of Select all/deselect/specific options
Validate presence of SORMAS DATA options
Validate presence of Infrastructure data options
Validate presence of Configuration data options
Validate presence of export button
- [x] Test3: Statistics report generation flow check
Navigate to Statistics directory
Apply filter -> attribute: disease -> disease: covid19
Keep visualization type to default: TABLE
Click on generate button
Validate results table displays data
Change visualization type to MAP
Click on generate button
Validate map is displayed
Change visualization type to CHART
Click on generate button
Validate chart is displayed
| 1.0 | Create automated test to cover Statistics directory - The aim of this task is to create automated tests for the following flows in order to reach a coverage for this functionality.
- [x] Test1: Validate Statistics directory layout
Navigate to Statistics directory
Validate presence of Filters section: add filter button + reset button
Validate presence of Visualization section: type, rows, column options
Validate presence of Options section
Validate presence of generate button
Validate presence of results section
- [x] Test2: Validate Statistics directory database export tab layout
Navigate to Statistics directory
Click on DATABASE EXPORT tab
Validate presence of Select all/deselect/specific options
Validate presence of SORMAS DATA options
Validate presence of Infrastructure data options
Validate presence of Configuration data options
Validate presence of export button
- [x] Test3: Statistics report generation flow check
Navigate to Statistics directory
Apply filter -> attribute: disease -> disease: covid19
Keep visualization type to default: TABLE
Click on generate button
Validate results table displays data
Change visualization type to MAP
Click on generate button
Validate map is displayed
Change visualization type to CHART
Click on generate button
Validate chart is displayed
| test | create automated test to cover statistics directory the aim of this task is to create automated tests for the following flows in order to reach a coverage for this functionality validate statistics directory layout navigate to statistics directory validate presence of filters section add filter button reset button validate presence of visualization section type rows column options validate presence of options section validate presence of generate button validate presence of results section validate statistics directory database export tab layout navigate to statistics directory click on database export tab validate presence of select all deselect specific options validate presence of sormas data options validate presence of infrastructure data options validate presence of configuration data options validate presence of export button statistics report generation flow check navigate to statistics directory apply filter attribute disease disease keep visualization type to default table click on generate button validate results table displays data change visualization type to map click on generate button validate map is displayed change visualization type to chart click on generate button validate chart is displayed | 1 |
192,757 | 14,629,144,039 | IssuesEvent | 2020-12-23 15:21:25 | deathlyrage/pot-demo-bugs | https://api.github.com/repos/deathlyrage/pot-demo-bugs | closed | "Drinking" while standing on top of the water | public-test |
**Location:** (X=76804.460938,Y=-143682.75,Z=-13077.617188)
.jpg)
**Message:** When at the water's surface, pressing E will make your character attempt to drink. The character will 'stand' on the surface of the water doing the drinking animation, but the water bar does not refill.
**Version:** 10010 (demo-public-test)
**Reporter:** Pixaneth (924-821-837)
| 1.0 | "Drinking" while standing on top of the water -
**Location:** (X=76804.460938,Y=-143682.75,Z=-13077.617188)
.jpg)
**Message:** When at the water's surface, pressing E will make your character attempt to drink. The character will 'stand' on the surface of the water doing the drinking animation, but the water bar does not refill.
**Version:** 10010 (demo-public-test)
**Reporter:** Pixaneth (924-821-837)
| test | drinking while standing on top of the water location x y z message when at the water s surface pressing e will make your character attempt to drink the character will stand on the surface of the water doing the drinking animation but the water bar does not refill version demo public test reporter pixaneth | 1 |
42,699 | 17,266,022,764 | IssuesEvent | 2021-07-22 13:54:01 | terraform-providers/terraform-provider-azurerm | https://api.github.com/repos/terraform-providers/terraform-provider-azurerm | reopened | Add support for Customer Managed Keys for notebooks in the Azure Databricks resource | enhancement service/databricks | <!--- Please keep this note for the community --->
### Community Note
* Please vote on this issue by adding a ๐ [reaction](https://blog.github.com/2016-03-10-add-reactions-to-pull-requests-issues-and-comments/) to the original issue to help the community and maintainers prioritize this request
* Please do not leave "+1" or "me too" comments, they generate extra noise for issue followers and do not help prioritize the request
* If you are interested in working on this issue or have submitted a pull request, please leave a comment
### Description
Recently, Databricks has added support for [customer managed keys (CMK) for managed services](https://docs.microsoft.com/en-us/azure/databricks/security/keys/customer-managed-key-managed-services-azure) (notebooks, etc.). This functionality complements the CMK for DBFS Root for which there is already another issue: #9785
The ability to encrypt data with customer's keys is a requirement for many big customers of Azure Databricks.
### New or Affected Resource(s)
* `azurerm_databricks_workspace`
### Potential Terraform Configuration
```hcl
custom_parameters {
cmk_managed_services {
key_vault_id = azurerm_key_vault.example.id
key_id = azurerm_key_vault_key.example.id
key_version = azurerm_key_vault_key.example.version
}
}
```
### References
* https://docs.microsoft.com/en-us/azure/databricks/security/keys/customer-managed-key-managed-services-azure
* https://docs.microsoft.com/en-us/azure/databricks/security/keys/customer-managed-keys-dbfs/
* https://github.com/terraform-providers/terraform-provider-azurerm/issues/9785
| 1.0 | Add support for Customer Managed Keys for notebooks in the Azure Databricks resource - <!--- Please keep this note for the community --->
### Community Note
* Please vote on this issue by adding a ๐ [reaction](https://blog.github.com/2016-03-10-add-reactions-to-pull-requests-issues-and-comments/) to the original issue to help the community and maintainers prioritize this request
* Please do not leave "+1" or "me too" comments, they generate extra noise for issue followers and do not help prioritize the request
* If you are interested in working on this issue or have submitted a pull request, please leave a comment
### Description
Recently, Databricks has added support for [customer managed keys (CMK) for managed services](https://docs.microsoft.com/en-us/azure/databricks/security/keys/customer-managed-key-managed-services-azure) (notebooks, etc.). This functionality complements the CMK for DBFS Root for which there is already another issue: #9785
The ability to encrypt data with customer's keys is a requirement for many big customers of Azure Databricks.
### New or Affected Resource(s)
* `azurerm_databricks_workspace`
### Potential Terraform Configuration
```hcl
custom_parameters {
cmk_managed_services {
key_vault_id = azurerm_key_vault.example.id
key_id = azurerm_key_vault_key.example.id
key_version = azurerm_key_vault_key.example.version
}
}
```
### References
* https://docs.microsoft.com/en-us/azure/databricks/security/keys/customer-managed-key-managed-services-azure
* https://docs.microsoft.com/en-us/azure/databricks/security/keys/customer-managed-keys-dbfs/
* https://github.com/terraform-providers/terraform-provider-azurerm/issues/9785
| non_test | add support for customer managed keys for notebooks in the azure databricks resource community note please vote on this issue by adding a ๐ to the original issue to help the community and maintainers prioritize this request please do not leave or me too comments they generate extra noise for issue followers and do not help prioritize the request if you are interested in working on this issue or have submitted a pull request please leave a comment description recently databricks has added support for notebooks etc this functionality complements the cmk for dbfs root for which there is already another issue the ability to encrypt data with customer s keys is a requirement for many big customers of azure databricks new or affected resource s azurerm databricks workspace potential terraform configuration hcl custom parameters cmk managed services key vault id azurerm key vault example id key id azurerm key vault key example id key version azurerm key vault key example version references | 0 |
800,352 | 28,362,570,621 | IssuesEvent | 2023-04-12 11:51:50 | uhh-cms/columnflow | https://api.github.com/repos/uhh-cms/columnflow | opened | Error due to `combine_uncs` in yields task | bug medium-priority low-priority | There seems to be an issue related to the `combine_uncs` option when transforming the yields into a string representation
https://github.com/uhh-cms/columnflow/blob/master/columnflow/tasks/yields.py#L225 | 2.0 | Error due to `combine_uncs` in yields task - There seems to be an issue related to the `combine_uncs` option when transforming the yields into a string representation
https://github.com/uhh-cms/columnflow/blob/master/columnflow/tasks/yields.py#L225 | non_test | error due to combine uncs in yields task there seems to be an issue related to the combine uncs option when transforming the yields into a string representation | 0 |
12,388 | 19,760,630,292 | IssuesEvent | 2022-01-16 10:59:23 | renovatebot/renovate | https://api.github.com/repos/renovatebot/renovate | closed | Update dependencies in `kotlin-js-store/yarn.lock` | type:feature manager:gradle reproduction:needed status:requirements priority-5-triage | ### What would you like Renovate to be able to do?
Recently, Kotlin Multiplatform added a `yarn.lock` file allowing to update versions. Recently I received a dependabot alert that one version can be vulnerable, and I am not getting updates from Renovate so I guess Renovate is not finding this file.
### If you have any ideas on how this should be implemented, please tell us here.
I guess just adding that path to Renovate finder, if any hint is provided I can try to implement it.
### Is this a feature you are interested in implementing yourself?
Maybe | 1.0 | Update dependencies in `kotlin-js-store/yarn.lock` - ### What would you like Renovate to be able to do?
Recently, Kotlin Multiplatform added a `yarn.lock` file allowing to update versions. Recently I received a dependabot alert that one version can be vulnerable, and I am not getting updates from Renovate so I guess Renovate is not finding this file.
### If you have any ideas on how this should be implemented, please tell us here.
I guess just adding that path to Renovate finder, if any hint is provided I can try to implement it.
### Is this a feature you are interested in implementing yourself?
Maybe | non_test | update dependencies in kotlin js store yarn lock what would you like renovate to be able to do recently kotlin multiplatform added a yarn lock file allowing to update versions recently i received a dependabot alert that one version can be vulnerable and i am not getting updates from renovate so i guess renovate is not finding this file if you have any ideas on how this should be implemented please tell us here i guess just adding that path to renovate finder if any hint is provided i can try to implement it is this a feature you are interested in implementing yourself maybe | 0 |
70,535 | 30,690,221,569 | IssuesEvent | 2023-07-26 14:44:27 | hashicorp/terraform-provider-azurerm | https://api.github.com/repos/hashicorp/terraform-provider-azurerm | closed | azurerm_sql_failover_group Always Creates a new Secondary Database | bug service/mssql v/2.x (legacy) | <!--- Please keep this note for the community --->
### Community Note
* Please vote on this issue by adding a ๐ [reaction](https://blog.github.com/2016-03-10-add-reactions-to-pull-requests-issues-and-comments/) to the original issue to help the community and maintainers prioritize this request
* Please do not leave "+1" or "me too" comments, they generate extra noise for issue followers and do not help prioritize the request
* If you are interested in working on this issue or have submitted a pull request, please leave a comment
<!--- Thank you for keeping this note for the community --->
### Terraform (and AzureRM Provider) Version
* Terraform Core version: v1.0.1
* AzureRM Provider version: v2.76.0
### Affected Resource(s)
<!--- Please list the affected resources and data sources. --->
* `azurerm_sql_failover_group`
### Terraform Configuration Files
I am using the sample provided in this repository, [examples/sql-azure/failover_group](https://github.com/hashicorp/terraform-provider-azurerm/tree/main/examples/sql-azure/failover_group).
### Expected Behaviour
When creating an azurerm_sql_failover_group you should be able to point to an existing secondary database resource so that it can be managed by Terraform (as explained in the docs linked below).
> ...If the secondary databases need to be managed through Terraform, they should be defined as resources and a dependency added to the failover group to ensure the secondary databases are created first. Please refer to the detailed example which can be found in the ./examples/sql-azure/failover_group directory within the Github Repository...
### Actual Behaviour
No matter what you do, the creation of the azurerm_sql_failover_group will result in an additional database being created. Using the example provided in the repo, this results in 3 databases. 1 Primary, 1 Secondary and 1 Duplicate Secondary.
This additional Duplicate Secondary is not, and cannot be, managed by Terraform.
### Steps to Reproduce
<!--- Please list the steps required to reproduce the issue. --->
1. Pull this repo and use [example config](https://github.com/hashicorp/terraform-provider-azurerm/tree/main/examples/sql-azure/failover_group).
2. `terraform apply`
### Important Factoids
* Running in UK Azure.
* Logging in to Azure via `az login`
### References
<!---
Information about referencing Github Issues: https://help.github.com/articles/basic-writing-and-formatting-syntax/#referencing-issues-and-pull-requests
Are there any other GitHub issues (open or closed) or pull requests that should be linked here? Such as vendor documentation?
--->
* [Terraform Documentation](https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/sql_failover_group#mode)
| 1.0 | azurerm_sql_failover_group Always Creates a new Secondary Database - <!--- Please keep this note for the community --->
### Community Note
* Please vote on this issue by adding a ๐ [reaction](https://blog.github.com/2016-03-10-add-reactions-to-pull-requests-issues-and-comments/) to the original issue to help the community and maintainers prioritize this request
* Please do not leave "+1" or "me too" comments, they generate extra noise for issue followers and do not help prioritize the request
* If you are interested in working on this issue or have submitted a pull request, please leave a comment
<!--- Thank you for keeping this note for the community --->
### Terraform (and AzureRM Provider) Version
* Terraform Core version: v1.0.1
* AzureRM Provider version: v2.76.0
### Affected Resource(s)
<!--- Please list the affected resources and data sources. --->
* `azurerm_sql_failover_group`
### Terraform Configuration Files
I am using the sample provided in this repository, [examples/sql-azure/failover_group](https://github.com/hashicorp/terraform-provider-azurerm/tree/main/examples/sql-azure/failover_group).
### Expected Behaviour
When creating an azurerm_sql_failover_group you should be able to point to an existing secondary database resource so that it can be managed by Terraform (as explained in the docs linked below).
> ...If the secondary databases need to be managed through Terraform, they should be defined as resources and a dependency added to the failover group to ensure the secondary databases are created first. Please refer to the detailed example which can be found in the ./examples/sql-azure/failover_group directory within the Github Repository...
### Actual Behaviour
No matter what you do, the creation of the azurerm_sql_failover_group will result in an additional database being created. Using the example provided in the repo, this results in 3 databases. 1 Primary, 1 Secondary and 1 Duplicate Secondary.
This additional Duplicate Secondary is not, and cannot be, managed by Terraform.
### Steps to Reproduce
<!--- Please list the steps required to reproduce the issue. --->
1. Pull this repo and use [example config](https://github.com/hashicorp/terraform-provider-azurerm/tree/main/examples/sql-azure/failover_group).
2. `terraform apply`
### Important Factoids
* Running in UK Azure.
* Logging in to Azure via `az login`
### References
<!---
Information about referencing Github Issues: https://help.github.com/articles/basic-writing-and-formatting-syntax/#referencing-issues-and-pull-requests
Are there any other GitHub issues (open or closed) or pull requests that should be linked here? Such as vendor documentation?
--->
* [Terraform Documentation](https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/sql_failover_group#mode)
| non_test | azurerm sql failover group always creates a new secondary database community note please vote on this issue by adding a ๐ to the original issue to help the community and maintainers prioritize this request please do not leave or me too comments they generate extra noise for issue followers and do not help prioritize the request if you are interested in working on this issue or have submitted a pull request please leave a comment terraform and azurerm provider version terraform core version azurerm provider version affected resource s azurerm sql failover group terraform configuration files i am using the sample provided in this repository expected behaviour when creating an azurerm sql failover group you should be able to point to an existing secondary database resource so that it can be managed by terraform as explained in the docs linked below if the secondary databases need to be managed through terraform they should be defined as resources and a dependency added to the failover group to ensure the secondary databases are created first please refer to the detailed example which can be found in the examples sql azure failover group directory within the github repository actual behaviour no matter what you do the creation of the azurerm sql failover group will result in an additional database being created using the example provided in the repo this results in databases primary secondary and duplicate secondary this additional duplicate secondary is not and cannot be managed by terraform steps to reproduce pull this repo and use terraform apply important factoids running in uk azure logging in to azure via az login references information about referencing github issues are there any other github issues open or closed or pull requests that should be linked here such as vendor documentation | 0 |
135,815 | 11,018,545,340 | IssuesEvent | 2019-12-05 10:43:05 | raiden-network/raiden | https://api.github.com/repos/raiden-network/raiden | closed | Add scenario for testing long paths | Component / Scenario Player Flag / Testing | ### Introduction
As part of raiden-network/team#664 it was discovered that we need to have the https://github.com/raiden-network/raiden/blob/develop/raiden/tests/scenarios/ci/long_path_mediated_transfers.yaml scenario updated to be run as part of the nigthly scenarios. This is done to make sure that transfers go through in cases where there are very long paths in the network topology.
### Description
An adjustment of the already existing scenario should be made so that it complies with the standard we use for the other scenarios. Is might make sense to add some fee calculations to this scenario since long path will have quite a lot of fees associated with them. | 1.0 | Add scenario for testing long paths - ### Introduction
As part of raiden-network/team#664 it was discovered that we need to have the https://github.com/raiden-network/raiden/blob/develop/raiden/tests/scenarios/ci/long_path_mediated_transfers.yaml scenario updated to be run as part of the nigthly scenarios. This is done to make sure that transfers go through in cases where there are very long paths in the network topology.
### Description
An adjustment of the already existing scenario should be made so that it complies with the standard we use for the other scenarios. Is might make sense to add some fee calculations to this scenario since long path will have quite a lot of fees associated with them. | test | add scenario for testing long paths introduction as part of raiden network team it was discovered that we need to have the scenario updated to be run as part of the nigthly scenarios this is done to make sure that transfers go through in cases where there are very long paths in the network topology description an adjustment of the already existing scenario should be made so that it complies with the standard we use for the other scenarios is might make sense to add some fee calculations to this scenario since long path will have quite a lot of fees associated with them | 1 |
117,381 | 17,475,109,570 | IssuesEvent | 2021-08-08 01:02:28 | shaimael/cset | https://api.github.com/repos/shaimael/cset | opened | CVE-2021-32804 (High) detected in multiple libraries | security vulnerability | ## CVE-2021-32804 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>tar-2.2.2.tgz</b>, <b>tar-4.4.8.tgz</b>, <b>tar-4.4.13.tgz</b></p></summary>
<p>
<details><summary><b>tar-2.2.2.tgz</b></p></summary>
<p>tar for node</p>
<p>Library home page: <a href="https://registry.npmjs.org/tar/-/tar-2.2.2.tgz">https://registry.npmjs.org/tar/-/tar-2.2.2.tgz</a></p>
<p>Path to dependency file: cset/CSETWebNg/package.json</p>
<p>Path to vulnerable library: cset/CSETWebNg/node_modules/node-gyp/node_modules/tar/package.json</p>
<p>
Dependency Hierarchy:
- node-sass-4.13.1.tgz (Root Library)
- node-gyp-3.8.0.tgz
- :x: **tar-2.2.2.tgz** (Vulnerable Library)
</details>
<details><summary><b>tar-4.4.8.tgz</b></p></summary>
<p>tar for node</p>
<p>Library home page: <a href="https://registry.npmjs.org/tar/-/tar-4.4.8.tgz">https://registry.npmjs.org/tar/-/tar-4.4.8.tgz</a></p>
<p>Path to dependency file: cset/CSETWebNg/package.json</p>
<p>Path to vulnerable library: cset/CSETWebNg/node_modules/tar/package.json,cset/CSETWebNg/node_modules/pacote/node_modules/tar/package.json</p>
<p>
Dependency Hierarchy:
- :x: **tar-4.4.8.tgz** (Vulnerable Library)
</details>
<details><summary><b>tar-4.4.13.tgz</b></p></summary>
<p>tar for node</p>
<p>Library home page: <a href="https://registry.npmjs.org/tar/-/tar-4.4.13.tgz">https://registry.npmjs.org/tar/-/tar-4.4.13.tgz</a></p>
<p>Path to dependency file: cset/CSETWebNg/package.json</p>
<p>Path to vulnerable library: cset/CSETWebNg/node_modules/npm/node_modules/tar/package.json</p>
<p>
Dependency Hierarchy:
- npm-6.13.4.tgz (Root Library)
- :x: **tar-4.4.13.tgz** (Vulnerable Library)
</details>
<p>Found in base branch: <b>master</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
The npm package "tar" (aka node-tar) before versions 6.1.1, 5.0.6, 4.4.14, and 3.3.2 has a arbitrary File Creation/Overwrite vulnerability due to insufficient absolute path sanitization. node-tar aims to prevent extraction of absolute file paths by turning absolute paths into relative paths when the `preservePaths` flag is not set to `true`. This is achieved by stripping the absolute path root from any absolute file paths contained in a tar file. For example `/home/user/.bashrc` would turn into `home/user/.bashrc`. This logic was insufficient when file paths contained repeated path roots such as `////home/user/.bashrc`. `node-tar` would only strip a single path root from such paths. When given an absolute file path with repeating path roots, the resulting path (e.g. `///home/user/.bashrc`) would still resolve to an absolute path, thus allowing arbitrary file creation and overwrite. This issue was addressed in releases 3.2.2, 4.4.14, 5.0.6 and 6.1.1. Users may work around this vulnerability without upgrading by creating a custom `onentry` method which sanitizes the `entry.path` or a `filter` method which removes entries with absolute paths. See referenced GitHub Advisory for details. Be aware of CVE-2021-32803 which fixes a similar bug in later versions of tar.
<p>Publish Date: 2021-08-03
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-32804>CVE-2021-32804</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>8.2</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: N/A
- Attack Complexity: N/A
- Privileges Required: N/A
- User Interaction: N/A
- Scope: N/A
- Impact Metrics:
- Confidentiality Impact: N/A
- Integrity Impact: N/A
- Availability Impact: N/A
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://github.com/npm/node-tar/security/advisories/GHSA-3jfq-g458-7qm9">https://github.com/npm/node-tar/security/advisories/GHSA-3jfq-g458-7qm9</a></p>
<p>Release Date: 2021-08-03</p>
<p>Fix Resolution: tar - 3.2.2, 4.4.14, 5.0.6, 6.1.1</p>
</p>
</details>
<p></p>
<!-- <REMEDIATE>{"isOpenPROnVulnerability":true,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"javascript/Node.js","packageName":"tar","packageVersion":"2.2.2","packageFilePaths":["/CSETWebNg/package.json"],"isTransitiveDependency":true,"dependencyTree":"node-sass:4.13.1;node-gyp:3.8.0;tar:2.2.2","isMinimumFixVersionAvailable":true,"minimumFixVersion":"tar - 3.2.2, 4.4.14, 5.0.6, 6.1.1"},{"packageType":"javascript/Node.js","packageName":"tar","packageVersion":"4.4.8","packageFilePaths":["/CSETWebNg/package.json"],"isTransitiveDependency":false,"dependencyTree":"tar:4.4.8","isMinimumFixVersionAvailable":true,"minimumFixVersion":"tar - 3.2.2, 4.4.14, 5.0.6, 6.1.1"},{"packageType":"javascript/Node.js","packageName":"tar","packageVersion":"4.4.13","packageFilePaths":["/CSETWebNg/package.json"],"isTransitiveDependency":true,"dependencyTree":"npm:6.13.4;tar:4.4.13","isMinimumFixVersionAvailable":true,"minimumFixVersion":"tar - 3.2.2, 4.4.14, 5.0.6, 6.1.1"}],"baseBranches":["master"],"vulnerabilityIdentifier":"CVE-2021-32804","vulnerabilityDetails":"The npm package \"tar\" (aka node-tar) before versions 6.1.1, 5.0.6, 4.4.14, and 3.3.2 has a arbitrary File Creation/Overwrite vulnerability due to insufficient absolute path sanitization. node-tar aims to prevent extraction of absolute file paths by turning absolute paths into relative paths when the `preservePaths` flag is not set to `true`. This is achieved by stripping the absolute path root from any absolute file paths contained in a tar file. For example `/home/user/.bashrc` would turn into `home/user/.bashrc`. This logic was insufficient when file paths contained repeated path roots such as `////home/user/.bashrc`. `node-tar` would only strip a single path root from such paths. When given an absolute file path with repeating path roots, the resulting path (e.g. `///home/user/.bashrc`) would still resolve to an absolute path, thus allowing arbitrary file creation and overwrite. This issue was addressed in releases 3.2.2, 4.4.14, 5.0.6 and 6.1.1. Users may work around this vulnerability without upgrading by creating a custom `onentry` method which sanitizes the `entry.path` or a `filter` method which removes entries with absolute paths. See referenced GitHub Advisory for details. Be aware of CVE-2021-32803 which fixes a similar bug in later versions of tar.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-32804","cvss3Severity":"high","cvss3Score":"8.2","cvss3Metrics":{"A":"N/A","AC":"N/A","PR":"N/A","S":"N/A","C":"N/A","UI":"N/A","AV":"N/A","I":"N/A"},"extraData":{}}</REMEDIATE> --> | True | CVE-2021-32804 (High) detected in multiple libraries - ## CVE-2021-32804 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>tar-2.2.2.tgz</b>, <b>tar-4.4.8.tgz</b>, <b>tar-4.4.13.tgz</b></p></summary>
<p>
<details><summary><b>tar-2.2.2.tgz</b></p></summary>
<p>tar for node</p>
<p>Library home page: <a href="https://registry.npmjs.org/tar/-/tar-2.2.2.tgz">https://registry.npmjs.org/tar/-/tar-2.2.2.tgz</a></p>
<p>Path to dependency file: cset/CSETWebNg/package.json</p>
<p>Path to vulnerable library: cset/CSETWebNg/node_modules/node-gyp/node_modules/tar/package.json</p>
<p>
Dependency Hierarchy:
- node-sass-4.13.1.tgz (Root Library)
- node-gyp-3.8.0.tgz
- :x: **tar-2.2.2.tgz** (Vulnerable Library)
</details>
<details><summary><b>tar-4.4.8.tgz</b></p></summary>
<p>tar for node</p>
<p>Library home page: <a href="https://registry.npmjs.org/tar/-/tar-4.4.8.tgz">https://registry.npmjs.org/tar/-/tar-4.4.8.tgz</a></p>
<p>Path to dependency file: cset/CSETWebNg/package.json</p>
<p>Path to vulnerable library: cset/CSETWebNg/node_modules/tar/package.json,cset/CSETWebNg/node_modules/pacote/node_modules/tar/package.json</p>
<p>
Dependency Hierarchy:
- :x: **tar-4.4.8.tgz** (Vulnerable Library)
</details>
<details><summary><b>tar-4.4.13.tgz</b></p></summary>
<p>tar for node</p>
<p>Library home page: <a href="https://registry.npmjs.org/tar/-/tar-4.4.13.tgz">https://registry.npmjs.org/tar/-/tar-4.4.13.tgz</a></p>
<p>Path to dependency file: cset/CSETWebNg/package.json</p>
<p>Path to vulnerable library: cset/CSETWebNg/node_modules/npm/node_modules/tar/package.json</p>
<p>
Dependency Hierarchy:
- npm-6.13.4.tgz (Root Library)
- :x: **tar-4.4.13.tgz** (Vulnerable Library)
</details>
<p>Found in base branch: <b>master</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
The npm package "tar" (aka node-tar) before versions 6.1.1, 5.0.6, 4.4.14, and 3.3.2 has a arbitrary File Creation/Overwrite vulnerability due to insufficient absolute path sanitization. node-tar aims to prevent extraction of absolute file paths by turning absolute paths into relative paths when the `preservePaths` flag is not set to `true`. This is achieved by stripping the absolute path root from any absolute file paths contained in a tar file. For example `/home/user/.bashrc` would turn into `home/user/.bashrc`. This logic was insufficient when file paths contained repeated path roots such as `////home/user/.bashrc`. `node-tar` would only strip a single path root from such paths. When given an absolute file path with repeating path roots, the resulting path (e.g. `///home/user/.bashrc`) would still resolve to an absolute path, thus allowing arbitrary file creation and overwrite. This issue was addressed in releases 3.2.2, 4.4.14, 5.0.6 and 6.1.1. Users may work around this vulnerability without upgrading by creating a custom `onentry` method which sanitizes the `entry.path` or a `filter` method which removes entries with absolute paths. See referenced GitHub Advisory for details. Be aware of CVE-2021-32803 which fixes a similar bug in later versions of tar.
<p>Publish Date: 2021-08-03
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-32804>CVE-2021-32804</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>8.2</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: N/A
- Attack Complexity: N/A
- Privileges Required: N/A
- User Interaction: N/A
- Scope: N/A
- Impact Metrics:
- Confidentiality Impact: N/A
- Integrity Impact: N/A
- Availability Impact: N/A
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://github.com/npm/node-tar/security/advisories/GHSA-3jfq-g458-7qm9">https://github.com/npm/node-tar/security/advisories/GHSA-3jfq-g458-7qm9</a></p>
<p>Release Date: 2021-08-03</p>
<p>Fix Resolution: tar - 3.2.2, 4.4.14, 5.0.6, 6.1.1</p>
</p>
</details>
<p></p>
<!-- <REMEDIATE>{"isOpenPROnVulnerability":true,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"javascript/Node.js","packageName":"tar","packageVersion":"2.2.2","packageFilePaths":["/CSETWebNg/package.json"],"isTransitiveDependency":true,"dependencyTree":"node-sass:4.13.1;node-gyp:3.8.0;tar:2.2.2","isMinimumFixVersionAvailable":true,"minimumFixVersion":"tar - 3.2.2, 4.4.14, 5.0.6, 6.1.1"},{"packageType":"javascript/Node.js","packageName":"tar","packageVersion":"4.4.8","packageFilePaths":["/CSETWebNg/package.json"],"isTransitiveDependency":false,"dependencyTree":"tar:4.4.8","isMinimumFixVersionAvailable":true,"minimumFixVersion":"tar - 3.2.2, 4.4.14, 5.0.6, 6.1.1"},{"packageType":"javascript/Node.js","packageName":"tar","packageVersion":"4.4.13","packageFilePaths":["/CSETWebNg/package.json"],"isTransitiveDependency":true,"dependencyTree":"npm:6.13.4;tar:4.4.13","isMinimumFixVersionAvailable":true,"minimumFixVersion":"tar - 3.2.2, 4.4.14, 5.0.6, 6.1.1"}],"baseBranches":["master"],"vulnerabilityIdentifier":"CVE-2021-32804","vulnerabilityDetails":"The npm package \"tar\" (aka node-tar) before versions 6.1.1, 5.0.6, 4.4.14, and 3.3.2 has a arbitrary File Creation/Overwrite vulnerability due to insufficient absolute path sanitization. node-tar aims to prevent extraction of absolute file paths by turning absolute paths into relative paths when the `preservePaths` flag is not set to `true`. This is achieved by stripping the absolute path root from any absolute file paths contained in a tar file. For example `/home/user/.bashrc` would turn into `home/user/.bashrc`. This logic was insufficient when file paths contained repeated path roots such as `////home/user/.bashrc`. `node-tar` would only strip a single path root from such paths. When given an absolute file path with repeating path roots, the resulting path (e.g. `///home/user/.bashrc`) would still resolve to an absolute path, thus allowing arbitrary file creation and overwrite. This issue was addressed in releases 3.2.2, 4.4.14, 5.0.6 and 6.1.1. Users may work around this vulnerability without upgrading by creating a custom `onentry` method which sanitizes the `entry.path` or a `filter` method which removes entries with absolute paths. See referenced GitHub Advisory for details. Be aware of CVE-2021-32803 which fixes a similar bug in later versions of tar.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-32804","cvss3Severity":"high","cvss3Score":"8.2","cvss3Metrics":{"A":"N/A","AC":"N/A","PR":"N/A","S":"N/A","C":"N/A","UI":"N/A","AV":"N/A","I":"N/A"},"extraData":{}}</REMEDIATE> --> | non_test | cve high detected in multiple libraries cve high severity vulnerability vulnerable libraries tar tgz tar tgz tar tgz tar tgz tar for node library home page a href path to dependency file cset csetwebng package json path to vulnerable library cset csetwebng node modules node gyp node modules tar package json dependency hierarchy node sass tgz root library node gyp tgz x tar tgz vulnerable library tar tgz tar for node library home page a href path to dependency file cset csetwebng package json path to vulnerable library cset csetwebng node modules tar package json cset csetwebng node modules pacote node modules tar package json dependency hierarchy x tar tgz vulnerable library tar tgz tar for node library home page a href path to dependency file cset csetwebng package json path to vulnerable library cset csetwebng node modules npm node modules tar package json dependency hierarchy npm tgz root library x tar tgz vulnerable library found in base branch master vulnerability details the npm package tar aka node tar before versions and has a arbitrary file creation overwrite vulnerability due to insufficient absolute path sanitization node tar aims to prevent extraction of absolute file paths by turning absolute paths into relative paths when the preservepaths flag is not set to true this is achieved by stripping the absolute path root from any absolute file paths contained in a tar file for example home user bashrc would turn into home user bashrc this logic was insufficient when file paths contained repeated path roots such as home user bashrc node tar would only strip a single path root from such paths when given an absolute file path with repeating path roots the resulting path e g home user bashrc would still resolve to an absolute path thus allowing arbitrary file creation and overwrite this issue was addressed in releases and users may work around this vulnerability without upgrading by creating a custom onentry method which sanitizes the entry path or a filter method which removes entries with absolute paths see referenced github advisory for details be aware of cve which fixes a similar bug in later versions of tar publish date url a href cvss score details base score metrics exploitability metrics attack vector n a attack complexity n a privileges required n a user interaction n a scope n a impact metrics confidentiality impact n a integrity impact n a availability impact n a for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution tar isopenpronvulnerability true ispackagebased true isdefaultbranch true packages istransitivedependency true dependencytree node sass node gyp tar isminimumfixversionavailable true minimumfixversion tar packagetype javascript node js packagename tar packageversion packagefilepaths istransitivedependency false dependencytree tar isminimumfixversionavailable true minimumfixversion tar packagetype javascript node js packagename tar packageversion packagefilepaths istransitivedependency true dependencytree npm tar isminimumfixversionavailable true minimumfixversion tar basebranches vulnerabilityidentifier cve vulnerabilitydetails the npm package tar aka node tar before versions and has a arbitrary file creation overwrite vulnerability due to insufficient absolute path sanitization node tar aims to prevent extraction of absolute file paths by turning absolute paths into relative paths when the preservepaths flag is not set to true this is achieved by stripping the absolute path root from any absolute file paths contained in a tar file for example home user bashrc would turn into home user bashrc this logic was insufficient when file paths contained repeated path roots such as home user bashrc node tar would only strip a single path root from such paths when given an absolute file path with repeating path roots the resulting path e g home user bashrc would still resolve to an absolute path thus allowing arbitrary file creation and overwrite this issue was addressed in releases and users may work around this vulnerability without upgrading by creating a custom onentry method which sanitizes the entry path or a filter method which removes entries with absolute paths see referenced github advisory for details be aware of cve which fixes a similar bug in later versions of tar vulnerabilityurl | 0 |
157,156 | 12,360,602,035 | IssuesEvent | 2020-05-17 15:56:59 | pygame/pygame | https://api.github.com/repos/pygame/pygame | closed | mixer crash with sound still playing | 2.0 Difficulty: Easy Windows mixer needs-testing | Un-comment the bottom two lines in this example to reproduce
https://gist.github.com/illume/f2fcdde9478aa3f1db8f3ee17359cf1c
Tried with python2/3 SDL2. | 1.0 | mixer crash with sound still playing - Un-comment the bottom two lines in this example to reproduce
https://gist.github.com/illume/f2fcdde9478aa3f1db8f3ee17359cf1c
Tried with python2/3 SDL2. | test | mixer crash with sound still playing un comment the bottom two lines in this example to reproduce tried with | 1 |
155,908 | 24,539,573,580 | IssuesEvent | 2022-10-12 01:35:01 | climbjios-sg/climbjios-app | https://api.github.com/repos/climbjios-sg/climbjios-app | closed | Design Profile Page | design | Design a profile page
For climbers to check out who they are climbing with | 1.0 | Design Profile Page - Design a profile page
For climbers to check out who they are climbing with | non_test | design profile page design a profile page for climbers to check out who they are climbing with | 0 |
79,529 | 22,790,748,291 | IssuesEvent | 2022-07-10 00:50:56 | OpenXRay/xray-16 | https://api.github.com/repos/OpenXRay/xray-16 | opened | Configure CI to compile with musl libc | Enhancement Help wanted Portability Infrastructure Code Quality Linux Build issue | After closing #622, we want to keep engine compilable with musl libc.
We can configure our CI to use Alpine Linux using these Actions:
* https://github.com/marketplace/actions/setup-alpine-linux-environment
* https://github.com/marketplace/actions/run-on-architecture
| 1.0 | Configure CI to compile with musl libc - After closing #622, we want to keep engine compilable with musl libc.
We can configure our CI to use Alpine Linux using these Actions:
* https://github.com/marketplace/actions/setup-alpine-linux-environment
* https://github.com/marketplace/actions/run-on-architecture
| non_test | configure ci to compile with musl libc after closing we want to keep engine compilable with musl libc we can configure our ci to use alpine linux using these actions | 0 |
208,265 | 15,882,561,482 | IssuesEvent | 2021-04-09 16:10:54 | theczechguy/ScriptAtRest | https://api.github.com/repos/theczechguy/ScriptAtRest | closed | create user test is not passing | bug tests | [-] Register new user 2.82s (2.82s|2ms)
Expected 'User Registered', but got $null.
at $response.message | Should -Be "User Registered", C:\Users\alien\OneDrive\Dokumenty\GitHub\ScriptAtRest\Tests\UserController.Tests.ps1:32
at <ScriptBlock>, C:\Users\alien\OneDrive\Dokumenty\GitHub\ScriptAtRest\Tests\UserController.Tests.ps1:32 | 1.0 | create user test is not passing - [-] Register new user 2.82s (2.82s|2ms)
Expected 'User Registered', but got $null.
at $response.message | Should -Be "User Registered", C:\Users\alien\OneDrive\Dokumenty\GitHub\ScriptAtRest\Tests\UserController.Tests.ps1:32
at <ScriptBlock>, C:\Users\alien\OneDrive\Dokumenty\GitHub\ScriptAtRest\Tests\UserController.Tests.ps1:32 | test | create user test is not passing register new user expected user registered but got null at response message should be user registered c users alien onedrive dokumenty github scriptatrest tests usercontroller tests at c users alien onedrive dokumenty github scriptatrest tests usercontroller tests | 1 |
187,671 | 14,429,005,924 | IssuesEvent | 2020-12-06 12:28:16 | kalexmills/github-vet-tests-dec2020 | https://api.github.com/repos/kalexmills/github-vet-tests-dec2020 | closed | blockfirm/pine-lnd: nursery_store_test.go; 3 LoC | fresh test tiny |
Found a possible issue in [blockfirm/pine-lnd](https://www.github.com/blockfirm/pine-lnd) at [nursery_store_test.go](https://github.com/blockfirm/pine-lnd/blob/595bb7c1ff146b8e5b9f875b55b997c3604feaf4/nursery_store_test.go#L159-L161)
Below is the message reported by the analyzer for this snippet of code. Beware that the analyzer only reports the first
issue it finds, so please do not limit your consideration to the contents of the below message.
> function call which takes a reference to htlcOutput at line 160 may start a goroutine
[Click here to see the code in its original context.](https://github.com/blockfirm/pine-lnd/blob/595bb7c1ff146b8e5b9f875b55b997c3604feaf4/nursery_store_test.go#L159-L161)
<details>
<summary>Click here to show the 3 line(s) of Go which triggered the analyzer.</summary>
```go
for _, htlcOutput := range test.htlcOutputs {
assertCribAtExpiryHeight(t, ns, &htlcOutput)
}
```
</details>
Leave a reaction on this issue to contribute to the project by classifying this instance as a **Bug** :-1:, **Mitigated** :+1:, or **Desirable Behavior** :rocket:
See the descriptions of the classifications [here](https://github.com/github-vet/rangeclosure-findings#how-can-i-help) for more information.
commit ID: 595bb7c1ff146b8e5b9f875b55b997c3604feaf4
| 1.0 | blockfirm/pine-lnd: nursery_store_test.go; 3 LoC -
Found a possible issue in [blockfirm/pine-lnd](https://www.github.com/blockfirm/pine-lnd) at [nursery_store_test.go](https://github.com/blockfirm/pine-lnd/blob/595bb7c1ff146b8e5b9f875b55b997c3604feaf4/nursery_store_test.go#L159-L161)
Below is the message reported by the analyzer for this snippet of code. Beware that the analyzer only reports the first
issue it finds, so please do not limit your consideration to the contents of the below message.
> function call which takes a reference to htlcOutput at line 160 may start a goroutine
[Click here to see the code in its original context.](https://github.com/blockfirm/pine-lnd/blob/595bb7c1ff146b8e5b9f875b55b997c3604feaf4/nursery_store_test.go#L159-L161)
<details>
<summary>Click here to show the 3 line(s) of Go which triggered the analyzer.</summary>
```go
for _, htlcOutput := range test.htlcOutputs {
assertCribAtExpiryHeight(t, ns, &htlcOutput)
}
```
</details>
Leave a reaction on this issue to contribute to the project by classifying this instance as a **Bug** :-1:, **Mitigated** :+1:, or **Desirable Behavior** :rocket:
See the descriptions of the classifications [here](https://github.com/github-vet/rangeclosure-findings#how-can-i-help) for more information.
commit ID: 595bb7c1ff146b8e5b9f875b55b997c3604feaf4
| test | blockfirm pine lnd nursery store test go loc found a possible issue in at below is the message reported by the analyzer for this snippet of code beware that the analyzer only reports the first issue it finds so please do not limit your consideration to the contents of the below message function call which takes a reference to htlcoutput at line may start a goroutine click here to show the line s of go which triggered the analyzer go for htlcoutput range test htlcoutputs assertcribatexpiryheight t ns htlcoutput leave a reaction on this issue to contribute to the project by classifying this instance as a bug mitigated or desirable behavior rocket see the descriptions of the classifications for more information commit id | 1 |
182,197 | 14,108,631,020 | IssuesEvent | 2020-11-06 18:08:37 | KnightShade07/TIcTacToe | https://api.github.com/repos/KnightShade07/TIcTacToe | opened | Issue#25 - Final Quality Assurance Checks | Quality Assurance Test | Before submission, make these final checks to make sure that the app is quality:
- The app allows the user to play a game of Tic-Tac-Toe.
- The user can click the New Game button at any time to start a new game.
- When you press the New Game button, the board is cleared and it becomes X's turn.
- The app displays other messages to the user as the game progresses such as (1) whose turn it is, (2) if a player wins, and (3) if the game ends in a tie.
- When a button has a symbol on it, the user cannot change it except through the new game button.
- When someone has won the game, it is no longer possible to change any button, until you press the New Game button.
- The only way to start a new game is through the new game button.
You can close this issue once all checks are complete! | 1.0 | Issue#25 - Final Quality Assurance Checks - Before submission, make these final checks to make sure that the app is quality:
- The app allows the user to play a game of Tic-Tac-Toe.
- The user can click the New Game button at any time to start a new game.
- When you press the New Game button, the board is cleared and it becomes X's turn.
- The app displays other messages to the user as the game progresses such as (1) whose turn it is, (2) if a player wins, and (3) if the game ends in a tie.
- When a button has a symbol on it, the user cannot change it except through the new game button.
- When someone has won the game, it is no longer possible to change any button, until you press the New Game button.
- The only way to start a new game is through the new game button.
You can close this issue once all checks are complete! | test | issue final quality assurance checks before submission make these final checks to make sure that the app is quality the app allows the user to play a game of tic tac toe the user can click the new game button at any time to start a new game when you press the new game button the board is cleared and it becomes x s turn the app displays other messages to the user as the game progresses such as whose turn it is if a player wins and if the game ends in a tie when a button has a symbol on it the user cannot change it except through the new game button when someone has won the game it is no longer possible to change any button until you press the new game button the only way to start a new game is through the new game button you can close this issue once all checks are complete | 1 |
3,551 | 2,678,954,756 | IssuesEvent | 2015-03-26 14:21:00 | RevolutionAnalytics/miniCRAN | https://api.github.com/repos/RevolutionAnalytics/miniCRAN | closed | Remove long-running tests | Test suite | CRAN requires all tests to run in fairly short amount of time.
- Use `devtools::skip_on_cran` to test locally, but skip on CRAN.
- Carefully choose package list to minimise dependencies, e.g. by using `Matrix` rather than `raster` in `example_checkVersions.R` | 1.0 | Remove long-running tests - CRAN requires all tests to run in fairly short amount of time.
- Use `devtools::skip_on_cran` to test locally, but skip on CRAN.
- Carefully choose package list to minimise dependencies, e.g. by using `Matrix` rather than `raster` in `example_checkVersions.R` | test | remove long running tests cran requires all tests to run in fairly short amount of time use devtools skip on cran to test locally but skip on cran carefully choose package list to minimise dependencies e g by using matrix rather than raster in example checkversions r | 1 |
508,967 | 14,709,750,501 | IssuesEvent | 2021-01-05 03:14:03 | webcompat/web-bugs | https://api.github.com/repos/webcompat/web-bugs | reopened | www.chattamil.com - The button that reveals the user list does not work | browser-fenix browser-focus-geckoview engine-gecko priority-normal severity-important | <!-- @browser: Firefox Mobile 81.0 -->
<!-- @ua_header: Mozilla/5.0 (Android 10; Mobile; rv:81.0) Gecko/81.0 Firefox/81.0 -->
<!-- @reported_with: unknown -->
<!-- @extra_labels: browser-focus-geckoview -->
**URL**: https://www.chattamil.com/chat.php
**Browser / Version**: Firefox Mobile 81.0
**Operating System**: Android
**Tested Another Browser**: Yes Chrome
**Problem type**: Something else
**Description**: i cant see user list if i touch people list it wont display
**Steps to Reproduce**:
<details>
<summary>Browser Configuration</summary>
<ul>
<li>None</li>
</ul>
</details>
_From [webcompat.com](https://webcompat.com/) with โค๏ธ_ | 1.0 | www.chattamil.com - The button that reveals the user list does not work - <!-- @browser: Firefox Mobile 81.0 -->
<!-- @ua_header: Mozilla/5.0 (Android 10; Mobile; rv:81.0) Gecko/81.0 Firefox/81.0 -->
<!-- @reported_with: unknown -->
<!-- @extra_labels: browser-focus-geckoview -->
**URL**: https://www.chattamil.com/chat.php
**Browser / Version**: Firefox Mobile 81.0
**Operating System**: Android
**Tested Another Browser**: Yes Chrome
**Problem type**: Something else
**Description**: i cant see user list if i touch people list it wont display
**Steps to Reproduce**:
<details>
<summary>Browser Configuration</summary>
<ul>
<li>None</li>
</ul>
</details>
_From [webcompat.com](https://webcompat.com/) with โค๏ธ_ | non_test | the button that reveals the user list does not work url browser version firefox mobile operating system android tested another browser yes chrome problem type something else description i cant see user list if i touch people list it wont display steps to reproduce browser configuration none from with โค๏ธ | 0 |
122,010 | 26,077,966,856 | IssuesEvent | 2022-12-24 21:31:10 | pwndbg/pwndbg | https://api.github.com/repos/pwndbg/pwndbg | opened | Arguments for commands are evaluated before OnlyWhenRunning decorator | help wanted code cleanup | If you start `gdb` but don't run any binary, the following commands will throw exceptions despite being annotated with `@OnlyWhenRunning`:
- telescope
- probeleak
- xinfo
- leakfind
This is because in `Command.invoke` in `pwndbg/commands/__init__.py`, we call `args, kwargs = self.split_args(argument)` and then pass these arguments to the command function.
The issue is that the above methods have an argument with a default register value, i.e. `$sp`, and when this is evaluated an exception is thrown.
The exception comes from the `fix_int_reraise` function, and a more general issue is that there's probably a better way to handle these errors instead of re-raising. We should tell the user more descriptively what the issue is. This can be tested by running something like:
```
pwndbg> xor a a a
Traceback (most recent call last):
File "/usr/local/google/home/gsgx/tools/pwndbg/pwndbg/commands/__init__.py", line 98, in invoke
args, kwargs = self.split_args(argument)
File "/usr/local/google/home/gsgx/tools/pwndbg/pwndbg/commands/__init__.py", line 445, in split_args
return tuple(), vars(self.parser.parse_args(argv))
File "/usr/lib/python3.10/argparse.py", line 1838, in parse_args
args, argv = self.parse_known_args(args, namespace)
File "/usr/lib/python3.10/argparse.py", line 1871, in parse_known_args
namespace, args = self._parse_known_args(args, namespace)
File "/usr/lib/python3.10/argparse.py", line 2087, in _parse_known_args
stop_index = consume_positionals(start_index)
File "/usr/lib/python3.10/argparse.py", line 2043, in consume_positionals
take_action(action, args)
File "/usr/lib/python3.10/argparse.py", line 1932, in take_action
argument_values = self._get_values(action, argument_strings)
File "/usr/lib/python3.10/argparse.py", line 2467, in _get_values
value = self._get_value(action, arg_string)
File "/usr/lib/python3.10/argparse.py", line 2500, in _get_value
result = type_func(arg_string)
File "/usr/local/google/home/gsgx/tools/pwndbg/pwndbg/commands/__init__.py", line 201, in fix_int_reraise
return fix(*a, reraise=True, **kw)
File "/usr/local/google/home/gsgx/tools/pwndbg/pwndbg/commands/__init__.py", line 188, in fix
raise e
File "/usr/local/google/home/gsgx/tools/pwndbg/pwndbg/commands/__init__.py", line 183, in fix
return gdb.parse_and_eval(arg)
gdb.error: No symbol table is loaded. Use the "file" command.
If that is an issue, you can report it on https://github.com/pwndbg/pwndbg/issues
(Please don't forget to search if it hasn't been reported before)
To generate the report and open a browser, you may run `bugreport --run-browser`
PS: Pull requests are welcome
``` | 1.0 | Arguments for commands are evaluated before OnlyWhenRunning decorator - If you start `gdb` but don't run any binary, the following commands will throw exceptions despite being annotated with `@OnlyWhenRunning`:
- telescope
- probeleak
- xinfo
- leakfind
This is because in `Command.invoke` in `pwndbg/commands/__init__.py`, we call `args, kwargs = self.split_args(argument)` and then pass these arguments to the command function.
The issue is that the above methods have an argument with a default register value, i.e. `$sp`, and when this is evaluated an exception is thrown.
The exception comes from the `fix_int_reraise` function, and a more general issue is that there's probably a better way to handle these errors instead of re-raising. We should tell the user more descriptively what the issue is. This can be tested by running something like:
```
pwndbg> xor a a a
Traceback (most recent call last):
File "/usr/local/google/home/gsgx/tools/pwndbg/pwndbg/commands/__init__.py", line 98, in invoke
args, kwargs = self.split_args(argument)
File "/usr/local/google/home/gsgx/tools/pwndbg/pwndbg/commands/__init__.py", line 445, in split_args
return tuple(), vars(self.parser.parse_args(argv))
File "/usr/lib/python3.10/argparse.py", line 1838, in parse_args
args, argv = self.parse_known_args(args, namespace)
File "/usr/lib/python3.10/argparse.py", line 1871, in parse_known_args
namespace, args = self._parse_known_args(args, namespace)
File "/usr/lib/python3.10/argparse.py", line 2087, in _parse_known_args
stop_index = consume_positionals(start_index)
File "/usr/lib/python3.10/argparse.py", line 2043, in consume_positionals
take_action(action, args)
File "/usr/lib/python3.10/argparse.py", line 1932, in take_action
argument_values = self._get_values(action, argument_strings)
File "/usr/lib/python3.10/argparse.py", line 2467, in _get_values
value = self._get_value(action, arg_string)
File "/usr/lib/python3.10/argparse.py", line 2500, in _get_value
result = type_func(arg_string)
File "/usr/local/google/home/gsgx/tools/pwndbg/pwndbg/commands/__init__.py", line 201, in fix_int_reraise
return fix(*a, reraise=True, **kw)
File "/usr/local/google/home/gsgx/tools/pwndbg/pwndbg/commands/__init__.py", line 188, in fix
raise e
File "/usr/local/google/home/gsgx/tools/pwndbg/pwndbg/commands/__init__.py", line 183, in fix
return gdb.parse_and_eval(arg)
gdb.error: No symbol table is loaded. Use the "file" command.
If that is an issue, you can report it on https://github.com/pwndbg/pwndbg/issues
(Please don't forget to search if it hasn't been reported before)
To generate the report and open a browser, you may run `bugreport --run-browser`
PS: Pull requests are welcome
``` | non_test | arguments for commands are evaluated before onlywhenrunning decorator if you start gdb but don t run any binary the following commands will throw exceptions despite being annotated with onlywhenrunning telescope probeleak xinfo leakfind this is because in command invoke in pwndbg commands init py we call args kwargs self split args argument and then pass these arguments to the command function the issue is that the above methods have an argument with a default register value i e sp and when this is evaluated an exception is thrown the exception comes from the fix int reraise function and a more general issue is that there s probably a better way to handle these errors instead of re raising we should tell the user more descriptively what the issue is this can be tested by running something like pwndbg xor a a a traceback most recent call last file usr local google home gsgx tools pwndbg pwndbg commands init py line in invoke args kwargs self split args argument file usr local google home gsgx tools pwndbg pwndbg commands init py line in split args return tuple vars self parser parse args argv file usr lib argparse py line in parse args args argv self parse known args args namespace file usr lib argparse py line in parse known args namespace args self parse known args args namespace file usr lib argparse py line in parse known args stop index consume positionals start index file usr lib argparse py line in consume positionals take action action args file usr lib argparse py line in take action argument values self get values action argument strings file usr lib argparse py line in get values value self get value action arg string file usr lib argparse py line in get value result type func arg string file usr local google home gsgx tools pwndbg pwndbg commands init py line in fix int reraise return fix a reraise true kw file usr local google home gsgx tools pwndbg pwndbg commands init py line in fix raise e file usr local google home gsgx tools pwndbg pwndbg commands init py line in fix return gdb parse and eval arg gdb error no symbol table is loaded use the file command if that is an issue you can report it on please don t forget to search if it hasn t been reported before to generate the report and open a browser you may run bugreport run browser ps pull requests are welcome | 0 |
249,957 | 7,966,027,752 | IssuesEvent | 2018-07-14 16:34:45 | NanoAdblocker/NanoFilters | https://api.github.com/repos/NanoAdblocker/NanoFilters | opened | [Anti-adblock, Race Condition] windowscentral.com | Edge browser low priority | ```
Reference: Quick Issue Reporter
Message:
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134
Nano Defender 0.0.8.0
[Anti-adblock] https://www.windowscentral.com/
```
Race condition causes the scriptlet to fail from time to time.
Marking as low priority because ND for Edge is still in review.
| 1.0 | [Anti-adblock, Race Condition] windowscentral.com - ```
Reference: Quick Issue Reporter
Message:
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134
Nano Defender 0.0.8.0
[Anti-adblock] https://www.windowscentral.com/
```
Race condition causes the scriptlet to fail from time to time.
Marking as low priority because ND for Edge is still in review.
| non_test | windowscentral com reference quick issue reporter message mozilla windows nt applewebkit khtml like gecko chrome safari edge nano defender race condition causes the scriptlet to fail from time to time marking as low priority because nd for edge is still in review | 0 |
92,087 | 15,856,858,902 | IssuesEvent | 2021-04-08 03:21:21 | tlubitz/lodis_ape | https://api.github.com/repos/tlubitz/lodis_ape | opened | CVE-2019-10746 (High) detected in mixin-deep-1.3.1.tgz | security vulnerability | ## CVE-2019-10746 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>mixin-deep-1.3.1.tgz</b></p></summary>
<p>Deeply mix the properties of objects into the first object. Like merge-deep, but doesn't clone.</p>
<p>Library home page: <a href="https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.1.tgz">https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.1.tgz</a></p>
<p>Path to dependency file: /lodis_ape/vendor/hover3d/package.json</p>
<p>Path to vulnerable library: lodis_ape/vendor/hover3d/node_modules/mixin-deep/package.json</p>
<p>
Dependency Hierarchy:
- browser-sync-2.26.5.tgz (Root Library)
- micromatch-3.1.10.tgz
- snapdragon-0.8.2.tgz
- base-0.11.2.tgz
- :x: **mixin-deep-1.3.1.tgz** (Vulnerable Library)
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
mixin-deep is vulnerable to Prototype Pollution in versions before 1.3.2 and version 2.0.0. The function mixin-deep could be tricked into adding or modifying properties of Object.prototype using a constructor payload.
<p>Publish Date: 2019-08-23
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2019-10746>CVE-2019-10746</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>9.8</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: High
- Integrity Impact: High
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://github.com/jonschlinkert/mixin-deep/commit/8f464c8ce9761a8c9c2b3457eaeee9d404fa7af9">https://github.com/jonschlinkert/mixin-deep/commit/8f464c8ce9761a8c9c2b3457eaeee9d404fa7af9</a></p>
<p>Release Date: 2019-07-11</p>
<p>Fix Resolution: 1.3.2,2.0.1</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) | True | CVE-2019-10746 (High) detected in mixin-deep-1.3.1.tgz - ## CVE-2019-10746 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>mixin-deep-1.3.1.tgz</b></p></summary>
<p>Deeply mix the properties of objects into the first object. Like merge-deep, but doesn't clone.</p>
<p>Library home page: <a href="https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.1.tgz">https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.1.tgz</a></p>
<p>Path to dependency file: /lodis_ape/vendor/hover3d/package.json</p>
<p>Path to vulnerable library: lodis_ape/vendor/hover3d/node_modules/mixin-deep/package.json</p>
<p>
Dependency Hierarchy:
- browser-sync-2.26.5.tgz (Root Library)
- micromatch-3.1.10.tgz
- snapdragon-0.8.2.tgz
- base-0.11.2.tgz
- :x: **mixin-deep-1.3.1.tgz** (Vulnerable Library)
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
mixin-deep is vulnerable to Prototype Pollution in versions before 1.3.2 and version 2.0.0. The function mixin-deep could be tricked into adding or modifying properties of Object.prototype using a constructor payload.
<p>Publish Date: 2019-08-23
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2019-10746>CVE-2019-10746</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>9.8</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: High
- Integrity Impact: High
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://github.com/jonschlinkert/mixin-deep/commit/8f464c8ce9761a8c9c2b3457eaeee9d404fa7af9">https://github.com/jonschlinkert/mixin-deep/commit/8f464c8ce9761a8c9c2b3457eaeee9d404fa7af9</a></p>
<p>Release Date: 2019-07-11</p>
<p>Fix Resolution: 1.3.2,2.0.1</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) | non_test | cve high detected in mixin deep tgz cve high severity vulnerability vulnerable library mixin deep tgz deeply mix the properties of objects into the first object like merge deep but doesn t clone library home page a href path to dependency file lodis ape vendor package json path to vulnerable library lodis ape vendor node modules mixin deep package json dependency hierarchy browser sync tgz root library micromatch tgz snapdragon tgz base tgz x mixin deep tgz vulnerable library vulnerability details mixin deep is vulnerable to prototype pollution in versions before and version the function mixin deep could be tricked into adding or modifying properties of object prototype using a constructor payload publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction none scope unchanged impact metrics confidentiality impact high integrity impact high availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution step up your open source security game with whitesource | 0 |
121,040 | 10,147,950,138 | IssuesEvent | 2019-08-05 11:58:38 | raiden-network/raiden | https://api.github.com/repos/raiden-network/raiden | closed | Flaky test: test_regression_payment_complete_after_refund_to_the_initiator | testing | Link to build: https://circleci.com/gh/raiden-network/raiden/69444#tests/containers/11
Logs:
[raiden-debug_2019-08-05T11:42:56.882572.log](https://github.com/raiden-network/raiden/files/3467445/raiden-debug_2019-08-05T11.42.56.882572.log)
| 1.0 | Flaky test: test_regression_payment_complete_after_refund_to_the_initiator - Link to build: https://circleci.com/gh/raiden-network/raiden/69444#tests/containers/11
Logs:
[raiden-debug_2019-08-05T11:42:56.882572.log](https://github.com/raiden-network/raiden/files/3467445/raiden-debug_2019-08-05T11.42.56.882572.log)
| test | flaky test test regression payment complete after refund to the initiator link to build logs | 1 |
44,046 | 11,359,949,458 | IssuesEvent | 2020-01-26 01:32:47 | cucumber/cucumber | https://api.github.com/repos/cucumber/cucumber | closed | gherkin/c build broken and no solution in documentation | Stale language: c library: gherkin type: build | <!-- NAMING YOUR ISSUE: Please prefix your issue with the name of the sub-project -->
<!-- e.g. `messages: Define new StepDef message` -->
<!-- This makes it easier to get some context when reading the names of issues -->
<!-- These sections are meant as guidance for you, to help you give the kind of information we'll need to help with your issue. If a section doesn't seem to fit, just skip it.
In general: Please provide as much information as you can to help us solving your problem -->
## Summary
<!--- Provide a general summary description of the issue -->
Gherkin/c build is broken. No working solution is provided to overcome this.
## Expected Behavior
<!--- If you're describing a bug, tell us what should happen -->
<!--- If you're suggesting a change/improvement, tell us how it should work -->
<!--- Feel free to use Given / Then / Then if that helps, but please add some plain-language context too -->
## Current Behavior
<!--- If describing a bug, tell us what happens instead of the expected behavior -->
<!--- If suggesting a change/improvement, explain the difference from current behavior -->
<!--- If you have got some output place it in the code block below. Otherwise remove it. -->
~~~
~~~
## Possible Solution
<!--- Not obligatory, but suggest a fix/reason for the bug, -->
<!--- or ideas how to implement the addition or change -->
## Steps to Reproduce (for bugs)
<!--- Provide a link to a live example, or an unambiguous set of steps to -->
<!--- reproduce this bug. Include code to reproduce, if relevant -->
1.
2.
3.
4.
## Context & Motivation
<!--- How has this issue affected you? What are you trying to accomplish? -->
<!--- Providing context helps us come up with a solution that is most useful in the real world -->
I would like to build gherkin/c in order to use cucumber for ocaml. I do not need the latest version, I would be happy with a recent working one, how could I build such a version ? (I suppose I could come back to a git commit where it was working, couldn't I ?)
## Your Environment
<!--- If you're reporting a bug, include as many relevant details about the environment you experienced the bug in -->
* Version used:
* Operating System and version: Ubuntu 18
* Link to your project:
I am new to cucumber, so sorry if I am misleading something.
Thanks in advance for your answer :)
| 1.0 | gherkin/c build broken and no solution in documentation - <!-- NAMING YOUR ISSUE: Please prefix your issue with the name of the sub-project -->
<!-- e.g. `messages: Define new StepDef message` -->
<!-- This makes it easier to get some context when reading the names of issues -->
<!-- These sections are meant as guidance for you, to help you give the kind of information we'll need to help with your issue. If a section doesn't seem to fit, just skip it.
In general: Please provide as much information as you can to help us solving your problem -->
## Summary
<!--- Provide a general summary description of the issue -->
Gherkin/c build is broken. No working solution is provided to overcome this.
## Expected Behavior
<!--- If you're describing a bug, tell us what should happen -->
<!--- If you're suggesting a change/improvement, tell us how it should work -->
<!--- Feel free to use Given / Then / Then if that helps, but please add some plain-language context too -->
## Current Behavior
<!--- If describing a bug, tell us what happens instead of the expected behavior -->
<!--- If suggesting a change/improvement, explain the difference from current behavior -->
<!--- If you have got some output place it in the code block below. Otherwise remove it. -->
~~~
~~~
## Possible Solution
<!--- Not obligatory, but suggest a fix/reason for the bug, -->
<!--- or ideas how to implement the addition or change -->
## Steps to Reproduce (for bugs)
<!--- Provide a link to a live example, or an unambiguous set of steps to -->
<!--- reproduce this bug. Include code to reproduce, if relevant -->
1.
2.
3.
4.
## Context & Motivation
<!--- How has this issue affected you? What are you trying to accomplish? -->
<!--- Providing context helps us come up with a solution that is most useful in the real world -->
I would like to build gherkin/c in order to use cucumber for ocaml. I do not need the latest version, I would be happy with a recent working one, how could I build such a version ? (I suppose I could come back to a git commit where it was working, couldn't I ?)
## Your Environment
<!--- If you're reporting a bug, include as many relevant details about the environment you experienced the bug in -->
* Version used:
* Operating System and version: Ubuntu 18
* Link to your project:
I am new to cucumber, so sorry if I am misleading something.
Thanks in advance for your answer :)
| non_test | gherkin c build broken and no solution in documentation these sections are meant as guidance for you to help you give the kind of information we ll need to help with your issue if a section doesn t seem to fit just skip it in general please provide as much information as you can to help us solving your problem summary gherkin c build is broken no working solution is provided to overcome this expected behavior current behavior possible solution steps to reproduce for bugs context motivation i would like to build gherkin c in order to use cucumber for ocaml i do not need the latest version i would be happy with a recent working one how could i build such a version i suppose i could come back to a git commit where it was working couldn t i your environment version used operating system and version ubuntu link to your project i am new to cucumber so sorry if i am misleading something thanks in advance for your answer | 0 |
260,817 | 22,666,808,572 | IssuesEvent | 2022-07-03 02:18:22 | spacetelescope/jwql | https://api.github.com/repos/spacetelescope/jwql | opened | Create web app tests | enhancement Web Application Testing | As I was browsing through a list of talks for an upcoming python convention, I came across a talk about Playwright. This looks like a promising tool that can, when used with its pytest plugin, be used to create tests for the web app. One very nice feature it has is that it knows to wait for a webpage to finish loading before running tests. This would be really useful for some of our pages that are slower to load. This could be useful for creating tests to make sure that PRs affecting the web app don't break any functionality.
https://playwright.dev/python/docs/intro
https://www.youtube.com/watch?v=c7QQab7e_Gs
https://www.youtube.com/watch?v=IDrTacdVNRM
| 1.0 | Create web app tests - As I was browsing through a list of talks for an upcoming python convention, I came across a talk about Playwright. This looks like a promising tool that can, when used with its pytest plugin, be used to create tests for the web app. One very nice feature it has is that it knows to wait for a webpage to finish loading before running tests. This would be really useful for some of our pages that are slower to load. This could be useful for creating tests to make sure that PRs affecting the web app don't break any functionality.
https://playwright.dev/python/docs/intro
https://www.youtube.com/watch?v=c7QQab7e_Gs
https://www.youtube.com/watch?v=IDrTacdVNRM
| test | create web app tests as i was browsing through a list of talks for an upcoming python convention i came across a talk about playwright this looks like a promising tool that can when used with its pytest plugin be used to create tests for the web app one very nice feature it has is that it knows to wait for a webpage to finish loading before running tests this would be really useful for some of our pages that are slower to load this could be useful for creating tests to make sure that prs affecting the web app don t break any functionality | 1 |
320,578 | 27,442,586,865 | IssuesEvent | 2023-03-02 12:07:19 | wpeventmanager/wpem-divi-elements | https://api.github.com/repos/wpeventmanager/wpem-divi-elements | closed | Need to add description for the Divi elements same as other the adoon | In Testing | Need to add description for the Divi elements same as other the adoon.

| 1.0 | Need to add description for the Divi elements same as other the adoon - Need to add description for the Divi elements same as other the adoon.

| test | need to add description for the divi elements same as other the adoon need to add description for the divi elements same as other the adoon | 1 |
30,697 | 4,210,901,821 | IssuesEvent | 2016-06-29 11:45:14 | pythonapis/6ZJYP2PXGY5CWP2LWTZZFRIL | https://api.github.com/repos/pythonapis/6ZJYP2PXGY5CWP2LWTZZFRIL | closed | i7c1C2OnLknXFRyH0xvOKfUHGCo9OpcbtxoqpA28/ybkPFUZkf8OnDFsSMw6kCf3mX+MOeAUvdkQBURNXCp8e1fuK81x/hfo548YBTlJ2JL+KPR0OybHZ5+UGdPgVp6nwORWQjjULnFu0YAgQsSweBDBxLVngJ6JDyJLX5AQMhE= | design | pnGaIAiCl0kx+6ms27UpxuvTcFkCbhXiG8THUVW/y9rGRMEE6W+Z7j6ibmqCkRSvUZteDnXrhgzYI7elUpOzbBFPtj5PxiZT1kkL4YyLkb5bOogrDtATnv+FOZaYnU9cR8pCCE65R31ygNThAS/CudWecgcKOz2xKpFnRjMdjuO5Axpph9GctvsXRf6bkfUzVm80M/SbSx2Cd7qbY+yI3lZvNDP0m0sdgne6m2PsiN5WbzQz9JtLHYJ3uptj7IjeVm80M/SbSx2Cd7qbY+yI3l3NtyP1aYoFoB3C22ecymI0/IIAQOpJXxqUUuPvH/qUWdmZCTCIDpXitihSBb4T+jb66hDqcCEBVHVp+93uF3FtW7AQY7sPZhL7o5H2y0JXXafaMfhwB02Px8rmpJ/M8HZwmYjRfi1+hh6iypJkranVnnIHCjs9sSqRZ0YzHY7j1Z5yBwo7PbEqkWdGMx2O48aYvm27AT05w2Ta3y+HwdaD46s/vgbfEPnBuawS9NN67EjXHXFjfkp/BzXInERB2heiddMeIsBGWhh/aQz3Oa8WBxIwo3OMCRs5kH1J4kEdrXmacPwaK21NkFPIk2OLufYoJColprAEyQJmiTKCxw7VnnIHCjs9sSqRZ0YzHY7j1Z5yBwo7PbEqkWdGMx2O46VgyHK+kXUm/QOsZDrjSYmHUZKKlgSHRAJ81VA6AlxELyMoN90Ar09nG2zU1JimDOgXrjjrFJjzJ6HmAL31p/C7//ipgnGex8PfRP1V9rio+4oHQPiha+tBjifp+jiOlZvlGKriePJFFtfPzx2oCQrVnnIHCjs9sSqRZ0YzHY7j1Z5yBwo7PbEqkWdGMx2O4y9IjV88CS1I0oVuyKdq1+UZaMCwPm8TDNvlb2bIdO3fhszbUFEc8mfM9jToHBpI35KREIVb+Sv2fjFVW5iGW1fKVgb3U2a6CEu9ClcPX2xjWVwHbn82uyWoXctaL42oz+2itf2oXjLwEm0uHyfmLPDVnnIHCjs9sSqRZ0YzHY7j1Z5yBwo7PbEqkWdGMx2O4zx+AHQRIz+XbV7hXcCCmJkSEE99Egmq7z3ecD2u4/Ky249PJJ1tX7p9h7wwpzhcRk3qhhBj/QDWMmJ2NbcUYqmVtWlMzwIbn2tDNaldP0ywkFdCQNHbxUqRIoimUhe1YxHI+1QXd90vuER2XCTwpxROpCvvQ4+/wQWpaiaYfX3wJ7rovLMffCSg7vvdj9l+Bvx4NXXJgz2Dqx4o56LkyrVm3EXkeIrXuY9dTUXhacDaqAHwNqqG0jJi48F+e1OiGL/CJ9SkTaD49wuvSGE7B4PVnnIHCjs9sSqRZ0YzHY7j1Z5yBwo7PbEqkWdGMx2O44inzK2gtu+JgdWdsjR5VueOuTkWeZ303yievBqygOIY+CQ3ATBRajcZ6LGJlzK2aFnZmQkwiA6V4rYoUgW+E/o2+uoQ6nAhAVR1afvd7hdxdWCihUFE2w2lGY265luSAA+YBbJDeDvXMUnP3POOQK/VnnIHCjs9sSqRZ0YzHY7j1Z5yBwo7PbEqkWdGMx2O4yD96vxocj7sb0IAJodo8w0X9cM6adD95HlvpysECoxv1Z5yBwo7PbEqkWdGMx2O4yoKol4P97KrtsvlUbS3ibHoIZpqQWGnDfTvqL5J/+zYVWiN3wFZ+ekSoGO6KW0Xgs7PRFnB/LsVcrO1HlYUgwC3KMYWre0rrd+VwT+XeQCi9JgJWXQsiTn32ooIKY4fPP9q+RhWszzfBUjmkkSyyYcBS1ymjRo2xLTjS01Sx/YxXTNSQTa4K24jSnfE98jNFXmntoJpIHKw+zRiGsbo3YE= | 1.0 | i7c1C2OnLknXFRyH0xvOKfUHGCo9OpcbtxoqpA28/ybkPFUZkf8OnDFsSMw6kCf3mX+MOeAUvdkQBURNXCp8e1fuK81x/hfo548YBTlJ2JL+KPR0OybHZ5+UGdPgVp6nwORWQjjULnFu0YAgQsSweBDBxLVngJ6JDyJLX5AQMhE= - pnGaIAiCl0kx+6ms27UpxuvTcFkCbhXiG8THUVW/y9rGRMEE6W+Z7j6ibmqCkRSvUZteDnXrhgzYI7elUpOzbBFPtj5PxiZT1kkL4YyLkb5bOogrDtATnv+FOZaYnU9cR8pCCE65R31ygNThAS/CudWecgcKOz2xKpFnRjMdjuO5Axpph9GctvsXRf6bkfUzVm80M/SbSx2Cd7qbY+yI3lZvNDP0m0sdgne6m2PsiN5WbzQz9JtLHYJ3uptj7IjeVm80M/SbSx2Cd7qbY+yI3l3NtyP1aYoFoB3C22ecymI0/IIAQOpJXxqUUuPvH/qUWdmZCTCIDpXitihSBb4T+jb66hDqcCEBVHVp+93uF3FtW7AQY7sPZhL7o5H2y0JXXafaMfhwB02Px8rmpJ/M8HZwmYjRfi1+hh6iypJkranVnnIHCjs9sSqRZ0YzHY7j1Z5yBwo7PbEqkWdGMx2O48aYvm27AT05w2Ta3y+HwdaD46s/vgbfEPnBuawS9NN67EjXHXFjfkp/BzXInERB2heiddMeIsBGWhh/aQz3Oa8WBxIwo3OMCRs5kH1J4kEdrXmacPwaK21NkFPIk2OLufYoJColprAEyQJmiTKCxw7VnnIHCjs9sSqRZ0YzHY7j1Z5yBwo7PbEqkWdGMx2O46VgyHK+kXUm/QOsZDrjSYmHUZKKlgSHRAJ81VA6AlxELyMoN90Ar09nG2zU1JimDOgXrjjrFJjzJ6HmAL31p/C7//ipgnGex8PfRP1V9rio+4oHQPiha+tBjifp+jiOlZvlGKriePJFFtfPzx2oCQrVnnIHCjs9sSqRZ0YzHY7j1Z5yBwo7PbEqkWdGMx2O4y9IjV88CS1I0oVuyKdq1+UZaMCwPm8TDNvlb2bIdO3fhszbUFEc8mfM9jToHBpI35KREIVb+Sv2fjFVW5iGW1fKVgb3U2a6CEu9ClcPX2xjWVwHbn82uyWoXctaL42oz+2itf2oXjLwEm0uHyfmLPDVnnIHCjs9sSqRZ0YzHY7j1Z5yBwo7PbEqkWdGMx2O4zx+AHQRIz+XbV7hXcCCmJkSEE99Egmq7z3ecD2u4/Ky249PJJ1tX7p9h7wwpzhcRk3qhhBj/QDWMmJ2NbcUYqmVtWlMzwIbn2tDNaldP0ywkFdCQNHbxUqRIoimUhe1YxHI+1QXd90vuER2XCTwpxROpCvvQ4+/wQWpaiaYfX3wJ7rovLMffCSg7vvdj9l+Bvx4NXXJgz2Dqx4o56LkyrVm3EXkeIrXuY9dTUXhacDaqAHwNqqG0jJi48F+e1OiGL/CJ9SkTaD49wuvSGE7B4PVnnIHCjs9sSqRZ0YzHY7j1Z5yBwo7PbEqkWdGMx2O44inzK2gtu+JgdWdsjR5VueOuTkWeZ303yievBqygOIY+CQ3ATBRajcZ6LGJlzK2aFnZmQkwiA6V4rYoUgW+E/o2+uoQ6nAhAVR1afvd7hdxdWCihUFE2w2lGY265luSAA+YBbJDeDvXMUnP3POOQK/VnnIHCjs9sSqRZ0YzHY7j1Z5yBwo7PbEqkWdGMx2O4yD96vxocj7sb0IAJodo8w0X9cM6adD95HlvpysECoxv1Z5yBwo7PbEqkWdGMx2O4yoKol4P97KrtsvlUbS3ibHoIZpqQWGnDfTvqL5J/+zYVWiN3wFZ+ekSoGO6KW0Xgs7PRFnB/LsVcrO1HlYUgwC3KMYWre0rrd+VwT+XeQCi9JgJWXQsiTn32ooIKY4fPP9q+RhWszzfBUjmkkSyyYcBS1ymjRo2xLTjS01Sx/YxXTNSQTa4K24jSnfE98jNFXmntoJpIHKw+zRiGsbo3YE= | non_test | iiaqopjxxquuupvh kxum tbjifp ahqriz e vwt | 0 |
249,651 | 21,182,195,743 | IssuesEvent | 2022-04-08 09:03:20 | woocommerce/woocommerce-gutenberg-products-block | https://api.github.com/repos/woocommerce/woocommerce-gutenberg-products-block | closed | Add tests for the Checkout Shipping Methods block | โผ๏ธ block: checkout stale category: tests | This issue is to track the addition of tests for Checkout inner blocks. The Checkout Shipping Options block needs tests to be written for it. | 1.0 | Add tests for the Checkout Shipping Methods block - This issue is to track the addition of tests for Checkout inner blocks. The Checkout Shipping Options block needs tests to be written for it. | test | add tests for the checkout shipping methods block this issue is to track the addition of tests for checkout inner blocks the checkout shipping options block needs tests to be written for it | 1 |
217,344 | 16,851,916,785 | IssuesEvent | 2021-06-20 17:34:05 | the-canonizer/canonizer.2.0 | https://api.github.com/repos/the-canonizer/canonizer.2.0 | closed | 2 Canonizer canonizer algorithms | 20th Release Fixed enhancement ready to test | **Create 2 canonizer algorithms for canonizer governance.**
The two algorithms will be:
"Canonizer Shares" the number of recognition shares held as of that date.
"Canonizer Canonizer" the sqrt(shares)
Create a new DB record containing the following:
unique id record key
unique id of nick name record. (canonizer algorithm will look up record for nick name, based off this.)
* We need to add an extra column to the user's nick name table that has the nick name unique id.
date for as of values.
shares Number of recognition shares held, as of date.
Create a Canonizer Admin tab so Kinnari can enter the shares held each month, starting with Jan 2021.
Have a drop down month selection box, starting with Jan 2021, to the current month.
When you select a month, it will display all record entries for that month.
There will be a delete and edit button for each row.
Each row will show the nick name, the shares, and the sqrt(shares)
There will be a button to create a new record for the selected month. That date will be the first day of the selected month.
| 1.0 | 2 Canonizer canonizer algorithms - **Create 2 canonizer algorithms for canonizer governance.**
The two algorithms will be:
"Canonizer Shares" the number of recognition shares held as of that date.
"Canonizer Canonizer" the sqrt(shares)
Create a new DB record containing the following:
unique id record key
unique id of nick name record. (canonizer algorithm will look up record for nick name, based off this.)
* We need to add an extra column to the user's nick name table that has the nick name unique id.
date for as of values.
shares Number of recognition shares held, as of date.
Create a Canonizer Admin tab so Kinnari can enter the shares held each month, starting with Jan 2021.
Have a drop down month selection box, starting with Jan 2021, to the current month.
When you select a month, it will display all record entries for that month.
There will be a delete and edit button for each row.
Each row will show the nick name, the shares, and the sqrt(shares)
There will be a button to create a new record for the selected month. That date will be the first day of the selected month.
| test | canonizer canonizer algorithms create canonizer algorithms for canonizer governance the two algorithms will be canonizer shares the number of recognition shares held as of that date canonizer canonizer the sqrt shares create a new db record containing the following unique id record key unique id of nick name record canonizer algorithm will look up record for nick name based off this we need to add an extra column to the user s nick name table that has the nick name unique id date for as of values shares number of recognition shares held as of date create a canonizer admin tab so kinnari can enter the shares held each month starting with jan have a drop down month selection box starting with jan to the current month when you select a month it will display all record entries for that month there will be a delete and edit button for each row each row will show the nick name the shares and the sqrt shares there will be a button to create a new record for the selected month that date will be the first day of the selected month | 1 |
98,644 | 8,683,443,123 | IssuesEvent | 2018-12-02 18:11:21 | linkerd/linkerd2 | https://api.github.com/repos/linkerd/linkerd2 | closed | proxy: unit tests for transport telemetry | area/proxy area/test wontfix | We have integration tests for transport telemetry. This is helpful, but will never be robust enough to make deterministic decisions. Following linkerd/linkerd2-proxy#76, we should instrument unit tests that more narrowly exercise transport telemetry (without OS sockets) to have high-confidence tests. | 1.0 | proxy: unit tests for transport telemetry - We have integration tests for transport telemetry. This is helpful, but will never be robust enough to make deterministic decisions. Following linkerd/linkerd2-proxy#76, we should instrument unit tests that more narrowly exercise transport telemetry (without OS sockets) to have high-confidence tests. | test | proxy unit tests for transport telemetry we have integration tests for transport telemetry this is helpful but will never be robust enough to make deterministic decisions following linkerd proxy we should instrument unit tests that more narrowly exercise transport telemetry without os sockets to have high confidence tests | 1 |
29,823 | 5,909,086,090 | IssuesEvent | 2017-05-19 22:27:50 | sukona/Grapevine | https://api.github.com/repos/sukona/Grapevine | closed | Memory Leak in Route Caching | defect Server | Remove the route caching for now as it is a potential cause for memory leaks. Will likely re-implement later when I have a better solution. | 1.0 | Memory Leak in Route Caching - Remove the route caching for now as it is a potential cause for memory leaks. Will likely re-implement later when I have a better solution. | non_test | memory leak in route caching remove the route caching for now as it is a potential cause for memory leaks will likely re implement later when i have a better solution | 0 |
308,390 | 26,603,923,046 | IssuesEvent | 2023-01-23 17:44:37 | haru-speak/server | https://api.github.com/repos/haru-speak/server | opened | [feat] ์ค๋์ ๋ฌธ์ฅ ์ ๊ณต API ๊ธฐ๋ฅ ๊ตฌํ | ๐ฃ feature ๐งช test | ## ๐ ๊ตฌํ ๋ชฉ๋ก
- [ ] ๊ด์ฌ์๋ ์ฃผ์ , ์ธ์ด์ ๋ฐ๋ผ ์ค๋์ ๋ฌธ์ฅ์ ๋ฌ๋ฆฌ ์ ๊ณตํ๋ API๋ฅผ ๊ตฌํํฉ๋๋ค.
- (์ผ๋จ ์์ด ๊ณ ์ - ํ์ฅ์ฑ ์๊ฒ ๋ง๋ค์ด์ผ ํจ)
- [ ] ๊ด๋ จ Controller ํ
์คํธ
- [ ] ๊ด๋ จ Service ํ
์คํธ
<br>
## ๐ก ์ฐธ๊ณ ์๋ฃ
<img width="235" alt="image" src="https://user-images.githubusercontent.com/67811880/214111319-edf0dc9a-8346-4b82-affc-5098dd5358ba.png">
| 1.0 | [feat] ์ค๋์ ๋ฌธ์ฅ ์ ๊ณต API ๊ธฐ๋ฅ ๊ตฌํ - ## ๐ ๊ตฌํ ๋ชฉ๋ก
- [ ] ๊ด์ฌ์๋ ์ฃผ์ , ์ธ์ด์ ๋ฐ๋ผ ์ค๋์ ๋ฌธ์ฅ์ ๋ฌ๋ฆฌ ์ ๊ณตํ๋ API๋ฅผ ๊ตฌํํฉ๋๋ค.
- (์ผ๋จ ์์ด ๊ณ ์ - ํ์ฅ์ฑ ์๊ฒ ๋ง๋ค์ด์ผ ํจ)
- [ ] ๊ด๋ จ Controller ํ
์คํธ
- [ ] ๊ด๋ จ Service ํ
์คํธ
<br>
## ๐ก ์ฐธ๊ณ ์๋ฃ
<img width="235" alt="image" src="https://user-images.githubusercontent.com/67811880/214111319-edf0dc9a-8346-4b82-affc-5098dd5358ba.png">
| test | ์ค๋์ ๋ฌธ์ฅ ์ ๊ณต api ๊ธฐ๋ฅ ๊ตฌํ ๐ ๊ตฌํ ๋ชฉ๋ก ๊ด์ฌ์๋ ์ฃผ์ ์ธ์ด์ ๋ฐ๋ผ ์ค๋์ ๋ฌธ์ฅ์ ๋ฌ๋ฆฌ ์ ๊ณตํ๋ api๋ฅผ ๊ตฌํํฉ๋๋ค ์ผ๋จ ์์ด ๊ณ ์ ํ์ฅ์ฑ ์๊ฒ ๋ง๋ค์ด์ผ ํจ ๊ด๋ จ controller ํ
์คํธ ๊ด๋ จ service ํ
์คํธ ๐ก ์ฐธ๊ณ ์๋ฃ img width alt image src | 1 |
219,558 | 16,843,121,440 | IssuesEvent | 2021-06-19 00:01:40 | vtex-apps/io-documentation | https://api.github.com/repos/vtex-apps/io-documentation | opened | vtex-apps/qr-barcode-reader has no documentation yet | no-documentation | [vtex-apps/qr-barcode-reader](https://github.com/vtex-apps/qr-barcode-reader) hasn't created any README file yet or is not using Docs Builder | 1.0 | vtex-apps/qr-barcode-reader has no documentation yet - [vtex-apps/qr-barcode-reader](https://github.com/vtex-apps/qr-barcode-reader) hasn't created any README file yet or is not using Docs Builder | non_test | vtex apps qr barcode reader has no documentation yet hasn t created any readme file yet or is not using docs builder | 0 |
282,425 | 21,315,488,708 | IssuesEvent | 2022-04-16 07:38:49 | lamwj98/pe | https://api.github.com/repos/lamwj98/pe | opened | listorder lack depiction | severity.Low type.DocumentationBug | listorder lacks the depiction in terms of diagrams and with many classes involve, developers may not be able to understand the details of implementation. Hence, it would be better to include depict these details through UML diagrams.
<!--session: 1650090153171-889f763a-5690-437c-89f3-adc7d6ef8427-->
<!--Version: Web v3.4.2--> | 1.0 | listorder lack depiction - listorder lacks the depiction in terms of diagrams and with many classes involve, developers may not be able to understand the details of implementation. Hence, it would be better to include depict these details through UML diagrams.
<!--session: 1650090153171-889f763a-5690-437c-89f3-adc7d6ef8427-->
<!--Version: Web v3.4.2--> | non_test | listorder lack depiction listorder lacks the depiction in terms of diagrams and with many classes involve developers may not be able to understand the details of implementation hence it would be better to include depict these details through uml diagrams | 0 |
135,880 | 11,028,436,702 | IssuesEvent | 2019-12-06 11:40:43 | mattermost/mattermost-server | https://api.github.com/repos/mattermost/mattermost-server | opened | UI Automation: Write an automated test using Cypress for "Change selection in RHS / RN Message Thread" | Area/E2E Tests Difficulty/1:Easy Help Wanted Tech/JavaScript Up For Grabs |
See our [end-to-end testing documentation](https://developers.mattermost.com/contribute/webapp/end-to-end-tests/) for reference.
**Title:** Change selection in RHS / RN Message Thread
**Steps:**
Continuing from 5) in the above test
1. In the RHS / message thread, click in / tap on the message attachment menu box (or click on the dropdown arrow to the right of the message attachment menu box)
2. Select a different option to the one you selected in the center panel
**Expected:**
After 2) the selection in the center panel changes to show the selection you made in the RHS and an ephemeral message is posted advising the selection you made (For RN, you will need to tap the back arrow to view the change in the channel view)
**Test Key:** IM21044
**Test Folder:** `/cypress/integration/interactive_menu`
**Test code arrangement:**
```
describe('Interactive Menu', () => {
it('IM21044 - Change selection in RHS / RN Message Thread', () => {
// code
});
});
```
**Jira ticket**: [MM-21044](https://mattermost.atlassian.net/browse/MM-21044)
---
If you're interested, please comment here and come [join our "Contributors" community channel](https://community.mattermost.com/core/channels/tickets) on our daily build server, where you can discuss questions with community members and the Mattermost core team. For technical advice or questions, please [join our "Developers" community channel](https://community.mattermost.com/core/channels/developers).
New contributors please see our [Developer's Guide](https://developers.mattermost.com/contribute/getting-started/).
| 1.0 | UI Automation: Write an automated test using Cypress for "Change selection in RHS / RN Message Thread" -
See our [end-to-end testing documentation](https://developers.mattermost.com/contribute/webapp/end-to-end-tests/) for reference.
**Title:** Change selection in RHS / RN Message Thread
**Steps:**
Continuing from 5) in the above test
1. In the RHS / message thread, click in / tap on the message attachment menu box (or click on the dropdown arrow to the right of the message attachment menu box)
2. Select a different option to the one you selected in the center panel
**Expected:**
After 2) the selection in the center panel changes to show the selection you made in the RHS and an ephemeral message is posted advising the selection you made (For RN, you will need to tap the back arrow to view the change in the channel view)
**Test Key:** IM21044
**Test Folder:** `/cypress/integration/interactive_menu`
**Test code arrangement:**
```
describe('Interactive Menu', () => {
it('IM21044 - Change selection in RHS / RN Message Thread', () => {
// code
});
});
```
**Jira ticket**: [MM-21044](https://mattermost.atlassian.net/browse/MM-21044)
---
If you're interested, please comment here and come [join our "Contributors" community channel](https://community.mattermost.com/core/channels/tickets) on our daily build server, where you can discuss questions with community members and the Mattermost core team. For technical advice or questions, please [join our "Developers" community channel](https://community.mattermost.com/core/channels/developers).
New contributors please see our [Developer's Guide](https://developers.mattermost.com/contribute/getting-started/).
| test | ui automation write an automated test using cypress for change selection in rhs rn message thread see our for reference title change selection in rhs rn message thread steps continuing from in the above test in the rhs message thread click in tap on the message attachment menu box or click on the dropdown arrow to the right of the message attachment menu box select a different option to the one you selected in the center panel expected after the selection in the center panel changes to show the selection you made in the rhs and an ephemeral message is posted advising the selection you made for rn you will need to tap the back arrow to view the change in the channel view test key test folder cypress integration interactive menu test code arrangement describe interactive menu it change selection in rhs rn message thread code jira ticket if you re interested please comment here and come on our daily build server where you can discuss questions with community members and the mattermost core team for technical advice or questions please new contributors please see our | 1 |
17,057 | 3,591,557,431 | IssuesEvent | 2016-02-01 12:24:57 | kubernetes/kubernetes | https://api.github.com/repos/kubernetes/kubernetes | closed | Calibrate Kubemark/Kubemark test results | area/performance area/test priority/P1 team/control-plane | We have performance testing infrastructure ready for use in GCE, all scripts are in `test/kubemark`, and the rest of the code is spread around `cluster` directory. Currently there's a performance problem, which causes kubemark to be a lot slower than ordinary cluster. We need to find a root cause for this if we want this tool to be useful.
cc @fgrzadkowski @wojtek-t @lavalamp @quinton-hoole @timothysc | 1.0 | Calibrate Kubemark/Kubemark test results - We have performance testing infrastructure ready for use in GCE, all scripts are in `test/kubemark`, and the rest of the code is spread around `cluster` directory. Currently there's a performance problem, which causes kubemark to be a lot slower than ordinary cluster. We need to find a root cause for this if we want this tool to be useful.
cc @fgrzadkowski @wojtek-t @lavalamp @quinton-hoole @timothysc | test | calibrate kubemark kubemark test results we have performance testing infrastructure ready for use in gce all scripts are in test kubemark and the rest of the code is spread around cluster directory currently there s a performance problem which causes kubemark to be a lot slower than ordinary cluster we need to find a root cause for this if we want this tool to be useful cc fgrzadkowski wojtek t lavalamp quinton hoole timothysc | 1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.