3

I have a problem that keeps me busy for the last few days and I would like to get some help...

I am using intellij 13.1.3 and when I try to add the Facebook SDK as a module I get an an error

Error: Gradle: error: package com.facebook does not exist

I did everything excactly as @Scott Barta explained here: https://stackoverflow.com/a/20221453/1018192

please help me! :( thank you very very much :)

Edit 1: my build.gradle files:

facebook -> build.gradle

apply plugin: 'android-library'

dependencies {
    compile 'com.android.support:support-v4:13.0.+'
    compile files('libs/bolts.jar')
}

android {
    compileSdkVersion Integer.parseInt(project.ANDROID_BUILD_SDK_VERSION)
    buildToolsVersion "19.0.0"

    defaultConfig {
        minSdkVersion Integer.parseInt(project.ANDROID_BUILD_MIN_SDK_VERSION)
        targetSdkVersion Integer.parseInt(project.ANDROID_BUILD_TARGET_SDK_VERSION)
    }

    lintOptions {
        abortOnError false
    }

    sourceSets {
        main {
            manifest.srcFile 'AndroidManifest.xml'
            java.srcDirs = ['src']
            res.srcDirs = ['res']
        }
    }
}

my_proj -> build.gradle

buildscript {
    repositories {
        mavenCentral()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:0.9.+'
    }
}
apply plugin: 'android'

repositories {
    mavenCentral()
}

android {
    compileSdkVersion 19
    buildToolsVersion "19.1.0"

    defaultConfig {
        minSdkVersion 10
        targetSdkVersion 19
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            runProguard false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.android.support:appcompat-v7:19.1.0'
    compile 'com.android.support:support-v4:19.1.0'
}

My_proj -> build.gradle

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
    repositories {
        mavenCentral()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:0.9.+'
    }
}

allprojects {
    repositories {
        mavenCentral()
    }
}

My_proj -> settings.gradle

include ':my_proj'
include ':libraries:facebook'
4

2 回答 2

5

只需将其添加为依赖项

    dependencies {
        compile 'com.facebook.android:facebook-android-sdk:3.22.0'
    }

使用http://gradleplease.appspot.com/#facebook获取最新版本

于 2015-01-21T16:18:50.707 回答
1

我修好了它!!!

我刚刚添加到 my_proj.gradle 行

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.android.support:appcompat-v7:19.1.0'
    compile 'com.android.support:support-v4:19.1.0'
    **compile project(':libraries:facebook')**
}

它解决了 3 天的头痛问题

于 2014-07-16T17:04:12.260 回答