Skip to content

Commit

Permalink
Update r8 min sdk version to 19
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 596676516
Change-Id: I0c60aa371c9ee99d27e47e5b75480e881b5e9da2
  • Loading branch information
cushon authored and copybara-github committed Jan 8, 2024
1 parent 3d23951 commit d5577e6
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ public static class Options extends OptionsBase {

@Option(
name = "min-sdk-version",
defaultValue = "13", // Same as Constants.MIN_API_LEVEL.
defaultValue = "19", // Same as Constants.MIN_API_LEVEL.
documentationCategory = OptionDocumentationCategory.UNCATEGORIZED,
effectTags = {OptionEffectTag.UNKNOWN},
allowMultiple = false,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public class Constants {
// When changing this also change the defaultValue for min-sdk-version in CompatDx.java,
// CoreLibraryDesugaring and Desugar.java. The defaultValue for annotation parameters must be
// compile time constants, and a "public final String" value is rejected.
public static final int MIN_API_LEVEL = 13;
public static final int MIN_API_LEVEL = 19;

private Constants() {}
}
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ public static class DesugarOptions extends OptionsBase {

@Option(
name = "min_sdk_version",
defaultValue = "13", // Same as Constants.MIN_API_LEVEL.
defaultValue = "19", // Same as Constants.MIN_API_LEVEL.
category = "misc",
documentationCategory = OptionDocumentationCategory.UNCATEGORIZED,
effectTags = {OptionEffectTag.UNKNOWN},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ public static class DesugarOptions extends OptionsBase {

@Option(
name = "min_sdk_version",
defaultValue = "13", // Same as Constants.MIN_API_LEVEL.
defaultValue = "19", // Same as Constants.MIN_API_LEVEL.
category = "misc",
documentationCategory = OptionDocumentationCategory.UNCATEGORIZED,
effectTags = {OptionEffectTag.UNKNOWN},
Expand Down

0 comments on commit d5577e6

Please sign in to comment.