内容简介:依赖旧版本:更新为以下版本:构建时出现错误:
依赖旧版本:
implementation 'androidx.appcompat:appcompat:1.1.0-alpha04' implementation 'androidx.core:core-ktx:1.1.0-alpha05'
更新为以下版本:
implementation 'androidx.appcompat:appcompat:1.1.0-beta01' implementation 'androidx.core:core-ktx:1.2.0-alpha02'
构建时出现错误:
Error: Default interface methods are only supported starting with Android N (--min-api 24): android.view.MenuItem androidx.core.internal.view.SupportMenuItem.setContentDescription(java.lang.CharSequence)
按照以下步骤,先点击 Android Studio 右上角 Project Structure 图标(右二)
在该设置中选择 app 模块,把 Source Compatibility 和 Target Compatibility 均设置为 1.8
当然,也可以手动在 build.gradle(Module:app) 中添加代码:
compileOptions { sourceCompatibility = '1.8' targetCompatibility = '1.8' }
这是添加完成后的效果,继续编译即可
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Numerical Recipes 3rd Edition
William H. Press、Saul A. Teukolsky、William T. Vetterling、Brian P. Flannery / Cambridge University Press / 2007-9-6 / GBP 64.99
Do you want easy access to the latest methods in scientific computing? This greatly expanded third edition of Numerical Recipes has it, with wider coverage than ever before, many new, expanded and upd......一起来看看 《Numerical Recipes 3rd Edition》 这本书的介绍吧!