I'm trying to convert facebook android sdk .aar file to Java Library Project (and use it in Unreal Engine 4 as OnlineSubsystem).
What i've done (according to this answer - AAR in Eclipse ANT project):
When I'm trying to build application I always get these errors:
The CardView declaration (with errors) look like this:
<android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
card_view:cardBackgroundColor="@android:color/transparent"
card_view:cardElevation="10dp">
When I delete these two attributes everything works fine, but I want to know how to build my project without deleting anything.
Unreal Engine uses ant build system for building android application so, please, do not offer me to use gradle.
Thanks.
I realized that I should add cardview java library project from android sdk (android-sdk\extras\android\support\v7\cardview) to my facebook java library project.
Thanks everyone.