AppCompat V7 最新版本 API 10

AppCompatV7 newest version for API 10

我要开发一个 android APP,最小 API = 10。 目前我的构建工具提供 com.android.support:appcompat-v7:27.1.1,其最小 API 级别等于 14。 哪个是 appcompat-v7 的最新版本,它可以 运行 在我的旧 API 10 上? 我找不到合适的参考资料。

支持库的最低 SDK was raised to 14 with 26.0.0

更改之前的最高版本是 25.4.0

基于documentation

Support Library packages have package names to indicate the minimum level of the API they originally supported, using a v# notation, such as the support-v4 package. Starting with Support Library version 26.0.0 (released in July 2017), the minimum supported API level has changed to Android 4.0 (API level 14) for all support library packages.

The support-v4 and the support-v7 package both support a minimum API level of 14, for releases of the Support Library from 26.0.0 and higher

您需要先于 26.0.0 使用 25.4.0 版本。您可以参考详尽的版本列表 here.

请注意以下几点:

The release version level of the support library indicates it incorporates some features of that API level, but you should not assume it provides compatibility with all features released in the new platform API version.

修订版 26.0.0 发布 (2017 年 7 月)

Caution: Starting with Support Library release 26.0.0 (July 2017), the minimum supported API level across most support libraries has increased to Android 4.0 (API level 14) for most library packages. For more information, see Version Support and Package Names in this document.

因此您应该使用低于 26.0.0 的版本来实现您想要的 want.Thanks!