Skip to content

Commit

Permalink
Sora にパッケージ名を変更
Browse files Browse the repository at this point in the history
  • Loading branch information
tnoho committed Feb 27, 2024
1 parent 2d5ec72 commit 4992738
Show file tree
Hide file tree
Showing 27 changed files with 9 additions and 9 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
}

android {
namespace 'jp.shiguredo.sora.audiomanager'
namespace 'jp.shiguredo.sora'
compileSdk 34

defaultConfig {
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ dependencyResolutionManagement {
}
}

rootProject.name = "SoraAudioManager"
include(":SoraAudioManager")
rootProject.name = "Sora"
include(":Sora")
10 changes: 5 additions & 5 deletions run.py
Original file line number Diff line number Diff line change
Expand Up @@ -1728,12 +1728,12 @@ def main():
os.path.join(install_dir, 'sora', 'lib', 'libsora.a'))

if platform.target.os == 'android':
# Android の場合のみ SoraAudioManager をビルドする
with cd(os.path.join(BASE_DIR, 'android', 'SoraAudioManager')):
# Android の場合のみライブラリをビルドする
with cd(os.path.join(BASE_DIR, 'android', 'Sora')):
cmd(['./gradlew', '--no-daemon', 'assembleRelease'])
shutil.copyfile(os.path.join(BASE_DIR, 'android', 'SoraAudioManager', 'SoraAudioManager',
'build', 'outputs', 'aar', 'SoraAudioManager-release.aar'),
os.path.join(install_dir, 'sora', 'lib', 'SoraAudioManager.aar'))
shutil.copyfile(os.path.join(BASE_DIR, 'android', 'Sora', 'Sora',
'build', 'outputs', 'aar', 'Sora-release.aar'),
os.path.join(install_dir, 'sora', 'lib', 'Sora.aar'))

if args.test:
if platform.target.os == 'ios':
Expand Down

0 comments on commit 4992738

Please sign in to comment.