Steps to Reproduce
var searchableIndex = Ti.App.iOS.createSearchableIndex();
if (searchableIndex.isSupported()) {
Ti.App.iOS.addEventListener('continueactivity', onContinueactivity);
}
function onContinueactivity(e) {
var modelId;
Titanium.API.info('Ti.App.iOS:continueactivity' + e.activityType);
// A Spotlight search result was opened
if (e.activityType === 'com.apple.corespotlightitem') {
//opens specific screen
modelId = e.searchableItemActivityIdentifier;
}
}
Actual Result
In the iOS Simulator it works but on my iPhone 6s Plus running iOS 10.3.2 it just opens the app and doesn't go to the specific screen results.
Expected Result
Should open the app and open the correct data on the screen.
Hello, Please share a full reproducible code for us to test. Also, provide your test environment details.