Home | History | Annotate | Download | only in apksig

Lines Matching defs:minSdkVersion

108             Integer minSdkVersion,
124 mMinSdkVersion = minSdkVersion;
247 int minSdkVersion;
249 // No need to extract minSdkVersion from the APK's AndroidManifest.xml
250 minSdkVersion = mMinSdkVersion;
252 // Need to extract minSdkVersion from the APK's AndroidManifest.xml
253 minSdkVersion = getMinSdkVersionFromApk(inputCdRecords, inputApkLfhSection);
266 new DefaultApkSignerEngine.Builder(engineSignerConfigs, minSdkVersion)
735 * on the {@code android:minSdkVersion} attributes of the APK's {@code AndroidManifest.xml}.
1004 * behavior where the minimum API Level is obtained from the {@code android:minSdkVersion}
1016 public Builder setMinSdkVersion(int minSdkVersion) {
1018 mMinSdkVersion = minSdkVersion;