Skip to content

Commit

Permalink
[Android] Update plugin and module templates to use Flutter constant …
Browse files Browse the repository at this point in the history
…for `compileSdkVersion` (#128073)

Updates plugin and module templates to use Flutter constant for `compileSdkVersion`.
  • Loading branch information
camsim99 committed Jun 6, 2023
1 parent 0e1056f commit 2eef936
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -19,7 +19,7 @@ if (flutterVersionName == null) {
apply plugin: "com.android.dynamic-feature"

android {
compileSdkVersion 31
compileSdkVersion flutter.compileSdkVersion

compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
Expand Down
Expand Up @@ -29,7 +29,7 @@ android {
namespace '{{androidIdentifier}}'
}

compileSdkVersion 31
compileSdkVersion {{compileSdkVersion}}

compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
Expand Down

0 comments on commit 2eef936

Please sign in to comment.