我正在使用Android Studio创建本机应用Salesforce项目。
git repo已从https://github.com/forcedotcom/SalesforceMobileSDK-Templates
克隆但是在使用Android Studio构建代码时,我遇到了以下错误。 错误:(2,0)找不到ID“com.github.dcendents.android-maven”的插件。
Android Studio版本:2.2.3(最新)
我的builde.gradle代码如下:
apply plugin: 'com.android.library'
apply plugin: 'com.github.dcendents.android-maven'
apply plugin: 'com.jfrog.bintray'
dependencies {
compile project(':libs:SmartStore')
}
android {
compileSdkVersion 25
buildToolsVersion '23.0.1'
buildTypes {
debug {
testCoverageEnabled = true
}
}
请帮我解决这个问题。