0

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?

Adnan
  • 25,882
  • 18
  • 81
  • 110
Karthi
  • 13,624
  • 10
  • 53
  • 76

1 Answers1

1

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..

Venky
  • 11,049
  • 5
  • 49
  • 66
  • i did as you say , but it will show following error 04-25 17:11:56.885: INFO/AirMail(294): java.net.SocketTimeoutException: Transport endpoint is not connected 04-25 17:14:27.225: INFO/AirMail(294): at org.apache.harmony.luni.platform.OSNetworkSystem.connectStreamWithTimeoutSocketImpl(Native Method) – Karthi Apr 25 '11 at 11:43
  • You want to send Notification in Message or Notification in RSS Feed? – Venky Apr 25 '11 at 12:47
  • Notification in message i need to send – Karthi Apr 26 '11 at 04:10
  • +1 venky your answer gave me idea about "productionAppKey" in "airshipconfig.properties" file – Abhi Jul 14 '12 at 15:30
  • Are you sure about productionAppKey? Isn't it the app key availble in the UA web app? http://stackoverflow.com/questions/12936694/development-app-key-and-app-secret-for-android – Markus Junginger Jan 10 '13 at 18:05