How to enable push notifications titanium appcelerator 5.5.1.GA - ios

I'M trying to enable push notifications appcelerator ios app. I found something about entitlements.plist or appName.entitlements. Which is true ? What must i do for enable push notifications?

You must first look at documentation before asking questions like these. Push is pretty default and well described here:
http://docs.appcelerator.com/platform/latest/#!/guide/Subscribing_to_push_notifications
There are also many modules out there for Android, for iOS you don't need modules. You also don't need the server side solution of Appcelerator but you can use pretty much everything you'd like, or write it custom.
Some modules:
https://github.com/caffeinalab/ti.goosh
http://docs.appcelerator.com/platform/latest/#!/api/Modules.CloudPush
http://docs.pushwoosh.com/docs/appcelerator-titanium
More are findable through google ;)

Related

URL scheme to open Gmail native app from Chrome on Android

I'm trying to implement a feature over on Android, basically, on the web, you can use googlegmail:///co?to=email to open a compose view on the native Gmail app.
googlegmail:/// doesn't seem to work on Android and I'm really unsure if this type of functionality is possible on Android. Even if it exists for some other app, it would be great to get a working example on Android! Any clarity would be appreciated.
On Android you need to use an Intent, which is what allows you to start other apps.
Check out Compose an email with optional attachments for an explanation of how to do what you want.

React Native iOS Push Notification with Image

I currently have an app which was made with React Native. I need to display a local push notification, and there needs to be an image displayed within this notification. Currently, I am using the react-native-push-notification library for basic text notifications.
I have been looking for solutions but I have not found any way yet that I can add images into a notification. Is there some way to hook into native code that would allow me to do it?
Any help is greatly appreciated.
I am using react-native-firebase and it works great for me. It has an option for local notifications.
You can learn more about iOS notification with an image here: https://rnfirebase.io/docs/v4.2.x/notifications/reference/IOSNotification It gives an option to set a launchImage for iOS notifications. You should go through the documentation properly in order to install it properly.
I have used react-native-fcm, which is implemented using react-native-firebase. The support for issues are good enough and the document is well drafted for both ios and android. The pictures, icons and actions are configurable for both local and remote notifications.

Wireless Accessory Configuration (WAC) in iOS integrate and how to use

how to add the Wireless Accessory Configuration (WAC)into the app and use the features. I am using this for the first time. Also tried find few tutorials for the same in google but was not successful. I need to know how to integrate that in my app and use the files of the same.
Thanks in advance.
to integrate WAC to your you need go through libraries in following link:
// take a look at eawifiunconfiguredaccessorybrowser , this class helps you to handle WAC, this would suffice your need.
https://developer.apple.com/reference/externalaccessory/eawifiunconfiguredaccessorybrowser?language=objc
i will brief you about adding WAC feature your app.
step1
enable WAC capabilities in app target ,as shown in picture below :
enabling WAC in capabilities section of App target
step2
make use of eawifiunconfiguredaccessorybrowser methods :
*startSearchingForUnconfiguredAccessoriesMatchingPredicate --> helps to search for run configured accessories
*configure​Accessory:​with​Configuration​UIOn​View​Controller:​ --> does configuration by presenting system based screen.
it will work similar to WAC done through iOS setting app.

Interactive notification support iOS 8

I have an existing application that supports both local and push notifications, with the introduction of iOS 8 and its newly added features (link referred) ,i thought of adding some of the features in app. My question is how to use interactive notification feature in my app.should i add any new framework; coding or an any tutorial link would be helpful. Also help me creating widgets for my app.
This video helped me
https://developer.apple.com/videos/wwdc/2014/#713
and this link about notifications UI guidelines too
https://developer.apple.com/library/ios/documentation/userexperience/conceptual/mobilehig/NotificationCenter.html
and this link for widgets
https://developer.apple.com/library/ios/documentation/General/Conceptual/ExtensibilityPG/NotificationCenter.html

PhoneGap Meteor iOS Push Notifications

I have currently used phonegap and deployed an iOS app that takes the URL of my meteor app and convert it into a "webapp" (not sure if this is accurate). However, I would like to implement remote/push notifications to Apple's servers APNS to enable the app to receive notifications, update badges etc... Are there any other means other than Urban airship?
Also, I chanced upon ObjectiveDDP, https://github.com/boundsj/ObjectiveDDP#requirements, but the tutorial is not working for me and it is really frustrating.
Thank you!
You can use the Phonegap team Push Plugin (on github) that allows sending push notifications for Android and iOS.
The plugin can be integrated via the phonegap build site without having to use Java or Objective-C or using Java or Objective-C.
Here is an updated answer that works as of 12/25/14:
Simply use the push package by raix: https://atmospherejs.com/raix/push The documentation is really good.
I think you need this one,
https://github.com/SpaceCapsule/Meteor-phonegap-push
I am implementing the same,
If I am able to do so I will put the demo too
Thanks.
I just released a new package that makes it easy to integrate Meteor with Cordova (Phonegap). You can use the Cordova API, including push notifications, just like it describes in the docs.
Check out Cordova Loader package.
Use PushPlugin
cordova plugin add https://github.com/phonegap-build/PushPlugin.git

Resources