File tree Expand file tree Collapse file tree 6 files changed +33
-12
lines changed
Sample/src/full/java/com/live2d/demo/full Expand file tree Collapse file tree 6 files changed +33
-12
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,15 @@ All notable changes to this project will be documented in this file.
55The 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
Original file line number Diff line number Diff line change @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
55The 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
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
9394This 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
Original file line number Diff line number Diff 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 ()
You can’t perform that action at this time.
0 commit comments