0

i am trying to run an android application for connecting to a server on my smartphone. When i try to connect to a sample server saved in the app, i get this on LogCat:

Could not find class 'com.appl.app.utils.ClipboardManagerProxy$HCClipboardManager', 
referenced from method com.appl.app.utils.ClipboardManagerProxy.getClipboardManager

My device has android 2.3.6 but class ClipboardManager was added in API level 11..could this be the problem?

SegFault
  • 2,020
  • 4
  • 26
  • 41

1 Answers1

0

The highest API level you can use for 2.3.6 is API level 10. See here. The error can be because of that as you are saying that ClipboardManager was added in API level 11. API 11 requires Android 3.0.x .

Shobhit Puri
  • 25,769
  • 11
  • 95
  • 124
  • ok...now i've tried to do it with a virtual device with android 3.0 but the connection fails...is it a limitation of the emulator? – SegFault Aug 20 '13 at 09:15
  • with the test server saved in the app...if i install the app on my smartphone the connection works, but if i use the virtual device or my smartphone to run it, it doesn't work! – SegFault Aug 20 '13 at 09:19
  • Is internet is working on emulator? Are you able to use the browser normally ? – Shobhit Puri Aug 20 '13 at 09:20
  • 08-20 09:35:12.702: E/AndroidRuntime(373): FATAL EXCEPTION: main 08-20 09:35:12.702: E/AndroidRuntime(373): java.lang.UnsatisfiedLinkError: freerdp_new 08-20 09:35:12.702: E/AndroidRuntime(373): at com.appl.app.services.LibFreeRDP.freerdp_new(Native Method) – SegFault Aug 20 '13 at 09:39
  • @Butterfly Sorry for the late reply. Can you please post the complete LogCat in question. It would help. – Shobhit Puri Sep 02 '13 at 08:38