嗨,我有问题运行我的Android应用程序...下面是错误的一个ss:enter image description here
cx6n0qe31#
在您的build.gradle文件中“dependencies”部分粘贴以下内容:
implementation 'androidx.appcompat:appcompat:1.4.1' implementation 'com.google.android.material:material:1.6.0'
并删除具有相同文本和其他数字版本的旧字符串。(在我的示例中:
implementation 'androidx.appcompat:appcompat:1.5.1' implementation 'com.google.android.material:material:1.7.0'
).为我工作过。来源:https://github.com/facebook/react-native/issues/33926
djmepvbi2#
那是由1.7.0引起的:
1.7.0
implementation 'com.google.android.material:material:1.7.0'
你最好坚持1.6.0直到他们解决这个问题
1.6.0
implementation 'com.google.android.material:material:1.6.0'
fjaof16o3#
我通过在build.gradle(:app)中替换implementation 'androidx.recyclerview:recyclerview:1.2.1'而不是implementation 'com.google.android.material:material:1.7.0'来解决此问题
build.gradle(:app)
implementation 'androidx.recyclerview:recyclerview:1.2.1'
wlp8pajw4#
实现'androidx.应用程序兼容性:应用程序兼容性:1.4.1'实现'com.谷歌.android.材料:材料:1.6.0'这工程检查!
ttp71kqs5#
在build.gradle(:应用程序)中,更新,compileSdk和targetSdk到33帮助了我(从32)。
5条答案
按热度按时间cx6n0qe31#
在您的build.gradle文件中“dependencies”部分粘贴以下内容:
并删除具有相同文本和其他数字版本的旧字符串。(在我的示例中:
).为我工作过。
来源:https://github.com/facebook/react-native/issues/33926
djmepvbi2#
那是由
1.7.0
引起的:你最好坚持
1.6.0
直到他们解决这个问题fjaof16o3#
我通过在
build.gradle(:app)
中替换implementation 'androidx.recyclerview:recyclerview:1.2.1'
而不是implementation 'com.google.android.material:material:1.7.0'
来解决此问题wlp8pajw4#
实现'androidx.应用程序兼容性:应用程序兼容性:1.4.1'实现'com.谷歌.android.材料:材料:1.6.0'这工程检查!
ttp71kqs5#
在build.gradle(:应用程序)中,
更新,compileSdk和targetSdk到33帮助了我(从32)。