无法在 Android Studio 中解析 Facebook SDK
Facebook SDK could not be resolved in Android Studio
我在这里 link 了解如何在 Android 应用程序中使用 Facebook SDK:
https://developers.facebook.com/docs/android/getting-started
我在我的 app>gradle>dependecies
中包含 compile 'com.facebook.android:facebook-android-sdk:4.+'
,然后我尝试使用这些代码行:
import com.facebook.FacebookSdk;
public class MyApplication extends Application {
// Updated your class body:
@Override
public void onCreate() {
super.onCreate();
// Initialize the SDK before executing any other operations,
FacebookSdk.sdkInitialize(getApplicationContext());
AppEventsLogger.activateApp(this);
}
}
as 我上面提到的页面中建议。但是,问题是我的 FacebookSdk
和 AppEventsLogger
无法解决。我不明白为什么即使同步也可以。这是我的 app>gradle
文件:
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.3"
defaultConfig {
applicationId "com.my.pkg"
minSdkVersion 15
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled true
shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
......
compile 'com.facebook.android:facebook-android-sdk:4.+'
}
将这些行添加到您的 build.gradle
repositories {
jcenter {
url "http://jcenter.bintray.com/"
}
}
并且不推荐在编译中使用+
,所以我建议具体使用like compile 'com.facebook.android:facebook-android-sdk:4.0.0'
我在这里 link 了解如何在 Android 应用程序中使用 Facebook SDK:
https://developers.facebook.com/docs/android/getting-started
我在我的 app>gradle>dependecies
中包含 compile 'com.facebook.android:facebook-android-sdk:4.+'
,然后我尝试使用这些代码行:
import com.facebook.FacebookSdk;
public class MyApplication extends Application {
// Updated your class body:
@Override
public void onCreate() {
super.onCreate();
// Initialize the SDK before executing any other operations,
FacebookSdk.sdkInitialize(getApplicationContext());
AppEventsLogger.activateApp(this);
}
}
as 我上面提到的页面中建议。但是,问题是我的 FacebookSdk
和 AppEventsLogger
无法解决。我不明白为什么即使同步也可以。这是我的 app>gradle
文件:
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.3"
defaultConfig {
applicationId "com.my.pkg"
minSdkVersion 15
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled true
shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
......
compile 'com.facebook.android:facebook-android-sdk:4.+'
}
将这些行添加到您的 build.gradle
repositories {
jcenter {
url "http://jcenter.bintray.com/"
}
}
并且不推荐在编译中使用+
,所以我建议具体使用like compile 'com.facebook.android:facebook-android-sdk:4.0.0'