Open
Conversation
.gitignoreの更新、Avaloniaを使用したAndroidおよびiOSアプリケーションのエントリポイントを追加しました。新しいアイコンファイルを追加し、スプラッシュスクリーンやアプリケーションテーマの設定を行いました。また、プロジェクト設定や必要なパッケージ参照を追加し、ビルド構成を更新しました。
`AndroidManifest.xml` でアプリケーションのラベルを「AvaloniaTest」から「OpenUtau」に変更し、アイコンを `@drawable/Icon` から `@drawable/icon` に更新しました。また、以下の新しいパーミッションを追加しました: - `MANAGE_DOCUMENTS` - `MANAGE_EXTERNAL_STORAGE` - `MANAGE_MEDIA` - `MEDIA_CONTENT_CONTROL` - `MODIFY_AUDIO_SETTINGS` - `READ_MEDIA_AUDIO` - `READ_MEDIA_IMAGES` - `READ_MEDIA_VIDEO` - `READ_MEDIA_VISUAL_USER_SELECTED` `splash_screen.xml` では、アイテムの幅と高さを120dpから200dpに変更しました。 `Icon.png` はバイナリファイルで、内容が異なります。
OpenUtau.Android.csproj でアプリケーションIDを `com.OpenUtau` に変更し、バージョンを更新しました。`Xamarin.AndroidX.Core.SplashScreen` のバージョンを `1.0.1.14` に上げ、プロジェクト参照を `OpenUtau.App.csproj` に変更しました。Androidネイティブライブラリの参照も追加されました。 OpenUtau.Core.csproj ではターゲットフレームワークを `netstandard2.1;net8.0-android34.0` に変更し、Android用のパッケージ参照を追加しました。 OpenUtau.Desktop.csproj、OpenUtau.Test.csproj、OpenUtau.iOS.csproj でもプロジェクト参照を `OpenUtau.App.csproj` に変更しました。 OpenUtau.App.csproj ではターゲットフレームワークを `net8.0;net8.0-android34.0` に変更し、プラットフォームを `AnyCPU;x64` に設定しました。
OpenUtauからOpenUtau.Desktopへの変更 `build.yml`と`pr-test.yml`ファイルで、テスト、パブリッシュ、Dmg作成の各ステップにおいて、対象プロジェクトを`OpenUtau`から`OpenUtau.Desktop`に変更しました。これにより、デスクトップ版のビルドプロセスが適切に反映されるようになります。
`dotnet restore` コマンドの対象を `OpenUtau.Desktop/OpenUtau.Desktop.csproj` から `OpenUtau.Desktop` に変更しました。これにより、プロジェクトのルートディレクトリでの依存関係の復元が行われるようになります。
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
dotnet restoreコマンドの対象をOpenUtau.Desktop/OpenUtau.Desktop.csprojからOpenUtau.Desktopに変更しました。これにより、プロジェクトのルートディレクトリでの依存関係の復元が行われるようになります。