Android: attr / popupPromptView является частным - PullRequest
1 голос
/ 27 апреля 2019

Я работаю над проектом «Приложение для персональной системы мониторинга здоровья».Я сделал свой проект, но когда я его собрал, я получил ошибку соединения с ресурсом.Мне не нужно использовать следующие ресурсы в моем приложении, но я получаю эту ошибку.Я использую 2 библиотеки. 1) LibWizardPager 2) SlidingMenu Я использую версию Android Build 3.4.Любой может сказать мне решение этой проблемы.Заранее спасибо:)

мои файлы Build.gradle

         buildscript {
    repositories {
        mavenCentral()
        google()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.4.0'
        //classpath 'com.neenbedankt.gradle.plugins:android-apt:1.1'
    }
}
apply plugin: 'com.android.application'
//apply plugin: 'android-apt'

repositories {
    mavenCentral()
    google()
}

android {
    compileSdkVersion 28
    defaultConfig {
        applicationId "com.cse3310.phms"

        minSdkVersion 16
        targetSdkVersion 28
        versionCode 1
        versionName = "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"

    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
    buildToolsVersion '28.0.3'
}

dependencies {
    implementation fileTree(include: '*.jar', dir: 'libs')
    implementation 'com.andreabaccega:android-form-edittext:1.0.5@aar'
    // apt "org.androidannotations:androidannotations:$AAVersion"
    implementation "org.androidannotations:androidannotations-api:$AAVersion"
    implementation 'com.android.support:support-v4:28.0.0'
    implementation 'com.actionbarsherlock:actionbarsherlock:4.4.0@aar'
    // library for make custom adapter easier.
    implementation 'com.github.amigold.fundapter2:library:1.01'
    // library for communicating btw components easier.
    implementation 'de.greenrobot:eventbus:2.2.0'
    implementation 'com.github.gabrielemariotti.cards:library:1.5.0'
    implementation 'se.emilsjolander:stickylistheaders:2.1.5'
    implementation 'com.nhaarman.listviewanimations:library:2.6.0'
    implementation 'com.github.itsmechlark:android-times-square:1.1.1@aar'
    implementation 'com.mcxiaoke.viewpagerindicator:library:2.4.1'
    implementation 'com.doomonafireball.betterpickers:library:1.5.2'
    implementation project(':PHMS:libs:LibWizardPager')
    implementation project(':PHMS:libs:SlidingMenu')
}
C:\Users\Qasim-PC\Desktop\Personal-Health-Monitoring-System\PHMS\build\intermediates\incremental\mergeDebugResources\merged.dir\values\values.xml:1955: error: resource android:attr/foregroundInsidePadding is private.
C:\Users\Qasim-PC\Desktop\Personal-Health-Monitoring-System\PHMS\build\intermediates\incremental\mergeDebugResources\merged.dir\values\values.xml:2309: error: resource android:attr/popupPromptView is private.
error: failed linking references.```
...