2
votes

I am using Appcelerator Titanium Version 1.8.0 have anyone tried push notification using google's C2DM.if so help me to create Sample push notification.

1
too broad question to answer... Be specific... you can refer kitchen Sink 's example... - Maulik
k i refered a code here but Still i am getting Error like "Module not found " but what my question is I need to create new module or i can simply clone the project code. - Sugan S
can u tell me steps to implement.I don't want to do big app but sample push notification - Sugan S
Thank u Maulik i will improve - Sugan S

1 Answers

4
votes

It is not that difficult: Here is steps for it...

  1. Clone project from github
  2. Find build.properties
  3. Modify all paths to fit the paths (and versions) in your environment
  4. Optionally you need to download and install the android sdk from here http://developer.android.com/sdk/ndk/index.html
  5. Open console in module root and type ant and hit enter
  6. The build process should end with something like build successfully
  7. In the module directory, you will find the build result in the dist folder
  8. Open that folder, unzip the com.findlaw.c2dm-android-0.1.zip
  9. A folder is created: modules/android/com.findlaw.c2dm/0.1
  10. copy the content of modules/android/com.findlaw.c2dm/0.1 to the folder [your_project]/modules/android/com.findlaw.c2dm/
  11. Copy timodule.xml to the root folder of your project (where the tiapp.xml is located)
  12. Open tiapp.xml and replace all occurences of com.findlaw.c2dm with your app id, except of the line including this: com.findlaw.c2dm.C2DMReceiver
  13. Register the module in tiapp.xml:
    <modules>
       <module platform="android" version="0.1">com.findlaw.c2dm</module>
     </modules>


 14. Use the module in your code as described in the example of the module

For more check this communication of our team member...

Your Module folder should not inside the Resource folder

enter image description here