I am trying to add
compile 'com.applozic.communication.uiwidget:mobicomkitui:3.38'
under dependencies in build.gradle but it is giving the following error
I have added
include 'com.applozic.communication.uiwidget:mobicomkitui:3.38'
in settings.gradle.
Please help, I am new to these things. The link from which I am trying to implement my project is here Here is build.gradle(module:app)
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.1"
packagingOptions{
exclude 'META-INF/DEPENDENCIES'
exclude 'META-INF/NOTICE'
exclude 'META-INF/LICENSE'
exclude 'META-INF/LICENSE.txt'
exclude 'META-INF/NOTICE.txt'
exclude 'META-INF/ECLIPSE_.SF'
exclude 'META-INF/ECLIPSE_.RSA'
}
defaultConfig {
applicationId "com.urjapawar.bevyphase1"
minSdkVersion 14
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.1.0'
compile 'com.android.support:design:23.1.0'
compile 'com.applozic.communication.uiwidget:mobicomkitui:3.38'
}
and here is build.gradle(module:project)
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.3.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
mavenCentral()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
here is the log after cleaning project
Error:A problem occurred configuring project ':app'.
Could not resolve all dependencies for configuration ':app:_debugCompile'. Could not find com.applozic.communication.uiwidget:mobicomkitui:3.38. Searched in the following locations: https://repo1.maven.org/maven2/com/applozic/communication/uiwidget/mobicomkitui/3.38/mobicomkitui-3.38.pom https://repo1.maven.org/maven2/com/applozic/communication/uiwidget/mobicomkitui/3.38/mobicomkitui-3.38.jar file:/C:/Users/DELL/AppData/Local/Android/sdk/extras/android/m2repository/com/applozic/communication/uiwidget/mobicomkitui/3.38/mobicomkitui-3.38.pom file:/C:/Users/DELL/AppData/Local/Android/sdk/extras/android/m2repository/com/applozic/communication/uiwidget/mobicomkitui/3.38/mobicomkitui-3.38.jar file:/C:/Users/DELL/AppData/Local/Android/sdk/extras/google/m2repository/com/applozic/communication/uiwidget/mobicomkitui/3.38/mobicomkitui-3.38.pom file:/C:/Users/DELL/AppData/Local/Android/sdk/extras/google/m2repository/com/applozic/communication/uiwidget/mobicomkitui/3.38/mobicomkitui-3.38.jar Required by: BevyPhase1:app:unspecified