Giter VIP home page Giter VIP logo

google-cloud-messaging--titanium-'s Introduction

Google-Cloud-Messaging--Titanium-

Android platform are using c2dm for push notification, but because c2dm have stopped accept new user, so we have decide to use the new service that google provided which is Google Cloud Messaging (GCM). Current Latest version is 0.5

Change Log

v0.5

  • Fixed push notification id which does not replace the notification in you list.
  • Integrated vibration and sound property when sending messsage from server. Example php message :

$gcm = new GCM(); $registatoin_ids = array($regId); $message = array(title => 'title', message => $message, ticker => $message, vibrate => 1, sound => 'default'); $result = $gcm->send_notification($registatoin_ids, $message);

v0.3

  • Changed from getSystemProperties() to getAppProperties() at C2dmModule.java and GCMIntentService.java
  • fixed clicking on the notification does what is expected
  • Changed behaviour so that if message is null we don't display a notification
  • able to push notification by vibration

v0.2

  • stop to use SENDER_ID
  • remove senderID from the parameters of "registerC2dm"
  • auto generate permission in timodule.xml
  • store the wall push data into "com.activate.gcm.last_data" (stringified json)
  • call the callback (will not work if app isn't running and V8)

Topic Covered

  1. Steps to create module for Titanium use. (Mac Users) (For people that who want to create their own gcm module)
  2. How to use this module at titanium. (For people that use my created module)
  3. Custom sound.

Steps to create module for Titanium use

  1. You have to get the android sdk manager, and download the google gcm from there.

  2. Get the ANT 1.8 from >> http://ant.apache.org/bindownload.cgi, ANT 1.8 use to create module project and compile use for titanium use.

  3. Using terminal to create module project for titanium by runing the command below.

    /Users/Library/Application\ Support/Titanium/mobilesdk/osx/1.8.2/titanium.py create --platform=android --type=module --id=YOUR_PROJECT_ID --android=YOUR_ANDROID_SDK_PATH

    For example --id=com.activate.gcm, --android=/Applicatoins/android-sdk

  4. Once the module project create success, copy the gcm/gcm-client/src folder from you have downloaded at Android SDK Manager into the module src folder.

  5. Please make changes of the sdk path at the build.properties, such as titanium.platoform, android.platform, google.apis, and android.ndk

  6. Now what you want to do is create the interface class between Java native code with titanium javascript using the Kroll Method. For more information please read here >> https://wiki.appcelerator.org/display/guides/Android+Module+Development+Guide .You also can take my source code as reference on how to create the interface. The source code is provided in this project which inside /src folder.

  7. After complete setup all the class and interface, using ANT 1.8 to compile the module. To compile the module, we have to compile on build.xml. Now, navigate the ANT using terminal and type the command as follow.

    /Users/Desktop/ANT/apache-ant-1.8.4/bin/ant -buildfile /Users/Desktop/gcm/build.xml

  8. After all success compile, the terminal should prompt BUILD SUCCESSFUL, and navigate to folder /dist, inside have the zip file and jar file.

Finally, you have complete and success create the module, now look at "How to use this module at titanium."

How to use this module at titanium.

  1. Copy the .zip into your titanium project at root level. You may use my zip module as well, inside /dist/com.activate.gcm-android-0.1.zip. Double click on the zip file, the zip should be unzip inside the folder name "module".

  2. Insert some data into tiapp.xml. I have upload my project tiapp.xml to this project, please navigate to /example/tiapp.xml for the references.

  3. After that, you also can refer to the /example/PushNotification.js as reference how to use push notification android in titanium. I have provided example into it.

Custom sound.

$data = array( 'data' => array( 'message'=>'my message', 'title'=>'message title', 'sound'=>'attention.wav', 'vibrate'=>'1' ), 'registration_ids' => $regids );

Document

google-cloud-messaging--titanium-'s People

Contributors

guti avatar liccowee avatar miklos-martin avatar nigel-ttp avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.