找不到属性&appfuonentFactory'的资源标识符。在包' android'

时间:2018-05-10 05:25:57

标签: android

我使用谷歌材料设计作为https://material.io/develop/android/docs/getting-started/但是当同步项目时我有以下错误

找不到属性' appComponentFactory'的资源标识符在包' android' 消息{kind = ERROR,text =找不到属性' appComponentFactory'在包' android',sources = [\?\ E:\ Projects \ xoxo-android \ app \ build \ intermediates \ manifests \ full \ debug \ AndroidManifest.xml:17],原始消息=,工具名称= Optional.of(AAPT)}

这是我的build.gradle文件

apply plugin: 'com.android.application'

android {
    compileSdkVersion 26
    buildToolsVersion "26.0.1"

    defaultConfig {
        applicationId "com.example.official2.xoxo"
        minSdkVersion 17
        targetSdkVersion 26
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }

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


dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    testCompile 'junit:junit:4.12'
    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
        exclude group: 'com.android.support', module: 'support-annotations'
    })
    compile 'com.android.support:appcompat-v7:26.0.1'
    compile 'org.apache.httpcomponents:httpclient:4.5'
    compile 'com.mcxiaoke.volley:library-aar:1.0.0'
    compile 'com.android.support:design:26.0.1'
    compile 'com.google.android.gms:play-services-appindexing:8.1.0'
    compile 'com.squareup.retrofit2:retrofit:2.0.0-beta4'
    compile 'com.squareup.retrofit2:converter-gson:2.0.0-beta3'
    compile 'com.wang.avi:library:2.1.3'
    compile 'com.mikhaellopez:circularimageview:3.0.2'
    compile 'com.droidninja:filepicker:1.0.0'
    compile 'com.squareup.picasso:picasso:2.5.2'
    compile 'com.android.support:cardview-v7:26.0.1'
    compile 'com.github.ganfra:material-spinner:1.1.1'
    compile 'com.google.android.material:material:1.0.0-alpha1'
}

这是manifest.xml文件

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.official2.xoxo"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="17"
        android:targetSdkVersion="26" />

    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
    <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
    <uses-permission android:name="android.permission.CAMERA" />

    <application
        android:name="droidninja.filepicker.FilePickerDelegate"
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:supportsRtl="true"
        android:theme="@style/AppTheme" >
        <activity
            android:name="com.example.official2.xoxo.activity.LoginActivity"
            android:label="@string/app_name"
            android:launchMode="singleTop"
            android:screenOrientation="portrait"
            android:windowSoftInputMode="adjustPan" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity
            android:name="com.example.official2.xoxo.activity.RegisterActivity"
            android:label="@string/app_name"
            android:launchMode="singleTop"
            android:windowSoftInputMode="adjustPan" />
        <activity
            android:name="com.example.official2.xoxo.MainActivity"
            android:label="@string/app_name"
            android:launchMode="singleTop" />
        <activity
            android:name="com.example.official2.xoxo.activity.RegisterInfo"
            android:screenOrientation="portrait" />
        <activity android:name="com.example.official2.xoxo.activity.Registration_shop" />
        <activity
            android:name="com.example.official2.xoxo.activity.Product_Dashboard"
            android:label="@string/title_activity_product__dashboard"
            android:screenOrientation="portrait"
            android:theme="@style/AppTheme.NoActionBar" />
        <activity android:name="com.example.official2.xoxo.activity.AddService" />

        <!--
 ATTENTION: This was auto-generated to add Google Play services to your project for
     App Indexing.  See https://g.co/AppIndexing/AndroidStudio for more information.
        -->
        <meta-data
            android:name="com.google.android.gms.version"
            android:value="@integer/google_play_services_version" />

        <activity android:name="com.example.official2.xoxo.activity.SellerProfile" />
        <activity android:name="com.example.official2.xoxo.activity.Services" />
        <activity
            android:name="com.example.official2.xoxo.activity.AddProduct"
            android:screenOrientation="portrait"
            android:windowSoftInputMode="stateVisible|adjustResize" />
        <activity
            android:name="com.example.official2.xoxo.activity.ProductProfileActivity"
            android:screenOrientation="portrait" />
        <activity
            android:name="com.example.official2.xoxo.activity.AddImagesActivity"
            android:screenOrientation="portrait" />
        <activity
            android:name="droidninja.filepicker.FilePickerActivity"
            android:theme="@style/Theme.AppCompat.Light.DarkActionBar" >
        </activity>

        <meta-data
            android:name="android.support.VERSION"
            android:value="26.0.1" />
    </application>

</manifest>

如何解决此错误?

8 个答案:

答案 0 :(得分:10)

我有同样的错误。在我的情况下,它是由+(即"com.android.support:support-v4:27+")指定的依赖项引起的,使其在使用API​​级别27的同时使用Android P依赖项。

替换为特定版本(例如"com.android.support:support-v4:27.1.1")解决了该错误

答案 1 :(得分:8)

尝试以下代码:

cordova插件添加cordova-android-support-gradle-release --variable ANDROID_SUPPORT_VERSION = 27。+

答案 2 :(得分:3)

失败的原因

com.google.android.material:material androidx的一部分,并且您不能在同一项目中同时使用支持库和androidx。版本28.0.0之后,Android将不会更新支持库。

请参阅@ {Android support 28.0.0 release notes

  

这将是android.support下的最后一个功能版本   包装,鼓励开发人员迁移到AndroidX 1.0.0

解决方案

对我来说,解决方案是将我的应用迁移到androidx。我发布了answer,以了解和迁移androidx软件包。 Official migrate documentation也写得很好。

您只需将这些行放入gradle.properties文件中。

android.useAndroidX = true
android.enableJetifier = true

答案 3 :(得分:2)

我遇到了同样的错误。这需要2天的时间:(

转到文件 ==> 设置 ==> 构建,执行,部署 ==> Gradle ==>删除离线工作

的标记

希望对您有帮助

答案 4 :(得分:2)

对Armysir的答案的一个小修正。我使用了以下步骤:

1。将这些行添加到您的app / build.gradle:

Receiver #3:
  priority=0 preferredOrder=0 match=0x108000 specificIndex=-1 isDefault=false
  com.example.blelistenerapp/.service.ble.BleReceiver

2。在AndroidManifest.xml文件中,将一行添加到application-tag:

MsgBox objIE.document.QuerySelectorAll("a[href='/currencies/bitcoin/#markets']").Item(0).getAttribute("data-usd")

答案 5 :(得分:2)

我在react-native项目上出现此错误,并向gradle.properties添加了Google Play版本代码。

googlePlayServicesVersion=12.0.1

答案 6 :(得分:1)

尝试了@Hudson的答案,但是没有用。然后发现了由于FCM插件引起的问题,因此我删除了该插件并添加了更新的插件,然后再次构建。

cordova plugin remove cordova-plugin-fcm

cordova plugin add https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated

答案 7 :(得分:0)

我解决了这个问题:

1。将以下代码添加到您的app / build.gradle:

configurations.all {
   resolutionStrategy.force 'com.android.support:support-v4:26.1.0' // old dependencies version;       
}

2。将sdk和工具版本修改为28:

compileSdkVersion 28
buildToolsVersion '28.0.3'
targetSdkVersion  28

2。在AndroidManifest.xml文件中,应添加两行:

<application
    android:name=".YourApplication"
    android:appComponentFactory="any strings be placeholder"
    tools:replace="android:appComponentFactory"
    android:icon="@drawable/icon"
    android:label="@string/app_name"
    android:largeHeap="true"
    android:theme="@style/Theme.AppCompat.Light.NoActionBar">