2012-11-12 67 views
2

您好我正在使用ACS在我的应用程序中实现推送通知。我在tiapp.xml中添加了Ti.cloud推送,如下所示。Ti.cloudpush模块未找到

<module platform="android">ti.cloudpush</module> 

我使用这段代码实现它,但它给错误,Ti.cloudpush模块找不到。

var HomeWin = Titanium.UI.createWindow({ 
    backgroundColor : '#f00' 
}); 
var CloudPush = require('ti.cloudpush'); 
CloudPush.debug = true; 
CloudPush.enabled = true; 
CloudPush.showTrayNotificationsWhenFocused = true; 
CloudPush.focusAppOnPush = false; 

var deviceToken; 

var Cloud = require('ti.cloud'); 
Cloud.debug = true; 


var submit = Ti.UI.createButton({ 
    title : 'Register For Push Notification', 
    color:'#000', 
    height : 53, 
    width : 200, 
    top : 100, 
}); 

HomeWin.add(submit); 

submit.addEventListener('click', function(e) { 
    CloudPush.retrieveDeviceToken({ 
     success: function deviceTokenSuccess(e) { 
        alert('Device Token: ' + e.deviceToken); 
        deviceToken = e.deviceToken 
        loginDefault(); 
       }, 
     error : function deviceTokenError(e) { 
        alert('Failed to register for push! ' + e.error); 
      } 
    }); 
}); 


function loginDefault(e){ 
    //Create a Default User in Cloud Console, and login 
    Cloud.Users.login({ 
     login: 'push123', 
     password: 'push123' 
    }, function (e) { 
     if (e.success) { 
      alert("login success"); 
      defaultSubscribe(); 
     } else { 
       alert('Error: ' +((e.error && e.message) || JSON.stringify(e))); 
     } 
    }); 
} 

function defaultSubscribe(){ 
    Cloud.PushNotifications.subscribe({ 
      channel: 'alert', 
      device_token: deviceToken, 
      type: 'android' 
    }, function (e){ 
      if (e.success) { 
       alert('Subscribed for Push Notification!'); 
      } else{ 
       alert('Error:' +((e.error && e.message) || JSON.stringify(e))); 
      } 
    }); 
} 

CloudPush.addEventListener('callback', function (evt) { 
    alert(evt); 
    alert(evt.payload); 
}); 

CloudPush.addEventListener('trayClickLaunchedApp', function (evt) { 
    Ti.API.info('Tray Click Launched App (app was not running)'); 
    //alert('Tray Click Launched App (app was not running'); 
}); 

CloudPush.addEventListener('trayClickFocusedApp', function (evt) { 
    Ti.API.info('Tray Click Focused App (app was already running)'); 
    //alert('Tray Click Focused App (app was already running)'); 
}); 
+0

你使用的是什么钛版本? – Anand

+0

您好我正在使用钛sdk版本2.1.3 –

+0

您好没有模块正在我的钛上工作是否有任何问题与我的更新,因为我有2.1.3 –

回答

1

IM也满足了同样的问题,甚至当我添加

<module platform="android">ti.cloudpush</module> 

,我删除所有项目,并与延期包名钛现在它正在创建新的项目,但我无法找到原因以前的代码不起作用

0

瓦哈布,

修改tiapp.xml喜欢遵循和运行代码。我已经复制了你的代码,它运作良好。

<modules> 
     <module platform="commonjs" version="2.3.0">ti.cloud</module> 
     <module platform="android" version="2.0.7">ti.cloudpush</module> 
</modules>