0

I need to use a third-party SDK which must be added as aar or android project library.

I tried to unzip the aar and copy the /lib and /res files to my titanium android module project, but it didn't work.

the error looks like this:

enter image description here

The developer of the SDK tell me check out a link which is FATAL EXCEPTION: java.lang.NoClassDefFoundError: android.support.v7.appcompat.R$layout

I don't know how to solve it, hope someone could help me, thanks

Community
  • 1
  • 1
jack
  • 98
  • 1
  • 4

1 Answers1

0

Because Titanium is a Javascript cross platform tool to build native apps, you will need to write a wrapper to get a native functionality to work.

You can check out the documentation how to this on the Appcelerator website.

Unfortunately you can't just drop in a native component.

Rene Pot
  • 24,681
  • 7
  • 68
  • 92