5

I am facing one issue with SMP integration with Android. My question is: When i try to run my application in android OS 5.0 & + device i am getting error mentioned below.

"Caused by: java.lang.ClassNotFoundException: Didn't find class "com.sybase.mo.MessagingClientException" on path: DexPathList[[zip file 

"/data/app/sample.UI.Droid-1/base.apk"],nativeLibraryDirectories=[/data/app/Sample.UI.Droid-1/lib/arm, /vendor/lib, /system/lib]]".**

But its working fine with pre-Lollipop devices.

Full logs are in below link: http://pastebin.com/8kfhXDCT

John
  • 2,820
  • 3
  • 30
  • 50
Mehta
  • 1,228
  • 1
  • 9
  • 27
  • did upgrading to the most recent sdk service pack solve your problem? i'm on SP12 and i still get the same mentioned exception on devices running android 5 or 6 – c7n May 17 '16 at 09:53
  • @daco: check my answer. – Mehta May 17 '16 at 10:10

3 Answers3

2

I have resolved my error by removing DataVaultLib-2.3.3.13.jar and adding SUPProxyClient-2.3.3.jar and ClientLib.jar.

Now My app is working properly in Lollipop and Marshmallow OS

I go through this link and for jar

Mehta
  • 1,228
  • 1
  • 9
  • 27
2

Removing maflogonimo-1.212.2.jar (or other version from respective service pack) will fix the problem in SMP 3.0 environments.

I just learned, that this specific library is only used for backwards compatibility with the SUP, but breaks the app when used with a SMP 3.0 only.

c7n
  • 1,131
  • 16
  • 29
1

You have to make sure you are using the updated SDK version to support Lollipop. Andriod 5 support was added in SMP SDK SP07.

You could refer to this SAP Note to check the list of devices supported by SMP 3.

Midhun VP
  • 629
  • 1
  • 10
  • 18