Browse Source

buildsystem: add missing targetSdkVersion

So all defaultConfig are defined the same way.
merge-requests/2271/head
Steve Lhomme 1 year ago
parent
commit
b8f869ce9a
  1. 1
      application/resources/build.gradle

1
application/resources/build.gradle

@ -14,6 +14,7 @@ android {
defaultConfig {
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
compileSdk rootProject.ext.compileSdkVersion
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
buildConfigField "String", "APP_ID", "\"${rootProject.ext.appId}\""

Loading…
Cancel
Save