Skip to content

Commit

Permalink
CHANGE deprecated sdk versions
Browse files Browse the repository at this point in the history
update-gradle
  • Loading branch information
ninovanhooff committed Dec 24, 2024
1 parent 3155d30 commit 7f39cc4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ android {
}
// since this is just a demo app, we don't need a release config for the Play Store
}
compileSdk compile_sdk_version

defaultConfig {
applicationId "com.q42.q42stats.sample"
minSdkVersion min_sdk_version
targetSdkVersion compile_sdk_version
compileSdk compile_sdk_version
minSdk min_sdk_version
targetSdk compile_sdk_version
versionCode 1
versionName "1.0"

Expand All @@ -47,7 +47,7 @@ android {
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}

flavorDimensions "distribution"
flavorDimensions = ["distribution"]

productFlavors {
local {
Expand Down
6 changes: 3 additions & 3 deletions q42stats/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ group = 'com.github.Q42'

android {
namespace = "com.q42.q42stats.library"
compileSdkVersion compile_sdk_version

defaultConfig {
minSdkVersion min_sdk_version
targetSdkVersion compile_sdk_version
compileSdk compile_sdk_version
minSdk min_sdk_version
targetSdk compile_sdk_version

buildConfigField("String", "LIB_BUILD_DATE", '"' + new SimpleDateFormat("yyyy-MM-dd").format(Calendar.getInstance().getTime()) + '"')

Expand Down

0 comments on commit 7f39cc4

Please sign in to comment.