BlackBerry (BB) API Recurring Events for custom Calendar App - api

I was building an app on top of BB native Calendar and was trying retrieve in my App.
But there is not much information available for using this API to retrieve recurring Events from the native BlackBerry calendar.
Can someone please guide me or provide some examples so that I can retrieve information about BlackBerry calendar events?
I went through following link also, but it wasn't much help:
https://stackoverflow.com/questions/10123724/handling-recurring-events-in-blackberry-calender

Related

Google Awareness API on iOS

I want to know if anyone used the Google Awareness API on an iOS device. I know it's possible to implement on Android but I need to work on iOS as well, I haven't find any documentation on it so far. Is it possible and how do you implement it?
https://developers.google.com/awareness/android-api/get-started
I had done some researches on google awareness APIs for iOS. It's not available for iOS for now. You can use region monitoring APIs of Apple to register custom fences and monitor if someone enters/exits that region.
You can also notify user locally per region and engage him/her in your app. Apple provides APIs for updating user locally based on location, weather etc.
APIs are simple to use in app.
You can use the NumberEight SDK, which can do a lot more than Google's Awareness API today (although no regioning is available at the time of writing).
It performs a wide variety of context recognition tasks on both iOS and Android including:
Real-time physical activity detection
Current place categories
Motion detection
Reachability
Local weather
It can also record user context for reports and analysis via the online portal.
For example, to record user activity in iOS, you would do:
let ne = NumberEight()
ne.activityUpdated { (glimpse: Glimpse<NEXActivity>) in
let activity = glimpse.mostProbable.value
if activity.major == .running {
print("User is running!")
}
}
Here are some iOS and Android example projects, and you can sign up for free via the online portal.
Disclosure: I'm one of the developers.

access google custom search from my android application

I m trying to develop an android application which takes recipe name from user and internally search recipe of entered name from Google custom search and give it user.
But i do not understand how to access Google custom search from my android application. Please help me to get out of this.
Thank u in advance.
Google provides a JSON/ATOM Custom Search API. That would be the way to go about integrating the Search into your Android application.
To make the integration processes easier into any client application and avoid doing all the REST stuff in your code, there are a number of client libraries made available. Take a look.
Be aware of the pricing i.e. free quota v/s billing.

Titanium : access analytics via API?

I am using the Titanium mobile library (with the Alloy framework), and I have started tracking custom events by using the Ti.Analytics.FeatureEvent() function. I'd like to be able to retrieve the data that I have sent to Appcelerator via an API. is this possible? I wasn't able to find anything in the documentation about it.
As a Appcelerator Studio user you can use https://dashboard.appcelerator.com and there you can see all your analytics events in real time the only thing here is that you have to pay for this service you have to had a enterprise account, I wasn't able to retrieve any analytics data with my free account, also if you have some custom properties in the featureEvent() function like this:
analytics.featureEvent('Reservation.careType', {
type : careType
});
I'am still not able to see my "type" value in the ticket that i raised they've told me that they can send that data with an http://aws.amazon.com/s3/ account.
Hope this helps

Does the Google+ Hangouts API support filling app fields on the runtime?

I am trying to build a app using the hangout API, starter app.
Does the Hangouts API have support for data fields to be added on runtime?
For example,
a. If we need to add team members to our app
b. Or when we do 'Create Application' (https://appengine.google.com/)
c. When we enter AppEngine app ID to Gadget URL (https://code.google.com/apis/console/?api=plusHangouts)
Can we do the above using Python code and using the API (if there are any)?
As documented in Google APIs Console Help we don't let people programmatically register data into the APIs console.
Don't forget that that the current restrictions are because we are in a developer preview.

Synchronizing phone data with online service

I am trying to build a windows phone application which can synchronize my events on the phone with online service. I can use an api for interacting with the online service.
I am having difficulty understanding how I can synchronize my phone events with the online service.
Can some one please guide me as to how I could go about working on it or some helpful link where I can understand how this actually works??
This is for a school project and for non-commercial purpose only.
Thank you
All help appreciated!!!
J
Windows Phone 7 does not currently provide 3rd party apps with access to information stored in the calendar or contacts. This may be included in Mango, which is set to be released fall/winter 2011, but as of right now you cannot access the events from a custom application.