Home | History | Annotate | Download | only in apk

Lines Matching defs:minSdkVersion

312      * Android resource ID of the {@code android:minSdkVersion} attribute in AndroidManifest.xml.
334 // declares the minimum supported platform version using the android:minSdkVersion attribute
336 // For each encountered uses-sdk element, the Android runtime checks that its minSdkVersion
338 // effective minSdkVersion value is the maximum over the encountered minSdkVersion values.
352 // In each uses-sdk element, minSdkVersion defaults to 1
353 int minSdkVersion = 1;
359 minSdkVersion = parser.getAttributeIntValue(i);
362 minSdkVersion =
371 + " minSdkVersion"
377 result = Math.max(result, minSdkVersion);
479 + "'s minSdkVersion: \"" + codename + "\"",