Presentation is loading. Please wait.

Presentation is loading. Please wait.

1 Copyright © 2013 Kony Inc. CONFIDENTIAL 1 iOS 7 : Kony Platform Compatibility Date: Sep 16 th 2013.

Similar presentations


Presentation on theme: "1 Copyright © 2013 Kony Inc. CONFIDENTIAL 1 iOS 7 : Kony Platform Compatibility Date: Sep 16 th 2013."— Presentation transcript:

1 1 Copyright © 2013 Kony Inc. CONFIDENTIAL 1 iOS 7 : Kony Platform Compatibility Date: Sep 16 th 2013

2 Copyright © 2013 Kony Inc. CONFIDENTIAL 2 iOS 7 GM Compatibility patch

3 Copyright © 2013 Kony Inc. CONFIDENTIAL 3 iOS 7 Compatibility patches Plugin versionsCompatibility Patch to be used 5.0.xiOS-GA-5.0.35.zip 4.1.xiOS-GA-4.1.58.zip 4.0.xiOS-GA-4.0.32.zip 3.0.xIPHN-GA-3.0.29.zip 2.6.xIPHN-GA-2.6.15.zip  Please download the above compatibility patches from Kony Developer Portal  http://developer.kony.com/PluginReleases http://developer.kony.com/PluginReleases

4 Copyright © 2013 Kony Inc. CONFIDENTIAL  Please continue to use the version of the xCode and version of the IDE that you are already using. No need of changing IDE, xCode environment.  Please be aware for any reason, if you upgrade xCode environment to latest from Apple i.e xCode 5.0 and build the apps then will result apps with the new iOS 7 specific look & feel when produced app is run on iOS 7 upgraded devices.  Please read the FAQ section in deciding the xCode environment to be used for your project.  Upgrade the device ( iPhone 4, 4S, 5 etc) to iOS 7 latest beta. iOS 7 beta 6 is the latest from Apple.  Build and compile the apps in IDE, in xCode environment and load the final app on iOS 7 upgraded device. 4 Guidelines and Notes

5 Copyright © 2013 Kony Inc. CONFIDENTIAL 5 Issues Fixed

6 Copyright © 2013 Kony Inc. CONFIDENTIAL APIs that used to return device MAC address now return fixed values instead of MAC address. In iOS 7 release:  APIs that used to return a MAC address now return a fixed value 02:00:00:00:00:00. Impacted Kony APIs:  os.deviceInfo().customdeviceid  os.deviceInfo().deviceid  os.platform().deviceid  os.platform().customdeviceid Cause of this issue:  Apple has completely removed all possible ways of retrieving or making Unique Device Level Identifier (UDID) and instead, recommends developers using App Level Universally Unique Identifier (UUID). Uniqueness of this app level identifier is maintained across the apps from the same provider. Kony’s response:  Kony has provided the alternative APIs with the Patch 2. 6 1.Issues fixed – UDID alternate APIs

7 Copyright © 2013 Kony Inc. CONFIDENTIAL  Apple with iOS 7 removes all possibilities of creating our own unique device level identifier  Apple from iOS 6 and above introduces few identifiers which are not true replacement for the unique device id as these identifiers can be reset in few scenarios.  identifierForVendor  An alphanumeric string that uniquely identifies a device to the app’s vendor. The value of this property is the same for apps that come from the same vendor running on the same device. A different value is returned for apps on the same device that come from different vendors, and for apps on different devices regardless of vendor.  Note that the OS automatically deletes the current identifierForVendor when the user deletes the last application from a particular vendor. If he later reinstalls one or more apps from that vendor, the OS will generate a new identifier. 7 Brief Introduction to these alternate APIS to UDID

8 Copyright © 2013 Kony Inc. CONFIDENTIAL  advertisingIdentifier - An alphanumeric string unique to each device, used only for serving advertisements.  Unlike the identifierForVendor property of UIDevice, the same value is returned to all vendors. This identifier may change—for example, if the user erases the device.  Apart from advertising purposes, Apple suggest to use the advertising identifier only for the following purposes: frequency capping, conversion events, estimating the number of unique users, security and fraud detection, and debugging.  For more information regarding the behaviors exhibited by this API, please refer  http://oleb.net/blog/2012/09/udid-apis-in-ios-6/ 8 Brief Introduction to these alternate APIS to UDID

9 Copyright © 2013 Kony Inc. CONFIDENTIAL  Now these alternative identifiers APIs are available from Patch 2 onwards, Kony would recommend below changes in the app.  Use os.platform.deviceInfo().customdeviceid API for the devices with iOS version less than 6.0  For iOS versions iOS 6.0 and above, please use the alternative identifiers i.e identifierForVendor, advertisingIdentifier as needed and applicable –os.platform.deviceInfo().identifierForVendor (in JS) –os.platform.deviceInfo().advertisingIdentifier (In JS) –os.platform(). identifierForVendor (in Lua) –-os.platform(). advertisingIdentifier (in Lua) 9 Kony’s recommendation

