• Stars
    star
    205
  • Rank 191,264 (Top 4 %)
  • Language
    Java
  • License
    Apache License 2.0
  • Created over 12 years ago
  • Updated 9 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Air Native Extension (iOS and Android) for Push Notification

Air Native Extension for Push Notifications (iOS + Android)

This is an Air native extension for sending push notifications on iOS and Android. It has been developed by FreshPlanet and is used in the game SongPop.

Push Notifications

On iOS devices, this ANE uses Apple Push Notification Services. On Android devices, it uses Google Cloud Messaging (GCM).

Installation

If your app is iOS-only, you can directly use the binary located in the bin folder (AirPushNotification.ane). You should add it to your application project's Build Path and make sure to package it with your app (more information here).

If your app supports Android, you need to compile the ANE with your own assets (status bar icon etc...). To do that, use the ant build script located in the build folder (build.xml):

cd /path/to/the/ane/build
mv example.build.config build.config
# edit the build.config file to provide your machine-specific paths
ant

You should also update your manifest with:

```
	<!-- Only this application can receive the messages and registration result -->
	<permission android:name="INSERT.APP.ID.HERE.permission.C2D_MESSAGE" android:protectionLevel="signature" />
	<uses-permission android:name="INSERT.APP.ID.HERE.permission.C2D_MESSAGE" />
	
	<!-- This app has permission to register and receive message -->
	<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
	
	<application>

		<activity android:name="com.freshplanet.nativeExtensions.NotificationActivity" android:theme="@android:style/Theme.Translucent.NoTitleBar.Fullscreen" />
		
		<receiver android:name="com.freshplanet.nativeExtensions.C2DMBroadcastReceiver"
			android:permission="com.google.android.c2dm.permission.SEND">
			
			<!-- Receive the actual message -->
			<intent-filter>
				<action android:name="com.google.android.c2dm.intent.RECEIVE" />
				<category android:name="INSERT.APP.ID.HERE" />
			</intent-filter>
			
			<!-- Receive the registration id -->
			<intent-filter>
				<action android:name="com.google.android.c2dm.intent.REGISTRATION" />
				<category android:name="INSERT.APP.ID.HERE" />
			</intent-filter>
		</receiver>
		
		<!-- Local notification -->
		<service android:name="com.freshplanet.nativeExtensions.LocalNotificationService"/>
		<receiver android:name="com.freshplanet.nativeExtensions.LocalBroadcastReceiver" android:process=":remote"></receiver>

	</application>
```

and replace INSERT.APP.ID.HERE by your application id ( tag in your manifest).

Usage

// Register the device for a push notifications
// GOOGLE_PROJECT_ID is necessary only on Android and is your project's ID on GCM.
// On iOS, you can call the method with no parameter.
PushNotification.getInstance().registerForPushNotification(GOOGLE_PROJECT_ID);

// Register for events
PushNotification.getInstance().addEventListener(PushNotificationEvent.PERMISSION_GIVEN_WITH_TOKEN_EVENT, onPushNotificationToken);
PushNotification.getInstance().addEventListener(PushNotificationEvent.NOTIFICATION_RECEIVED_WHEN_IN_FOREGROUND_EVENT, onNotificationReceivedInForeground);
PushNotification.getInstance().addEventListener( PushNotificationEvent.APP_BROUGHT_TO_FOREGROUND_FROM_NOTIFICATION_EVENT, onNotificationReceivedInBackground);
PushNotification.getInstance().addListenerForStarterNotifications(onNotificationReceivedStartingTheApp);

// Handle events
function onPushNotificationToken(event:PushNotificationEvent):void
{
	trace("My push token is: " + event.token);
}
// other event handlers also receive a PushNotificationEvent

Packaging final app for Android

When you build your final APK for Android, you need to update (patch) the AIRSDK you're using. First, make sure you download the latest build-tools (from the Android SDK manager). Then, patch your AIR SDK with the following command: cp pathtoyourANDROIDSDK/build-tools/22.0.1/lib/dx.jar pathtoyourAIRSDK/lib/android/bin/dx.jar

