I am creating a native app Salesforce project using Android Studio.
The git repo has been cloned from https://github.com/forcedotcom/SalesforceMobileSDK-Templates
but while building code using Android Studio I'm getting with following error. Error:(2, 0) Plugin with id 'com.github.dcendents.android-maven' not found.
Android Studio Version: 2.2.3(latest)
My builde.gradle code is as below:
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
}
}
Please help me on this.