I have Updated my Android Studio to 2.2.2 and installed Latest SDK. Now Build tools version is 25.0.0, but when I tried creating a new project, in minimum SDK section there is no API level 8 (Froyo) option.
Also I tried importing my project which having minSdkVersion 8, but it is giving me the error : "uses-sdk:minSdkVersion 8 cannot be smaller than version 9 declared in library [com.android.support:appcompat-v7:25.0.0]" and it suggest me to use tools:overrideLibrary="android.support.v7.appcompat" to force usage
So does it mean, from now on the latest appCompat-v7 will no longer support API 8? I know I can develop for the API 8 using lower versions of appCompat-v7 and build tools but isn't there any way to use this latest library(s) for API 8 (without overriding appCompat-v7:25.0.0).
Please correct me if I am doing anything wrong.