Error: package com.facebook.android does not exist in android studio project
Solution:
check your build.gradle it should be got this dependency
if you got library project:
if you got jar files in libs folder:
or just add maven central dependency to:
Solution:
check your build.gradle it should be got this dependency
if you got library project:
dependencies {
compile project(':facebook');
}
if you got jar files in libs folder:
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
}
or just add maven central dependency to:
dependencies {
compile 'com.github.asne.facebook:facebook:3.17.2'
}