web-dev-qa-db-ja.com

リソースAndroid:attr / Android:progressBarStyleが見つかりません

Android Studioを最新バージョンに更新した後でプロジェクトをビルドしようとしたときに、このエラーが発生しました。以下のエラーが発生しています:

C:\ Users\YaCn.gradle\caches\transforms-2\files-2.1\5502c0022567bdcff063e0fb4352b137\folioreader-0.3.3\res\layout\progress_dialog.xml:10:AAPT:error:resource Android:attr/Android:progressBarStyle not見つかりました。

そのXML:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:Android="http://schemas.Android.com/apk/res/Android"
    Android:layout_width="fill_parent"
    Android:layout_height="fill_parent">
    <LinearLayout Android:id="@+id/layout_loading"
        Android:layout_width="fill_parent"
        Android:layout_height="fill_parent"
        Android:orientation="vertical"
        Android:gravity="center">
        <ProgressBar Android:id="@+id/loading"
            Android:layout_width="wrap_content"
            Android:layout_height="wrap_content"
            style="?android:attr/Android:progressBarStyle"/>
        <TextView Android:id="@+id/label_loading"
            Android:layout_width="wrap_content"
            Android:layout_height="wrap_content"
            Android:layout_marginTop="4dp"
            Android:textSize="18sp"
            Android:textColor="@Android:color/white"
            Android:text="@string/loading"/>
    </LinearLayout>
</RelativeLayout>

ビルドgradleファイル:

   apply plugin: 'com.Android.application'

Android {
    compileSdkVersion 27
    defaultConfig {
        applicationId "com.example.admin.hashtab"
        minSdkVersion 16
        targetSdkVersion 27
        versionCode 1
        versionName "1.0"
        multiDexEnabled true

        manifestPlaceholders = [manifestApplicationId          : "${applicationId}",
                                onesignal_app_id               : "654bcb8c-90a6-4012-924a-e18e5787a7de",
                                onesignal_google_project_number: "3520309722"]

        testInstrumentationRunner "Android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-Android.txt'), 'proguard-rules.pro'
        }
    }
    compileOptions {
        sourceCompatibility = 1.8
        targetCompatibility = 1.8
    }
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'com.Android.support:appcompat-v7:27.1.0'
    implementation 'com.Android.support:design:27.1.0'
    implementation 'com.Android.support.constraint:constraint-layout:1.0.2'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.Android.support.test:runner:1.0.1'
    androidTestImplementation 'com.Android.support.test.espresso:espresso-core:3.0.1'
    implementation 'com.loopj.Android:android-async-http:1.4.9'
    implementation 'com.Android.support:recyclerview-v7:27.1.0'
    implementation 'com.Android.support:cardview-v7:27.1.0'
    implementation 'com.wang.avi:library:2.1.3'
    implementation 'com.makeramen:roundedimageview:2.3.0'
    implementation 'de.hdodenhof:circleimageview:2.2.0'
    implementation 'com.squareup.picasso:picasso:2.5.2'
    implementation 'uk.co.chrisjenx:calligraphy:2.3.0'
    implementation 'com.google.Android.gms:play-services-ads:12.0.1'
    implementation 'com.google.Android.gms:play-services-gcm:12.0.1'
    implementation 'com.google.Android.gms:play-services-analytics:12.0.1'
    implementation 'com.onesignal:OneSignal:3.+@aar'
    implementation 'com.google.firebase:firebase-core:12.0.1'
    implementation 'com.github.ornolfr:rating-view:0.1.2@aar'
    implementation project(path: ':library')
    implementation project(path: ':SmoothCheckBox-master')
    implementation 'com.github.barteksc:Android-pdf-viewer:2.8.2'
    implementation 'com.folioreader:folioreader:0.3.3'
    implementation 'com.Android.support:multidex:1.0.3'
    implementation 'com.lmntrx.Android.library.livin.missme:missme:0.1.5'
}
// Add to the bottom of the file
apply plugin: 'com.google.gms.google-services'
5
Mohammad Yasin

これを依存関係に追加してみてください

implementation "com.folioreader:folioreader:0.5.4"//this is just the updated version as of now
implementation 'com.Android.support:multidex:1.0.3' // ( for androidx)
configurations.matching { it.name == '_internal_aapt2_binary' }.all {
    config -> config.resolutionStrategy.eachDependency {
        details -> details.useVersion("3.3.2-5309881")
    } 
}
1
AtaSuid

間違ったスタイルを使用しました。スタイルを次のように変更するだけです。

style="?android:attr/progressBarStyle"

の代わりに

style="?android:attr/Android:progressBarStyle"
0
Sumit Shukla