Skip to content

Commit

Permalink
Fix: versionVersionGetを修正
Browse files Browse the repository at this point in the history
  • Loading branch information
sevenc-nanashi committed Mar 31, 2024
1 parent 3448636 commit a941a68
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
3 changes: 2 additions & 1 deletion android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@ android {
ndkVersion '25.2.9519653'
namespace 'jp.hiroshiba.voicevox'

compileSdkVersion rootProject.ext.compileSdkVersion
defaultConfig {
compileSdk rootProject.ext.compileSdkVersion

applicationId "jp.hiroshiba.voicevox"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
Expand Down
3 changes: 1 addition & 2 deletions src/backend/mobile/engine/info.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@ const infoProvider: ApiProvider = ({ corePlugin }) => {

return {
async versionVersionGet() {
// 何故か""で囲まれているのを再現。直ったら消す。
return JSON.stringify(corePlugin.getVersion());
return await corePlugin.getVersion().then((res) => res.value);
},
async engineManifestEngineManifestGet() {
if (!engineManifest) {
Expand Down

0 comments on commit a941a68

Please sign in to comment.