[TIMOB-27683] iOS: Error message not appropriate when building a project to device less than min-ios-version
GitHub Issue | n/a |
---|---|
Type | Bug |
Priority | None |
Status | Open |
Resolution | Unresolved |
Affected Version/s | Release 9.0.0 |
Fix Version/s | n/a |
Components | iOS |
Labels | cb-tooling, engTriage |
Reporter | Satyam Sekhri |
Assignee | Unknown |
Created | 2019-12-13T18:44:50.000+0000 |
Updated | 2020-01-31T15:59:35.000+0000 |
Description
When we build a titanium project to an iOS device which has iOS version less than the min-ios-version supported by the titanium SDK an error message is shown during the build process. The message needs to be changed as it seems inappropriate.
Steps to Reproduce:
1. Build a titanium project using Ti SDK 9.x to an iOS 9 device. Note: the min ios version with sdk 9.0 is ios 10.
Actual Result:
Error is shown during the build. The error message states to use 9.0 to be able to build.
[ERROR] : This app does not support the device "Helium"
The device is running iOS 9.3.5, however the app's the minimum iOS version is set to 10.0
In order to install this app on this device, lower the <min-ios-ver> to 9.3 in the tiapp.xml:
<ti:app xmlns:ti="http://ti.appcelerator.org">
<ios>
<min-ios-ver>9.3</min-ios-ver>
</ios>
</ti:app>
No comments