Changing android:minSdkVersion Has No Effect

goldsexygirl

New Member
I am developing an Android app using eclipse. When I try to run my project I get the error \[code\]Call requires API level 13 (current min is 8): android.view.Display#getSize\[/code\] which refers to the line \[code\]display.getSize(size);\[/code\].So in the AndroidManifest.xml I made the following change:\[code\]<uses-sdkandroid:minSdkVersion="13"android:targetSdkVersion="17" />\[/code\]However when I try running the project again, I still get the same error. The target SDK is \[code\]Android 4.0\[/code\]. Does anyone know what is causing this error?
 
Back
Top