For legacy10 APEXes default target_sdk_version and min_sdk_version to 29
Test: m com.android.conscrypt
Bug: 149733822
Change-Id: Ia863b5701716ef4022b470ee758368ea4fffb1d4
Merged-In: Ia863b5701716ef4022b470ee758368ea4fffb1d4
(cherry picked from commit db10c13bdf
)
This commit is contained in:
parent
f9f6a91376
commit
5d600c9169
|
@ -383,6 +383,16 @@ func (a *apexBundle) buildUnflattenedApex(ctx android.ModuleContext) {
|
|||
|
||||
targetSdkVersion := ctx.Config().DefaultAppTargetSdk()
|
||||
minSdkVersion := ctx.Config().DefaultAppTargetSdk()
|
||||
|
||||
if proptools.Bool(a.properties.Legacy_android10_support) {
|
||||
if !java.UseApiFingerprint(ctx, targetSdkVersion) {
|
||||
targetSdkVersion = "29"
|
||||
}
|
||||
if !java.UseApiFingerprint(ctx, minSdkVersion) {
|
||||
minSdkVersion = "29"
|
||||
}
|
||||
}
|
||||
|
||||
if java.UseApiFingerprint(ctx, targetSdkVersion) {
|
||||
targetSdkVersion += fmt.Sprintf(".$$(cat %s)", java.ApiFingerprintPath(ctx).String())
|
||||
implicitInputs = append(implicitInputs, java.ApiFingerprintPath(ctx))
|
||||
|
|
Loading…
Reference in New Issue