使用androidX在项目中的ViewPager2配置

时间:2019-02-18 06:09:56

标签: android androidx android-viewpager2

我的项目运行良好,没有在我的应用程序中实现ViewPager2 gradle。但是,当我在项目中使用它的gradle implementation 'androidx.viewpager2:viewpager2:1.0.0-alpha01'时,就会出现Log-cat错误...

Android resource linking failed
Output:  D:\sam\app\build\intermediates\incremental\mergeDebugResources\merged.dir\values-v28\values-v28.xml:7: error: resource android:attr/dialogCornerRadius not found.
D:\sam\app\build\intermediates\incremental\mergeDebugResources\merged.dir\values-v28\values-v28.xml:11: error: resource android:attr/dialogCornerRadius not found.
D:\sam\app\build\intermediates\incremental\mergeDebugResources\merged.dir\values\values.xml:557: error: resource android:attr/fontVariationSettings not found.
D:\sam\app\build\intermediates\incremental\mergeDebugResources\merged.dir\values\values.xml:557: error: resource android:attr/ttcIndex not found.
D:\sam\app\build\intermediates\incremental\mergeDebugResources\merged.dir\values\values.xml:834: error: resource android:attr/textFontWeight not found.
error: failed linking references.

Command: C:\Users\anonymous\.gradle\caches\transforms-1\files-1.1\aapt2-3.2.1-4818971-windows.jar\e2e18b400b8fa36a8523d44c560bb82c\aapt2-3.2.1-4818971-windows\aapt2.exe link -I\
        C:\Users\anonymous\AppData\Local\Android\Sdk\platforms\android-27\android.jar\
        --manifest\
        D:\sam\app\build\intermediates\merged_manifests\debug\processDebugManifest\merged\AndroidManifest.xml\
        -o\
        D:\sam\app\build\intermediates\processed_res\debug\processDebugResources\out\resources-debug.ap_\
        -R\
        @D:\sam\app\build\intermediates\incremental\processDebugResources\resources-list-for-resources-debug.ap_.txt\
        --auto-add-overlay\
        --java\
        D:\sam\app\build\generated\not_namespaced_r_class_sources\debug\processDebugResources\r\
        --custom-package\
        com.sam.test.sushil\
        -0\
        apk\
        --output-text-symbols\
        D:\sam\app\build\intermediates\symbols\debug\R.txt\
        --no-version-vectors
Daemon:  AAPT2 aapt2-3.2.1-4818971-windows Daemon #0

与此implementation group: 'androidx.viewpager2', name:'viewpager2', version: '1.0.0-alpha01'

相同的错误

然后我创建了另一个空项目并实施了implementation 'androidx.viewpager2:viewpager2:1.0.0-alpha01'

它给了我这个错误.....

Manifest merger failed : Attribute application@appComponentFactory value=(android.support.v4.app.CoreComponentFactory) from [com.android.support:support-compat:28.0.0] AndroidManifest.xml:22:18-91
    is also present at [androidx.core:core:1.1.0-alpha04] AndroidManifest.xml:22:18-86 value=(androidx.core.app.CoreComponentFactory).
    Suggestion: add 'tools:replace="android:appComponentFactory"' to <application> element at AndroidManifest.xml:5:5-19:19 to override.

特定于上述错误的android.support.v4.app.CoreComponentFactoryimplementation 'com.android.support:appcompat-v7:28.0.0'之间存在冲突。因此,我从项目中删除了implementation 'androidx.viewpager2:viewpager2:1.0.0-alpha01'库。

现在正在运行。

我的问题是

如果删除support:appcompat,则无法使用AppCompatActivity及其用途。在我现有的应用程序中。

如何解决此问题?

如何同时使用support:appcompatViewPager2

修改

在清单的support:appcompat标记内添加tools:replace="android:appComponentFactory"后,

@ManoharReddy。它给了我这个错误

<application>

1 个答案:

答案 0 :(得分:2)

我找到了解决方法。

@Kishore和@Shweta告诉我们要在项目中迁移AndroidX。

手动添加android.useAndroidX=trueandroid.enableJetifier=true给了我很多时间。因为它引发了一些错误或Suggestion: add 'tools:replace="android:appComponentFactory"' to <application>

要在项目中启用Jet-fire,android Studio中有一个选项

选择您的项目--->右键单击

app ---->重构---->迁移到AndroidX

如下图所示:-

enter image description here

点击迁移到AndroidX

它将要求您确认并备份您的项目。

enter image description here

最后一步,它将要求您进行重构。

enter image description here

执行重构后,检查gradle.properties具有android.useAndroidX=trueandroid.enableJetifier=true。如果不是,则将这两行添加到gradle.properties文件中:

android.useAndroidX=true
android.enableJetifier=true

感谢所有用户的帮助。