10 Copyright © 2013 Kony Inc. CONFIDENTIAL  Usage of IdentifierForVendor If ( OS version is less than 6.0) { os.platform.deviceInfo().customdevicdeId } else { os.platform.deviceInfo().identifierForVendor }  Usage of advertisingIdentifier If ( OS version is less than 6.0) { os.platform.deviceInfo().customdevicdeId } else { os.platform.deviceInfo(). advertisingIdentifier } 10 Usage of new APIs in JS

11 Copyright © 2013 Kony Inc. CONFIDENTIAL  Usage of IdentifierForVendor If ( OS version is less than 6.0) { os.platform().customdevicdeId } else { os.platform().identifierForVendor }  Usage of advertisingIdentifier If ( OS version is less than 6.0) { os.platform().customdevicdeId } else { os.platform(). advertisingIdentifier } 11 Usage of new APIs in Lua

12 Copyright © 2013 Kony Inc. CONFIDENTIAL  When app is built xCode 5 and run on iOS7, Full screen layout is introduced in iOS7 which is causing UI overlaps  Camera overlay issues  Checkbox group widget click not working as on-off switch is going out of the view.  Issues, crashes in Custom transitions are fixed.  Next, Prev tool bar, Navigation Bar look & feel is made compatible to iOS 7.  Camera scaleFactor and maxSideOfTheImage was not respected in old builds and now is getting respected.  This means you may need to check your camera / RDC functionality for any issues and fine tune scaleFactor or maxSideOf the image properties accordingly.  Separator Line was not getting stretched in Segmented UI on iOS 7. This was happening when the dictionary view support is on.  Browser widget height is calculated wrongly and same is set correct. 12 3.Issues Fixed – UI Issues

13 Copyright © 2013 Kony Inc. CONFIDENTIAL  There is a change in how the back button and left button on the title bar works in iOS 7.  In iOS 6 even if both of them present only left button takes priority compared to Back button. In iOS 7, apple expects them one of them to be invisible and if both of them present leads to transition issues in the back button.  Kony team has fine tuned the platform code for this new behavior in iOS 7  Adhoc crashes during form transition. 13 3.Issues Fixed – UI Issues …

14 Copyright © 2013 Kony Inc. CONFIDENTIAL 14 Known Issues

15 Copyright © 2013 Kony Inc. CONFIDENTIAL  Label wrapping, sizing issues size difference b/w iOS6 and iOS7.  Even in GM there are still label wrapping issues are observed when label contains the extra white spaces, new lines and some special characters. Please see the below forum links: –https://devforums.apple.com/message/886877#886877https://devforums.apple.com/message/886877#886877 –https://devforums.apple.com/message/884657#884657https://devforums.apple.com/message/884657#884657 –https://devforums.apple.com/message/880517#880517https://devforums.apple.com/message/880517#880517 –https://devforums.apple.com/message/888224#888224https://devforums.apple.com/message/888224#888224 –https://devforums.apple.com/search.jspa?resultTypes=MESSAGE&peopleEnabled=true&q=UILabe lhttps://devforums.apple.com/search.jspa?resultTypes=MESSAGE&peopleEnabled=true&q=UILabe l  Your app may see some issues compared to the iOS 6 in how the labels getting wrapping in iOS 7. Especially if label contains extra white spaces, new lines and some special characters.  Guideline to app developers - Avoid spaces, new lines, special characters to do text formatting rather have explicitly multiple label widgets for formatting the text into multiple lines.  We are expecting apple soon will correct these issues and kony will keep working on alternative solutions. 15 1.Known Issues –

16 Copyright © 2013 Kony Inc. CONFIDENTIAL  Label – character wrapping option is not working straight. We are expecting apple would fix this soon.  iOS 7 takes little more space for the same fonts when compared to iOS 6.  Places where you see slightly one or two pixels getting cut off is due to the fact that fonts in iOS 7 slightly require more space compared to iOS 6. This is very subtle difference between iOS 6 and iOS 7 and most of the cases should work as expected.  Few cases where you observe few pixels in the text getting cut off, only way out is to increase the % of width given to label little bit and see things won't get cut off few pixels.  These label wrapping issues, fonts taking little more space may get manifested in few places in your app. If you do observe these issues, increase the % of width given to label, buttons little bit and see things won't get cut off few pixels.  For all known issues, kony will keep posting the updates in dev forums, portal. 16 1.Known Issues –

17 Copyright © 2013 Kony Inc. CONFIDENTIAL  iPhone 4 and iOS 7 – this combination is observed to be slow in rendering animations and complex widget hierarchies. This is because A4 old processors on iPhone 4 struggles to meet the demands of iOS 7. http://arstechnica.com/apple/2013/09/new-lease-on-life-or-death-sentence-ios-7-on-the- iphone-4/  Fonts are more sharper on iOS 7 compared to iOS 6 and this means you may see some brightness changes in the text rendered in Labels, Button in iOS 7 compared to iOS6. 17 1.Known Issues –

