Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
嗨我的android项目有这个问题如何解决
minSdk(API22) > 设备 Sdk(API21)
在您的应用build.gradle文件中
build.gradle
android { defaultConfig { minSdkVersion 22 /* this defines the lowest API level your app can run on */ } }
请注意,当您减少此数字时,某些功能可能会变得不可用。