Skip to content

Commit 777865a

Browse files
authored
Downgrade compileSdkVersion to 35 (#37)
* downgrade androidlib compileSdkVersion to 35 * bump thermal to v2.0.2 and storage to v1.0.2
1 parent 5206321 commit 777865a

10 files changed

Lines changed: 20 additions & 12 deletions

File tree

Android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ plugins {
33
}
44

55
android {
6-
compileSdkVersion 36
6+
compileSdkVersion 35
77

88
defaultConfig {
99
applicationId "jp.co.cyberagent.unitysupport.app"
1010
minSdk 21
11-
targetSdk 36
11+
targetSdk 35
1212
versionCode 1
1313
versionName "1.0"
1414

Packages/MobileSupportStorage/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Release notes
22

3+
## v1.0.2 - 2025/10/17
4+
5+
- Bug Fixes :bug:
6+
- Android: downgraded library's `compileSdkVersion` to 35 to reduce unnecessary SDK upgrades
7+
38
## v1.0.1 - 2025/10/14
49

510
- Bug Fixes :bug:

Packages/MobileSupportStorage/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ Or, open `Packages/manifest.json` and add the following to the dependencies bloc
5858

5959
If you want to set the target version, write as follows.
6060

61-
- https://github.com/CyberAgentGameEntertainment/UnityMobileSupport.git?path=/Packages/MobileSupportStorage#storage/1.0.1
61+
- https://github.com/CyberAgentGameEntertainment/UnityMobileSupport.git?path=/Packages/MobileSupportStorage#storage/1.0.2
6262

6363
Note that if you get a message like `No 'git' executable was found. Please install Git on your system and restart Unity`, you will need to set up Git on your machine.
6464

Packages/MobileSupportStorage/Runtime/Plugins/Android/MobileSupportStorage.androidlib/build.gradle

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,10 @@ plugins {
33
}
44

55
android {
6-
compileSdkVersion 36
6+
compileSdkVersion 35
77

88
defaultConfig {
99
minSdkVersion 19
10-
targetSdkVersion 33
1110
}
1211

1312
buildTypes {

Packages/MobileSupportStorage/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "jp.co.cyberagent.unity-mobile-support-storage",
33
"displayName": "Mobile Support - Storage",
4-
"version": "1.0.1",
4+
"version": "1.0.2",
55
"unity": "2019.4",
66
"description": "Tools to support storage of mobile like iOS/Android.",
77
"keywords": [

Packages/MobileSupportThermal/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Release notes
22

3+
## v2.0.2 - 2025/10/17
4+
5+
- Bug Fixes :bug:
6+
- Android: downgraded library's `compileSdkVersion` to 35 to reduce unnecessary SDK upgrades
7+
38
## v2.0.1 - 2025/10/14
49

510
- Bug Fixes :bug:

Packages/MobileSupportThermal/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ Or, open `Packages/manifest.json` and add the following to the dependencies bloc
8989

9090
If you want to set the target version, write as follows.
9191

92-
- https://github.com/CyberAgentGameEntertainment/UnityMobileSupport.git?path=/Packages/MobileSupportThermal#thermal/2.0.1
92+
- https://github.com/CyberAgentGameEntertainment/UnityMobileSupport.git?path=/Packages/MobileSupportThermal#thermal/2.0.2
9393

9494
Note that if you get a message like `No 'git' executable was found. Please install Git on your system and restart Unity`, you will need to set up Git on your machine.
9595

Packages/MobileSupportThermal/Runtime/Plugins/Android/MobileSupportThermal.androidlib/build.gradle

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,10 @@ plugins {
33
}
44

55
android {
6-
compileSdkVersion 36
6+
compileSdkVersion 35
77

88
defaultConfig {
99
minSdkVersion 19
10-
targetSdkVersion 33
1110
}
1211

1312
buildTypes {

Packages/MobileSupportThermal/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "jp.co.cyberagent.unity-mobile-support-thermal",
33
"displayName": "Mobile Support - Thermal",
4-
"version": "2.0.1",
4+
"version": "2.0.2",
55
"unity": "2019.4",
66
"description": "Tools to support thermal of mobile like iOS/Android.",
77
"keywords": [

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Scripts ars split into multiple packages, so choose packages what you only need.
77

88
| Package | Description | Latest Version | Readme Link | Changelog Link |
99
|-------------|------------------------------------------------------|----------------|----------------------------------------------------------|----------------------------------------------------------------|
10-
| Storage | Functions to retrive information about storage | v1.0.1 | [README.md](Packages/MobileSupportStorage/README.md) | [CHANGELOG.md](Packages/MobileSupportStorage/CHANGELOG.md) |
11-
| Thermal | Functions to retrive information about thermal | v2.0.1 | [README.md](Packages/MobileSupportThermal/README.md) | [CHANGELOG.md](Packages/MobileSupportThermal/CHANGELOG.md) |
10+
| Storage | Functions to retrive information about storage | v1.0.2 | [README.md](Packages/MobileSupportStorage/README.md) | [CHANGELOG.md](Packages/MobileSupportStorage/CHANGELOG.md) |
11+
| Thermal | Functions to retrive information about thermal | v2.0.2 | [README.md](Packages/MobileSupportThermal/README.md) | [CHANGELOG.md](Packages/MobileSupportThermal/CHANGELOG.md) |
1212
| AndroidGame | Functions to integrate with Android GameManager APIs | v1.1.0 | [README.md](Packages/MobileSupportAndroidGame/README.md) | [CHANGELOG.md](Packages/MobileSupportAndroidGame/CHANGELOG.md) |
1313
| QualityTuner | Package to get hardware specs and tool to decide quality level | v1.3.0 | [README.md](Packages/MobileSupportQualityTuner/README.md) | [CHANGELOG.md](Packages/MobileSupportQualityTuner/CHANGELOG.md) |

0 commit comments

Comments
 (0)