因第三方图书馆

时间:2017-09-05 12:11:57

标签: android android-studio apk signed-apk contactpicker

这是我的第一个应用程序出版物。该项目在开发方面运行良好,但在签署APK 期间我遇到了问题。

enter image description here

com.1gravity:android-contactpicker

的应用中

包含的库

签署apk 期间遇到问题。

错误来了

  

错误:(30,44)错误:包com.onegravity.contactpicker.contact   不存在

  

生成签名APK:构建APK时的错误。你可以找到   “消息”视图中的错误。

gradle文件

apply plugin: 'com.android.application'

android {
    compileSdkVersion 25
    buildToolsVersion "26.0.0"
    defaultConfig {
        applicationId 'com.mymatatu'
        minSdkVersion 15
        targetSdkVersion 25
        versionCode 3
        versionName "1.3"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }

    productFlavors {
    }
}

dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
        exclude group: 'com.android.support', module: 'support-annotations'
    })
    debugCompile project(':library')
    compile 'com.android.support:appcompat-v7:25.3.1'
    compile 'com.android.support.constraint:constraint-layout:1.0.2'
    compile 'com.android.volley:volley:1.0.0'
    compile 'com.android.support:design:25.3.1'
    compile 'com.android.support:support-v4:25.3.1'
    compile 'com.android.support:cardview-v7:25.3.1'
    compile 'com.android.support:recyclerview-v7:25.3.1'
    compile 'com.github.bumptech.glide:glide:4.0.0-RC1'
    compile 'com.github.markushi:circlebutton:1.1'
    testCompile 'junit:junit:4.12'
    annotationProcessor 'com.github.bumptech.glide:compiler:4.0.0-RC1'
}

1 个答案:

答案 0 :(得分:1)

您的gradle文件中的

更改此

debugCompile project(':library') 

进入

compile project(':library')