在 app/build.gradle 文件中添加这些依赖项时出错 android
Getting error while adding these dependencies in app/build.gradle file in android
我想在 android 中将 TabLayout 与 ViewPager 一起使用。
为此,我将此 implementation 'com.google.android.material:material:1.5.0-alpha01'
添加到 app/gradle.build
文件的依赖项部分。
This is the state of my dependency section before adding 'com.google.android.material:material:1.5.0-alpha01'
This is the state of my dependency section after adding 'com.google.android.material:material:1.5.0-alpha01'
添加com.google.android.material:material:1.5.0-alpha01
依赖后,com.android.support:appcompat-v7:23.3.0
报错
我不知道为什么会这样...
清理项目并添加这些库然后同步项目
implementation 'androidx.appcompat:appcompat:1.3.1'
implementation 'com.google.android.material:material:1.4.0'
com.android.support:appcompat-v7:23.3.0
使用 Andrioidx 库更新。
将带有 android 的项目迁移到 androidx,然后您可以添加 material 依赖项。
implementation 'androidx.appcompat:appcompat:1.3.1'
implementation 'com.google.android.material:material:1.4.0'
我想在 android 中将 TabLayout 与 ViewPager 一起使用。
为此,我将此 implementation 'com.google.android.material:material:1.5.0-alpha01'
添加到 app/gradle.build
文件的依赖项部分。
This is the state of my dependency section before adding 'com.google.android.material:material:1.5.0-alpha01'
This is the state of my dependency section after adding 'com.google.android.material:material:1.5.0-alpha01'
添加com.google.android.material:material:1.5.0-alpha01
依赖后,com.android.support:appcompat-v7:23.3.0
报错
我不知道为什么会这样...
清理项目并添加这些库然后同步项目
implementation 'androidx.appcompat:appcompat:1.3.1'
implementation 'com.google.android.material:material:1.4.0'
com.android.support:appcompat-v7:23.3.0
使用 Andrioidx 库更新。
将带有 android 的项目迁移到 androidx,然后您可以添加 material 依赖项。
implementation 'androidx.appcompat:appcompat:1.3.1'
implementation 'com.google.android.material:material:1.4.0'