Skip to content Skip to sidebar Skip to footer

"no Resource Found" Errors When Building App

I'd like to migrate my Eclipse project to Android Studio. I used to build the project with minSdkVersion=8, but I want to add new functionality that requires minSdkVersion 10. I'm

Solution 1:

The cause - and solution - to the problem is due to incompatibility with between my specified minSdkVersion and the app-compat library, as described here.

Solution 2:

Just change the minSdkVersion to 'XX' sync the gradle. The concept is better explained in the below link.

compileSdkVersion 23
minSdkVersion 10
targetSdkVersion 23

https://medium.com/google-developers/picking-your-compilesdkversion-minsdkversion-targetsdkversion-a098a0341ebd?linkId=20147489#.o6ctvrkgj

Post a Comment for ""no Resource Found" Errors When Building App"