错误添加依赖

问题描述:

我想补充错误添加依赖

compile 'com.applozic.communication.uiwidget:mobicomkitui:3.38' 

下的build.gradle的依赖,但它给了以下错误 Here is the whole logcat

我曾在设置中添加

include 'com.applozic.communication.uiwidget:mobicomkitui:3.38' 

.gradle。

请帮助,我是新来的这些东西。 从中我想实现我的项目的链接是here 这里是的build.gradle(模块: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' 

} 

,这里是的build.gradle(模块:项目)

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 
    } 

这里是日志清理项目后

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

+0

安置自己的build.gradle文件 –

+0

你有一个'respositories {你的Gradle文件的部分? –

+0

我已添加先生 –

转到您的项目的build.gradle文件,并添加jcenter()

buildscript { 
     repositories { 
      jcenter() 
     } 
     dependencies { 
      classpath 'com.android.tools.build:gradle:2.1.0' 
      classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.1' 
      //classpath 'com.github.dcendents:android-maven-gradle-plugin:1.3' 
      // classpath 'com.github.dcendents:android-maven-plugin:1.2' 
      classpath 'com.novoda:bintray-release:0.3.4' 

      // NOTE: Do not place your application dependencies here; they belong 
      // in the individual module build.gradle files 
     } 
    } 

    allprojects { 
     repositories { 
      jcenter() 
     } 
    } 

来源: https://github.com/AppLozic/Applozic-Android-SDK/blob/master/build.gradle

+0

现在它显示了六个错误,如错误:无法解析:com.android.support:appcompat-v7:23.1.1,错误:无法解析:com.google.android.gms:play-services-location:8.4.0 等,他们不在我的依赖 –

+0

@UrjaPawar你可以试试:compile'c​​om.android.support:support-v4:23.1.1' compile'c​​om.android.support:appcompat-v7:23.1.1' 编译 'com.android.support:design:23.1.1' –

+1

也使用buildToolsVersion为23.0.2的Android { compileSdkVersion 23 buildToolsVersion “23.0.2” –

尝试

repositories { 
    mavenCentral() 
} 

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.39' 
} 
+0

我添加了知识库{ mavenCentral() }在build.gradle(模块:应用程序),没有工作 –

+0

好吧,让我检查 – Shubhank

+0

它似乎为我工作。你能粘贴你的整个gradle失败日志吗? – Shubhank