Notes:

  • included binary has been compiled for 64-bit iOS support

Authors

This ANE has been written by Thibaut Crenn. It belongs to FreshPlanet Inc. and is distributed under the Apache Licence, version 2.0.

Join the FreshPlanet team - GAME DEVELOPMENT in NYC

We are expanding our mobile engineering teams.

FreshPlanet is a NYC based mobile game development firm and we are looking for senior engineers to lead the development initiatives for one or more of our games/apps. We work in small teams (6-9) who have total product control. These teams consist of mobile engineers, UI/UX designers and product experts.

Please contact Tom Cassidy ([email protected]) or apply at http://freshplanet.com/jobs/

More Repositories

1

ANE-Facebook

Air Native Extension (iOS and Android) for the Facebook mobile SDK
Objective-C
221
star
2

ANE-In-App-Purchase

Air Native Extension (iOS and Android) for In App Purchase
Java
191
star
3

ANE-Network-Info

Air Native Extension (iOS and Android) for getting Network Information
Objective-C
94
star
4

ANE-ImagePicker

Air Native Extension for mobile camera and gallery features (iOS + Android)
Java
80
star
5

ANE-Alert

Air Native Extension (iOS and Android) for Native Alerts
Objective-C
64
star
6

Air-Mobile-ScrollController

Everything you need to have scrolling in your Adobe Air application that feels native on mobile (iOS, Android)
ActionScript
59
star
7

ANE-Video

Air Native Extension (iOS and Android) for playing videos
C
58
star
8

ANE-Google-Play-Game-Services

Enable user to log in with Google+ to upload high score and achievements
Java
57
star
9

ANE-Flurry

Air Native Extension for Flurry Analytics & Ads (iOS + Android)
Objective-C
52
star
10

ANE-DeviceId

Provides access to the device unique id.
C
51
star
11

ANE-Background-Music

Air Native Extension (iOS and Android) for managing background music
Java
42
star
12

ANE-Wizard

Set of tools to speed up the creation of Air Native Extension (ANE).
Python
37
star
13

ANE-Chartboost

Air Native Extension for Chartboost (iOS + Android)
C
36
star
14

ANE-KeyboardSize

Air Native Extension (Android) for measuring soft keyboard size
C
31
star
15

ANE-Crashlytics

Air Native Extension (iOS and Android) for Crashlytics
Objective-C
27
star
16

ANE-DatePicker

Air Native Extension (iOS and Android) for selecting dates with native controls
C
26
star
17

ANE-NativeShare

Brings up the native share dialog
Objective-C
25
star
18

ANE-MultiPeerConnectivity

ANE to detect nearby ios7 devices and send them messages
C
20
star
19

ANE-AACPlayer

Air Native Extension for better media playback on Android
Java
15
star
20

AppEngine-Deferred

Python
11
star
21

ANE-AddressBook

C
11
star
22

ANE-BackgroundFetch

Objective-C
9
star
23

ANE-GoogleCloudStorageUpload

Air Native Extension to upload to google cloud storage with custom headers (iOS + Android)
Java
8
star
24

ANE-Burstly

Air Native Extension (iOS and Android) for Burstly's SkyRocket SDK
Objective-C
7
star
25

AppEngine-SocketPool

Manages a pool of sockets to a same destination in Python on Google AppEngine. Example with Apple Push Notification service.
Python
5
star
26

ANE-AirCapabilities

Provides access to device capabilities for air applications.
Objective-C
4
star
27

ANE-Pinterest

C
4
star
28

AppEngine-Counter

A Counter class to help you track events happening in your application in a simple efficient and scalable way
Python
4
star
29

ANE-LiveStream

Objective-C
4
star
30

ANE-AmazonMP3

Air Native Extension for interacting with the Amazon MP3 app (Android)
Java
3
star
31

AppleMusicANE

Objective-C
1
star