18 Copyright © 2013 Kony Inc. CONFIDENTIAL 18 FAQs

19 Copyright © 2013 Kony Inc. CONFIDENTIAL  Apps compiled using xCode versions less than 5.0 (<5.0) will get the iOS 6 look & feel even if these apps are installed and run on iOS 7 upgraded device.  If customers decide to have iOS 6 look &feel consistently across iOS 6 and iOS 7 devices then it is strongly recommended to use xCode versions less than5.0.  Rebuild your project using the Kony provided iOS 7 compatible patches (patch1) with xCode versions less than 5.0 and test the app on iOS 7 upgraded device and resubmit the app.  Kony recommends this option for the projects which are already in production or for the apps close to the submission process. Please note that Kony iOS 7 compatibility patch (patch1) is necessary even if customers decide to have iOS 6 look and feel for their apps on iOS 7 upgraded devices. 19 1. Can I still continue with iOS 6 look and feel even on iOS 7 upgraded devices ?

20 Copyright © 2013 Kony Inc. CONFIDENTIAL  Yes. Apps compiled using xCode version 5.0 (latest from apple) will have appropriate look and feel based on the OS version the app runs on.  However, customers are expected to modify the skins in Kony IDE to match the iOS 7 app guidelines. This is significant effort and is not advised if your are already in production and just need the iOS 7 compatibility or for the apps close to submission process and all you need is iOS7 compatibility but not the new look & feel provided by iOS7.  Please check the below app guidelines from apple for iOS 7 look & feel  https://developer.apple.com/library/prerelease/ios/documentation/UserExperience/Conceptual/MobileHIG/MobileHIG.pdf https://developer.apple.com/library/prerelease/ios/documentation/UserExperience/Conceptual/MobileHIG/MobileHIG.pdf  Kony recommends this option for the apps which are just started or mid-way through their execution.  Please note that Kony iOS 7 compatibility patch is necessary along with the Xcode 5.0 version. Kony would provide a detailed update around the Skin changes required for iOS 7 compatibility in the future iOS 7 communication notes. 20 2. Can I get the iOS 6 or iOS 7 look & feel for my app based on the OS version of the device?

21 Copyright © 2013 Kony Inc. CONFIDENTIAL  As per the Apple provided statistics pertaining to the distribution of OS versions, 94% of the customers are using iOS 6. These statistics indicate that users are eager to upgrade to the latest iOS versions of Apple. https://developer.apple.com/devcenter/ios/checklist/ 21 3. What are the OS distribution statics?

22 Copyright © 2013 Kony Inc. CONFIDENTIAL iOS 7 is supported on the following devices  iPhone 4  iPhone 4S  iPhone 5  iPod touch (5th gen)  iPad 2  iPad with Retina display  iPad mini Note: 3GS device does not support iOS 7. 22 4. Which devices are supported by iOS 7?

23 Copyright © 2013 Kony Inc. CONFIDENTIAL  Apple may release the final iOS 7 GM by mid of September 2013.  GM is the final version from Apple that will be released to developers and approximately a week after iOS 7 GM release, Apple will release the same for general public.  Expectation is to get the apps compatible with iOS7 before apple releases the iOS 7 final version for general public use. 23 5. When is iOS 7 GM scheduled to be released from Apple?

24 Copyright © 2013 Kony Inc. CONFIDENTIAL The following Kony plugins are supported (both Lua and JavaScript):  2.6  3.x  4.x  5.x 24 6. Which Kony plugins are to be supported for this upgrade?

25 Copyright © 2013 Kony Inc. CONFIDENTIAL Apple changed the specification for app icons that will be used for retina display. So far iOS 6 had been using app icons at a resolution of 114×114 whereas the leap to iOS 7 has seen the size grow to 120×120. For iPads, this size has gone from 144×144 to 152×152 on iOS 7. Essentially apple expects the above changes in the icons for their retina display devices. Currently apple is not blocking the submission if icons doesn't follow the new rules but may do the same soon. Kony recommendsall customers the usage of icons with new specification ASAP.  For more details please see the below URL: http://9to5mac.com/2013/08/30/apple-inadvertently-asking-developers-for-ios-7-optimized-app-icons/ 25 7. App icons – do I need to adhere to the latest spec from Apple while submitting the apps ?

26 Copyright © 2013 Kony Inc. CONFIDENTIAL Kony compatibility patch release plan (tentatively) is as follows:  Intermediate patch on August 25, 2013  Intermediate patch on August 30, 2013.  Intermediate patch on September 10th, 2013.  Apple GM compliant patch on September 10th, 2013.  Final GM compatible patch from Kony on September 16 th, 2013 26 8. Kony compatibility patch release plan

27 Copyright © 2013 Kony Inc. CONFIDENTIAL 27 Thank You


Download ppt "1 Copyright © 2013 Kony Inc. CONFIDENTIAL 1 iOS 7 : Kony Platform Compatibility Date: Sep 16 th 2013."

Similar presentations


Ads by Google