I've been following these instructions https://developers.google.com/eclipse/docs/appeng_android_create_project to setup an app engine connected android project.
I have gwt 2.4, android sdk 18, app engine plugin 1.6.6, eclipse indigo, and windows 7. I have also signed up for a c2dm account. I'm attempting to run the project on my galaxy nexus running android 4 because I can't seem to add an account to the emulator in order to "connect to the cloud".
When I click, "Say Hello" I eventually get the error message:
Failure: Connection to http://192.168.2.2:8888 refused
192.168.2.2 actually IS my ip address according to ipconfig.
I am aware of this question App Engine Connected Android : can't make sample project work properly however his error shows a failure to connect to 127.0.1.1 while mine shows my actual IP address. Nevertheless, I have attempted his solution with both my local and public ip address but always get the same error, just with a different ip address.
Can anyone please help?
Edit:
After Peter pointed out my ip address problem, I decided to deploy to app engine real quick to see if it works there. I successfully deployed and then ran the android part on my phone. After clicking force close, the app says, "Connecting..." for a very long time and then force closes. In logcat I get the error message:
06-01 18:05:14.678: E/AndroidRuntime(11328): FATAL EXCEPTION: main
06-01 18:05:14.678: E/AndroidRuntime(11328): java.lang.RuntimeException: Error receiving broadcast Intent { act=com.testprojectfourteen.UPDATE_UI flg=0x10 (has extras) } in com.testprojectfourteen.TestProjectFourteenActivity$1@41826430
06-01 18:05:14.678: E/AndroidRuntime(11328): at android.app.LoadedApk$ReceiverDispatcher$Args.run(LoadedApk.java:737)
06-01 18:05:14.678: E/AndroidRuntime(11328): at android.os.Handler.handleCallback(Handler.java:605)
06-01 18:05:14.678: E/AndroidRuntime(11328): at android.os.Handler.dispatchMessage(Handler.java:92)
06-01 18:05:14.678: E/AndroidRuntime(11328): at android.os.Looper.loop(Looper.java:137)
06-01 18:05:14.678: E/AndroidRuntime(11328): at android.app.ActivityThread.main(ActivityThread.java:4340)
06-01 18:05:14.678: E/AndroidRuntime(11328): at java.lang.reflect.Method.invokeNative(Native Method)
06-01 18:05:14.678: E/AndroidRuntime(11328): at java.lang.reflect.Method.invoke(Method.java:511)
06-01 18:05:14.678: E/AndroidRuntime(11328): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:784)
06-01 18:05:14.678: E/AndroidRuntime(11328): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:551)
06-01 18:05:14.678: E/AndroidRuntime(11328): at dalvik.system.NativeStart.main(Native Method)
06-01 18:05:14.678: E/AndroidRuntime(11328): Caused by: java.lang.NullPointerException
06-01 18:05:14.678: E/AndroidRuntime(11328): at android.app.PendingIntent.getActivity(PendingIntent.java:195)
06-01 18:05:14.678: E/AndroidRuntime(11328): at com.testprojectfourteen.Util.generateNotification(Util.java:119)
06-01 18:05:14.678: E/AndroidRuntime(11328): at com.testprojectfourteen.TestProjectFourteenActivity$1.onReceive(TestProjectFourteenActivity.java:82)
06-01 18:05:14.678: E/AndroidRuntime(11328): at android.app.LoadedApk$ReceiverDispatcher$Args.run(LoadedApk.java:728)
06-01 18:05:14.678: E/AndroidRuntime(11328): ... 9 more