Error On Android App Azure Dependency Gradle Build
I am getting the following error on Android Studio 2.3.3 at Gradle sync.: '`Error:Module 'com.microsoft.azure:azure-mobile-android:3.3.0' depends on one or more Android Libraries b
Solution 1:
I reviewed the source code of azure-mobile-apps-android-client
on GitHub, and the difference of the build.gradle
between 3.1.0
and 3.3.0
is that the version 3.3.0
required the dependency com.android.support:customtabs:23.0.1
, but version 3.1.0
not. So you need to downgrade the compileSdkVersion
& targetSdkVersion
value from 25
to 23
to support the required Android library to resolve it, due to com.android.support:customtabs:23.0.1
is belong to Android API 23.
Post a Comment for "Error On Android App Azure Dependency Gradle Build"