Karthi
Karthi

Reputation: 13752

urban airship push notification problem in android?

I use the urban airship mail push notification service , i created some sample application and register the package name in urban airmail ship , then i got the application key , but in raw/ua.properties , i need to specify the

debug.app_key=
production.app_key=

but i don`t know the value , from where i have to get the value for my application?

Upvotes: 0

Views: 912

Answers (1)

Venky
Venky

Reputation: 11107

Check this link for implementing Push Notification.

After you create your Application you will get the Application Key put that Key in the place of debug.app.key then in case of production.app.key generate the MD5 fingerprint by using

keytool.exe -list -alias androiddebugkey -keystore "C:\android\debug.keystore" -storepass android -keypass android

after getting the fingerprint put in the pruoduction.app.key..

Upvotes: 1

Related Questions