Reputation: 43
I am trying to implement ijoomer advance in the android application. I am refering to the link : https://www.ijoomer.com/iJoomer-Advance/developer-manual.html
I have imported the ijoomer advance sdk and facebook sdk in my workspace. I have included both as library too. But in "IjoomerAdvance1.3\res\layout\ijoomer_loading_dialog.xml" I am getting follwing error:
when I refer to the xml file I have following error:
When I use "http://schemas.android.com/apk/res-auto" the problem is solved but I have following error:
According to the above link, in manifest.xml file I have created activity tag with the java class from library file:
In my mainactivity.java file I have extended from smartApplication.
And included ijoomeradvace as library project.
Can anyone help me with my problem?
Upvotes: 2
Views: 1289
Reputation: 575
You need to use
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto" />
According to android documentation:
Added support for custom views with custom attributes in libraries. Layouts using custom attributes must use the namespace URI http://schemas.android.com/apk/res-auto instead of the URI that includes the app package name. This URI is replaced with the app specific one at build time
Upvotes: 3