Closed ginixsan closed 8 years ago
There's no special requirements related to my iOS Push module, but I know about some common problems:
var issue17030 = Ti.Network.registerForPushNotifications;
var issue17030iOS8 = Ti.App.iOS.registerUserNotificationSettings;
Maybe you can share with me your full debug level log.
That's all.
Arley
This is the code of the function that gets called when you register... `exports.registraDevice=function() { Ti.API.info('entro en registro'); var PushClient = require('br.com.arlsoft.pushclient'); var issue17030 = Ti.Network.registerForPushNotifications; var issue17030iOS8 = Ti.App.iOS.registerUserNotificationSettings;
var registerOptions = {
APNTypes : [ PushClient.NOTIFICATION_TYPE_BADGE, PushClient.NOTIFICATION_TYPE_ALERT, PushClient.NOTIFICATION_TYPE_SOUND ]
};
var acceptAction = PushClient.createAction({
identifier: 'ACCEPT_IDENTIFIER',
title: 'Accept',
activationMode: PushClient.NOTIFICATION_ACTIVATION_MODE_FOREGROUND,
destructive: false,
authenticationRequired: true
});
var rejectAction = PushClient.createAction({
identifier: 'REJECT_IDENTIFIER',
title: 'Reject',
activationMode: PushClient.NOTIFICATION_ACTIVATION_MODE_BACKGROUND,
destructive: true, authenticationRequired: false
});
var downloadContent = PushClient.createCategory({
identifier: 'APPROVE_CONTENT',
actionsForMinimalContext: [acceptAction, rejectAction],
actionsForDefaultContext: [acceptAction, rejectAction]
});
registerOptions.Categories = [downloadContent];
var eventSuccess = function(event) {
Ti.API.info('eventSuccess');
Ti.API.info('Registration Id : ' + event.registrationId);
var deviceToken= Ti.App.Properties.setString('deviceToken', event.registrationId);
exports.enviaAjustes(1,0);
};
var eventError = function(event) {
Ti.API.info('eventError');
switch (event.code) {
case PushClient.ERROR_SENDER_ID: console.log('Error : Undefined GCMSenderId');
break;
case PushClient.ERROR_PLAY_SERVICES: console.log('Error : Google Play Services not available');
break;
case PushClient.ERROR_NOT_SUPPORTED: console.log('Error : Not supported error');
break;
case PushClient.ERROR_REGISTER: console.log('Error : Unable to register this device');
break;
case PushClient.ERROR_UNREGISTER: console.log('Error : Unable to unregister this device');
break;
default: console.log('ErrorRaro : Unknown error');
}
};
var eventCallback = function(event) {
if (event.mode == PushClient.MODE_FOREGROUND) {
//alert('Callback in Foreground : ' + JSON.stringify(event.data));
}
else if (event.mode == PushClient.MODE_CLICK) {
//alert('Callback from Click : ' + JSON.stringify(event.data));
}
else if (event.mode == PushClient.MODE_BACKGROUND) {
PushClient.endBackgroundHandler(event.data.handlerId);
// alert('Callback from Silent:nn' + JSON.stringify(event.data));
}
else if (event.mode == PushClient.MODE_ACTION) {
//alert('Callback from Action:nn'+event.category+'n'+event.identifier+'nn' + JSON.stringify(event.data));
}
};
PushClient.addEventListener(PushClient.EVENT_SUCCESS, eventSuccess);
PushClient.addEventListener(PushClient.EVENT_ERROR, eventError);
PushClient.addEventListener(PushClient.EVENT_CALLBACK, eventCallback);
Ti.API.info('beforeregistering');
PushClient.registerPush(registerOptions);
Ti.API.info('afterregistering');
};
As you can see @arleyandrada (quoted them in bold) by the Ti.API.infos it goes to register but doesn't go to eventSucces although it says in a debug that it registered the iphone...but it gives a lot of warnings about the pushclient module... Hope this helps...
[TRACE] : ProcessInfoPlistFile build/Products/Debug-iphoneos/controlAsma.app/Info.plist Info.plist
[TRACE] : cd /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/build/iphone
[TRACE] : export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/bin:/Users/ginessanchis/Library/Application Support/GoodSync:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
[TRACE] : builtin-infoPlistUtility /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/build/iphone/Info.plist -genpkginfo /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/build/iphone/build/Products/Debug-iphoneos/controlAsma.app/PkgInfo -expandbuildsettings -format binary -platform iphoneos -additionalcontentfile /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/build/iphone/build/Intermediates/controlAsma.build/Debug-iphoneos/controlAsma.build/assetcatalog_generated_info.plist -o /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/build/iphone/build/Products/Debug-iphoneos/controlAsma.app/Info.plist
[TRACE] :
[TRACE] : GenerateDSYMFile build/Products/Debug-iphoneos/controlAsma.app.dSYM build/Products/Debug-iphoneos/controlAsma.app/controlAsma
[TRACE] : cd /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/build/iphone
[TRACE] : export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/bin:/Users/ginessanchis/Library/Application Support/GoodSync:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
[TRACE] : /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/dsymutil /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/build/iphone/build/Products/Debug-iphoneos/controlAsma.app/controlAsma -o /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/build/iphone/build/Products/Debug-iphoneos/controlAsma.app.dSYM
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(TiAppiOSProxyHack.o):
[TRACE] : warning: /var/folders/kq/6f0y6zn105v32zwq7hwfpcbr0000gp/C/com.apple.DeveloperTools/7.2-7C68/Xcode/SharedPrecompiledHeaders/BrComArlsoftPushclient_Prefix-egidyuhyoqfecmarfuvzuctfvawm/BrComArlsoftPushclient_Prefix.pch.pch: No such file or directory
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(TiAppiOSProxyHack.o):
[TRACE] : warning: /var/folders/kq/6f0y6zn105v32zwq7hwfpcbr0000gp/C/com.apple.DeveloperTools/7.2-7C68/Xcode/SharedPrecompiledHeaders/BrComArlsoftPushclient_Prefix-egidyuhyoqfecmarfuvzuctfvawm/BrComArlsoftPushclient_Prefix.pch.pch: No object file for requested architecture
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(TiAppiOSProxyHack.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSObject
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(TiAppiOSProxyHack.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSObject
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(TiAppiOSProxyHack.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSString
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(TiAppiOSProxyHack.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSRecursiveLock
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(TiAppiOSProxyHack.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSCondition
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(TiAppiOSProxyHack.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSMutableArray
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(TiAppiOSProxyHack.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSMutableDictionary
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(TiAppiOSProxyHack.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSArray
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(TiAppiOSProxyHack.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSURL
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(TiAppiOSProxyHack.o):
[TRACE] : warning: Could not resolve external type c:@S@_opaque_pthread_rwlock_t
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(TiAppiOSProxyHack.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSObject
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(TiAppiOSProxyHack.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSObject
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(TiAppiOSProxyHack.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSDictionary
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(BrComArlsoftPushclientModule.o):
[TRACE] : warning: /var/folders/kq/6f0y6zn105v32zwq7hwfpcbr0000gp/C/com.apple.DeveloperTools/7.2-7C68/Xcode/SharedPrecompiledHeaders/BrComArlsoftPushclient_Prefix-egidyuhyoqfecmarfuvzuctfvawm/BrComArlsoftPushclient_Prefix.pch.pch: No such file or directory
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(BrComArlsoftPushclientModule.o):
[TRACE] : warning: /var/folders/kq/6f0y6zn105v32zwq7hwfpcbr0000gp/C/com.apple.DeveloperTools/7.2-7C68/Xcode/SharedPrecompiledHeaders/BrComArlsoftPushclient_Prefix-egidyuhyoqfecmarfuvzuctfvawm/BrComArlsoftPushclient_Prefix.pch.pch: No object file for requested architecture
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(BrComArlsoftPushclientModule.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSString
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(BrComArlsoftPushclientModule.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSNumber
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(BrComArlsoftPushclientModule.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSDictionary
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(BrComArlsoftPushclientModule.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSMutableDictionary
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(BrComArlsoftPushclientModule.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSObject
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(BrComArlsoftPushclientModule.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSObject
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(BrComArlsoftPushclientModule.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSRecursiveLock
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(BrComArlsoftPushclientModule.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSCondition
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(BrComArlsoftPushclientModule.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSMutableArray
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(BrComArlsoftPushclientModule.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSArray
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(BrComArlsoftPushclientModule.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSURL
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(BrComArlsoftPushclientModule.o):
[TRACE] : warning: Could not resolve external type c:@S@_opaque_pthread_rwlock_t
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(BrComArlsoftPushclientModule.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSObject
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(BrComArlsoftPushclientModule.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSObject
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(BrComArlsoftPushclientModule.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSObject
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(BrComArlsoftPushclientModule.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSObject
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(BrComArlsoftPushclientModule.o):
[TRACE] : warning: Could not resolve external type c:@S@_NSRange
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(BrComArlsoftPushclientModule.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSData
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(BrComArlsoftPushclientModule.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSMutableString
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(BrComArlsoftPushclientModule.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSObject
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(BrComArlsoftPushclientModule.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSUndoManager
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(BrComArlsoftPushclientModule.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSObject
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(BrComArlsoftPushclientModule.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSObject
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(BrComArlsoftPushclientModule.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSObject
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(BrComArlsoftPushclientModule.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSBundle
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(BrComArlsoftPushclientModule.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSObject
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(BrComArlsoftPushclientModule.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSNotification
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(BrComArlsoftPushclientModule.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSMutableSet
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(BrComArlsoftPushclientModule.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSMethodSignature
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(BrComArlsoftPushclientModule.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSInvocation
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(BrComArlsoftPushclientModule.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSObject
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(BrComArlsoftPushclientModule.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSError
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(BrComArlsoftPushclientModuleAssets.o):
[TRACE] : warning: /var/folders/kq/6f0y6zn105v32zwq7hwfpcbr0000gp/C/com.apple.DeveloperTools/7.2-7C68/Xcode/SharedPrecompiledHeaders/BrComArlsoftPushclient_Prefix-egidyuhyoqfecmarfuvzuctfvawm/BrComArlsoftPushclient_Prefix.pch.pch: No such file or directory
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(BrComArlsoftPushclientModuleAssets.o):
[TRACE] : warning: /var/folders/kq/6f0y6zn105v32zwq7hwfpcbr0000gp/C/com.apple.DeveloperTools/7.2-7C68/Xcode/SharedPrecompiledHeaders/BrComArlsoftPushclient_Prefix-egidyuhyoqfecmarfuvzuctfvawm/BrComArlsoftPushclient_Prefix.pch.pch: No object file for requested architecture
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(BrComArlsoftPushclientModuleAssets.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSObject
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(BrComArlsoftPushclientModuleAssets.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSData
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(BrComArlsoftPushclientModuleAssets.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSString
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(TiAppiOSProxyHack.o):
[TRACE] : warning: /var/folders/kq/6f0y6zn105v32zwq7hwfpcbr0000gp/C/com.apple.DeveloperTools/7.2-7C68/Xcode/SharedPrecompiledHeaders/BrComArlsoftPushclient_Prefix-bvtjofkfcfydtrgkuzucmsmuipst/BrComArlsoftPushclient_Prefix.pch.pch: No such file or directory
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(TiAppiOSProxyHack.o):
[TRACE] : warning: /var/folders/kq/6f0y6zn105v32zwq7hwfpcbr0000gp/C/com.apple.DeveloperTools/7.2-7C68/Xcode/SharedPrecompiledHeaders/BrComArlsoftPushclient_Prefix-bvtjofkfcfydtrgkuzucmsmuipst/BrComArlsoftPushclient_Prefix.pch.pch: No object file for requested architecture
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(TiAppiOSProxyHack.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSObject
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(TiAppiOSProxyHack.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSObject
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(TiAppiOSProxyHack.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSString
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(TiAppiOSProxyHack.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSRecursiveLock
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(TiAppiOSProxyHack.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSCondition
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(TiAppiOSProxyHack.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSMutableArray
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(TiAppiOSProxyHack.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSMutableDictionary
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(TiAppiOSProxyHack.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSArray
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(TiAppiOSProxyHack.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSURL
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(TiAppiOSProxyHack.o):
[TRACE] : warning: Could not resolve external type c:@S@_opaque_pthread_rwlock_t
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(TiAppiOSProxyHack.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSObject
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(TiAppiOSProxyHack.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSObject
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(TiAppiOSProxyHack.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSDictionary
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(BrComArlsoftPushclientModule.o):
[TRACE] : warning: /var/folders/kq/6f0y6zn105v32zwq7hwfpcbr0000gp/C/com.apple.DeveloperTools/7.2-7C68/Xcode/SharedPrecompiledHeaders/BrComArlsoftPushclient_Prefix-bvtjofkfcfydtrgkuzucmsmuipst/BrComArlsoftPushclient_Prefix.pch.pch: No such file or directory
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(BrComArlsoftPushclientModule.o):
[TRACE] : warning: /var/folders/kq/6f0y6zn105v32zwq7hwfpcbr0000gp/C/com.apple.DeveloperTools/7.2-7C68/Xcode/SharedPrecompiledHeaders/BrComArlsoftPushclient_Prefix-bvtjofkfcfydtrgkuzucmsmuipst/BrComArlsoftPushclient_Prefix.pch.pch: No object file for requested architecture
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(BrComArlsoftPushclientModule.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSString
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(BrComArlsoftPushclientModule.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSNumber
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(BrComArlsoftPushclientModule.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSDictionary
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(BrComArlsoftPushclientModule.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSMutableDictionary
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(BrComArlsoftPushclientModule.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSObject
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(BrComArlsoftPushclientModule.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSObject
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(BrComArlsoftPushclientModule.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSRecursiveLock
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(BrComArlsoftPushclientModule.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSCondition
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(BrComArlsoftPushclientModule.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSMutableArray
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(BrComArlsoftPushclientModule.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSArray
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(BrComArlsoftPushclientModule.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSURL
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(BrComArlsoftPushclientModule.o):
[TRACE] : warning: Could not resolve external type c:@S@_opaque_pthread_rwlock_t
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(BrComArlsoftPushclientModule.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSObject
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(BrComArlsoftPushclientModule.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSObject
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(BrComArlsoftPushclientModule.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSObject
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(BrComArlsoftPushclientModule.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSObject
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(BrComArlsoftPushclientModule.o):
[TRACE] : warning: Could not resolve external type c:@S@_NSRange
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(BrComArlsoftPushclientModule.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSData
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(BrComArlsoftPushclientModule.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSMutableString
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(BrComArlsoftPushclientModule.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSObject
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(BrComArlsoftPushclientModule.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSUndoManager
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(BrComArlsoftPushclientModule.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSObject
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(BrComArlsoftPushclientModule.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSObject
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(BrComArlsoftPushclientModule.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSObject
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(BrComArlsoftPushclientModule.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSBundle
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(BrComArlsoftPushclientModule.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSObject
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(BrComArlsoftPushclientModule.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSNotification
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(BrComArlsoftPushclientModule.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSMethodSignature
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(BrComArlsoftPushclientModule.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSInvocation
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(BrComArlsoftPushclientModule.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSObject
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(BrComArlsoftPushclientModule.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSMutableSet
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(BrComArlsoftPushclientModule.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSError
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(BrComArlsoftPushclientModuleAssets.o):
[TRACE] : warning: /var/folders/kq/6f0y6zn105v32zwq7hwfpcbr0000gp/C/com.apple.DeveloperTools/7.2-7C68/Xcode/SharedPrecompiledHeaders/BrComArlsoftPushclient_Prefix-bvtjofkfcfydtrgkuzucmsmuipst/BrComArlsoftPushclient_Prefix.pch.pch: No such file or directory
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(BrComArlsoftPushclientModuleAssets.o):
[TRACE] : warning: /var/folders/kq/6f0y6zn105v32zwq7hwfpcbr0000gp/C/com.apple.DeveloperTools/7.2-7C68/Xcode/SharedPrecompiledHeaders/BrComArlsoftPushclient_Prefix-bvtjofkfcfydtrgkuzucmsmuipst/BrComArlsoftPushclient_Prefix.pch.pch: No object file for requested architecture
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(BrComArlsoftPushclientModuleAssets.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSObject
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(BrComArlsoftPushclientModuleAssets.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSData
[TRACE] : while processing /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11/libbr.com.arlsoft.pushclient.a(BrComArlsoftPushclientModuleAssets.o):
[TRACE] : warning: Could not resolve external type c:objc(cs)NSString
[TRACE] :
[TRACE] : Touch build/Products/Debug-iphoneos/controlAsma.app
[TRACE] : cd /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/build/iphone
[TRACE] : export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/bin:/Users/ginessanchis/Library/Application Support/GoodSync:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
[TRACE] : /usr/bin/touch -c /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/build/iphone/build/Products/Debug-iphoneos/controlAsma.app
[TRACE] :
[TRACE] : Strip build/Products/Debug-iphoneos/controlAsma.app/controlAsma
[TRACE] : cd /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/build/iphone
[TRACE] : export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/bin:/Users/ginessanchis/Library/Application Support/GoodSync:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
[TRACE] : /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/build/iphone/build/Products/Debug-iphoneos/controlAsma.app/controlAsma
[TRACE] :
[TRACE] : CopySwiftLibs build/Products/Debug-iphoneos/controlAsma.app
[TRACE] : cd /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/build/iphone
[TRACE] : export CODESIGN_ALLOCATE=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate
[TRACE] : export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/bin:/Users/ginessanchis/Library/Application Support/GoodSync:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
[TRACE] : /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-stdlib-tool --copy --verbose --sign 865CFFD5550C429950805987B8B88433F96F42C2 --scan-executable /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/build/iphone/build/Products/Debug-iphoneos/controlAsma.app/controlAsma --scan-folder /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/build/iphone/build/Products/Debug-iphoneos/controlAsma.app/Frameworks --scan-folder /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/build/iphone/build/Products/Debug-iphoneos/controlAsma.app/PlugIns --scan-folder /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.2.sdk/System/Library/Frameworks/iAd.framework --scan-folder /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.2.sdk/System/Library/Frameworks/CoreMedia.framework --scan-folder /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.2.sdk/System/Library/Frameworks/CoreMotion.framework --scan-folder /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.2.sdk/System/Library/Frameworks/CoreText.framework --scan-folder /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.2.sdk/System/Library/Frameworks/EventKit.framework --scan-folder /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.2.sdk/System/Library/Frameworks/EventKitUI.framework --scan-folder /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.2.sdk/System/Library/Frameworks/Security.framework --scan-folder /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.2.sdk/System/Library/Frameworks/Foundation.framework --scan-folder /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.2.sdk/System/Library/Frameworks/UIKit.framework --scan-folder /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.2.sdk/System/Library/Frameworks/CoreGraphics.framework --scan-folder /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.2.sdk/System/Library/Frameworks/AddressBook.framework --scan-folder /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.2.sdk/System/Library/Frameworks/AddressBookUI.framework --scan-folder /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.2.sdk/System/Library/Frameworks/CFNetwork.framework --scan-folder /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.2.sdk/System/Library/Frameworks/CoreLocation.framework --scan-folder /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.2.sdk/System/Library/Frameworks/MapKit.framework --scan-folder /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.2.sdk/System/Library/Frameworks/MessageUI.framework --scan-folder /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.2.sdk/System/Library/Frameworks/MobileCoreServices.framework --scan-folder /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.2.sdk/System/Library/Frameworks/OpenGLES.framework --scan-folder /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.2.sdk/System/Library/Frameworks/QuartzCore.framework --scan-folder /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.2.sdk/System/Library/Frameworks/SystemConfiguration.framework --scan-folder /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.2.sdk/System/Library/Frameworks/AudioToolbox.framework --scan-folder /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.2.sdk/System/Library/Frameworks/MediaPlayer.framework --scan-folder /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.2.sdk/System/Library/Frameworks/AVFoundation.framework --scan-folder /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.2.sdk/System/Library/Frameworks/StoreKit.framework --scan-folder /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.2.sdk/System/Library/Frameworks/ExternalAccessory.framework --platform iphoneos --destination /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/build/iphone/build/Products/Debug-iphoneos/controlAsma.app/Frameworks --strip-bitcode
[TRACE] :
[TRACE] : ProcessProductPackaging controlAsma.entitlements build/Intermediates/controlAsma.build/Debug-iphoneos/controlAsma.build/controlAsma.app.xcent
[TRACE] : cd /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/build/iphone
[TRACE] : export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/bin:/Users/ginessanchis/Library/Application Support/GoodSync:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
[TRACE] : builtin-productPackagingUtility /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/build/iphone/controlAsma.entitlements -entitlements -format xml -o /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/build/iphone/build/Intermediates/controlAsma.build/Debug-iphoneos/controlAsma.build/controlAsma.app.xcent
[TRACE] :
[TRACE] : CodeSign build/Products/Debug-iphoneos/controlAsma.app
[TRACE] : cd /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/build/iphone
[TRACE] : export CODESIGN_ALLOCATE=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate
[TRACE] : export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/bin:/Users/ginessanchis/Library/Application Support/GoodSync:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
[TRACE] :
[TRACE] : Signing Identity: "iPhone Developer: Gines Sanz Sanchis (N4ZXAL4QCG)"
[TRACE] : Provisioning Profile: "proviAsmaUltim"
[TRACE] : (44b68b6d-971f-4381-822d-fe4ab1e1a146)
[TRACE] : /usr/bin/codesign --force --sign 865CFFD5550C429950805987B8B88433F96F42C2 --entitlements /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/build/iphone/build/Intermediates/controlAsma.build/Debug-iphoneos/controlAsma.build/controlAsma.app.xcent --timestamp=none /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/build/iphone/build/Products/Debug-iphoneos/controlAsma.app
[TRACE] :
[TRACE] : Validate build/Products/Debug-iphoneos/controlAsma.app
[TRACE] : cd /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/build/iphone
[TRACE] : export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/bin:/Users/ginessanchis/Library/Application Support/GoodSync:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
[TRACE] : export PRODUCT_TYPE=com.apple.product-type.application
[TRACE] : builtin-validationUtility /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/build/iphone/build/Products/Debug-iphoneos/controlAsma.app
[TRACE] :
[TRACE] : Touch build/Products/Debug-iphoneos/controlAsma.app.dSYM
[TRACE] : cd /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/build/iphone
[TRACE] : export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/bin:/Users/ginessanchis/Library/Application Support/GoodSync:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
[TRACE] : /usr/bin/touch -c /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/build/iphone/build/Products/Debug-iphoneos/controlAsma.app.dSYM
[TRACE] :
[TRACE] : \ BUILD SUCCEEDED
[INFO] : Finished building the application in 26s 863ms
[INFO] : Installing app on device: ginix
[INFO] : App successfully installed on device: ginix
Please manually launch the application
-- Start application log -----------------------------------------------------
[DEBUG] : Reading stylesheet from: /var/mobile/Containers/Bundle/Application/EAD55848-98EE-46A5-953C-8B43E96EA560/controlAsma.app/stylesheet.plist
[INFO] : controlAsma/1.1 (5.2.0.384775e)
[DEBUG] : Loading: /var/mobile/Containers/Bundle/Application/EAD55848-98EE-46A5-953C-8B43E96EA560/controlAsma.app/app.js, Resource: app_js
[DEBUG] : Loading: /var/mobile/Containers/Bundle/Application/EAD55848-98EE-46A5-953C-8B43E96EA560/controlAsma.app/_appprops.json, Resource: _app_props__json
[DEBUG] : Loading: /var/mobile/Containers/Bundle/Application/EAD55848-98EE-46A5-953C-8B43E96EA560/controlAsma.app/ui/common/LoginWindow.js, Resource: ui/common/LoginWindow_js
[DEBUG] : Loading: /var/mobile/Containers/Bundle/Application/EAD55848-98EE-46A5-953C-8B43E96EA560/controlAsma.app/ui/common/LoginWelcome.js, Resource: ui/common/LoginWelcome_js
[DEBUG] : Loading: /var/mobile/Containers/Bundle/Application/EAD55848-98EE-46A5-953C-8B43E96EA560/controlAsma.app/ui/common/globales.js, Resource: ui/common/globales_js
[DEBUG] : Loading: /var/mobile/Containers/Bundle/Application/EAD55848-98EE-46A5-953C-8B43E96EA560/controlAsma.app/ti.cloud.js, Resource: ti_cloud_js
[DEBUG] : Loading: /var/mobile/Containers/Bundle/Application/EAD55848-98EE-46A5-953C-8B43E96EA560/controlAsma.app/br.com.arlsoft.pushclient.js, Resource: br_com_arlsoft_pushclient_js
[DEBUG] : Loading: /var/mobile/Containers/Bundle/Application/EAD55848-98EE-46A5-953C-8B43E96EA560/controlAsma.app/ui/common/tutorial1.js, Resource: ui/common/tutorial1_js
[DEBUG] : Loading: /var/mobile/Containers/Bundle/Application/EAD55848-98EE-46A5-953C-8B43E96EA560/controlAsma.app/ui/common/tutorial2.js, Resource: ui/common/tutorial2_js
[DEBUG] : Loading: /var/mobile/Containers/Bundle/Application/EAD55848-98EE-46A5-953C-8B43E96EA560/controlAsma.app/ui/common/tutorial3.js, Resource: ui/common/tutorial3_js
[DEBUG] : Application booted in 528.702021 ms
[TRACE] : updating tiapp metadata with Appcelerator Platform...
[TRACE] : Uploaded tiapp metadata with Appcelerator Platform!
[WARN] : Ti.UI.iPhone.ActivityIndicatorStyle.DARK DEPRECATED in 5.1.0, in favor of Ti.UI.ActivityIndicatorStyle.DARK
[INFO] : hay conexion
[INFO] : {"logged":true,"id":"20","sexo":"0","acaros":"1","alternaria":"1","parietaria":"1","gramineas":"1","otrosPol":"1","perro":"1","gato":"1","otrosAnim":"1","leche":"1","huevo":"1","melocoton":"1","marisco":"1","pescado":"1","otrasFrut":"1","anafilactico":"1","espiroFev1":"1","picoflujo":"0","query":"SELECT * FROM tablausuarios,tablaalergias,tablavisitas WHERE tablausuarios.idUnico = '29' AND tablausuarios.password = 'test' LIMIT 1"}
[INFO] : response logged estrue
[INFO] : antes de registrarlo
[INFO] : entro en registro
[INFO] : beforeregistering
[INFO] : afterregistering
[DEBUG] : Loading: /var/mobile/Containers/Bundle/Application/EAD55848-98EE-46A5-953C-8B43E96EA560/controlAsma.app/ui/ApplicationWindow.js, Resource: ui/ApplicationWindow_js
[DEBUG] : Loading: /var/mobile/Containers/Bundle/Application/EAD55848-98EE-46A5-953C-8B43E96EA560/controlAsma.app/com.alcoapps.dbhelper.js, Resource: com_alcoapps_dbhelper_js
[DEBUG] : Loading: /var/mobile/Containers/Bundle/Application/EAD55848-98EE-46A5-953C-8B43E96EA560/controlAsma.app/ui/common/EncuentroMal.js, Resource: ui/common/EncuentroMal_js
[INFO] : la altura es568
[INFO] : es este fuera
[DEBUG] : Loading: /var/mobile/Containers/Bundle/Application/EAD55848-98EE-46A5-953C-8B43E96EA560/controlAsma.app/ui/common/FirstView.js, Resource: ui/common/FirstView_js
[INFO] : este es first0
[DEBUG] : Loading: /var/mobile/Containers/Bundle/Application/EAD55848-98EE-46A5-953C-8B43E96EA560/controlAsma.app/ui/common/xhr.js, Resource: ui/common/xhr_js
[DEBUG] : Loading: /var/mobile/Containers/Bundle/Application/EAD55848-98EE-46A5-953C-8B43E96EA560/controlAsma.app/ui/common/calendario.js, Resource: ui/common/calendario_js
[INFO] : calendario ocupa1000
[WARN] : Ti.UI.iPhone.ActivityIndicatorStyle.DARK DEPRECATED in 5.1.0, in favor of Ti.UI.ActivityIndicatorStyle.DARK
[INFO] : control es0
[INFO] : http://basesdatos.pediatrismo.com/ {"id":29}
[INFO] : pico flujo es0
[DEBUG] : Firing app event: playSound
[INFO] : lo que devuelve es {"polucion":"34","codigo":"33","humedad":"81","polen":1,"trofeos":"SELECT idUnico,numTrofeos FROM tablausuarios WHERE idUnico = ''"}
[INFO] : el codigo que recibo es 33
[INFO] : less than five
[DEBUG] : Registered new device for remote push notifications: f643afda5cd92c990044020e8cc3b501f33332c714be2e051e820e362cd4829a**
[DEBUG] : New scheme: <NSMutableURLRequest: 0x13d903ba0> { URL: file:///var/mobile/Containers/Bundle/Application/EAD55848-98EE-46A5-953C-8B43E96EA560/controlAsma.app/ui/common/calendario.html }
[DEBUG] : Loading: /var/mobile/Containers/Bundle/Application/EAD55848-98EE-46A5-953C-8B43E96EA560/controlAsma.app/ui/common/calendario.html, Resource: ui/common/calendario_html
[DEBUG] : Loading: /var/mobile/Containers/Bundle/Application/EAD55848-98EE-46A5-953C-8B43E96EA560/controlAsma.app/ui/common/jquery.jsf, Resource: ui/common/jquery_jsf
[DEBUG] : Firing app event: pageReady
[INFO] : 29
[INFO] : CoreAnimation: failed to allocate IOSurface
[DEBUG] : Loading: /var/mobile/Containers/Bundle/Application/EAD55848-98EE-46A5-953C-8B43E96EA560/controlAsma.app/ui/common/rojo.png, Resource: ui/common/rojo_png`
The "Registered new device for remote push notifications" message is not from my module.
It's a message from TiApp and apparently you are using simultaneously (in conflict with my module) another push module or using native push features from Titanium.
You say that the trouble started when you made the upgrade to the latest version of the module. Did you tried to go back to the previous version and check if the problem no longer occurs?
No other module..neither appcelerator cloud.. nothing.. the thing is that I updated xcode to 7.2.1 and updated pushclient to 1.11...now even if I go back to 1.7 (was the last one I had) I don't have those arisoft.pushclient warnings but still doesn't register... (or better said...still that message saying that it registered although you say it's not from your module)...
Appcelerator Command-Line Interface, version 5.2.0
Copyright (c) 2014-2016, Appcelerator, Inc. All Rights Reserved.
2016-03-13T16:59:43.670Z | TRACE | set environment to {"registry":"https://software.appcelerator.com","security":"https://security.appcelerator.com","baseurl":"https://platform.appcelerator.com"}
2016-03-13T16:59:43.671Z | TRACE | checking credentials for existing session
2016-03-13T16:59:43.958Z | TRACE | Attempting to load session info from config file
2016-03-13T16:59:43.962Z | TRACE | check if session is invalidated
2016-03-13T16:59:45.463Z | TRACE | session expiry 1458336727039 false
2016-03-13T16:59:45.463Z | TRACE | Arrow Cloud config file: /Users/ginessanchis/.acs
2016-03-13T16:59:45.475Z | TRACE | found Arrow Cloud login { mid: '6c5331317114172ff824ee65f7632aa6260b27a8',
publishPort: 443,
publishHost: 'https://admin.cloudapp-enterprise.appcelerator.com',
username: 'XXXXXX',
cookie: [ 'connect.sid=s%3AzP2ER5XRNBOKW4H3GkwD0oo5.bANSMune%2FzXPHNGGWePT0B7vLOY7hgnYavVIS0IE%2FLE; Path=/; Expires=Fri, 25 Mar 2016 21:32:11 GMT; HttpOnly' ],
defaultEP:
{ publishHost: 'https://admin.cloudapp-enterprise.appcelerator.com',
publishPort: 443 } } , checking nodeACSEndpoint= https://admin.cloudapp-enterprise.appcelerator.com
2016-03-13T16:59:45.477Z | TRACE | Arrow Cloud cookie expiry [ 1458941531000 ]
2016-03-13T16:59:45.478Z | TRACE | session already loaded in opts.session
2016-03-13T16:59:45.480Z | TRACE | getCredentials() session:
{
"ipaddress": "192.168.1.36",
"username": "XXXXXX",
"password": "
Memory = 8589934592
Node.js
Node.js Version = 0.12.7
npm Version = 2.11.3
Titanium CLI
CLI Version = 5.0.6
Titanium SDK
SDK Version = 5.2.0.GA
SDK Path = /Users/ginessanchis/Library/Application Support/Titanium/mobilesdk/osx/5.2.0.GA
Target Platform = iphone
Command
/usr/local/bin/node /Users/ginessanchis/.appcelerator/install/5.2.0/package/node_modules/titanium/lib/titanium.js build run --platform ios --log-level trace --sdk 5.2.0.GA --project-dir /Users/ginessanchis/Documents/nuevoworkspace/controlAsma --target device --ios-version 9.2 --device-family iphone --developer-name Gines Sanz Sanchis (N4ZXAL4QCG) --device-id ed32cb0a03fd023ece29172205e5aaaae2b32399 --pp-uuid 44b68b6d-971f-4381-822d-fe4ab1e1a146 --no-colors --no-progress-bars --no-prompt --prompt-type socket-bundle --prompt-port 49462 --config-file /var/folders/pv/k77r8_394xbgxg0k9wy_pbdc0000gn/T/build-1457888386792.json --no-banner --project-dir /Users/ginessanchis/Documents/nuevoworkspace/controlAsma
[DEBUG] : Detecting modules in /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules
[DEBUG] : Detected android module: br.com.arlsoft.pushclient 1.12 @ /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/android/br.com.arlsoft.pushclient/1.12
[DEBUG] : Detected iphone module: br.com.arlsoft.pushclient 1.11 @ /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/modules/iphone/br.com.arlsoft.pushclient/1.11
[DEBUG] : Detecting modules in /Users/ginessanchis/Library/Application Support/Titanium/modules
[DEBUG] : Detected android module: br.com.arlsoft.pushclient 1.10 @ /Users/ginessanchis/Library/Application Support/Titanium/modules/android/br.com.arlsoft.pushclient/1.10
[DEBUG] : Detected android module: br.com.arlsoft.pushclient 1.11 @ /Users/ginessanchis/Library/Application Support/Titanium/modules/android/br.com.arlsoft.pushclient/1.11
[DEBUG] : Detected android module: br.com.arlsoft.pushclient 1.12 @ /Users/ginessanchis/Library/Application Support/Titanium/modules/android/br.com.arlsoft.pushclient/1.12
[DEBUG] : Detected android module: br.com.arlsoft.pushclient 1.7 @ /Users/ginessanchis/Library/Application Support/Titanium/modules/android/br.com.arlsoft.pushclient/1.7
[DEBUG] : Detected android module: com.appcelerator.apm 1.1.1 @ /Users/ginessanchis/Library/Application Support/Titanium/modules/android/com.appcelerator.apm/1.1.1
[DEBUG] : Detected android module: com.appcelerator.apm 1.1.5 @ /Users/ginessanchis/Library/Application Support/Titanium/modules/android/com.appcelerator.apm/1.1.5
[DEBUG] : Detected android module: com.gstreetmedia.androidtouchsound 1.0 @ /Users/ginessanchis/Library/Application Support/Titanium/modules/android/com.gstreetmedia.androidtouchsound/1.0
[DEBUG] : Detected android module: dk.napp.drawer 1.1.4 @ /Users/ginessanchis/Library/Application Support/Titanium/modules/android/dk.napp.drawer/1.1.4
[DEBUG] : Detected android module: facebook 3.0.2 @ /Users/ginessanchis/Library/Application Support/Titanium/modules/android/facebook/3.0.2
[DEBUG] : Detected android module: facebook 3.0.3 @ /Users/ginessanchis/Library/Application Support/Titanium/modules/android/facebook/3.0.3
[DEBUG] : Detected android module: facebook 4.0.3 @ /Users/ginessanchis/Library/Application Support/Titanium/modules/android/facebook/4.0.3
[DEBUG] : Detected android module: facebook 4.0.5 @ /Users/ginessanchis/Library/Application Support/Titanium/modules/android/facebook/4.0.5
[DEBUG] : Detected android module: facebook 5.0.0 @ /Users/ginessanchis/Library/Application Support/Titanium/modules/android/facebook/5.0.0
[DEBUG] : Detected android module: ti.cloudpush 3.2.0 @ /Users/ginessanchis/Library/Application Support/Titanium/modules/android/ti.cloudpush/3.2.0
[DEBUG] : Detected android module: ti.cloudpush 3.2.1 @ /Users/ginessanchis/Library/Application Support/Titanium/modules/android/ti.cloudpush/3.2.1
[DEBUG] : Detected android module: ti.cloudpush 3.3.0 @ /Users/ginessanchis/Library/Application Support/Titanium/modules/android/ti.cloudpush/3.3.0
[DEBUG] : Detected android module: ti.cloudpush 3.3.4 @ /Users/ginessanchis/Library/Application Support/Titanium/modules/android/ti.cloudpush/3.3.4
[DEBUG] : Detected android module: ti.cloudpush 3.3.7 @ /Users/ginessanchis/Library/Application Support/Titanium/modules/android/ti.cloudpush/3.3.7
[DEBUG] : Detected android module: ti.cloudpush 3.3.8 @ /Users/ginessanchis/Library/Application Support/Titanium/modules/android/ti.cloudpush/3.3.8
[DEBUG] : Detected android module: ti.cloudpush 3.4.0 @ /Users/ginessanchis/Library/Application Support/Titanium/modules/android/ti.cloudpush/3.4.0
[DEBUG] : Detected android module: ti.cloudpush 3.4.1 @ /Users/ginessanchis/Library/Application Support/Titanium/modules/android/ti.cloudpush/3.4.1
[DEBUG] : Detected android module: ti.draggable 1.2.3 @ /Users/ginessanchis/Library/Application Support/Titanium/modules/android/ti.draggable/1.2.3
[DEBUG] : Detected android module: ti.map 2.1.3 @ /Users/ginessanchis/Library/Application Support/Titanium/modules/android/ti.map/2.1.3
[DEBUG] : Detected android module: ti.map 2.1.4 @ /Users/ginessanchis/Library/Application Support/Titanium/modules/android/ti.map/2.1.4
[DEBUG] : Detected android module: ti.map 2.2.2 @ /Users/ginessanchis/Library/Application Support/Titanium/modules/android/ti.map/2.2.2
[DEBUG] : Detected android module: ti.map 2.2.3 @ /Users/ginessanchis/Library/Application Support/Titanium/modules/android/ti.map/2.2.3
[DEBUG] : Detected android module: ti.map 2.3.0 @ /Users/ginessanchis/Library/Application Support/Titanium/modules/android/ti.map/2.3.0
[DEBUG] : Detected android module: ti.map 2.3.1 @ /Users/ginessanchis/Library/Application Support/Titanium/modules/android/ti.map/2.3.1
[DEBUG] : Detected android module: ti.map 2.3.3 @ /Users/ginessanchis/Library/Application Support/Titanium/modules/android/ti.map/2.3.3
[DEBUG] : Detected android module: ti.map 2.3.4 @ /Users/ginessanchis/Library/Application Support/Titanium/modules/android/ti.map/2.3.4
[DEBUG] : Detected android module: ti.map 2.3.6 @ /Users/ginessanchis/Library/Application Support/Titanium/modules/android/ti.map/2.3.6
[DEBUG] : Detected commonjs module: ti.cloud 3.2.0 @ /Users/ginessanchis/Library/Application Support/Titanium/modules/commonjs/ti.cloud/3.2.0
[DEBUG] : Detected commonjs module: ti.cloud 3.2.1 @ /Users/ginessanchis/Library/Application Support/Titanium/modules/commonjs/ti.cloud/3.2.1
[DEBUG] : Detected commonjs module: ti.cloud 3.2.10 @ /Users/ginessanchis/Library/Application Support/Titanium/modules/commonjs/ti.cloud/3.2.10
[DEBUG] : Detected commonjs module: ti.cloud 3.2.2 @ /Users/ginessanchis/Library/Application Support/Titanium/modules/commonjs/ti.cloud/3.2.2
[DEBUG] : Detected commonjs module: ti.cloud 3.2.3 @ /Users/ginessanchis/Library/Application Support/Titanium/modules/commonjs/ti.cloud/3.2.3
[DEBUG] : Detected commonjs module: ti.cloud 3.2.5 @ /Users/ginessanchis/Library/Application Support/Titanium/modules/commonjs/ti.cloud/3.2.5
[DEBUG] : Detected commonjs module: ti.cloud 3.2.7 @ /Users/ginessanchis/Library/Application Support/Titanium/modules/commonjs/ti.cloud/3.2.7
[DEBUG] : Detected commonjs module: ti.cloud 3.2.8 @ /Users/ginessanchis/Library/Application Support/Titanium/modules/commonjs/ti.cloud/3.2.8
[DEBUG] : Detected commonjs module: ti.cloud 3.2.9 @ /Users/ginessanchis/Library/Application Support/Titanium/modules/commonjs/ti.cloud/3.2.9
[DEBUG] : Detected iphone module: br.com.arlsoft.pushclient 1.11 @ /Users/ginessanchis/Library/Application Support/Titanium/modules/iphone/br.com.arlsoft.pushclient/1.11
[DEBUG] : Detected iphone module: br.com.arlsoft.pushclient 1.7 @ /Users/ginessanchis/Library/Application Support/Titanium/modules/iphone/br.com.arlsoft.pushclient/1.7
[DEBUG] : Detected iphone module: com.appcelerator.apm 1.1.1 @ /Users/ginessanchis/Library/Application Support/Titanium/modules/iphone/com.appcelerator.apm/1.1.1
[DEBUG] : Detected iphone module: com.appcelerator.apm 1.1.5 @ /Users/ginessanchis/Library/Application Support/Titanium/modules/iphone/com.appcelerator.apm/1.1.5
[DEBUG] : Detected iphone module: com.appcelerator.urlSession 1.0.0 @ /Users/ginessanchis/Library/Application Support/Titanium/modules/iphone/com.appcelerator.urlSession/1.0.0
[DEBUG] : Detected iphone module: com.appcelerator.urlSession 1.0.1 @ /Users/ginessanchis/Library/Application Support/Titanium/modules/iphone/com.appcelerator.urlSession/1.0.1
[DEBUG] : Detected iphone module: com.appcelerator.urlSession 1.1.0 @ /Users/ginessanchis/Library/Application Support/Titanium/modules/iphone/com.appcelerator.urlSession/1.1.0
[DEBUG] : Detected iphone module: com.appcelerator.urlSession 1.1.1 @ /Users/ginessanchis/Library/Application Support/Titanium/modules/iphone/com.appcelerator.urlSession/1.1.1
[DEBUG] : Detected iphone module: com.appcelerator.urlSession 2.0.0 @ /Users/ginessanchis/Library/Application Support/Titanium/modules/iphone/com.appcelerator.urlSession/2.0.0
[DEBUG] : Detected iphone module: dk.napp.drawer 1.2.0 @ /Users/ginessanchis/Library/Application Support/Titanium/modules/iphone/dk.napp.drawer/1.2.0
[DEBUG] : Detected iphone module: facebook 3.1.1 @ /Users/ginessanchis/Library/Application Support/Titanium/modules/iphone/facebook/3.1.1
[DEBUG] : Detected iphone module: facebook 3.2.0 @ /Users/ginessanchis/Library/Application Support/Titanium/modules/iphone/facebook/3.2.0
[DEBUG] : Detected iphone module: facebook 4.0.3 @ /Users/ginessanchis/Library/Application Support/Titanium/modules/iphone/facebook/4.0.3
[DEBUG] : Detected iphone module: facebook 4.0.5 @ /Users/ginessanchis/Library/Application Support/Titanium/modules/iphone/facebook/4.0.5
[DEBUG] : Detected iphone module: facebook 5.0.1 @ /Users/ginessanchis/Library/Application Support/Titanium/modules/iphone/facebook/5.0.1
[DEBUG] : Detected iphone module: ti.coremotion 1.0.1 @ /Users/ginessanchis/Library/Application Support/Titanium/modules/iphone/ti.coremotion/1.0.1
[DEBUG] : Detected iphone module: ti.coremotion 1.1.0 @ /Users/ginessanchis/Library/Application Support/Titanium/modules/iphone/ti.coremotion/1.1.0
[DEBUG] : Detected iphone module: ti.coremotion 2.0.0 @ /Users/ginessanchis/Library/Application Support/Titanium/modules/iphone/ti.coremotion/2.0.0
[DEBUG] : Detected iphone module: ti.map 2.0.0 @ /Users/ginessanchis/Library/Application Support/Titanium/modules/iphone/ti.map/2.0.0
[DEBUG] : Detected iphone module: ti.map 2.0.1 @ /Users/ginessanchis/Library/Application Support/Titanium/modules/iphone/ti.map/2.0.1
[DEBUG] : Detected iphone module: ti.map 2.0.2 @ /Users/ginessanchis/Library/Application Support/Titanium/modules/iphone/ti.map/2.0.2
[DEBUG] : Detected iphone module: ti.map 2.0.4 @ /Users/ginessanchis/Library/Application Support/Titanium/modules/iphone/ti.map/2.0.4
[DEBUG] : Detected iphone module: ti.map 2.2.0 @ /Users/ginessanchis/Library/Application Support/Titanium/modules/iphone/ti.map/2.2.0
[DEBUG] : Detected iphone module: ti.map 2.2.2 @ /Users/ginessanchis/Library/Application Support/Titanium/modules/iphone/ti.map/2.2.2
[DEBUG] : Detected iphone module: ti.map 2.3.1 @ /Users/ginessanchis/Library/Application Support/Titanium/modules/iphone/ti.map/2.3.1
[DEBUG] : Detected iphone module: ti.map 2.3.3 @ /Users/ginessanchis/Library/Application Support/Titanium/modules/iphone/ti.map/2.3.3
[DEBUG] : Detected iphone module: ti.map 2.4.1 @ /Users/ginessanchis/Library/Application Support/Titanium/modules/iphone/ti.map/2.4.1
[DEBUG] : Detected iphone module: ti.map 2.5.2 @ /Users/ginessanchis/Library/Application Support/Titanium/modules/iphone/ti.map/2.5.2
[DEBUG] : Detected iphone module: ti.safaridialog 1.0.2 @ /Users/ginessanchis/Library/Application Support/Titanium/modules/iphone/ti.safaridialog/1.0.2
[DEBUG] : Detected iphone module: ti.safaridialog 1.0.5 @ /Users/ginessanchis/Library/Application Support/Titanium/modules/iphone/ti.safaridialog/1.0.5
[DEBUG] : Detected iphone module: ti.touchid 1.0 @ /Users/ginessanchis/Library/Application Support/Titanium/modules/iphone/ti.touchid/1.0
[DEBUG] : Detected iphone module: ti.touchid 1.1.0 @ /Users/ginessanchis/Library/Application Support/Titanium/modules/iphone/ti.touchid/1.1.0
[DEBUG] : Detected iphone module: ti.touchid 1.2.0 @ /Users/ginessanchis/Library/Application Support/Titanium/modules/iphone/ti.touchid/1.2.0
[DEBUG] : Detected iphone module: ti.viewshadow 0.4 @ /Users/ginessanchis/Library/Application Support/Titanium/modules/iphone/ti.viewshadow/0.4
[DEBUG] : Detected tizen module: tizen 3.0.0 @ /Users/ginessanchis/Library/Application Support/Titanium/modules/tizen/tizen/3.0.0
[DEBUG] : Looking for Titanium module id=br.com.arlsoft.pushclient version=1.7 platform=iphone deploy-type=test
[INFO] : Found Titanium module id=br.com.arlsoft.pushclient version=1.7 platform=iphone deploy-type=test path=/Users/ginessanchis/Library/Application Support/Titanium/modules/iphone/br.com.arlsoft.pushclient/1.7
[DEBUG] : No project level plugins to load
[TRACE] : Snapshotting build directory
[DEBUG] : Titanium SDK iOS directory: /Users/ginessanchis/Library/Application Support/Titanium/mobilesdk/osx/5.2.0.GA/iphone
[INFO] : Deploy type: test
[INFO] : Building for target: device
[INFO] : Building using iOS SDK: 9.2
[INFO] : Building for iOS device: ed32cb0a03fd023ece29172205e5aaaae2b32399
[INFO] : Building for device family: iphone
[DEBUG] : Setting Xcode target to Debug
[DEBUG] : Setting Xcode build OS to iphoneos
[DEBUG] : Xcode installation: /Applications/Xcode.app/Contents/Developer
[DEBUG] : iOS WWDR certificate: installed
[INFO] : iOS Development Certificate: Gines Sanz Sanchis (N4ZXAL4QCG)
[INFO] : Minimum iOS version: 7.1
[INFO] : Using default keychain
[INFO] : Debugging disabled
[INFO] : Profiler disabled
[INFO] : Set to copy files instead of symlinking
[INFO] : Initializing the build directory
[TRACE] : offline build file /var/folders/pv/k77r8_394xbgxg0k9wy_pbdc0000gn/T/build-161ad1a39d6051ed17819ae1f06d503cb7630ddb.json
[TRACE] : online 1
[TRACE] : sending request {"json":{"username":"gueshecillo@gmail.com","session":"45ae357523ffc38396a66fe432da06c46d2c412b dGG341Yjh3nEckAFsN5+i22syztA58efJ/ZCqm6iMDjEM7mtIWzSP0WlNi+F4VGGJnpWIEskBvJ0Kc/XxU29Mw2JsG7mFhTZETHheqAZvbnJiIrSJt3qXsS7jz++MqNewCozZld22jgKuF5O1wA97dSxL4P7dGNk2SNY/FC5wTX4ctVasPBpTYH3WgEVnmEJxD8ijkzt8M/wn7UH2GBJrhH78ADiyltqQjKQHZX8g6exByTF+QAx7O6C4F0aorsixb/bko3AhCpF5DgXEkTzTHxlrkqPqiopyFGF5o3ao1h4qhNuzMlVrC8bkUGd8/4bL5/xLncIF72+Ia1vCIs0PNWz62yZdyNtYf2DDHIUn91pkaF2Pqgl8dZDwjrYqpTH1+arQXdPw9gi5QeUIwNxvTb2foJoKHFwnxfKulAVjpI1OerREbo/APuI9XmYMIqxnSxbZBM1tUvlLyd6lZggX8+3xaZSyI1bTHt4qKZn+8iKBMuXMVtIQMhQERkFXaHkM8lSZRBhz2A3WAKLrnwfDNWvq+xLtFSjF+6A00Je6eIPUoVlALFbE8FyRTGm0MsYFIHpVPE4AefqavFdZ2KYYpMGeSgm6PJERF1iZSG3YM/JXaADyWEKBCXsRHndf0S8sONQMbRVg99fTxcIOVoteY538n6rFL7ImiKT2Vmizgjc45tZYbSAFf8xhRjF1z0ALgayHgmPVeDwcs6ICOl386miENspBi4FgmNvk7NOCU+QLo8HWp5+rV6Q18yfGVZFdV6JZNJ5/Rh41+dABoJoJrSrj2YBlp4Rm314YRpGRY8=","ipaddress":"192.168.1.36","fingerprint":"6c5331317114172ff824ee65f7632aa6260b27a8","fingerprint_description":"Mac OSX Serial Number: C02M10GUF5YV","guid":"37a8b182-a89d-41e7-9aaa-5263c2d73579","appid":"com.controlasma.com","name":"controlAsma","orgid":100016407,"deploytype":"test","tiappxml":"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<ti:app \n xmlns:ti=\"http://ti.appcelerator.org\">\n
[TRACE] : === BUILD TARGET controlAsma OF PROJECT controlAsma WITH CONFIGURATION Debug ===
[TRACE] : Check dependencies
[TRACE] :
[TRACE] : CompileAssetCatalog build/Products/Debug-iphoneos/controlAsma.app Assets.xcassets
[TRACE] : cd /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/build/iphone
[TRACE] : export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/bin:/Users/ginessanchis/Library/Application Support/GoodSync:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
[TRACE] : /Applications/Xcode.app/Contents/Developer/usr/bin/actool --output-format human-readable-text --notices --warnings --export-dependency-info /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/build/iphone/build/Intermediates/controlAsma.build/Debug-iphoneos/controlAsma.build/assetcatalog_dependencies --output-partial-info-plist /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/build/iphone/build/Intermediates/controlAsma.build/Debug-iphoneos/controlAsma.build/assetcatalog_generatedinfo.plist --app-icon AppIcon --launch-image LaunchImage --compress-pngs --enable-on-demand-resources YES --target-device iphone --minimum-deployment-target 7.1 --platform iphoneos --compile /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/build/iphone/build/Products/Debug-iphoneos/controlAsma.app /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/build/iphone/Assets.xcassets
[TRACE] : /* com.apple.actool.document.warnings /
[TRACE] : /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/build/iphone/Assets.xcassets:./AppIcon.appiconset/[iphone][40x40][][][3x]: warning: The file "appicon-Small-40@3x.png" for the image set "AppIcon" does not exist.
[TRACE] : /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/build/iphone/Assets.xcassets:./AppIcon.appiconset/[iphone][60x60][][][3x]: warning: The file "appicon-60@3x.png" for the image set "AppIcon" does not exist.
[TRACE] : / com.apple.actool.document.notices /
[TRACE] : /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/build/iphone/Assets.xcassets:./LaunchImage.launchimage/[iphone][736h][3x][portrait][full-screen][8.0]: notice: This launch image only applies to iOS 6.x and prior but the minimum deployment is 7.0 or later.
[TRACE] : /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/build/iphone/Assets.xcassets:./LaunchImage.launchimage/[iphone][736h][3x][landscape][full-screen][8.0]: notice: This launch image only applies to iOS 6.x and prior but the minimum deployment is 7.0 or later.
[TRACE] : /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/build/iphone/Assets.xcassets:./LaunchImage.launchimage/[iphone][667h][2x][portrait][full-screen][8.0]: notice: This launch image only applies to iOS 6.x and prior but the minimum deployment is 7.0 or later.
[TRACE] : / com.apple.actool.compilation-results /
[TRACE] : /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/build/iphone/build/Products/Debug-iphoneos/controlAsma.app/AppIcon29x29@2x.png
[TRACE] : /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/build/iphone/build/Products/Debug-iphoneos/controlAsma.app/AppIcon29x29@3x.png
[TRACE] : /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/build/iphone/build/Products/Debug-iphoneos/controlAsma.app/AppIcon40x40@2x.png
[TRACE] : /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/build/iphone/build/Products/Debug-iphoneos/controlAsma.app/AppIcon60x60@2x.png
[TRACE] : /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/build/iphone/build/Products/Debug-iphoneos/controlAsma.app/AppIcon29x29@2x~ipad.png
[TRACE] : /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/build/iphone/build/Products/Debug-iphoneos/controlAsma.app/AppIcon40x40@2x~ipad.png
[TRACE] : /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/build/iphone/build/Products/Debug-iphoneos/controlAsma.app/LaunchImage-800-Portrait-736h@3x.png
[TRACE] : /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/build/iphone/build/Products/Debug-iphoneos/controlAsma.app/LaunchImage-800-Landscape-736h@3x.png
[TRACE] : /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/build/iphone/build/Products/Debug-iphoneos/controlAsma.app/LaunchImage-800-667h@2x.png
[TRACE] : /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/build/iphone/build/Products/Debug-iphoneos/controlAsma.app/LaunchImage-700@2x.png
[TRACE] : /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/build/iphone/build/Products/Debug-iphoneos/controlAsma.app/LaunchImage-700-568h@2x.png
[TRACE] : /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/build/iphone/build/Intermediates/controlAsma.build/Debug-iphoneos/controlAsma.build/assetcatalog_generated_info.plist
[TRACE] :
[TRACE] : ProcessInfoPlistFile build/Products/Debug-iphoneos/controlAsma.app/Info.plist Info.plist
[TRACE] : cd /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/build/iphone
[TRACE] : export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/bin:/Users/ginessanchis/Library/Application Support/GoodSync:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
[TRACE] : builtin-infoPlistUtility /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/build/iphone/Info.plist -genpkginfo /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/build/iphone/build/Products/Debug-iphoneos/controlAsma.app/PkgInfo -expandbuildsettings -format binary -platform iphoneos -additionalcontentfile /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/build/iphone/build/Intermediates/controlAsma.build/Debug-iphoneos/controlAsma.build/assetcatalog_generated_info.plist -o /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/build/iphone/build/Products/Debug-iphoneos/controlAsma.app/Info.plist
[TRACE] :
[TRACE] : GenerateDSYMFile build/Products/Debug-iphoneos/controlAsma.app.dSYM build/Products/Debug-iphoneos/controlAsma.app/controlAsma
[TRACE] : cd /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/build/iphone
[TRACE] : export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/bin:/Users/ginessanchis/Library/Application Support/GoodSync:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
[TRACE] : /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/dsymutil /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/build/iphone/build/Products/Debug-iphoneos/controlAsma.app/controlAsma -o /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/build/iphone/build/Products/Debug-iphoneos/controlAsma.app.dSYM
[TRACE] : warning: no debug symbols in executable (-arch thumbv7)
[TRACE] : warning: no debug symbols in executable (-arch arm64)
[TRACE] :
[TRACE] : CopySwiftLibs build/Products/Debug-iphoneos/controlAsma.app
[TRACE] : cd /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/build/iphone
[TRACE] : export CODESIGN_ALLOCATE=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate
[TRACE] : export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/bin:/Users/ginessanchis/Library/Application Support/GoodSync:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
[TRACE] : /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-stdlib-tool --copy --verbose --sign 865CFFD5550C429950805987B8B88433F96F42C2 --scan-executable /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/build/iphone/build/Products/Debug-iphoneos/controlAsma.app/controlAsma --scan-folder /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/build/iphone/build/Products/Debug-iphoneos/controlAsma.app/Frameworks --scan-folder /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/build/iphone/build/Products/Debug-iphoneos/controlAsma.app/PlugIns --scan-folder /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.2.sdk/System/Library/Frameworks/iAd.framework --scan-folder /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.2.sdk/System/Library/Frameworks/CoreMedia.framework --scan-folder /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.2.sdk/System/Library/Frameworks/CoreMotion.framework --scan-folder /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.2.sdk/System/Library/Frameworks/CoreText.framework --scan-folder /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.2.sdk/System/Library/Frameworks/EventKit.framework --scan-folder /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.2.sdk/System/Library/Frameworks/EventKitUI.framework --scan-folder /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.2.sdk/System/Library/Frameworks/Security.framework --scan-folder /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.2.sdk/System/Library/Frameworks/Foundation.framework --scan-folder /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.2.sdk/System/Library/Frameworks/UIKit.framework --scan-folder /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.2.sdk/System/Library/Frameworks/CoreGraphics.framework --scan-folder /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.2.sdk/System/Library/Frameworks/AddressBook.framework --scan-folder /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.2.sdk/System/Library/Frameworks/AddressBookUI.framework --scan-folder /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.2.sdk/System/Library/Frameworks/CFNetwork.framework --scan-folder /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.2.sdk/System/Library/Frameworks/CoreLocation.framework --scan-folder /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.2.sdk/System/Library/Frameworks/MapKit.framework --scan-folder /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.2.sdk/System/Library/Frameworks/MessageUI.framework --scan-folder /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.2.sdk/System/Library/Frameworks/MobileCoreServices.framework --scan-folder /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.2.sdk/System/Library/Frameworks/OpenGLES.framework --scan-folder /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.2.sdk/System/Library/Frameworks/QuartzCore.framework --scan-folder /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.2.sdk/System/Library/Frameworks/SystemConfiguration.framework --scan-folder /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.2.sdk/System/Library/Frameworks/AudioToolbox.framework --scan-folder /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.2.sdk/System/Library/Frameworks/MediaPlayer.framework --scan-folder /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.2.sdk/System/Library/Frameworks/AVFoundation.framework --scan-folder /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.2.sdk/System/Library/Frameworks/StoreKit.framework --scan-folder /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.2.sdk/System/Library/Frameworks/ExternalAccessory.framework --platform iphoneos --destination /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/build/iphone/build/Products/Debug-iphoneos/controlAsma.app/Frameworks --strip-bitcode
[TRACE] :
[TRACE] : ProcessProductPackaging controlAsma.entitlements build/Intermediates/controlAsma.build/Debug-iphoneos/controlAsma.build/controlAsma.app.xcent
[TRACE] : cd /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/build/iphone
[TRACE] : export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/bin:/Users/ginessanchis/Library/Application Support/GoodSync:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
[TRACE] : builtin-productPackagingUtility /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/build/iphone/controlAsma.entitlements -entitlements -format xml -o /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/build/iphone/build/Intermediates/controlAsma.build/Debug-iphoneos/controlAsma.build/controlAsma.app.xcent
[TRACE] :
[TRACE] : CodeSign build/Products/Debug-iphoneos/controlAsma.app
[TRACE] : cd /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/build/iphone
[TRACE] : export CODESIGN_ALLOCATE=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate
[TRACE] : export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/bin:/Users/ginessanchis/Library/Application Support/GoodSync:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
[TRACE] :
[TRACE] : Signing Identity: "iPhone Developer: Gines Sanz Sanchis (N4ZXAL4QCG)"
[TRACE] : Provisioning Profile: "proviAsmaUltim"
[TRACE] : (44b68b6d-971f-4381-822d-fe4ab1e1a146)
[TRACE] : /usr/bin/codesign --force --sign 865CFFD5550C429950805987B8B88433F96F42C2 --entitlements /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/build/iphone/build/Intermediates/controlAsma.build/Debug-iphoneos/controlAsma.build/controlAsma.app.xcent --timestamp=none /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/build/iphone/build/Products/Debug-iphoneos/controlAsma.app
[TRACE] : /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/build/iphone/build/Products/Debug-iphoneos/controlAsma.app: replacing existing signature
[TRACE] :
[TRACE] : Validate build/Products/Debug-iphoneos/controlAsma.app
[TRACE] : cd /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/build/iphone
[TRACE] : export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/bin:/Users/ginessanchis/Library/Application Support/GoodSync:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
[TRACE] : export PRODUCT_TYPE=com.apple.product-type.application
[TRACE] : builtin-validationUtility /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/build/iphone/build/Products/Debug-iphoneos/controlAsma.app
[TRACE] :
[TRACE] : Touch build/Products/Debug-iphoneos/controlAsma.app.dSYM
[TRACE] : cd /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/build/iphone
[TRACE] : export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Library/Java/JavaVirtualMachines/jdk1.8.040.jdk/Contents/Home/bin:/Users/ginessanchis/Library/Application Support/GoodSync:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
[TRACE] : /usr/bin/touch -c /Users/ginessanchis/Documents/nuevoworkspace/controlAsma/build/iphone/build/Products/Debug-iphoneos/controlAsma.app.dSYM
[TRACE] :
[TRACE] : * BUILD SUCCEEDED *
[INFO] : Finished building the application in 22s 749ms
[INFO] : Installing app on device: ginix
[INFO] : App successfully installed on device: ginix
Please manually launch the application
[TRACE] : updating tiapp metadata with Appcelerator Platform...
[TRACE] : Uploaded tiapp metadata with Appcelerator Platform!
-- Start application log -----------------------------------------------------
[DEBUG] : Reading stylesheet from: /var/mobile/Containers/Bundle/Application/51957B7F-1F25-49BE-8A71-6A4E0F5C162F/controlAsma.app/stylesheet.plist
[INFO] : controlAsma/1.1 (5.2.0.384775e)
[DEBUG] : Loading: /var/mobile/Containers/Bundle/Application/51957B7F-1F25-49BE-8A71-6A4E0F5C162F/controlAsma.app/app.js, Resource: app_js
[DEBUG] : Loading: /var/mobile/Containers/Bundle/Application/51957B7F-1F25-49BE-8A71-6A4E0F5C162F/controlAsma.app/_appprops.json, Resource: _app_props__json
[DEBUG] : Loading: /var/mobile/Containers/Bundle/Application/51957B7F-1F25-49BE-8A71-6A4E0F5C162F/controlAsma.app/ui/common/LoginWindow.js, Resource: ui/common/LoginWindow_js
[DEBUG] : Loading: /var/mobile/Containers/Bundle/Application/51957B7F-1F25-49BE-8A71-6A4E0F5C162F/controlAsma.app/ui/common/LoginWelcome.js, Resource: ui/common/LoginWelcome_js
[DEBUG] : Loading: /var/mobile/Containers/Bundle/Application/51957B7F-1F25-49BE-8A71-6A4E0F5C162F/controlAsma.app/ui/common/globales.js, Resource: ui/common/globales_js
[DEBUG] : Loading: /var/mobile/Containers/Bundle/Application/51957B7F-1F25-49BE-8A71-6A4E0F5C162F/controlAsma.app/br.com.arlsoft.pushclient.js, Resource: br_com_arlsoft_pushclient_js
[DEBUG] : Loading: /var/mobile/Containers/Bundle/Application/51957B7F-1F25-49BE-8A71-6A4E0F5C162F/controlAsma.app/ui/common/tutorial1.js, Resource: ui/common/tutorial1_js
[DEBUG] : Loading: /var/mobile/Containers/Bundle/Application/51957B7F-1F25-49BE-8A71-6A4E0F5C162F/controlAsma.app/ui/common/tutorial2.js, Resource: ui/common/tutorial2_js
[DEBUG] : Loading: /var/mobile/Containers/Bundle/Application/51957B7F-1F25-49BE-8A71-6A4E0F5C162F/controlAsma.app/ui/common/tutorial3.js, Resource: ui/common/tutorial3_js
[DEBUG] : Application booted in 313.472986 ms
[INFO] : hay conexion
[INFO] : {"logged":true,"id":"20","sexo":"0","acaros":"1","alternaria":"1","parietaria":"1","gramineas":"1","otrosPol":"1","perro":"1","gato":"1","otrosAnim":"1","leche":"1","huevo":"1","melocoton":"1","marisco":"1","pescado":"1","otrasFrut":"1","anafilactico":"1","espiroFev1":"1","picoflujo":"0","query":"SELECT \ FROM tablausuarios,tablaalergias,tablavisitas WHERE tablausuarios.idUnico = 'XX' AND tablausuarios.password = 'XX' LIMIT 1"}
[INFO] : response logged estrue
[INFO] : antes de registrarlo
[INFO] : entro en registro
[INFO] : beforeregistering
[INFO] : afterregistering
[DEBUG] : Loading: /var/mobile/Containers/Bundle/Application/51957B7F-1F25-49BE-8A71-6A4E0F5C162F/controlAsma.app/ui/ApplicationWindow.js, Resource: ui/ApplicationWindow_js
[DEBUG] : Loading: /var/mobile/Containers/Bundle/Application/51957B7F-1F25-49BE-8A71-6A4E0F5C162F/controlAsma.app/com.alcoapps.dbhelper.js, Resource: com_alcoapps_dbhelper_js
[DEBUG] : Loading: /var/mobile/Containers/Bundle/Application/51957B7F-1F25-49BE-8A71-6A4E0F5C162F/controlAsma.app/ui/common/EncuentroMal.js, Resource: ui/common/EncuentroMal_js
[INFO] : la altura es568
[INFO] : es este fuera
[DEBUG] : Loading: /var/mobile/Containers/Bundle/Application/51957B7F-1F25-49BE-8A71-6A4E0F5C162F/controlAsma.app/ui/common/FirstView.js, Resource: ui/common/FirstView_js
[INFO] : este es first0
[DEBUG] : Loading: /var/mobile/Containers/Bundle/Application/51957B7F-1F25-49BE-8A71-6A4E0F5C162F/controlAsma.app/ui/common/xhr.js, Resource: ui/common/xhr_js
[DEBUG] : Loading: /var/mobile/Containers/Bundle/Application/51957B7F-1F25-49BE-8A71-6A4E0F5C162F/controlAsma.app/ui/common/calendario.js, Resource: ui/common/calendario_js
[INFO] : calendario ocupa1000
[INFO] : control es0
[INFO] : http://basesdatos.pediatrismo.com/{"id":29}
[INFO] : pico flujo es0
[DEBUG] : Firing app event: playSound
[INFO] : lo que devuelve es {"polucion":"34","codigo":"33","humedad":"81","polen":1,"trofeos":"SELECT idUnico,numTrofeos FROM tablausuarios WHERE idUnico = ''"}
[INFO] : el codigo que recibo es 33
[INFO] : less than five
[DEBUG] : Registered new device for remote push notifications: a49a733e065bf005253311dd97874be58353138e031c23a42354e0021a6b6abe
[DEBUG] : New scheme: <NSMutableURLRequest: 0x14e8a6e90> { URL: file:///var/mobile/Containers/Bundle/Application/51957B7F-1F25-49BE-8A71-6A4E0F5C162F/controlAsma.app/ui/common/calendario.html }
[DEBUG] : Loading: /var/mobile/Containers/Bundle/Application/51957B7F-1F25-49BE-8A71-6A4E0F5C162F/controlAsma.app/ui/common/calendario.html, Resource: ui/common/calendario_html
[DEBUG] : Loading: /var/mobile/Containers/Bundle/Application/51957B7F-1F25-49BE-8A71-6A4E0F5C162F/controlAsma.app/ui/common/jquery.jsf, Resource: ui/common/jquery_jsf
[DEBUG] : Firing app event: pageReady
[INFO] : 29
[DEBUG] : Loading: /var/mobile/Containers/Bundle/Application/51957B7F-1F25-49BE-8A71-6A4E0F5C162F/controlAsma.app/ui/common/rojo.png, Resource: ui/common/rojo_png
[DEBUG] : CoreAnimation: failed to allocate IOSurface
Related to the warning messages, looks like to be a known XCode problem: https://forums.developer.apple.com/thread/17921
Related to the PushClient versions: The only difference is the version of XCode with which it was compiled. Does not have any improvement or modification of code. You can continue to use the previous version with no warnings.
Related to the problem: So far there is no others users with this problem and I suggest that, for a while, you to downgrade the XCode version or everything else to keep your app and my module working fine together.
Unfortunately I am without my work environment (without my macbook) and therefore I am unable to work in the tests would be needed.
Please, let me know if the downgrade was successful or if you found any other solution.
Sorry.
Another strange thing about it....just in case it gives you more clues....If I use the simulator it DOES go into eventError...
/Users/ginessanchis/.appcelerator/install/5.2.0/package/node_modules/titanium/lib/titanium.js build run --platform ios --log-level trace --sdk 5.2.0.GA --project-dir /Users/ginessanchis/Documents/nuevoworkspace/controlAsma --target simulator --ios-version 9.2 --device-family iphone --deploy-type development --sim-type iphone --sim-version 9.2 --device-id B2854BA5-8368-42CE-836A-CA3F7BD5BB43 --skip-js-minify --no-colors --no-progress-bars --no-prompt --prompt-type socket-bundle --prompt-port 49462 --config-file /var/folders/pv/k77r8_394xbgxg0k9wy_pbdc0000gn/T/build-1457949137128.json --no-banner --project-dir /Users/ginessanchis/Documents/nuevoworkspace/controlAsma [INFO] : Found Titanium module id=br.com.arlsoft.pushclient version=1.7 platform=iphone deploy-type=development path=/Users/ginessanchis/Library/Application Support/Titanium/modules/iphone/br.com.arlsoft.pushclient/1.7 [INFO] : Found better matching module id=br.com.arlsoft.pushclient version=latest platform=ios,iphone deploy-type=development path=/Users/ginessanchis/Library/Application Support/Titanium/modules/iphone/br.com.arlsoft.pushclient/1.11 [INFO] : Deploy type: development [INFO] : Building for target: simulator [INFO] : Building using iOS SDK: 9.2 [INFO] : Building for iOS Simulator: iPhone 5s [INFO] : Building for device family: iphone [INFO] : Minimum iOS version: 7.1 [INFO] : Debugging disabled [INFO] : Profiler disabled [INFO] : Set to copy files instead of symlinking [INFO] : Initializing the build directory [INFO] : Creating Xcode project [INFO] : Creating Entitlements.plist [INFO] : Creating Info.plist [INFO] : Disabling ATS [INFO] : Creating main.m [INFO] : Creating Xcode config files [INFO] : Copying Titanium libraries [INFO] : Copying Titanium iOS files [INFO] : Creating debugger and profiler plists [INFO] : Analyzing Resources directory [INFO] : Analyzing platform files [INFO] : Analyzing module files [INFO] : Analyzing localized launch images [INFO] : Analyzing CommonJS modules [INFO] : Creating asset catalog [INFO] : Creating app icon set [WARN] : Skipping Resources/iphone/appicon-60@3x.png because it has an alpha channel and generating one from DefaultIcon.png [INFO] : Creating launch image set [INFO] : App thinning disabled, skipping asset image sets [INFO] : Processing JavaScript files [INFO] : Writing app properties [INFO] : Writing i18n files [INFO] : Processing Titanium symbols [INFO] : Removing files [INFO] : Skipping xcodebuild [INFO] : Finished building the application in 3s 384ms [INFO] : Launching iOS Simulator [INFO] : response logged estrue [INFO] : antes de registrarlo [INFO] : entro en registro [INFO] : beforeregistering [INFO] : afterregistering [INFO] : la altura es568 [INFO] : es este fuera [INFO] : este es first0 [INFO] : calendario ocupa1000 [WARN] : Ti.UI.iPhone.ActivityIndicatorStyle.DARK DEPRECATED in 5.1.0, in favor of Ti.UI.ActivityIndicatorStyle.DARK [INFO] : control es0 [INFO] : pico flujo es0 [INFO] : eventError [INFO] : Error : Not supported error [INFO] : el codigo que recibo es 33 [INFO] : less than ten [INFO] : 29
iOS Simulators does not support push notification.
Yes I know. That's why is curious that on the simulator the module works (it goes into eventError (as it's not supported on simulator)) but when deployed to my device (iphone 5s) it doesn't... (No eventError neither eventSucces)
Genís Sanz Sanchis gueshecillo@gmail.com
El 14 març 2016, a les 17:30, Arley Andrada Maria notifications@github.com va escriure:
iOS Simulators does not support push notification.
— Reply to this email directly or view it on GitHub.
Check the Push Client version 1.13 (latest version) released in next days.
Still no luck.. same problem.. it registers..because it says '[DEBUG] : Registered new device for remote push notifications: 45381a4940e65d19847122520e4cd1d8e452e92fc9752809aeba770de852569d' You say it's not yours but no other modules, neither the native titanium push...
This log message is from TiApp (native) Titanium push notification https://github.com/appcelerator/titanium_mobile/blob/master/iphone/Classes/TiApp.m
This log message is not a problem and my module should fire the event EVENT_SUCCESS (eventSuccess) just after that.
I don't know what is your problem with the event listeners. Maybe you can share your project - not just a piece of code - with me. Did you tried to create a new test project with only the PushClient module?
No. i haven't. I'll try and will let you know if it's working...
Genís Sanz Sanchis gueshecillo@gmail.com
El 7 juny 2016, a les 8:58, Arley Andrada Maria notifications@github.com va escriure:
This log message is from TiApp (native) Titanium push notification https://github.com/appcelerator/titanium_mobile/blob/master/iphone/Classes/TiApp.m
This log message is not a problem and my module should fire the event EVENT_SUCCESS (eventSuccess) just after that.
I don't know what is your problem with the event listeners. Maybe you can share your project - not just a piece of code - with me. Did you tried to create a new test project with only the PushClient module?
— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub, or mute the thread.
Since I downloaded the last update on iOS it doesn't register for push...the strange thing is that it doesn't neither eventSucces neither eventError, This is my code Ti.API.info('entro en registro'); var PushClient = require('br.com.arlsoft.pushclient'); var issue17030 = Ti.Network.registerForPushNotifications; var issue17030iOS8 = Ti.App.iOS.registerUserNotificationSettings;
and the log shows it logs registerOptions before registering but never calls PushClient.registerPush(registerOptions); ANY IDEAS??