I am using Android Library Project. I have set my library project build target to say 11 to use api 11 and to have forward compatibility and I am putting check for min sdk version so that app will not crash when run on os < 11
My other projects have build target set to 8 so I want to know is it the correct way to set library project build version higher than the projects with lower build target going to use it?
right now I haven't observed any crash. Just wanted to know can the library with higher build version be used in projects with lower build sdk version than library.
Thanks in advance.:)