Thanks.
If incorporating the line below in the manifest makes the app Android L compliant, then that is easy enough. But my only gripe is, it turns background of most controls into grey.
I have preference for the old look ie white background for textboxes, dropdown boxes, list etc. Is there something that I can do to preserve the old look and still make the app Lollipop compliant.
SetApplicationAttribute(android:theme, "@android:style/Theme.Holo.Light")
I also notice that the app runs a lot slower especially when reading large data from a file when I use
<uses-sdk android:minSdkVersion="4" android:targetSdkVersion="14"/>
Prior to that I was using just. What could be the cause?
<uses-sdk android:minSdkVersion="4" />