How can I access the documentation of Android APIs other than the current one?
My specific problem: I develop an Android app with minSdkVersion
== 23 and targetSdkVersion
~= the current API version. The app accesses some content providers (e.g., Telephony.Sms
) which have changed significantly over Android's history, with some columns added and others removed. The documentation for the current API version is readily available (e.g., here), but I need the documentation for the earlier API versions (from 23).
I have searched the web, but I just can't figure out how to access this earlier documentation in a straightforward way. I suppose I could use the Wayback Machine, or trawl through the Android source code version control, but surely there's an easier way to find this documentation?
Update: the Wayback Machine isn't helping; its earliest copies of the pages in question are from 2019, which is far too late in Android version history to be useful.