weibo_kit icon indicating copy to clipboard operation
weibo_kit copied to clipboard

Configure project :weibo_kit One or more plugins require a higher Android SDK version.

Open gujintao1900 opened this issue 3 years ago • 0 comments

https://stackoverflow.com/questions/72664051/android-33-issues-in-manifest-and-layout-files-in-android-studio

log

Configure project :weibo_kit
One or more plugins require a higher Android SDK version.
Fix this issue by adding the following to /***/android/app/build.gradle:
android {
  compileSdkVersion 33
  ...
}

中文

建议和你其他库保持一致,用31或32,目前Adnrdois SDK 缺少 Sources for Android 33 导致主工程切到33后,xml 文件属性会提示 Unknown Attributes

如果要避免33的提示的话,可以在 gradle.properties 文件中加入 android.suppressUnsupportedCompileSdk=33

English

Suggestion use compileSdkVersion 31 or compileSdkVersion 32, currently Android SDK missing Sources for Android 33, so if main project use compileSdkVersion 33 while make some xml file waring eg: Unknown Attributes;

Also you can add android.suppressUnsupportedCompileSdk=33 in gradle.properties file to void build waring;

image

gujintao1900 avatar Aug 01 '22 10:08 gujintao1900