After the installation of this plugin i'm facing the next errors:
Error:(59, 20) error: reference to NativeAppCallAttachmentStore is ambiguous
both class com.facebook.internal.NativeAppCallAttachmentStore in com.facebook.internal and class com.facebook.NativeAppCallAttachmentStore in com.facebook match
I Already Download the Facebook SDK My Gradle File:
`
buildscript {
repositories {
mavenCentral()
}
Hi,
After the installation of this plugin i'm facing the next errors:
I Already Download the Facebook SDK My Gradle File: ` buildscript { repositories { mavenCentral() }
}
apply plugin: 'com.android.library'
dependencies { compile fileTree(dir: 'libs', include: '*.jar') debugCompile project(path: ":CordovaLib", configuration: "debug") releaseCompile project(path: ":CordovaLib", configuration: "release") compile 'com.facebook.android:facebook-android-sdk:4.4.0' }
android { compileSdkVersion cdvCompileSdkVersion buildToolsVersion cdvBuildToolsVersion publishNonDefault true
}
if (file('build-extras.gradle').exists()) { apply from: 'build-extras.gradle' }`
i'm using Android Studio 2.3.3 my android manifest confing:
<uses-sdk android:minSdkVersion="14" android:targetSdkVersion="23" />
My Android Struture project: CordovaLib FacebookLib android |__ phonegap-facebook-plugin (Seem's that is a empty folder) GradleScripts 3 build.gradle (Cordova, Android & Facebook)