Не могу подписать APK из-за сторонней библиотеки

Это моя первая публикация приложения. Проект работает нормально в части разработки, но я сталкиваюсь с проблемой во время подписания APK.

Включенная библиотека в приложении com.1gravity:android-contactpicker

и сталкиваюсь с проблемой при подписании apk только.

ошибка приходит

Ошибка:(30, 44) ошибка: пакет com.onegravity.contactpicker.contact не существует

а также

Создать подписанный APK: ошибки при сборке APK. Вы можете найти ошибки в представлении "Сообщения".

Gradle File

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 ответ

Решение

В вашем файле Gradle изменить это

debugCompile project(':library') 

линия в

compile project(':library')
Другие вопросы по тегам