Skip to content

Commit 6639d66

Browse files
Merge pull request #16 from Live2D/develop
Update to Cubism 5 SDK for Java R4_1
2 parents fe0e1d0 + 6890728 commit 6639d66

File tree

6 files changed

+33
-12
lines changed

6 files changed

+33
-12
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,15 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
66

77

8+
## [5-r.4.1] - 2025-07-17
9+
10+
### Changed
11+
12+
* Implement support for Android 16KB page size.
13+
* See `CHANGELOG.md` in Core.
14+
* Change audio attribute to be played from `USAGE_VOICE_COMMUNICATION` to `USAGE_GAME`.
15+
16+
817
## [5-r.4] - 2025-05-15
918

1019
### Added
@@ -190,6 +199,7 @@ Also adjust the return value of the getSpriteAlpha function.
190199
* New released!
191200

192201

202+
[5-r.4.1]: https://github.com/Live2D/CubismJavaSamples/compare/5-r.4...5-r.4.1
193203
[5-r.4]: https://github.com/Live2D/CubismJavaSamples/compare/5-r.3...5-r.4
194204
[5-r.3]: https://github.com/Live2D/CubismJavaSamples/compare/5-r.2...5-r.3
195205
[5-r.2]: https://github.com/Live2D/CubismJavaSamples/compare/5-r.1...5-r.2

Core/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
66

77

8+
## 2025-07-17
9+
10+
### Changed
11+
12+
* [Unity,Native,Java] Implement support for Android 16KB page size.
13+
14+
815
## 2025-04-24
916

1017
### Added

Framework

README.ja.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ Core : [CHANGELOG.md](Core/CHANGELOG.md)
7171

7272
| 開発ツール | バージョン |
7373
|----------------|------------------|
74-
| Android Studio | Meerkat Feature Drop 2024.3.2 |
74+
| Android Studio | Narwhal 2025.1.1 Patch 1 |
7575
| Gradle | 8.7 |
7676
| Android Gradle Plugin | 8.6.1 |
7777
| Gradle JDK | 21.0.7 |
@@ -85,12 +85,14 @@ Core : [CHANGELOG.md](Core/CHANGELOG.md)
8585

8686
### Android
8787

88-
| バージョン | デバイス | エミュレーター |
89-
|-------|----------|:-------:|
90-
| 15 | Pixel 7a | |
91-
| 5.0 | Pixel 7a ||
88+
| バージョン | デバイス | エミュレーター | 16KBページサイズ *1 |
89+
|-------|----------|:-------:|:-------:|
90+
| 16 | Pixel 9 | | ✔︎ |
91+
| 15 | Pixel 7a | | |
92+
| 5.0 | Pixel 7a || |
9293

9394
本サンプルアプリケーションは**Android API 21**以上のAndroidバージョンで動作します。
95+
*1 開発者向けオプションを使用して有効にした環境となります
9496

9597
## プロジェクトへの貢献
9698

README.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ Core : [CHANGELOG.md](Core/CHANGELOG.md)
7171

7272
| Development Tools | Version |
7373
|-------------------|--|
74-
| Android Studio | Meerkat Feature Drop 2024.3.2 |
74+
| Android Studio | Narwhal 2025.1.1 Patch 1 |
7575
| Gradle | 8.7 |
7676
| Android Gradle Plugin | 8.6.1 |
7777
| Gradle JDK | 21.0.7 |
@@ -85,12 +85,14 @@ This sample application runs with **Java SE 7** or higher Java versions.
8585

8686
### Android
8787

88-
| Version | Device | Emulator |
89-
|---------|----------|:--------:|
90-
| 15 | Pixel 7a | |
91-
| 5.0 | Pixel 7a ||
88+
| Version | Device | Emulator | 16KB page sizes *1 |
89+
|---------|----------|:--------:|:--------:|
90+
| 16 | Pixel 9 | | ✔︎ |
91+
| 15 | Pixel 7a | | |
92+
| 5.0 | Pixel 7a || |
9293

9394
This sample application runs with **Android API 21** or higher Android versions.
95+
*1 This environment has been enabled using developer options.
9496

9597
## Contributing
9698

Sample/src/full/java/com/live2d/demo/full/LAppWavFileHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public void loadWavFile() {
5757
AudioTrack audioTrack;
5858
audioTrack = new AudioTrack.Builder()
5959
.setAudioAttributes(new AudioAttributes.Builder()
60-
.setUsage(AudioAttributes.USAGE_VOICE_COMMUNICATION)
60+
.setUsage(AudioAttributes.USAGE_GAME)
6161
.setContentType(AudioAttributes.CONTENT_TYPE_SPEECH)
6262
.build())
6363
.setAudioFormat(new AudioFormat.Builder()

0 commit comments

Comments
 (0)