2014-05-06 97 views
0

這是我爲了使用FacebookSDK在基於gradle這個-Android項目二Maven倉庫在Android項目

repositories { 
    mavenCentral() 
    mavenLocal() 
    maven { 
     url "http://mente.github.io/facebook-api-android-aar" 
    } 
} 

現在我已經添加新的存儲庫的umano加入Facebook的庫的方式滑動菜單(https://github.com/umano/AndroidSlidingUpPanel)。

我已經試過這樣的事情(但它顯然是行不通的):

repositories { 
     mavenCentral() 
     mavenLocal() 
     maven { 
      url "http://mente.github.io/facebook-api-android-aar", "https://bitbucket.org/luciofm/m2repository/raw/master/" 

     } 
    } 

回答

3

您需要單獨添加:

maven { 
    url "http://mente.github.io/facebook-api-android-aar" 

} 
maven { 
    url "https://bitbucket.org/luciofm/m2repository/raw/master/" 
}