Skip to content
This repository has been archived by the owner on Feb 11, 2025. It is now read-only.

Commit

Permalink
Update targetSdk to 28
Browse files Browse the repository at this point in the history
  • Loading branch information
s1204IT committed May 14, 2024
1 parent db14290 commit 1ea90e7
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 12 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
*.bat text eol=crlf
*.jar binary
*.jks binary
*.png binary
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
path: |
~/.gradle/caches/
~/.gradle/wrapper/
.gradle/
./.gradle/
key: ${{ hashFiles('gradle/wrapper/gradle-wrapper.properties') }}

- name: Build with Gradle
Expand Down
6 changes: 2 additions & 4 deletions DchaSetupWizard/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ android {
applicationId 'jp.co.benesse.dcha.setupwizard'
minSdk 24
//noinspection ExpiredTargetSdkVersion
targetSdk 24
targetSdk 28
versionCode 1
versionName "1.0.0"
proguardFiles += 'proguard-rules.pro'
Expand All @@ -32,14 +32,12 @@ android {
}

buildTypes {
debug {
minifyEnabled false
configureEach {
signingConfig signingConfigs.android
}
release {
minifyEnabled true
shrinkResources true
signingConfig signingConfigs.android
if (rootProject.file('release.jks').exists()) {
signingConfig signingConfigs.release
}
Expand Down
8 changes: 3 additions & 5 deletions FirmwareUpdate/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ plugins {
}

android {
compileSdk 34
compileSdk 33
buildToolsVersion "30.0.3"

defaultConfig {
applicationId 'com.panasonic.sanyo.ts.firmwareupdate'
minSdk 24
//noinspection ExpiredTargetSdkVersion
targetSdk 24
targetSdk 28
versionCode 1
versionName "1.0.0"
proguardFiles += 'proguard-rules.pro'
Expand All @@ -32,14 +32,12 @@ android {
}

buildTypes {
debug {
minifyEnabled false
configureEach {
signingConfig signingConfigs.android
}
release {
minifyEnabled true
shrinkResources true
signingConfig signingConfigs.android
if (rootProject.file('release.jks').exists()) {
signingConfig signingConfigs.release
}
Expand Down
2 changes: 0 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
org.gradle.configuration-cache=true
org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8
org.gradle.parallel=true

0 comments on commit 1ea90e7

Please sign in to comment.