I followed the instructions in the Xamarin Android setup and have:
airshipconfig.properties
google-services.json
airship dll
call takeoff in oncreate
public override void OnCreate()
{
base.OnCreate();
// Call takeOff
UAirship.TakeOff(this, (UAirship airship) =>
{
airship.PushManager.UserNotificationsEnabled = true;
airship.PushManager.Tags = new String[] { "android-xamarin" };
});
try
{
var channelid = UAirship.Shared().PushManager.ChannelId;
}
catch (Exception)
{
}
Under the audience tab in the dashboard I see some channels but they're all inactive. I see no tokens
Comments
35 comments