Full Code of maotoumao/MusicFree for AI

master 42fdbd67955e cached
371 files
1.3 MB
349.5k tokens
950 symbols
1 requests
Download .txt
Showing preview only (1,470K chars total). Download the full file or copy to clipboard to get everything.
Repository: maotoumao/MusicFree
Branch: master
Commit: 42fdbd67955e
Files: 371
Total size: 1.3 MB

Directory structure:
gitextract_hqly39f3/

├── .bundle/
│   └── config
├── .commitlintrc.json
├── .eslintignore
├── .eslintrc.js
├── .github/
│   ├── ISSUE_TEMPLATE/
│   │   ├── bug_report_zh.yaml
│   │   ├── config.yml
│   │   └── feature_request_zh.yaml
│   └── workflows/
│       └── build-beta.yml
├── .gitignore
├── .husky/
│   ├── commit-msg
│   └── pre-commit
├── .prettierrc.js
├── .watchmanconfig
├── Gemfile
├── LICENSE
├── android/
│   ├── app/
│   │   ├── build.gradle
│   │   ├── debug.keystore
│   │   ├── proguard-rules.pro
│   │   └── src/
│   │       ├── debug/
│   │       │   └── AndroidManifest.xml
│   │       └── main/
│   │           ├── AndroidManifest.xml
│   │           ├── java/
│   │           │   └── fun/
│   │           │       └── upup/
│   │           │           └── musicfree/
│   │           │               ├── MainActivity.kt
│   │           │               ├── MainApplication.kt
│   │           │               ├── lyricUtil/
│   │           │               │   ├── LyricUtilModule.kt
│   │           │               │   ├── LyricUtilPackage.kt
│   │           │               │   └── LyricView.kt
│   │           │               ├── mp3Util/
│   │           │               │   ├── Mp3UtilModule.kt
│   │           │               │   └── Mp3UtilPackage.kt
│   │           │               └── utils/
│   │           │                   ├── UtilsModule.kt
│   │           │                   └── UtilsPackage.kt
│   │           └── res/
│   │               ├── drawable/
│   │               │   ├── rn_edit_text_material.xml
│   │               │   └── splashscreen.xml
│   │               ├── mipmap-anydpi-v26/
│   │               │   ├── ic_launcher.xml
│   │               │   └── ic_launcher_round.xml
│   │               └── values/
│   │                   ├── colors.xml
│   │                   ├── ic_launcher_background.xml
│   │                   ├── strings.xml
│   │                   └── styles.xml
│   ├── build.gradle
│   ├── gradle/
│   │   └── wrapper/
│   │       ├── gradle-wrapper.jar
│   │       └── gradle-wrapper.properties
│   ├── gradle.properties
│   ├── gradlew
│   ├── gradlew.bat
│   └── settings.gradle
├── app.json
├── babel.config.js
├── changelog.md
├── generator/
│   └── generate-assets.mjs
├── index.js
├── ios/
│   ├── .xcode.env
│   ├── MusicFree/
│   │   ├── AppDelegate.h
│   │   ├── AppDelegate.mm
│   │   ├── Images.xcassets/
│   │   │   ├── AppIcon.appiconset/
│   │   │   │   └── Contents.json
│   │   │   └── Contents.json
│   │   ├── Info.plist
│   │   ├── LaunchScreen.storyboard
│   │   ├── PrivacyInfo.xcprivacy
│   │   └── main.m
│   ├── MusicFree.xcodeproj/
│   │   ├── project.pbxproj
│   │   └── xcshareddata/
│   │       └── xcschemes/
│   │           └── MusicFreeNew.xcscheme
│   ├── MusicFreeTests/
│   │   ├── Info.plist
│   │   └── MusicFreeNewTests.m
│   └── Podfile
├── jest.config.js
├── metro.config.js
├── package.json
├── readme-en.md
├── readme.md
├── release/
│   └── version.json
├── src/
│   ├── components/
│   │   ├── base/
│   │   │   ├── SortableFlatList.tsx
│   │   │   ├── appBar.tsx
│   │   │   ├── button.tsx
│   │   │   ├── checkbox.tsx
│   │   │   ├── chip.tsx
│   │   │   ├── colorBlock.tsx
│   │   │   ├── divider.tsx
│   │   │   ├── empty.tsx
│   │   │   ├── fab.tsx
│   │   │   ├── fastImage.tsx
│   │   │   ├── horizontalSafeAreaView.tsx
│   │   │   ├── icon.tsx
│   │   │   ├── iconButton.tsx
│   │   │   ├── iconTextButton.tsx
│   │   │   ├── image.tsx
│   │   │   ├── imageBtn.tsx
│   │   │   ├── input.tsx
│   │   │   ├── linkText.tsx
│   │   │   ├── listEmpty.tsx
│   │   │   ├── listFooter.tsx
│   │   │   ├── listItem.tsx
│   │   │   ├── loading.tsx
│   │   │   ├── noPlugin.tsx
│   │   │   ├── pageBackground.tsx
│   │   │   ├── paragraph.tsx
│   │   │   ├── playAllBar.tsx
│   │   │   ├── portal.tsx
│   │   │   ├── statusBar.tsx
│   │   │   ├── switch.tsx
│   │   │   ├── tag.tsx
│   │   │   ├── textButton.tsx
│   │   │   ├── themeText.tsx
│   │   │   ├── tip.tsx
│   │   │   ├── toast.tsx
│   │   │   ├── typeTag.tsx
│   │   │   └── verticalSafeAreaView.tsx
│   │   ├── debug/
│   │   │   └── index.tsx
│   │   ├── dialogs/
│   │   │   ├── components/
│   │   │   │   ├── base/
│   │   │   │   │   └── index.tsx
│   │   │   │   ├── checkStorage.tsx
│   │   │   │   ├── downloadDialog.tsx
│   │   │   │   ├── editSheetDetail.tsx
│   │   │   │   ├── index.ts
│   │   │   │   ├── loadingDialog.tsx
│   │   │   │   ├── markdownDialog.tsx
│   │   │   │   ├── radioDialog.tsx
│   │   │   │   ├── setScheduleCloseTimeDialog.tsx
│   │   │   │   ├── simpleDialog.tsx
│   │   │   │   └── subscribePluginDialog.tsx
│   │   │   ├── index.tsx
│   │   │   └── useDialog.ts
│   │   ├── errorBoundary/
│   │   │   └── index.tsx
│   │   ├── mediaItem/
│   │   │   ├── LyricItem.tsx
│   │   │   ├── albumItem.tsx
│   │   │   ├── musicItem.tsx
│   │   │   ├── sheetItem.tsx
│   │   │   ├── titleAndTag.tsx
│   │   │   └── topListItem.tsx
│   │   ├── musicBar/
│   │   │   ├── index.tsx
│   │   │   └── musicInfo.tsx
│   │   ├── musicList/
│   │   │   └── index.tsx
│   │   ├── musicSheetPage/
│   │   │   ├── components/
│   │   │   │   ├── header.tsx
│   │   │   │   ├── navBar.tsx
│   │   │   │   └── sheetMusicList.tsx
│   │   │   └── index.tsx
│   │   └── panels/
│   │       ├── base/
│   │       │   ├── panelBase.tsx
│   │       │   ├── panelFullscreen.tsx
│   │       │   └── panelHeader.tsx
│   │       ├── index.tsx
│   │       ├── types/
│   │       │   ├── addToMusicSheet.tsx
│   │       │   ├── associateLrc.tsx
│   │       │   ├── colorPicker.tsx
│   │       │   ├── createMusicSheet.tsx
│   │       │   ├── editMusicSheetInfo.tsx
│   │       │   ├── imageViewer.tsx
│   │       │   ├── importMusicSheet.tsx
│   │       │   ├── index.ts
│   │       │   ├── musicComment/
│   │       │   │   ├── comment.tsx
│   │       │   │   ├── index.tsx
│   │       │   │   └── useComments.ts
│   │       │   ├── musicItemLyricOptions.tsx
│   │       │   ├── musicItemOptions.tsx
│   │       │   ├── musicQuality.tsx
│   │       │   ├── playList/
│   │       │   │   ├── body.tsx
│   │       │   │   ├── header.tsx
│   │       │   │   └── index.tsx
│   │       │   ├── playRate.tsx
│   │       │   ├── searchLrc/
│   │       │   │   ├── LyricList.tsx
│   │       │   │   ├── index.tsx
│   │       │   │   ├── searchResultStore.ts
│   │       │   │   └── useSearchLrc.ts
│   │       │   ├── setFontSize.tsx
│   │       │   ├── setLyricOffset.tsx
│   │       │   ├── setUserVariables.tsx
│   │       │   ├── sheetTags.tsx
│   │       │   ├── simpleInput.tsx
│   │       │   ├── simpleSelect.tsx
│   │       │   └── timingClose.tsx
│   │       └── usePanel.ts
│   ├── constants/
│   │   ├── assetsConst.ts
│   │   ├── commonConst.ts
│   │   ├── globalStyle.ts
│   │   ├── pathConst.ts
│   │   ├── repeatModeConst.ts
│   │   └── uiConst.ts
│   ├── core/
│   │   ├── appConfig.ts
│   │   ├── appMeta.ts
│   │   ├── backup.ts
│   │   ├── downloader.ts
│   │   ├── i18n/
│   │   │   ├── index.ts
│   │   │   └── languages/
│   │   │       ├── en-us.json
│   │   │       ├── zh-cn.json
│   │   │       └── zh-tw.json
│   │   ├── localMusicSheet.ts
│   │   ├── lyricManager.ts
│   │   ├── mediaCache.ts
│   │   ├── musicHistory.ts
│   │   ├── musicSheet/
│   │   │   ├── index.ts
│   │   │   ├── migrate.ts
│   │   │   ├── sortedMusicList.ts
│   │   │   └── storage.ts
│   │   ├── pluginManager/
│   │   │   ├── index.ts
│   │   │   ├── meta.ts
│   │   │   └── plugin.ts
│   │   ├── router/
│   │   │   ├── index.ts
│   │   │   └── routes.tsx
│   │   ├── theme.ts
│   │   └── trackPlayer/
│   │       └── index.ts
│   ├── core.defination/
│   │   └── trackPlayer/
│   │       └── index.ts
│   ├── entry/
│   │   ├── bootstrap/
│   │   │   ├── BootstrapComponent.tsx
│   │   │   ├── bootstrap.atom.ts
│   │   │   └── bootstrap.ts
│   │   └── index.tsx
│   ├── hooks/
│   │   ├── useCheckUpdate.ts
│   │   ├── useColors.ts
│   │   ├── useDelayFalsy.ts
│   │   ├── useHardwareBack.ts
│   │   ├── useLogRerender.ts
│   │   ├── useMounted.ts
│   │   ├── useOnceEffect.ts
│   │   ├── useOrientation.ts
│   │   ├── usePrimaryColor.ts
│   │   ├── useRerender.ts
│   │   └── useTextColor.ts
│   ├── lib/
│   │   └── react-native-vdebug/
│   │       ├── index.js
│   │       └── src/
│   │           ├── event.js
│   │           ├── hoc.js
│   │           ├── log.js
│   │           ├── network.js
│   │           ├── storage.js
│   │           └── tool.js
│   ├── native/
│   │   ├── lyricUtil/
│   │   │   └── index.ts
│   │   ├── mp3Util/
│   │   │   └── index.ts
│   │   └── utils/
│   │       └── index.ts
│   ├── pages/
│   │   ├── albumDetail/
│   │   │   ├── hooks/
│   │   │   │   └── useAlbumMusicList.ts
│   │   │   └── index.tsx
│   │   ├── artistDetail/
│   │   │   ├── components/
│   │   │   │   ├── body.tsx
│   │   │   │   ├── content/
│   │   │   │   │   ├── albumContentItem.tsx
│   │   │   │   │   ├── index.ts
│   │   │   │   │   └── musicContentItem.tsx
│   │   │   │   ├── header.tsx
│   │   │   │   └── resultList.tsx
│   │   │   ├── hooks/
│   │   │   │   └── useQuery.ts
│   │   │   ├── index.tsx
│   │   │   └── store/
│   │   │       └── atoms.ts
│   │   ├── downloading/
│   │   │   ├── downloadingList.tsx
│   │   │   └── index.tsx
│   │   ├── fileSelector/
│   │   │   ├── fileItem.tsx
│   │   │   └── index.tsx
│   │   ├── history/
│   │   │   └── index.tsx
│   │   ├── home/
│   │   │   ├── components/
│   │   │   │   ├── ActionButton.tsx
│   │   │   │   ├── drawer/
│   │   │   │   │   └── index.tsx
│   │   │   │   ├── homeBody/
│   │   │   │   │   ├── index.tsx
│   │   │   │   │   ├── operations.tsx
│   │   │   │   │   └── sheets.tsx
│   │   │   │   ├── homeBodyHorizontal/
│   │   │   │   │   ├── index.tsx
│   │   │   │   │   └── operations.tsx
│   │   │   │   └── navBar.tsx
│   │   │   └── index.tsx
│   │   ├── localMusic/
│   │   │   ├── index.tsx
│   │   │   └── mainPage/
│   │   │       ├── index.tsx
│   │   │       └── localMusicList.tsx
│   │   ├── musicDetail/
│   │   │   ├── components/
│   │   │   │   ├── background.tsx
│   │   │   │   ├── bottom/
│   │   │   │   │   ├── index.tsx
│   │   │   │   │   ├── playControl.tsx
│   │   │   │   │   └── seekBar.tsx
│   │   │   │   ├── content/
│   │   │   │   │   ├── albumCover/
│   │   │   │   │   │   ├── index.tsx
│   │   │   │   │   │   └── operations.tsx
│   │   │   │   │   ├── heartIcon/
│   │   │   │   │   │   └── index.tsx
│   │   │   │   │   ├── index.tsx
│   │   │   │   │   └── lyric/
│   │   │   │   │       ├── draggingTime.tsx
│   │   │   │   │       ├── index.tsx
│   │   │   │   │       ├── lyricItem.tsx
│   │   │   │   │       └── lyricOperations.tsx
│   │   │   │   └── navBar.tsx
│   │   │   └── index.tsx
│   │   ├── musicListEditor/
│   │   │   ├── components/
│   │   │   │   ├── body.tsx
│   │   │   │   ├── bottom.tsx
│   │   │   │   └── musicList.tsx
│   │   │   ├── index.tsx
│   │   │   └── store/
│   │   │       └── atom.ts
│   │   ├── permissions/
│   │   │   └── index.tsx
│   │   ├── pluginSheetDetail/
│   │   │   ├── hooks/
│   │   │   │   └── usePluginSheetMusicList.ts
│   │   │   └── index.tsx
│   │   ├── recommendSheets/
│   │   │   ├── components/
│   │   │   │   └── body/
│   │   │   │       ├── index.tsx
│   │   │   │       ├── sheetBody.tsx
│   │   │   │       └── sheetList.tsx
│   │   │   ├── hooks/
│   │   │   │   ├── useRecommendListTags.ts
│   │   │   │   └── useRecommendSheets.ts
│   │   │   └── index.tsx
│   │   ├── searchMusicList/
│   │   │   ├── index.tsx
│   │   │   └── searchResult.tsx
│   │   ├── searchPage/
│   │   │   ├── common/
│   │   │   │   └── historySearch.ts
│   │   │   ├── components/
│   │   │   │   ├── historyPanel.tsx
│   │   │   │   ├── navBar.tsx
│   │   │   │   └── resultPanel/
│   │   │   │       ├── index.tsx
│   │   │   │       ├── resultSubPanel.tsx
│   │   │   │       ├── resultWrapper.tsx
│   │   │   │       └── results/
│   │   │   │           ├── albumResultItem.tsx
│   │   │   │           ├── artistResultItem.tsx
│   │   │   │           ├── defaultResults.tsx
│   │   │   │           ├── index.ts
│   │   │   │           ├── musicResultItem.tsx
│   │   │   │           └── musicSheetResultItem.tsx
│   │   │   ├── hooks/
│   │   │   │   └── useSearch.ts
│   │   │   ├── index.tsx
│   │   │   └── store/
│   │   │       └── atoms.ts
│   │   ├── setCustomTheme/
│   │   │   ├── body.tsx
│   │   │   └── index.tsx
│   │   ├── setting/
│   │   │   ├── index.tsx
│   │   │   └── settingTypes/
│   │   │       ├── aboutSetting.tsx
│   │   │       ├── backupSetting.tsx
│   │   │       ├── basicSetting.tsx
│   │   │       ├── index.ts
│   │   │       ├── pluginSetting/
│   │   │       │   ├── components/
│   │   │       │   │   └── pluginItem.tsx
│   │   │       │   ├── index.tsx
│   │   │       │   └── views/
│   │   │       │       ├── pluginList.tsx
│   │   │       │       ├── pluginSort.tsx
│   │   │       │       └── pluginSubscribe.tsx
│   │   │       └── themeSetting/
│   │   │           ├── background.tsx
│   │   │           ├── index.tsx
│   │   │           ├── logoCard.tsx
│   │   │           ├── mode.tsx
│   │   │           └── themeCard.tsx
│   │   ├── sheetDetail/
│   │   │   ├── components/
│   │   │   │   ├── header.tsx
│   │   │   │   ├── navBar.tsx
│   │   │   │   └── sheetMusicList.tsx
│   │   │   └── index.tsx
│   │   ├── topList/
│   │   │   ├── components/
│   │   │   │   ├── boardPanel.tsx
│   │   │   │   ├── boardPanelWrapper.tsx
│   │   │   │   └── topListBody.tsx
│   │   │   ├── hooks/
│   │   │   │   └── useGetTopList.ts
│   │   │   ├── index.tsx
│   │   │   └── store/
│   │   │       └── atoms.ts
│   │   └── topListDetail/
│   │       ├── hooks/
│   │       │   └── useTopListDetail.ts
│   │       └── index.tsx
│   ├── service/
│   │   └── index.ts
│   ├── types/
│   │   ├── album.d.ts
│   │   ├── artist.d.ts
│   │   ├── common.d.ts
│   │   ├── core/
│   │   │   ├── config.d.ts
│   │   │   ├── i18n/
│   │   │   │   └── index.d.ts
│   │   │   ├── musicHistory.d.ts
│   │   │   ├── pluginManager/
│   │   │   │   └── index.d.ts
│   │   │   └── trackPlayer/
│   │   │       └── index.d.ts
│   │   ├── declarations.d.ts
│   │   ├── infra.d.ts
│   │   ├── lyric.d.ts
│   │   ├── media.d.ts
│   │   ├── music.d.ts
│   │   ├── musicSheet.d.ts
│   │   ├── musicSheetGroup.d.ts
│   │   └── plugin.d.ts
│   └── utils/
│       ├── base64.ts
│       ├── checkUpdate.ts
│       ├── colorUtil.ts
│       ├── delay.ts
│       ├── eventBus.ts
│       ├── fileUtils.ts
│       ├── getOrCreateMMKV.ts
│       ├── getUrlExt.ts
│       ├── htmlUtil.ts
│       ├── jsonUtil.ts
│       ├── log.ts
│       ├── lrcParser.ts
│       ├── mediaExtra.ts
│       ├── mediaIndexMap.ts
│       ├── mediaUtils.ts
│       ├── minDistance.ts
│       ├── network.ts
│       ├── notImplementedFunction.ts
│       ├── openUrl.ts
│       ├── perfLogger.ts
│       ├── persistStatus.ts
│       ├── qualities.ts
│       ├── rpx.ts
│       ├── scheduleClose.ts
│       ├── stateMapper.ts
│       ├── storage.ts
│       ├── timeformat.ts
│       ├── toast.ts
│       └── trackUtils.ts
└── tsconfig.json

================================================
FILE CONTENTS
================================================

================================================
FILE: .bundle/config
================================================
BUNDLE_PATH: "vendor/bundle"
BUNDLE_FORCE_RUBY_PLATFORM: 1


================================================
FILE: .commitlintrc.json
================================================
{
  "extends": ["@commitlint/config-conventional"],
  "rules": {
    "type-enum": [
      2,
      "always",
      [
        "ci",
        "chore",
        "docs",
        "feat",
        "fix",
        "perf",
        "refactor",
        "revert",
        "style"
      ]
    ]
  }
}


================================================
FILE: .eslintignore
================================================
src/lib/*

================================================
FILE: .eslintrc.js
================================================
module.exports = {
    root: true,
    extends: ['@react-native', 'prettier'],
    overrides: [
        {
            files: ['*.ts', '*.tsx'],
            rules: {
                '@typescript-eslint/no-shadow': 'warn',
                'no-shadow': 'off',
                'no-undef': 'off',
                'react-hooks/exhaustive-deps': 'warn',
                '@typescript-eslint/object-curly-spacing': ['error', 'always'],
                "quotes": ["warn", "double"],
                "object-curly-spacing": ["error", "always"],
                "indent": ["error", 4],
                "semi": ["error", "always"],
                "comma-dangle": ["error", "always-multiline"], 
                "brace-style": ["error", "1tbs"], 
            },
        },
    ],
};


================================================
FILE: .github/ISSUE_TEMPLATE/bug_report_zh.yaml
================================================
---
name: 反馈问题
description: 问题反馈模板
labels: ["bug"]
body:
  - type: markdown
    attributes:
      value: "## 不要在此仓库提和具体插件有关的问题!!!"
    
  - type: checkboxes
    attributes:
      label: 提问题之前,请先确认
      description: "请勾选以下确认项"
      options:
        - label: "已经阅读过Q&A (https://musicfree.catcat.work/qa/mobile.html)"
          required: true
        - label: "要提出的问题与插件功能无关(类似某个插件搜索结果不全、ip被封禁等请找对应插件作者,在此仓库下提具体插件的问题将会被直接关闭)"
          required: true
        - label: "不与其他已有issue重复"
          required: true

  - type: textarea
    id: system_info
    attributes:
      label: 系统信息
      description: "请填写以下系统信息"
      placeholder: |
        软件版本:
        系统版本:
        设备型号:
    validations:
      required: true

  - type: textarea
    id: problem_description
    attributes:
      label: 问题描述
      description: "请详细描述问题现象及预期正确行为"
      placeholder: "例如:当执行XX操作时,出现XX现象,预期应该XX..."
    validations:
      required: true

  - type: textarea
    id: reproduction_steps
    attributes:
      label: 复现步骤
      description: "请按顺序描述复现步骤"
      placeholder: |
        1. 打开应用
        2. 点击XX按钮
        3. ...
    validations:
      required: true

  - type: textarea
    id: screenshots_logs
    attributes:
      label: 截图 & 日志
      description: "请粘贴截图链接或错误日志(可拖放文件直接上传截图)"
      placeholder: "错误日志示例:\n[2023-01-01 12:00] ERROR: xxxx"
    validations:
      required: false


================================================
FILE: .github/ISSUE_TEMPLATE/config.yml
================================================
blank_issues_enabled: false
contact_links:
  - name: 讨论区
    url: https://github.com/maotoumao/MusicFree/discussions
    about: 在这里讨论或寻求帮助


================================================
FILE: .github/ISSUE_TEMPLATE/feature_request_zh.yaml
================================================
---
name: 提交新需求
description: 新功能需求模板
labels: ["feature"]
body:
  - type: checkboxes
    attributes:
      label: 提需求之前,请先确认
      description: "请检查以下确认项"
      options:
        - label: "已经阅读过Q&A (https://musicfree.catcat.work/qa/mobile.html)"
          required: true
        - label: "新需求不是仅仅满足个人口味的需求"
          required: true
        - label: "新需求不与其他已有issue重复"
          required: true
        - label: "我可以在代码、测试上提供帮助"
          required: false

  - type: textarea
    id: feature_description
    attributes:
      label: 需求描述
      description: "请详细说明需求背景、使用场景和预期效果"
      placeholder: |
        例如:
        - 当前存在的痛点是什么?
        - 希望如何解决这个问题?
        - 预期的使用体验是怎样的?
    validations:
      required: true

  - type: textarea
    id: attachments
    attributes:
      label: 附件信息(可选)
      description: "可拖放上传示意图/设计稿"
      placeholder: "设计稿说明或云文档链接..."
    validations:
      required: false


================================================
FILE: .github/workflows/build-beta.yml
================================================
name: Beta 构建

on:
  push:
    branches: [dev]
    paths: ['package.json']
  workflow_dispatch:
    inputs:
      force_build:
        description: '强制构建 Beta 版本'
        required: false
        default: 'false'
        type: boolean

jobs:
  check-version:
    if: github.actor == 'maotoumao' || github.event_name == 'push'
    runs-on: ubuntu-latest
    outputs:
      should_build: ${{ steps.version_check.outputs.should_build }}
      version: ${{ steps.version_check.outputs.version }}
    steps:
      - name: Checkout
        uses: actions/checkout@v4

      - name: Check version format
        id: version_check
        run: |
          VERSION=$(node -p "require('./package.json').version")
          echo "Current version: $VERSION"
          
          # 检查版本是否符合 -beta.xx 格式
          if [[ $VERSION =~ -beta\.[0-9]{1,2}$ ]]; then
            echo "✅ Version matches beta format: $VERSION"
            echo "should_build=true" >> $GITHUB_OUTPUT
            echo "version=$VERSION" >> $GITHUB_OUTPUT
          elif [[ "${{ github.event_name }}" == "workflow_dispatch" && "${{ inputs.force_build }}" == "true" ]]; then
            echo "🔧 Force build triggered by workflow_dispatch"
            echo "should_build=true" >> $GITHUB_OUTPUT
            echo "version=$VERSION" >> $GITHUB_OUTPUT
          else
            echo "❌ Version does not match beta format or not forced: $VERSION"
            echo "should_build=false" >> $GITHUB_OUTPUT
          fi

  build-beta:
    needs: check-version
    if: needs.check-version.outputs.should_build == 'true'
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v4

      - name: Setup Java
        uses: actions/setup-java@v4
        with:
          java-version: '17'
          distribution: 'temurin'
          cache: 'gradle'

      - name: Setup Node.js
        uses: actions/setup-node@v4
        with: 
          node-version: 20
          cache: 'npm'

      - name: Cache React Native dependencies
        uses: actions/cache@v4
        with:
          path: |
            node_modules
            ~/.gradle/caches
            ~/.gradle/wrapper
            android/.gradle
          key: ${{ runner.os }}-rn-${{ hashFiles('package-lock.json', 'android/gradle/wrapper/gradle-wrapper.properties') }}
          restore-keys: |
            ${{ runner.os }}-rn-

      - name: Install Dependencies
        run: npm ci --prefer-offline --no-audit      
        
      - name: Setup Keystore (if secrets available)
        if: ${{ secrets.RELEASE_KEYSTORE_BASE64 != '' }}
        run: |
          echo "${{ secrets.RELEASE_KEYSTORE_BASE64 }}" | base64 -d > android/app/release.keystore
          cat > android/keystore.properties << 'EOF'
          RELEASE_STORE_FILE=release.keystore
          RELEASE_STORE_PASSWORD=${{ secrets.RELEASE_STORE_PASSWORD }}
          RELEASE_KEY_ALIAS=${{ secrets.RELEASE_KEY_ALIAS }}
          RELEASE_KEY_PASSWORD=${{ secrets.RELEASE_KEY_PASSWORD }}
          EOF
          chmod 600 android/keystore.properties android/app/release.keystore

      - name: Make gradlew executable
        run: chmod +x android/gradlew

      - name: Build Beta APK
        run: | 
          cd android
          ./gradlew assembleRelease --parallel --build-cache --configure-on-demand

      - name: List generated APKs
        run: |
          echo "📱 Generated APK files:"
          find android/app/build/outputs/apk/release -name "*.apk" -exec ls -lh {} \;

      - name: Upload Beta APKs
        uses: actions/upload-artifact@v4
        with:
          name: beta-apks-${{ needs.check-version.outputs.version }}
          path: android/app/build/outputs/apk/release/*.apk
          retention-days: 30

      - name: Build Summary
        run: |
          echo "🎉 Beta build completed successfully!"
          echo "📦 Version: ${{ needs.check-version.outputs.version }}"
          echo "🚀 Triggered by: ${{ github.event_name }}"
          echo "👤 Actor: ${{ github.actor }}"


================================================
FILE: .gitignore
================================================
# OSX
#
.DS_Store

# Xcode
#
build/
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
xcuserdata
*.xccheckout
*.moved-aside
DerivedData
*.hmap
*.ipa
*.xcuserstate
**/.xcode.env.local

# Android/IntelliJ
#
build/
.idea
.gradle
local.properties
*.iml
*.hprof
.cxx/
*.keystore
!debug.keystore

# node.js
#
node_modules/
npm-debug.log
yarn-error.log

# fastlane
#
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
# screenshots whenever they are needed.
# For more information about the recommended setup visit:
# https://docs.fastlane.tools/best-practices/source-control/

**/fastlane/report.xml
**/fastlane/Preview.html
**/fastlane/screenshots
**/fastlane/test_output

# Bundle artifact
*.jsbundle

# Ruby / CocoaPods
**/Pods/
/vendor/bundle/

# Temporary files created by Metro to check the health of the file watcher
.metro-health-check*

# testing
/coverage

# Yarn
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions


keystore.properties
.VSCodeCounter/

.vscode/
tmp/
scripts/

*.log
# Expo
.expo
dist/
web-build/

================================================
FILE: .husky/commit-msg
================================================
npm run commit-lint


================================================
FILE: .husky/pre-commit
================================================
npm run lint-staged


================================================
FILE: .prettierrc.js
================================================
module.exports = {
  arrowParens: 'avoid',
  bracketSameLine: true,
  bracketSpacing: false,
  singleQuote: true,
  trailingComma: 'all',
  tabWidth: 4,
  useTabs: false,
  endOfLine: "auto"
};


================================================
FILE: .watchmanconfig
================================================
{}


================================================
FILE: Gemfile
================================================
source 'https://rubygems.org'

# You may use http://rbenv.org/ or https://rvm.io/ to install and use this version
ruby ">= 2.6.10"

# Exclude problematic versions of cocoapods and activesupport that causes build failures.
gem 'cocoapods', '>= 1.13', '!= 1.15.0', '!= 1.15.1'
gem 'activesupport', '>= 6.1.7.5', '!= 7.1.0'
gem 'xcodeproj', '< 1.26.0'


================================================
FILE: LICENSE
================================================
                    GNU AFFERO GENERAL PUBLIC LICENSE
                       Version 3, 19 November 2007

 Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
 Everyone is permitted to copy and distribute verbatim copies
 of this license document, but changing it is not allowed.

                            Preamble

  The GNU Affero General Public License is a free, copyleft license for
software and other kinds of works, specifically designed to ensure
cooperation with the community in the case of network server software.

  The licenses for most software and other practical works are designed
to take away your freedom to share and change the works.  By contrast,
our General Public Licenses are intended to guarantee your freedom to
share and change all versions of a program--to make sure it remains free
software for all its users.

  When we speak of free software, we are referring to freedom, not
price.  Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
them if you wish), that you receive source code or can get it if you
want it, that you can change the software or use pieces of it in new
free programs, and that you know you can do these things.

  Developers that use our General Public Licenses protect your rights
with two steps: (1) assert copyright on the software, and (2) offer
you this License which gives you legal permission to copy, distribute
and/or modify the software.

  A secondary benefit of defending all users' freedom is that
improvements made in alternate versions of the program, if they
receive widespread use, become available for other developers to
incorporate.  Many developers of free software are heartened and
encouraged by the resulting cooperation.  However, in the case of
software used on network servers, this result may fail to come about.
The GNU General Public License permits making a modified version and
letting the public access it on a server without ever releasing its
source code to the public.

  The GNU Affero General Public License is designed specifically to
ensure that, in such cases, the modified source code becomes available
to the community.  It requires the operator of a network server to
provide the source code of the modified version running there to the
users of that server.  Therefore, public use of a modified version, on
a publicly accessible server, gives the public access to the source
code of the modified version.

  An older license, called the Affero General Public License and
published by Affero, was designed to accomplish similar goals.  This is
a different license, not a version of the Affero GPL, but Affero has
released a new version of the Affero GPL which permits relicensing under
this license.

  The precise terms and conditions for copying, distribution and
modification follow.

                       TERMS AND CONDITIONS

  0. Definitions.

  "This License" refers to version 3 of the GNU Affero General Public License.

  "Copyright" also means copyright-like laws that apply to other kinds of
works, such as semiconductor masks.

  "The Program" refers to any copyrightable work licensed under this
License.  Each licensee is addressed as "you".  "Licensees" and
"recipients" may be individuals or organizations.

  To "modify" a work means to copy from or adapt all or part of the work
in a fashion requiring copyright permission, other than the making of an
exact copy.  The resulting work is called a "modified version" of the
earlier work or a work "based on" the earlier work.

  A "covered work" means either the unmodified Program or a work based
on the Program.

  To "propagate" a work means to do anything with it that, without
permission, would make you directly or secondarily liable for
infringement under applicable copyright law, except executing it on a
computer or modifying a private copy.  Propagation includes copying,
distribution (with or without modification), making available to the
public, and in some countries other activities as well.

  To "convey" a work means any kind of propagation that enables other
parties to make or receive copies.  Mere interaction with a user through
a computer network, with no transfer of a copy, is not conveying.

  An interactive user interface displays "Appropriate Legal Notices"
to the extent that it includes a convenient and prominently visible
feature that (1) displays an appropriate copyright notice, and (2)
tells the user that there is no warranty for the work (except to the
extent that warranties are provided), that licensees may convey the
work under this License, and how to view a copy of this License.  If
the interface presents a list of user commands or options, such as a
menu, a prominent item in the list meets this criterion.

  1. Source Code.

  The "source code" for a work means the preferred form of the work
for making modifications to it.  "Object code" means any non-source
form of a work.

  A "Standard Interface" means an interface that either is an official
standard defined by a recognized standards body, or, in the case of
interfaces specified for a particular programming language, one that
is widely used among developers working in that language.

  The "System Libraries" of an executable work include anything, other
than the work as a whole, that (a) is included in the normal form of
packaging a Major Component, but which is not part of that Major
Component, and (b) serves only to enable use of the work with that
Major Component, or to implement a Standard Interface for which an
implementation is available to the public in source code form.  A
"Major Component", in this context, means a major essential component
(kernel, window system, and so on) of the specific operating system
(if any) on which the executable work runs, or a compiler used to
produce the work, or an object code interpreter used to run it.

  The "Corresponding Source" for a work in object code form means all
the source code needed to generate, install, and (for an executable
work) run the object code and to modify the work, including scripts to
control those activities.  However, it does not include the work's
System Libraries, or general-purpose tools or generally available free
programs which are used unmodified in performing those activities but
which are not part of the work.  For example, Corresponding Source
includes interface definition files associated with source files for
the work, and the source code for shared libraries and dynamically
linked subprograms that the work is specifically designed to require,
such as by intimate data communication or control flow between those
subprograms and other parts of the work.

  The Corresponding Source need not include anything that users
can regenerate automatically from other parts of the Corresponding
Source.

  The Corresponding Source for a work in source code form is that
same work.

  2. Basic Permissions.

  All rights granted under this License are granted for the term of
copyright on the Program, and are irrevocable provided the stated
conditions are met.  This License explicitly affirms your unlimited
permission to run the unmodified Program.  The output from running a
covered work is covered by this License only if the output, given its
content, constitutes a covered work.  This License acknowledges your
rights of fair use or other equivalent, as provided by copyright law.

  You may make, run and propagate covered works that you do not
convey, without conditions so long as your license otherwise remains
in force.  You may convey covered works to others for the sole purpose
of having them make modifications exclusively for you, or provide you
with facilities for running those works, provided that you comply with
the terms of this License in conveying all material for which you do
not control copyright.  Those thus making or running the covered works
for you must do so exclusively on your behalf, under your direction
and control, on terms that prohibit them from making any copies of
your copyrighted material outside their relationship with you.

  Conveying under any other circumstances is permitted solely under
the conditions stated below.  Sublicensing is not allowed; section 10
makes it unnecessary.

  3. Protecting Users' Legal Rights From Anti-Circumvention Law.

  No covered work shall be deemed part of an effective technological
measure under any applicable law fulfilling obligations under article
11 of the WIPO copyright treaty adopted on 20 December 1996, or
similar laws prohibiting or restricting circumvention of such
measures.

  When you convey a covered work, you waive any legal power to forbid
circumvention of technological measures to the extent such circumvention
is effected by exercising rights under this License with respect to
the covered work, and you disclaim any intention to limit operation or
modification of the work as a means of enforcing, against the work's
users, your or third parties' legal rights to forbid circumvention of
technological measures.

  4. Conveying Verbatim Copies.

  You may convey verbatim copies of the Program's source code as you
receive it, in any medium, provided that you conspicuously and
appropriately publish on each copy an appropriate copyright notice;
keep intact all notices stating that this License and any
non-permissive terms added in accord with section 7 apply to the code;
keep intact all notices of the absence of any warranty; and give all
recipients a copy of this License along with the Program.

  You may charge any price or no price for each copy that you convey,
and you may offer support or warranty protection for a fee.

  5. Conveying Modified Source Versions.

  You may convey a work based on the Program, or the modifications to
produce it from the Program, in the form of source code under the
terms of section 4, provided that you also meet all of these conditions:

    a) The work must carry prominent notices stating that you modified
    it, and giving a relevant date.

    b) The work must carry prominent notices stating that it is
    released under this License and any conditions added under section
    7.  This requirement modifies the requirement in section 4 to
    "keep intact all notices".

    c) You must license the entire work, as a whole, under this
    License to anyone who comes into possession of a copy.  This
    License will therefore apply, along with any applicable section 7
    additional terms, to the whole of the work, and all its parts,
    regardless of how they are packaged.  This License gives no
    permission to license the work in any other way, but it does not
    invalidate such permission if you have separately received it.

    d) If the work has interactive user interfaces, each must display
    Appropriate Legal Notices; however, if the Program has interactive
    interfaces that do not display Appropriate Legal Notices, your
    work need not make them do so.

  A compilation of a covered work with other separate and independent
works, which are not by their nature extensions of the covered work,
and which are not combined with it such as to form a larger program,
in or on a volume of a storage or distribution medium, is called an
"aggregate" if the compilation and its resulting copyright are not
used to limit the access or legal rights of the compilation's users
beyond what the individual works permit.  Inclusion of a covered work
in an aggregate does not cause this License to apply to the other
parts of the aggregate.

  6. Conveying Non-Source Forms.

  You may convey a covered work in object code form under the terms
of sections 4 and 5, provided that you also convey the
machine-readable Corresponding Source under the terms of this License,
in one of these ways:

    a) Convey the object code in, or embodied in, a physical product
    (including a physical distribution medium), accompanied by the
    Corresponding Source fixed on a durable physical medium
    customarily used for software interchange.

    b) Convey the object code in, or embodied in, a physical product
    (including a physical distribution medium), accompanied by a
    written offer, valid for at least three years and valid for as
    long as you offer spare parts or customer support for that product
    model, to give anyone who possesses the object code either (1) a
    copy of the Corresponding Source for all the software in the
    product that is covered by this License, on a durable physical
    medium customarily used for software interchange, for a price no
    more than your reasonable cost of physically performing this
    conveying of source, or (2) access to copy the
    Corresponding Source from a network server at no charge.

    c) Convey individual copies of the object code with a copy of the
    written offer to provide the Corresponding Source.  This
    alternative is allowed only occasionally and noncommercially, and
    only if you received the object code with such an offer, in accord
    with subsection 6b.

    d) Convey the object code by offering access from a designated
    place (gratis or for a charge), and offer equivalent access to the
    Corresponding Source in the same way through the same place at no
    further charge.  You need not require recipients to copy the
    Corresponding Source along with the object code.  If the place to
    copy the object code is a network server, the Corresponding Source
    may be on a different server (operated by you or a third party)
    that supports equivalent copying facilities, provided you maintain
    clear directions next to the object code saying where to find the
    Corresponding Source.  Regardless of what server hosts the
    Corresponding Source, you remain obligated to ensure that it is
    available for as long as needed to satisfy these requirements.

    e) Convey the object code using peer-to-peer transmission, provided
    you inform other peers where the object code and Corresponding
    Source of the work are being offered to the general public at no
    charge under subsection 6d.

  A separable portion of the object code, whose source code is excluded
from the Corresponding Source as a System Library, need not be
included in conveying the object code work.

  A "User Product" is either (1) a "consumer product", which means any
tangible personal property which is normally used for personal, family,
or household purposes, or (2) anything designed or sold for incorporation
into a dwelling.  In determining whether a product is a consumer product,
doubtful cases shall be resolved in favor of coverage.  For a particular
product received by a particular user, "normally used" refers to a
typical or common use of that class of product, regardless of the status
of the particular user or of the way in which the particular user
actually uses, or expects or is expected to use, the product.  A product
is a consumer product regardless of whether the product has substantial
commercial, industrial or non-consumer uses, unless such uses represent
the only significant mode of use of the product.

  "Installation Information" for a User Product means any methods,
procedures, authorization keys, or other information required to install
and execute modified versions of a covered work in that User Product from
a modified version of its Corresponding Source.  The information must
suffice to ensure that the continued functioning of the modified object
code is in no case prevented or interfered with solely because
modification has been made.

  If you convey an object code work under this section in, or with, or
specifically for use in, a User Product, and the conveying occurs as
part of a transaction in which the right of possession and use of the
User Product is transferred to the recipient in perpetuity or for a
fixed term (regardless of how the transaction is characterized), the
Corresponding Source conveyed under this section must be accompanied
by the Installation Information.  But this requirement does not apply
if neither you nor any third party retains the ability to install
modified object code on the User Product (for example, the work has
been installed in ROM).

  The requirement to provide Installation Information does not include a
requirement to continue to provide support service, warranty, or updates
for a work that has been modified or installed by the recipient, or for
the User Product in which it has been modified or installed.  Access to a
network may be denied when the modification itself materially and
adversely affects the operation of the network or violates the rules and
protocols for communication across the network.

  Corresponding Source conveyed, and Installation Information provided,
in accord with this section must be in a format that is publicly
documented (and with an implementation available to the public in
source code form), and must require no special password or key for
unpacking, reading or copying.

  7. Additional Terms.

  "Additional permissions" are terms that supplement the terms of this
License by making exceptions from one or more of its conditions.
Additional permissions that are applicable to the entire Program shall
be treated as though they were included in this License, to the extent
that they are valid under applicable law.  If additional permissions
apply only to part of the Program, that part may be used separately
under those permissions, but the entire Program remains governed by
this License without regard to the additional permissions.

  When you convey a copy of a covered work, you may at your option
remove any additional permissions from that copy, or from any part of
it.  (Additional permissions may be written to require their own
removal in certain cases when you modify the work.)  You may place
additional permissions on material, added by you to a covered work,
for which you have or can give appropriate copyright permission.

  Notwithstanding any other provision of this License, for material you
add to a covered work, you may (if authorized by the copyright holders of
that material) supplement the terms of this License with terms:

    a) Disclaiming warranty or limiting liability differently from the
    terms of sections 15 and 16 of this License; or

    b) Requiring preservation of specified reasonable legal notices or
    author attributions in that material or in the Appropriate Legal
    Notices displayed by works containing it; or

    c) Prohibiting misrepresentation of the origin of that material, or
    requiring that modified versions of such material be marked in
    reasonable ways as different from the original version; or

    d) Limiting the use for publicity purposes of names of licensors or
    authors of the material; or

    e) Declining to grant rights under trademark law for use of some
    trade names, trademarks, or service marks; or

    f) Requiring indemnification of licensors and authors of that
    material by anyone who conveys the material (or modified versions of
    it) with contractual assumptions of liability to the recipient, for
    any liability that these contractual assumptions directly impose on
    those licensors and authors.

  All other non-permissive additional terms are considered "further
restrictions" within the meaning of section 10.  If the Program as you
received it, or any part of it, contains a notice stating that it is
governed by this License along with a term that is a further
restriction, you may remove that term.  If a license document contains
a further restriction but permits relicensing or conveying under this
License, you may add to a covered work material governed by the terms
of that license document, provided that the further restriction does
not survive such relicensing or conveying.

  If you add terms to a covered work in accord with this section, you
must place, in the relevant source files, a statement of the
additional terms that apply to those files, or a notice indicating
where to find the applicable terms.

  Additional terms, permissive or non-permissive, may be stated in the
form of a separately written license, or stated as exceptions;
the above requirements apply either way.

  8. Termination.

  You may not propagate or modify a covered work except as expressly
provided under this License.  Any attempt otherwise to propagate or
modify it is void, and will automatically terminate your rights under
this License (including any patent licenses granted under the third
paragraph of section 11).

  However, if you cease all violation of this License, then your
license from a particular copyright holder is reinstated (a)
provisionally, unless and until the copyright holder explicitly and
finally terminates your license, and (b) permanently, if the copyright
holder fails to notify you of the violation by some reasonable means
prior to 60 days after the cessation.

  Moreover, your license from a particular copyright holder is
reinstated permanently if the copyright holder notifies you of the
violation by some reasonable means, this is the first time you have
received notice of violation of this License (for any work) from that
copyright holder, and you cure the violation prior to 30 days after
your receipt of the notice.

  Termination of your rights under this section does not terminate the
licenses of parties who have received copies or rights from you under
this License.  If your rights have been terminated and not permanently
reinstated, you do not qualify to receive new licenses for the same
material under section 10.

  9. Acceptance Not Required for Having Copies.

  You are not required to accept this License in order to receive or
run a copy of the Program.  Ancillary propagation of a covered work
occurring solely as a consequence of using peer-to-peer transmission
to receive a copy likewise does not require acceptance.  However,
nothing other than this License grants you permission to propagate or
modify any covered work.  These actions infringe copyright if you do
not accept this License.  Therefore, by modifying or propagating a
covered work, you indicate your acceptance of this License to do so.

  10. Automatic Licensing of Downstream Recipients.

  Each time you convey a covered work, the recipient automatically
receives a license from the original licensors, to run, modify and
propagate that work, subject to this License.  You are not responsible
for enforcing compliance by third parties with this License.

  An "entity transaction" is a transaction transferring control of an
organization, or substantially all assets of one, or subdividing an
organization, or merging organizations.  If propagation of a covered
work results from an entity transaction, each party to that
transaction who receives a copy of the work also receives whatever
licenses to the work the party's predecessor in interest had or could
give under the previous paragraph, plus a right to possession of the
Corresponding Source of the work from the predecessor in interest, if
the predecessor has it or can get it with reasonable efforts.

  You may not impose any further restrictions on the exercise of the
rights granted or affirmed under this License.  For example, you may
not impose a license fee, royalty, or other charge for exercise of
rights granted under this License, and you may not initiate litigation
(including a cross-claim or counterclaim in a lawsuit) alleging that
any patent claim is infringed by making, using, selling, offering for
sale, or importing the Program or any portion of it.

  11. Patents.

  A "contributor" is a copyright holder who authorizes use under this
License of the Program or a work on which the Program is based.  The
work thus licensed is called the contributor's "contributor version".

  A contributor's "essential patent claims" are all patent claims
owned or controlled by the contributor, whether already acquired or
hereafter acquired, that would be infringed by some manner, permitted
by this License, of making, using, or selling its contributor version,
but do not include claims that would be infringed only as a
consequence of further modification of the contributor version.  For
purposes of this definition, "control" includes the right to grant
patent sublicenses in a manner consistent with the requirements of
this License.

  Each contributor grants you a non-exclusive, worldwide, royalty-free
patent license under the contributor's essential patent claims, to
make, use, sell, offer for sale, import and otherwise run, modify and
propagate the contents of its contributor version.

  In the following three paragraphs, a "patent license" is any express
agreement or commitment, however denominated, not to enforce a patent
(such as an express permission to practice a patent or covenant not to
sue for patent infringement).  To "grant" such a patent license to a
party means to make such an agreement or commitment not to enforce a
patent against the party.

  If you convey a covered work, knowingly relying on a patent license,
and the Corresponding Source of the work is not available for anyone
to copy, free of charge and under the terms of this License, through a
publicly available network server or other readily accessible means,
then you must either (1) cause the Corresponding Source to be so
available, or (2) arrange to deprive yourself of the benefit of the
patent license for this particular work, or (3) arrange, in a manner
consistent with the requirements of this License, to extend the patent
license to downstream recipients.  "Knowingly relying" means you have
actual knowledge that, but for the patent license, your conveying the
covered work in a country, or your recipient's use of the covered work
in a country, would infringe one or more identifiable patents in that
country that you have reason to believe are valid.

  If, pursuant to or in connection with a single transaction or
arrangement, you convey, or propagate by procuring conveyance of, a
covered work, and grant a patent license to some of the parties
receiving the covered work authorizing them to use, propagate, modify
or convey a specific copy of the covered work, then the patent license
you grant is automatically extended to all recipients of the covered
work and works based on it.

  A patent license is "discriminatory" if it does not include within
the scope of its coverage, prohibits the exercise of, or is
conditioned on the non-exercise of one or more of the rights that are
specifically granted under this License.  You may not convey a covered
work if you are a party to an arrangement with a third party that is
in the business of distributing software, under which you make payment
to the third party based on the extent of your activity of conveying
the work, and under which the third party grants, to any of the
parties who would receive the covered work from you, a discriminatory
patent license (a) in connection with copies of the covered work
conveyed by you (or copies made from those copies), or (b) primarily
for and in connection with specific products or compilations that
contain the covered work, unless you entered into that arrangement,
or that patent license was granted, prior to 28 March 2007.

  Nothing in this License shall be construed as excluding or limiting
any implied license or other defenses to infringement that may
otherwise be available to you under applicable patent law.

  12. No Surrender of Others' Freedom.

  If conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License.  If you cannot convey a
covered work so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you may
not convey it at all.  For example, if you agree to terms that obligate you
to collect a royalty for further conveying from those to whom you convey
the Program, the only way you could satisfy both those terms and this
License would be to refrain entirely from conveying the Program.

  13. Remote Network Interaction; Use with the GNU General Public License.

  Notwithstanding any other provision of this License, if you modify the
Program, your modified version must prominently offer all users
interacting with it remotely through a computer network (if your version
supports such interaction) an opportunity to receive the Corresponding
Source of your version by providing access to the Corresponding Source
from a network server at no charge, through some standard or customary
means of facilitating copying of software.  This Corresponding Source
shall include the Corresponding Source for any work covered by version 3
of the GNU General Public License that is incorporated pursuant to the
following paragraph.

  Notwithstanding any other provision of this License, you have
permission to link or combine any covered work with a work licensed
under version 3 of the GNU General Public License into a single
combined work, and to convey the resulting work.  The terms of this
License will continue to apply to the part which is the covered work,
but the work with which it is combined will remain governed by version
3 of the GNU General Public License.

  14. Revised Versions of this License.

  The Free Software Foundation may publish revised and/or new versions of
the GNU Affero General Public License from time to time.  Such new versions
will be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.

  Each version is given a distinguishing version number.  If the
Program specifies that a certain numbered version of the GNU Affero General
Public License "or any later version" applies to it, you have the
option of following the terms and conditions either of that numbered
version or of any later version published by the Free Software
Foundation.  If the Program does not specify a version number of the
GNU Affero General Public License, you may choose any version ever published
by the Free Software Foundation.

  If the Program specifies that a proxy can decide which future
versions of the GNU Affero General Public License can be used, that proxy's
public statement of acceptance of a version permanently authorizes you
to choose that version for the Program.

  Later license versions may give you additional or different
permissions.  However, no additional obligations are imposed on any
author or copyright holder as a result of your choosing to follow a
later version.

  15. Disclaimer of Warranty.

  THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
APPLICABLE LAW.  EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
IS WITH YOU.  SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.

  16. Limitation of Liability.

  IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
SUCH DAMAGES.

  17. Interpretation of Sections 15 and 16.

  If the disclaimer of warranty and limitation of liability provided
above cannot be given local legal effect according to their terms,
reviewing courts shall apply local law that most closely approximates
an absolute waiver of all civil liability in connection with the
Program, unless a warranty or assumption of liability accompanies a
copy of the Program in return for a fee.

                     END OF TERMS AND CONDITIONS

            How to Apply These Terms to Your New Programs

  If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these terms.

  To do so, attach the following notices to the program.  It is safest
to attach them to the start of each source file to most effectively
state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.

    <one line to give the program's name and a brief idea of what it does.>
    Copyright (C) <year>  <name of author>

    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU Affero General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU Affero General Public License for more details.

    You should have received a copy of the GNU Affero General Public License
    along with this program.  If not, see <https://www.gnu.org/licenses/>.

Also add information on how to contact you by electronic and paper mail.

  If your software can interact with users remotely through a computer
network, you should also make sure that it provides a way for users to
get its source.  For example, if your program is a web application, its
interface could display a "Source" link that leads users to an archive
of the code.  There are many ways you could offer source, and different
solutions will be better for different programs; see section 13 for the
specific requirements.

  You should also get your employer (if you work as a programmer) or school,
if any, to sign a "copyright disclaimer" for the program, if necessary.
For more information on this, and how to apply and follow the GNU AGPL, see
<https://www.gnu.org/licenses/>.


================================================
FILE: android/app/build.gradle
================================================
apply plugin: "com.android.application"
apply plugin: "org.jetbrains.kotlin.android"
apply plugin: "com.facebook.react"

import com.android.build.OutputFile
import groovy.json.JsonSlurper


/**
 * This is the configuration block to customize your React Native Android app.
 * By default you don't need to apply any configuration, just uncomment the lines you need.
 */
react {
    /* Folders */
    //   The root of your project, i.e. where "package.json" lives. Default is '../..'
    // root = file("../../")
    //   The folder where the react-native NPM package is. Default is ../../node_modules/react-native
    // reactNativeDir = file("../../node_modules/react-native")
    //   The folder where the react-native Codegen package is. Default is ../../node_modules/@react-native/codegen
    // codegenDir = file("../../node_modules/@react-native/codegen")
    //   The cli.js file which is the React Native CLI entrypoint. Default is ../../node_modules/react-native/cli.js
    // cliFile = file("../../node_modules/react-native/cli.js")

    /* Variants */
    //   The list of variants to that are debuggable. For those we're going to
    //   skip the bundling of the JS bundle and the assets. By default is just 'debug'.
    //   If you add flavors like lite, prod, etc. you'll have to list your debuggableVariants.
    // debuggableVariants = ["liteDebug", "prodDebug"]

    /* Bundling */
    //   A list containing the node command and its flags. Default is just 'node'.
    // nodeExecutableAndArgs = ["node"]
    //
    //   The command to run when bundling. By default is 'bundle'
    // bundleCommand = "ram-bundle"
    //
    //   The path to the CLI configuration file. Default is empty.
    // bundleConfig = file(../rn-cli.config.js)
    //
    //   The name of the generated asset file containing your JS bundle
    // bundleAssetName = "MyApplication.android.bundle"
    //
    //   The entry file for bundle generation. Default is 'index.android.js' or 'index.js'
    // entryFile = file("../js/MyApplication.android.js")
    //
    //   A list of extra flags to pass to the 'bundle' commands.
    //   See https://github.com/react-native-community/cli/blob/main/docs/commands.md#bundle
    // extraPackagerArgs = []

    /* Hermes Commands */
    //   The hermes compiler command to run. By default it is 'hermesc'
    // hermesCommand = "$rootDir/my-custom-hermesc/bin/hermesc"
    //
    //   The list of flags to pass to the Hermes compiler. By default is "-O", "-output-source-map"
    // hermesFlags = ["-O", "-output-source-map"]

    /* Autolinking */
    autolinkLibrariesWithApp()

    //
    // Added by install-expo-modules
    entryFile = file(["node", "-e", "require('expo/scripts/resolveAppEntry')", rootDir.getAbsoluteFile().getParentFile().getAbsolutePath(), "android", "absolute"].execute(null, rootDir).text.trim())
    cliFile = new File(["node", "--print", "require.resolve('@expo/cli')"].execute(null, rootDir).text.trim())
    bundleCommand = "export:embed"
    //
    // Added by install-expo-modules
    entryFile = file(["node", "-e", "require('expo/scripts/resolveAppEntry')", rootDir.getAbsoluteFile().getParentFile().getAbsolutePath(), "android", "absolute"].execute(null, rootDir).text.trim())
    cliFile = new File(["node", "--print", "require.resolve('@expo/cli')"].execute(null, rootDir).text.trim())
    bundleCommand = "export:embed"
}

/**
 * Set this to true to Run Proguard on Release builds to minify the Java bytecode.
 */
def enableProguardInReleaseBuilds = false

/**
 * The preferred build flavor of JavaScriptCore (JSC)
 *
 * For example, to use the international variant, you can use:
 * `def jscFlavor = 'org.webkit:android-jsc-intl:+'`
 *
 * The international variant includes ICU i18n library and necessary data
 * allowing to use e.g. `Date.toLocaleString` and `String.localeCompare` that
 * give correct results when using with locales other than en-US. Note that
 * this variant is about 6MiB larger per architecture than default.
 */
def jscFlavor = 'org.webkit:android-jsc:+'

// !! Add lines
def keystoreProperties = new Properties()
def keystorePropertiesFile = rootProject.file('keystore.properties')
if (keystorePropertiesFile.exists()) {
    keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
}

static def getVersion() {
    def inputFile = new File("../package.json")
    def packageJson = new JsonSlurper().parseText(inputFile.text)
    return packageJson["version"]
}

// static def versionStringToCode(String version) {
//     def parts = version.split('\\.')
//     def versionCode = 0
//     def multiplier = 1000000
//
//     parts.each { part ->
//         versionCode += part.toInteger() * multiplier
//         multiplier /= 1000
//     }
//
//     return versionCode.intValue()
// }

def appVersion = getVersion()
def appVersionCode = 400011


android {
    ndkVersion rootProject.ext.ndkVersion
    buildToolsVersion rootProject.ext.buildToolsVersion
    compileSdk rootProject.ext.compileSdkVersion

    namespace "fun.upup.musicfree"

    defaultConfig {
        applicationId "fun.upup.musicfree"
        minSdkVersion rootProject.ext.minSdkVersion
        targetSdkVersion rootProject.ext.targetSdkVersion
        versionCode appVersionCode
        versionName appVersion
    }
    signingConfigs {
        debug {
            storeFile file('debug.keystore')
            storePassword 'android'
            keyAlias 'androiddebugkey'
            keyPassword 'android'
        }
        // !! Add lines
         release {
            storeFile file(keystoreProperties['RELEASE_STORE_FILE'])
            storePassword keystoreProperties['RELEASE_STORE_PASSWORD']
            keyAlias keystoreProperties['RELEASE_KEY_ALIAS']
            keyPassword keystoreProperties['RELEASE_KEY_PASSWORD']
        }
    }
    splits {
            abi {
                reset()
                enable true
                universalApk true
                include "armeabi-v7a", "arm64-v8a", "x86", "x86_64"
            }
    }



    buildTypes {
        debug {
            signingConfig signingConfigs.debug
        }
        release {
            // Caution! In production, you need to generate your own keystore file.
            // see https://reactnative.dev/docs/signed-apk-android.
            signingConfig signingConfigs.release
            minifyEnabled enableProguardInReleaseBuilds
            proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
        }
    }
}

dependencies {
    // The version of react-native is set by the React Native Gradle Plugin
    implementation("com.facebook.react:react-android")

    if (hermesEnabled.toBoolean()) {
        implementation("com.facebook.react:hermes-android")
    } else {
        implementation jscFlavor
    }

    // !! Add lines
    implementation project(':react-native-fs')
    implementation 'com.facebook.fresco:animated-gif:2.5.0'
    // https://mvnrepository.com/artifact/net.jthink/jaudiotagger
    implementation 'net.jthink:jaudiotagger:2.2.5'
    implementation 'androidx.core:core-splashscreen:1.0.0'
}



================================================
FILE: android/app/proguard-rules.pro
================================================
# Add project specific ProGuard rules here.
# By default, the flags in this file are appended to flags specified
# in /usr/local/Cellar/android-sdk/24.3.3/tools/proguard/proguard-android.txt
# You can edit the include path and order by changing the proguardFiles
# directive in build.gradle.
#
# For more details, see
#   http://developer.android.com/guide/developing/tools/proguard.html

# Add any project specific keep options here:


================================================
FILE: android/app/src/debug/AndroidManifest.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools">

    <application
        android:usesCleartextTraffic="true"
        tools:targetApi="28"
        tools:ignore="GoogleAppIndexingWarning"/>
</manifest>


================================================
FILE: android/app/src/main/AndroidManifest.xml
================================================
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="fun.upup.musicfree">

    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.WAKE_LOCK" />
    <uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
    <uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE" />
    <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
    <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />
    <uses-permission android:name="android.permission.POST_NOTIFICATIONS" />

    <application
      android:name=".MainApplication"
      android:label="@string/app_name"
      android:icon="@mipmap/ic_launcher"
      android:roundIcon="@mipmap/ic_launcher_round"
      android:allowBackup="false"
      android:theme="@style/AppTheme"
      android:supportsRtl="true"
      android:requestLegacyExternalStorage="true"
      android:usesCleartextTraffic="true"
      android:extractNativeLibs="true"
    >
      <activity
        android:name=".MainActivity"
        android:theme="@style/Theme.App.SplashScreen"
        android:label="@string/app_name"
        android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|screenSize|smallestScreenSize|uiMode"
        android:launchMode="singleTask"
        android:windowSoftInputMode="adjustResize"
        android:exported="true">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
          <intent-filter>
              <action android:name="android.intent.action.VIEW" />
              <category android:name="android.intent.category.DEFAULT" />
              <category android:name="android.intent.category.BROWSABLE" />
              <data android:scheme="musicfree" android:host="app"/>
              <data android:scheme="musicfree" android:host="install"/>
          </intent-filter>          
          <!-- 处理音频文件 -->
          <intent-filter>
              <action android:name="android.intent.action.VIEW" />
              <category android:name="android.intent.category.DEFAULT" />
              <category android:name="android.intent.category.BROWSABLE" />
              <data android:scheme="file" />
              <data android:mimeType="audio/*" />
          </intent-filter>
          <intent-filter>
              <action android:name="android.intent.action.VIEW" />
              <category android:name="android.intent.category.DEFAULT" />
              <category android:name="android.intent.category.BROWSABLE" />
              <data android:scheme="content" />
              <data android:mimeType="audio/*" />
          </intent-filter>
          <!-- 处理特定音频格式 -->
          <intent-filter>
              <action android:name="android.intent.action.VIEW" />
              <category android:name="android.intent.category.DEFAULT" />
              <category android:name="android.intent.category.BROWSABLE" />
              <data android:scheme="file" />
              <data android:mimeType="*/*" />
              <data android:pathPattern=".*\\.mp3" />
              <data android:pathPattern=".*\\.MP3" />
          </intent-filter>
          <intent-filter>
              <action android:name="android.intent.action.VIEW" />
              <category android:name="android.intent.category.DEFAULT" />
              <category android:name="android.intent.category.BROWSABLE" />
              <data android:scheme="file" />
              <data android:mimeType="*/*" />
              <data android:pathPattern=".*\\.flac" />
              <data android:pathPattern=".*\\.FLAC" />
          </intent-filter>
          <intent-filter>
              <action android:name="android.intent.action.VIEW" />
              <category android:name="android.intent.category.DEFAULT" />
              <category android:name="android.intent.category.BROWSABLE" />
              <data android:scheme="file" />
              <data android:mimeType="*/*" />
              <data android:pathPattern=".*\\.m4a" />
              <data android:pathPattern=".*\\.M4A" />
          </intent-filter>
          <intent-filter>
              <action android:name="android.intent.action.VIEW" />
              <category android:name="android.intent.category.DEFAULT" />
              <category android:name="android.intent.category.BROWSABLE" />
              <data android:scheme="file" />
              <data android:mimeType="*/*" />
              <data android:pathPattern=".*\\.wav" />
              <data android:pathPattern=".*\\.WAV" />
          </intent-filter>
          <intent-filter>
              <action android:name="android.intent.action.VIEW" />
              <category android:name="android.intent.category.DEFAULT" />
              <category android:name="android.intent.category.BROWSABLE" />
              <data android:scheme="content" />
              <data android:mimeType="*/*" />
              <data android:pathPattern=".*\\.mp3" />
              <data android:pathPattern=".*\\.MP3" />
          </intent-filter>
          <intent-filter>
              <action android:name="android.intent.action.VIEW" />
              <category android:name="android.intent.category.DEFAULT" />
              <category android:name="android.intent.category.BROWSABLE" />
              <data android:scheme="content" />
              <data android:mimeType="*/*" />
              <data android:pathPattern=".*\\.flac" />
              <data android:pathPattern=".*\\.FLAC" />
          </intent-filter>
          <intent-filter>
              <action android:name="android.intent.action.VIEW" />
              <category android:name="android.intent.category.DEFAULT" />
              <category android:name="android.intent.category.BROWSABLE" />
              <data android:scheme="content" />
              <data android:mimeType="*/*" />
              <data android:pathPattern=".*\\.m4a" />
              <data android:pathPattern=".*\\.M4A" />
          </intent-filter>          
          <intent-filter>
              <action android:name="android.intent.action.VIEW" />
              <category android:name="android.intent.category.DEFAULT" />
              <category android:name="android.intent.category.BROWSABLE" />
              <data android:scheme="content" />
              <data android:mimeType="*/*" />
              <data android:pathPattern=".*\\.wav" />
              <data android:pathPattern=".*\\.WAV" />
          </intent-filter>
          <!-- 处理JavaScript文件 -->
          <intent-filter>
              <action android:name="android.intent.action.VIEW" />
              <category android:name="android.intent.category.DEFAULT" />
              <category android:name="android.intent.category.BROWSABLE" />
              <data android:scheme="file" />
              <data android:mimeType="text/javascript" />
          </intent-filter>
          <intent-filter>
              <action android:name="android.intent.action.VIEW" />
              <category android:name="android.intent.category.DEFAULT" />
              <category android:name="android.intent.category.BROWSABLE" />
              <data android:scheme="content" />
              <data android:mimeType="text/javascript" />
          </intent-filter>
          <intent-filter>
              <action android:name="android.intent.action.VIEW" />
              <category android:name="android.intent.category.DEFAULT" />
              <category android:name="android.intent.category.BROWSABLE" />
              <data android:scheme="file" />
              <data android:mimeType="*/*" />
              <data android:pathPattern=".*\\.js" />
              <data android:pathPattern=".*\\.JS" />
          </intent-filter>
          <intent-filter>
              <action android:name="android.intent.action.VIEW" />
              <category android:name="android.intent.category.DEFAULT" />
              <category android:name="android.intent.category.BROWSABLE" />
              <data android:scheme="content" />
              <data android:mimeType="*/*" />
              <data android:pathPattern=".*\\.js" />
              <data android:pathPattern=".*\\.JS" />
          </intent-filter>
      </activity>
    </application>
</manifest>


================================================
FILE: android/app/src/main/java/fun/upup/musicfree/MainActivity.kt
================================================
package `fun`.upup.musicfree
import expo.modules.ReactActivityDelegateWrapper
import expo.modules.splashscreen.SplashScreenManager

import com.facebook.react.ReactActivity
import com.facebook.react.ReactActivityDelegate
import com.facebook.react.defaults.DefaultNewArchitectureEntryPoint.fabricEnabled
import com.facebook.react.defaults.DefaultReactActivityDelegate
import android.os.Bundle

class MainActivity : ReactActivity() {

  /**
   * Returns the name of the main component registered from JavaScript. This is used to schedule
   * rendering of the component.
   */
  override fun getMainComponentName(): String = "MusicFree"

  /**
   * Returns the instance of the [ReactActivityDelegate]. We use [DefaultReactActivityDelegate]
   * which allows you to enable New Architecture with a single boolean flags [fabricEnabled]
   */
  override fun createReactActivityDelegate(): ReactActivityDelegate =
      ReactActivityDelegateWrapper(this, BuildConfig.IS_NEW_ARCHITECTURE_ENABLED, DefaultReactActivityDelegate(this, mainComponentName, fabricEnabled))

  // https://reactnavigation.org/docs/getting-started/#installing-dependencies-into-a-bare-react-native-project
  override fun onCreate(savedInstanceState: Bundle?) {
      SplashScreenManager.registerOnActivity(this)
      super.onCreate(null);
  }
}


================================================
FILE: android/app/src/main/java/fun/upup/musicfree/MainApplication.kt
================================================
package `fun`.upup.musicfree
import android.content.res.Configuration
import expo.modules.ApplicationLifecycleDispatcher
import expo.modules.ReactNativeHostWrapper

import android.app.Application
import com.facebook.react.PackageList
import com.facebook.react.ReactApplication
import com.facebook.react.ReactHost
import com.facebook.react.ReactNativeHost
import com.facebook.react.ReactPackage
import com.facebook.react.defaults.DefaultNewArchitectureEntryPoint.load
import com.facebook.react.defaults.DefaultReactHost.getDefaultReactHost
import com.facebook.react.defaults.DefaultReactNativeHost
import com.facebook.react.soloader.OpenSourceMergedSoMapping
import com.facebook.soloader.SoLoader
import `fun`.upup.musicfree.lyricUtil.LyricUtilPackage
import `fun`.upup.musicfree.mp3Util.Mp3UtilPackage
import `fun`.upup.musicfree.utils.UtilsPackage

class MainApplication : Application(), ReactApplication {

  override val reactNativeHost: ReactNativeHost =
      ReactNativeHostWrapper(this, object : DefaultReactNativeHost(this) {
        override fun getPackages(): List<ReactPackage> =
            PackageList(this).packages.apply {
              // Packages that cannot be autolinked yet can be added manually here, for example:
              // add(MyReactNativePackage())
              add(UtilsPackage())
              add(Mp3UtilPackage())
              add(LyricUtilPackage())
            }

        override fun getJSMainModuleName(): String = "index"

        override fun getUseDeveloperSupport(): Boolean = BuildConfig.DEBUG

        override val isNewArchEnabled: Boolean = BuildConfig.IS_NEW_ARCHITECTURE_ENABLED
        override val isHermesEnabled: Boolean = BuildConfig.IS_HERMES_ENABLED
      })

  override val reactHost: ReactHost
    get() = ReactNativeHostWrapper.createReactHost(applicationContext, reactNativeHost)

  override fun onCreate() {
    super.onCreate()
    SoLoader.init(this, OpenSourceMergedSoMapping)
    if (BuildConfig.IS_NEW_ARCHITECTURE_ENABLED) {
      // If you opted-in for the New Architecture, we load the native entry point for this app.
      load()
    }
    ApplicationLifecycleDispatcher.onApplicationCreate(this)
  }

  override fun onConfigurationChanged(newConfig: Configuration) {
    super.onConfigurationChanged(newConfig)
    ApplicationLifecycleDispatcher.onConfigurationChanged(this, newConfig)
  }
}


================================================
FILE: android/app/src/main/java/fun/upup/musicfree/lyricUtil/LyricUtilModule.kt
================================================
package `fun`.upup.musicfree.lyricUtil

import android.app.Activity
import android.content.Intent
import android.net.Uri
import android.os.Build
import android.provider.Settings
import android.util.Log
import androidx.annotation.RequiresApi
import com.facebook.react.bridge.*
import java.util.*

class LyricUtilModule(private val reactContext: ReactApplicationContext): ReactContextBaseJavaModule(reactContext) {
    override fun getName() = "LyricUtil"
    private var lyricView: LyricView? = null

    @ReactMethod
    fun checkSystemAlertPermission(promise: Promise) {
        try {
            promise.resolve(Settings.canDrawOverlays(reactContext))
        } catch (e: Exception) {
            promise.reject("Error", e.message)
        }
    }

    @ReactMethod
    fun requestSystemAlertPermission(promise: Promise) {
        try {
            val intent = Intent(Settings.ACTION_MANAGE_OVERLAY_PERMISSION).apply {
                data = Uri.parse("package:" + reactContext.packageName)
            }
            currentActivity?.startActivity(intent)
            promise.resolve(true)
        } catch (e: Exception) {
            promise.reject("Error", e.message)
        }
    }

    @ReactMethod
    fun showStatusBarLyric(initLyric: String?, options: ReadableMap?, promise: Promise) {
        try {
            UiThreadUtil.runOnUiThread {
                if (lyricView == null) {
                    lyricView = LyricView(reactContext)
                }

                val mapOptions = mutableMapOf<String, Any>().apply {
                    if (options == null) {
                        return@apply
                    }
                    if (options.hasKey("topPercent")) {
                        put("topPercent", options.getDouble("topPercent"))
                    }
                    if (options.hasKey("leftPercent")) {
                        put("leftPercent", options.getDouble("leftPercent"))
                    }
                    if (options.hasKey("align")) {
                        put("align", options.getInt("align"))
                    }
                    if (options.hasKey("color")) {
                        options.getString("color")?.let { put("color", it) }
                    }
                    if (options.hasKey("backgroundColor")) {
                        options.getString("backgroundColor")?.let { put("backgroundColor", it) }
                    }
                    if (options.hasKey("widthPercent")) {
                        put("widthPercent", options.getDouble("widthPercent"))
                    }
                    if (options.hasKey("fontSize")) {
                        put("fontSize", options.getDouble("fontSize"))
                    }
                }

                try {
                    lyricView?.showLyricWindow(initLyric, mapOptions)
                    promise.resolve(true)
                } catch (e: Exception) {
                    promise.reject("Exception", e.message)
                }
            }
        } catch (e: Exception) {
            promise.reject("Exception", e.message)
        }
    }

    @ReactMethod
    fun hideStatusBarLyric(promise: Promise) {
        try {
            UiThreadUtil.runOnUiThread {
                lyricView?.hideLyricWindow()
            }
            promise.resolve(true)
        } catch (e: Exception) {
            promise.reject("Exception", e.message)
        }
    }

    @ReactMethod
    fun setStatusBarLyricText(lyric: String, promise: Promise) {
        try {
            UiThreadUtil.runOnUiThread {
                lyricView?.setText(lyric)
            }
            promise.resolve(true)
        } catch (e: Exception) {
            promise.reject("Exception", e.message)
        }
    }

    @ReactMethod
    fun setStatusBarLyricAlign(alignment: Int, promise: Promise) {
        try {
            UiThreadUtil.runOnUiThread {
                lyricView?.setAlign(alignment)
            }
            promise.resolve(true)
        } catch (e: Exception) {
            promise.reject("Exception", e.message)
        }
    }

    @ReactMethod
    fun setStatusBarLyricTop(pct: Double, promise: Promise) {
        try {
            UiThreadUtil.runOnUiThread {
                lyricView?.setTopPercent(pct)
            }
            promise.resolve(true)
        } catch (e: Exception) {
            promise.reject("Exception", e.message)
        }
    }

    @ReactMethod
    fun setStatusBarLyricLeft(pct: Double, promise: Promise) {
        try {
            UiThreadUtil.runOnUiThread {
                lyricView?.setLeftPercent(pct)
            }
            promise.resolve(true)
        } catch (e: Exception) {
            promise.reject("Exception", e.message)
        }
    }

    @ReactMethod
    fun setStatusBarLyricWidth(pct: Double, promise: Promise) {
        try {
            UiThreadUtil.runOnUiThread {
                lyricView?.setWidth(pct)
            }
            promise.resolve(true)
        } catch (e: Exception) {
            promise.reject("Exception", e.message)
        }
    }

    @ReactMethod
    fun setStatusBarLyricFontSize(fontSize: Float, promise: Promise) {
        try {
            UiThreadUtil.runOnUiThread {
                lyricView?.setFontSize(fontSize)
            }
            promise.resolve(true)
        } catch (e: Exception) {
            promise.reject("Exception", e.message)
        }
    }

    @ReactMethod
    fun setStatusBarColors(textColor: String?, backgroundColor: String?, promise: Promise) {
        try {
            UiThreadUtil.runOnUiThread {
                lyricView?.setColors(textColor, backgroundColor)
            }
            promise.resolve(true)
        } catch (e: Exception) {
            promise.reject("Exception", e.message)
        }
    }

}


================================================
FILE: android/app/src/main/java/fun/upup/musicfree/lyricUtil/LyricUtilPackage.kt
================================================
package `fun`.upup.musicfree.lyricUtil

import android.view.View
import com.facebook.react.ReactPackage
import com.facebook.react.bridge.NativeModule
import com.facebook.react.bridge.ReactApplicationContext
import com.facebook.react.uimanager.ReactShadowNode
import com.facebook.react.uimanager.ViewManager

class LyricUtilPackage : ReactPackage {

    override fun createViewManagers(
        reactContext: ReactApplicationContext
    ): MutableList<ViewManager<View, ReactShadowNode<*>>> = mutableListOf()

    override fun createNativeModules(
        reactContext: ReactApplicationContext
    ): MutableList<NativeModule> = listOf(LyricUtilModule(reactContext)).toMutableList()
}

================================================
FILE: android/app/src/main/java/fun/upup/musicfree/lyricUtil/LyricView.kt
================================================
package `fun`.upup.musicfree.lyricUtil

import android.app.Activity
import android.content.Context
import android.graphics.Color
import android.graphics.PixelFormat
import android.graphics.drawable.ColorDrawable
import android.hardware.SensorManager
import android.os.Build
import android.util.DisplayMetrics
import android.util.Log
import android.view.Gravity
import android.view.MotionEvent
import android.view.OrientationEventListener
import android.view.View
import android.view.WindowManager
import android.widget.TextView
import com.facebook.react.bridge.ReactContext



class LyricView(private val reactContext: ReactContext) : Activity(), View.OnTouchListener {

    private var windowManager: WindowManager? = null
    private var orientationEventListener: OrientationEventListener? = null
    private var layoutParams: WindowManager.LayoutParams? = null
    private var tv: TextView? = null

    // 窗口信息
    private var windowWidth = 0.0
    private var windowHeight = 0.0
    private var widthPercent = 0.0
    private var leftPercent = 0.0
    private var topPercent = 0.0

    override fun onTouch(view: View, motionEvent: MotionEvent): Boolean {
        Log.d("touch", "Desktop Touch")
        return false
    }

    // 展示歌词窗口
    fun showLyricWindow(initText: String?, options: Map<String, Any>) {
        try {
            if (windowManager == null) {
                windowManager = reactContext.getSystemService(WINDOW_SERVICE) as WindowManager
                layoutParams = WindowManager.LayoutParams()

                val outMetrics = DisplayMetrics()
                windowManager?.defaultDisplay?.getMetrics(outMetrics)
                windowWidth = outMetrics.widthPixels.toDouble()
                windowHeight = outMetrics.heightPixels.toDouble()

                layoutParams?.type = if (Build.VERSION.SDK_INT < Build.VERSION_CODES.O)
                    WindowManager.LayoutParams.TYPE_SYSTEM_ALERT
                else
                    WindowManager.LayoutParams.TYPE_APPLICATION_OVERLAY

                /*
                 * topPercent: number;
                 * leftPercent: number;
                 * align: number;
                 * color: string;
                 * backgroundColor: string;
                 * widthPercent: number;
                 * fontSize: number;
                 */
                val topPercent = options["topPercent"]
                val leftPercent = options["leftPercent"]
                val align = options["align"]
                val color = options["color"]
                val backgroundColor = options["backgroundColor"]
                val widthPercent = options["widthPercent"]
                val fontSize = options["fontSize"]

                this.widthPercent = widthPercent?.toString()?.toDouble() ?: 0.5

                layoutParams?.width = (this.widthPercent * windowWidth).toInt()
                layoutParams?.height = WindowManager.LayoutParams.WRAP_CONTENT
                layoutParams?.gravity = Gravity.TOP or Gravity.START

                this.leftPercent = leftPercent?.toString()?.toDouble() ?: 0.5
                layoutParams?.x = (this.leftPercent * (windowWidth - layoutParams!!.width)).toInt()
                layoutParams?.y = 0

                layoutParams?.flags = WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE or
                        WindowManager.LayoutParams.FLAG_NOT_TOUCH_MODAL or
                        WindowManager.LayoutParams.FLAG_LAYOUT_IN_SCREEN or
                        WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS or
                        WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE

                layoutParams?.format = PixelFormat.TRANSPARENT

                tv = TextView(reactContext).apply {
                    text = initText ?: ""
                    textSize = fontSize?.toString()?.toFloat() ?: 14f
                    setBackgroundColor(Color.parseColor(rgba2argb(backgroundColor?.toString() ?: "#84888153")))
                    setTextColor(Color.parseColor(rgba2argb(color?.toString() ?: "#FFE9D2")))
                    setPadding(12, 6, 12, 6)
                    gravity = align?.toString()?.toInt() ?: Gravity.CENTER
                }
                windowManager?.addView(tv, layoutParams)

                topPercent?.toString()?.toDouble()?.let { setTopPercent(it) }

                listenOrientationChange()
            }
        } catch (e: Exception) {
            hideLyricWindow()
            throw e
        }
    }

    private fun listenOrientationChange() {
        if (windowManager == null) return

        if (orientationEventListener == null) {
            orientationEventListener = object : OrientationEventListener(reactContext, SensorManager.SENSOR_DELAY_NORMAL) {
                override fun onOrientationChanged(orientation: Int) {
                    if (windowManager != null) {
                        val outMetrics = DisplayMetrics()
                        windowManager?.defaultDisplay?.getMetrics(outMetrics)
                        windowWidth = outMetrics.widthPixels.toDouble()
                        windowHeight = outMetrics.heightPixels.toDouble()
                        layoutParams?.width = (widthPercent * windowWidth).toInt()
                        layoutParams?.x = (leftPercent * (windowWidth - layoutParams!!.width)).toInt()
                        layoutParams?.y = (topPercent * (windowHeight - tv!!.height)).toInt()
                        windowManager?.updateViewLayout(tv, layoutParams)
                    }
                }
            }
        }

        if (orientationEventListener?.canDetectOrientation() == true) {
            orientationEventListener?.enable()
        }
    }

    private fun unlistenOrientationChange() {
        orientationEventListener?.disable()
    }

    private fun rgba2argb(color: String): String {
        return if (color.length == 9) {
            color[0] + color.substring(7, 9) + color.substring(1, 7)
        } else {
            color
        }
    }

    // 隐藏歌词窗口
    fun hideLyricWindow() {
        if (windowManager != null) {
            tv?.let {
                try {
                    windowManager?.removeView(it)
                } catch (e: Exception) {
                    // Handle exception
                }
                tv = null
            }
            windowManager = null
            layoutParams = null
            unlistenOrientationChange()
        }
    }

    // 设置歌词内容
    fun setText(text: String) {
        tv?.text = text
    }

    fun setAlign(gravity: Int) {
        tv?.gravity = gravity
    }

    fun setTopPercent(pct: Double) {
        var percent = pct.coerceIn(0.0, 1.0)
        tv?.let {
            layoutParams?.y = (percent * (windowHeight - it.height)).toInt()
            windowManager?.updateViewLayout(it, layoutParams)
        }
        this.topPercent = percent
    }

    fun setLeftPercent(pct: Double) {
        var percent = pct.coerceIn(0.0, 1.0)
        tv?.let {
            layoutParams?.x = (percent * (windowWidth - layoutParams!!.width)).toInt()
            windowManager?.updateViewLayout(it, layoutParams)
        }
        this.leftPercent = percent
    }

    fun setColors(textColor: String?, backgroundColor: String?) {
        tv?.let {
            textColor?.let { color -> it.setTextColor(Color.parseColor(rgba2argb(color))) }
            backgroundColor?.let { color ->
                it.background = ColorDrawable(Color.parseColor(rgba2argb(color)))
            }
        }
    }

    fun setWidth(pct: Double) {
        var percent = pct.coerceIn(0.3, 1.0)
        tv?.let {
            val width = (percent * windowWidth).toInt()
            val originalWidth = layoutParams?.width ?: 0
            layoutParams?.x = if (width <= originalWidth) {
                layoutParams!!.x + (originalWidth - width) / 2
            } else {
                layoutParams!!.x - (width - originalWidth) / 2
            }.coerceAtLeast(0).coerceAtMost((windowWidth - width).toInt())
            layoutParams?.width = width
            windowManager?.updateViewLayout(it, layoutParams)
        }
        this.widthPercent = percent
    }

    fun setFontSize(fontSize: Float) {
        tv?.textSize = fontSize
    }
}

================================================
FILE: android/app/src/main/java/fun/upup/musicfree/mp3Util/Mp3UtilModule.kt
================================================
package `fun`.upup.musicfree.mp3Util

import android.graphics.Bitmap
import android.graphics.BitmapFactory
import android.media.MediaMetadataRetriever
import android.net.Uri
import com.facebook.react.bridge.*
import org.jaudiotagger.audio.AudioFileIO
import org.jaudiotagger.tag.FieldKey
import java.io.File
import java.io.FileOutputStream
import java.io.IOException

class Mp3UtilModule(private val reactContext: ReactApplicationContext) : ReactContextBaseJavaModule(reactContext) {

    override fun getName() = "Mp3Util"

    private fun isContentUri(uri: Uri?): Boolean {
        return uri?.scheme?.equals("content", ignoreCase = true) == true
    }

    @ReactMethod
    fun getBasicMeta(filePath: String, promise: Promise) {
        try {
            val uri = Uri.parse(filePath)
            val mmr = MediaMetadataRetriever()
            if (isContentUri(uri)) {
                mmr.setDataSource(reactApplicationContext, uri)
            } else {
                mmr.setDataSource(filePath)
            }

            val properties = Arguments.createMap().apply {
                putString("duration", mmr.extractMetadata(MediaMetadataRetriever.METADATA_KEY_DURATION))
                putString("bitrate", mmr.extractMetadata(MediaMetadataRetriever.METADATA_KEY_BITRATE))
                putString("artist", mmr.extractMetadata(MediaMetadataRetriever.METADATA_KEY_ARTIST))
                putString("author", mmr.extractMetadata(MediaMetadataRetriever.METADATA_KEY_AUTHOR))
                putString("album", mmr.extractMetadata(MediaMetadataRetriever.METADATA_KEY_ALBUM))
                putString("title", mmr.extractMetadata(MediaMetadataRetriever.METADATA_KEY_TITLE))
                putString("date", mmr.extractMetadata(MediaMetadataRetriever.METADATA_KEY_DATE))
                putString("year", mmr.extractMetadata(MediaMetadataRetriever.METADATA_KEY_YEAR))
            }
            promise.resolve(properties)
        } catch (e: Exception) {
            promise.reject("Exception", e.message)
        }
    }

    @ReactMethod
    fun getMediaMeta(filePaths: ReadableArray, promise: Promise) {
        val metas = Arguments.createArray()
        val mmr = MediaMetadataRetriever()
        for (i in 0 until filePaths.size()) {
            try {
                val filePath = filePaths.getString(i)
                val uri = Uri.parse(filePath)

                if (isContentUri(uri)) {
                    mmr.setDataSource(reactApplicationContext, uri)
                } else {
                    mmr.setDataSource(filePath)
                }

                val properties = Arguments.createMap().apply {
                    putString("duration", mmr.extractMetadata(MediaMetadataRetriever.METADATA_KEY_DURATION))
                    putString("bitrate", mmr.extractMetadata(MediaMetadataRetriever.METADATA_KEY_BITRATE))
                    putString("artist", mmr.extractMetadata(MediaMetadataRetriever.METADATA_KEY_ARTIST))
                    putString("author", mmr.extractMetadata(MediaMetadataRetriever.METADATA_KEY_AUTHOR))
                    putString("album", mmr.extractMetadata(MediaMetadataRetriever.METADATA_KEY_ALBUM))
                    putString("title", mmr.extractMetadata(MediaMetadataRetriever.METADATA_KEY_TITLE))
                    putString("date", mmr.extractMetadata(MediaMetadataRetriever.METADATA_KEY_DATE))
                    putString("year", mmr.extractMetadata(MediaMetadataRetriever.METADATA_KEY_YEAR))
                }
                metas.pushMap(properties)
            } catch (e: Exception) {
                metas.pushNull()
            }
        }
        try {
            mmr.release()
        } catch (ignored: Exception) {
        }
        promise.resolve(metas)
    }


    @ReactMethod
    fun getMediaCoverImg(filePath: String, promise: Promise) {
        try {
            val file = File(filePath)
            if (!file.exists()) {
                promise.reject("File not exist", "File not exist")
                return
            }

            val pathHashCode = file.hashCode()
            if (pathHashCode == 0) {
                promise.resolve(null)
                return
            }

            val cacheDir = reactContext.cacheDir
            val coverFile = File(cacheDir, "image_manager_disk_cache/$pathHashCode.jpg")
            if (coverFile.exists()) {
                promise.resolve(coverFile.toURI().toString())
                return
            }

            val mmr = MediaMetadataRetriever()
            mmr.setDataSource(filePath)
            val coverImg = mmr.embeddedPicture
            if (coverImg != null) {
                val bitmap = BitmapFactory.decodeByteArray(coverImg, 0, coverImg.size)
                FileOutputStream(coverFile).use { outputStream ->
                    bitmap.compress(Bitmap.CompressFormat.JPEG, 100, outputStream)
                    outputStream.flush()
                }
                promise.resolve(coverFile.toURI().toString())
            } else {
                promise.resolve(null)
            }
            mmr.release()
        } catch (ignored: Exception) {
            promise.reject("Error", "Got error")
        }
    }

    @ReactMethod
    fun getLyric(filePath: String, promise: Promise) {
        try {
            val file = File(filePath)
            if (file.exists()) {
                val audioFile = AudioFileIO.read(file)
                val tag = audioFile.tag
                val lrc = tag.getFirst(FieldKey.LYRICS)
                promise.resolve(lrc)
            } else {
                throw IOException("File not found")
            }
        } catch (e: Exception) {
            promise.reject("Error", e.message)
        }
    }

    @ReactMethod
    fun setMediaTag(filePath: String, meta: ReadableMap, promise: Promise) {
        try {
            val file = File(filePath)
            if (file.exists()) {
                val audioFile = AudioFileIO.read(file)
                val tag = audioFile.tag
                meta.getString("title")?.let { tag.setField(FieldKey.TITLE, it) }
                meta.getString("artist")?.let { tag.setField(FieldKey.ARTIST, it) }
                meta.getString("album")?.let { tag.setField(FieldKey.ALBUM, it) }
                meta.getString("lyric")?.let { tag.setField(FieldKey.LYRICS, it) }
                meta.getString("comment")?.let { tag.setField(FieldKey.COMMENT, it) }
                audioFile.commit()
                promise.resolve(true)
            } else {
                promise.reject("Error", "File Not Exist")
            }
        } catch (e: Exception) {
            promise.reject("Error", e.message)
        }
    }

    @ReactMethod
    fun getMediaTag(filePath: String, promise: Promise) {
        try {
            val file = File(filePath)
            if (file.exists()) {
                val audioFile = AudioFileIO.read(file)
                val tag = audioFile.tag

                val properties = Arguments.createMap().apply {
                    putString("title", tag.getFirst(FieldKey.TITLE))
                    putString("artist", tag.getFirst(FieldKey.ARTIST))
                    putString("album", tag.getFirst(FieldKey.ALBUM))
                    putString("lyric", tag.getFirst(FieldKey.LYRICS))
                    putString("comment", tag.getFirst(FieldKey.COMMENT))
                }
                promise.resolve(properties)
            } else {
                promise.reject("Error", "File Not Found")
            }
        } catch (e: Exception) {
            promise.reject("Error", e.message)
        }
    }
}

================================================
FILE: android/app/src/main/java/fun/upup/musicfree/mp3Util/Mp3UtilPackage.kt
================================================
package `fun`.upup.musicfree.mp3Util

import android.view.View
import com.facebook.react.ReactPackage
import com.facebook.react.bridge.NativeModule
import com.facebook.react.bridge.ReactApplicationContext
import com.facebook.react.uimanager.ReactShadowNode
import com.facebook.react.uimanager.ViewManager

class Mp3UtilPackage : ReactPackage {

    override fun createViewManagers(
        reactContext: ReactApplicationContext
    ): MutableList<ViewManager<View, ReactShadowNode<*>>> = mutableListOf()

    override fun createNativeModules(
        reactContext: ReactApplicationContext
    ): MutableList<NativeModule> = listOf(Mp3UtilModule(reactContext)).toMutableList()
}

================================================
FILE: android/app/src/main/java/fun/upup/musicfree/utils/UtilsModule.kt
================================================
package `fun`.upup.musicfree.utils; // replace your-apps-package-name with your app’s package name
import android.Manifest
import android.content.Context
import android.content.Intent
import android.content.pm.PackageManager
import android.net.Uri
import android.os.Build
import android.os.Environment
import android.provider.Settings
import android.util.DisplayMetrics
import android.view.WindowInsets
import android.view.WindowManager
import androidx.core.content.ContextCompat
import com.facebook.react.bridge.Arguments
import com.facebook.react.bridge.Promise
import com.facebook.react.bridge.ReactApplicationContext
import com.facebook.react.bridge.ReactContextBaseJavaModule
import com.facebook.react.bridge.ReactMethod
import com.facebook.react.bridge.WritableMap
import kotlin.system.exitProcess

class UtilsModule(context: ReactApplicationContext) : ReactContextBaseJavaModule(context) {

    private val reactContext: ReactApplicationContext = context;

    override fun getName() = "NativeUtils"

    @ReactMethod
    fun exitApp() {
        val activity = reactContext.currentActivity
        activity?.finishAndRemoveTask()
        android.os.Process.killProcess(android.os.Process.myPid())
        exitProcess(0)
    }

    @ReactMethod
    fun checkStoragePermission(promise: Promise) {
        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.R) {
            promise.resolve(Environment.isExternalStorageManager())
        } else {
            val readPermission = ContextCompat.checkSelfPermission(reactContext, Manifest.permission.READ_EXTERNAL_STORAGE) == PackageManager.PERMISSION_GRANTED
            val writePermission = ContextCompat.checkSelfPermission(reactContext, Manifest.permission.WRITE_EXTERNAL_STORAGE) == PackageManager.PERMISSION_GRANTED
            promise.resolve(readPermission && writePermission)
        }
    }

    @ReactMethod
    fun requestStoragePermission() {
        val intent = if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.R) {
            Intent(Settings.ACTION_MANAGE_APP_ALL_FILES_ACCESS_PERMISSION).apply {
                data = Uri.parse("package:${reactContext.packageName}")
            }
        } else {
            Intent(Settings.ACTION_APPLICATION_DETAILS_SETTINGS).apply {
                data = Uri.parse("package:${reactContext.packageName}")
            }
        }
        reactContext.currentActivity?.startActivity(intent)
    }

    @ReactMethod(isBlockingSynchronousMethod = true)
    fun getWindowDimensions(): WritableMap {
        val windowManager = reactApplicationContext.getSystemService(Context.WINDOW_SERVICE) as WindowManager
        val displayMetrics: DisplayMetrics = reactApplicationContext.resources.displayMetrics
        val density = displayMetrics.density

        return if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.R) {
            // Android 11 (API 30) 及以上使用新 API
            val windowMetrics = windowManager.currentWindowMetrics
            val insets = windowMetrics.windowInsets.getInsetsIgnoringVisibility(WindowInsets.Type.systemBars())
            val bounds = windowMetrics.bounds

            val totalWidthPx = bounds.width()
            val totalHeightPx = bounds.height()

            val leftInsetPx = insets.left
            val rightInsetPx = insets.right
            val topInsetPx = insets.top
            val bottomInsetPx = insets.bottom

            val usableWidthPx = totalWidthPx - leftInsetPx - rightInsetPx
            val usableHeightPx = totalHeightPx - topInsetPx - bottomInsetPx

            val usableWidthDp = usableWidthPx / density
            val usableHeightDp = usableHeightPx / density

            Arguments.createMap().apply {
                putDouble("width", usableWidthDp.toDouble())
                putDouble("height", usableHeightDp.toDouble())
            }
        } else {
            // Android 10 及以下使用旧 API
            val display = windowManager.defaultDisplay
            val realSize = android.graphics.Point()
            display.getRealSize(realSize)

            // 获取状态栏和导航栏高度
            val resources = reactApplicationContext.resources
            var statusBarHeight = 0
            var navigationBarHeight = 0

            // 状态栏高度
            val statusBarResourceId = resources.getIdentifier("status_bar_height", "dimen", "android")
            if (statusBarResourceId > 0) {
                statusBarHeight = resources.getDimensionPixelSize(statusBarResourceId)
            }

            // 导航栏高度
            val navigationBarResourceId = resources.getIdentifier("navigation_bar_height", "dimen", "android")
            if (navigationBarResourceId > 0) {
                navigationBarHeight = resources.getDimensionPixelSize(navigationBarResourceId)
            }

            val usableWidthPx = realSize.x
            val usableHeightPx = realSize.y - statusBarHeight - navigationBarHeight

            val usableWidthDp = usableWidthPx / density
            val usableHeightDp = usableHeightPx / density

            Arguments.createMap().apply {
                putDouble("width", usableWidthDp.toDouble())
                putDouble("height", usableHeightDp.toDouble())
            }
        }
    }
}


================================================
FILE: android/app/src/main/java/fun/upup/musicfree/utils/UtilsPackage.kt
================================================
package `fun`.upup.musicfree.utils

import android.view.View
import com.facebook.react.ReactPackage
import com.facebook.react.bridge.NativeModule
import com.facebook.react.bridge.ReactApplicationContext
import com.facebook.react.uimanager.ReactShadowNode
import com.facebook.react.uimanager.ViewManager

class UtilsPackage : ReactPackage {

    override fun createViewManagers(
        reactContext: ReactApplicationContext
    ): MutableList<ViewManager<View, ReactShadowNode<*>>> = mutableListOf()

    override fun createNativeModules(
        reactContext: ReactApplicationContext
    ): MutableList<NativeModule> = listOf(UtilsModule(reactContext)).toMutableList()
}

================================================
FILE: android/app/src/main/res/drawable/rn_edit_text_material.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2014 The Android Open Source Project

     Licensed under the Apache License, Version 2.0 (the "License");
     you may not use this file except in compliance with the License.
     You may obtain a copy of the License at

          http://www.apache.org/licenses/LICENSE-2.0

     Unless required by applicable law or agreed to in writing, software
     distributed under the License is distributed on an "AS IS" BASIS,
     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     See the License for the specific language governing permissions and
     limitations under the License.
-->
<inset xmlns:android="http://schemas.android.com/apk/res/android"
       android:insetLeft="@dimen/abc_edit_text_inset_horizontal_material"
       android:insetRight="@dimen/abc_edit_text_inset_horizontal_material"
       android:insetTop="@dimen/abc_edit_text_inset_top_material"
       android:insetBottom="@dimen/abc_edit_text_inset_bottom_material"
       >

    <selector>
        <!--
          This file is a copy of abc_edit_text_material (https://bit.ly/3k8fX7I).
          The item below with state_pressed="false" and state_focused="false" causes a NullPointerException.
          NullPointerException:tempt to invoke virtual method 'android.graphics.drawable.Drawable android.graphics.drawable.Drawable$ConstantState.newDrawable(android.content.res.Resources)'

          <item android:state_pressed="false" android:state_focused="false" android:drawable="@drawable/abc_textfield_default_mtrl_alpha"/>

          For more info, see https://bit.ly/3CdLStv (react-native/pull/29452) and https://bit.ly/3nxOMoR.
        -->
        <item android:state_enabled="false" android:drawable="@drawable/abc_textfield_default_mtrl_alpha"/>
        <item android:drawable="@drawable/abc_textfield_activated_mtrl_alpha"/>
    </selector>

</inset>


================================================
FILE: android/app/src/main/res/drawable/splashscreen.xml
================================================
 <layer-list xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:drawable="@color/splashscreen_background"/>
 </layer-list>

================================================
FILE: android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
    <background android:drawable="@color/ic_launcher_background"/>
    <foreground android:drawable="@mipmap/ic_launcher_foreground"/>
</adaptive-icon>

================================================
FILE: android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
    <background android:drawable="@color/ic_launcher_background"/>
    <foreground android:drawable="@mipmap/ic_launcher_foreground"/>
</adaptive-icon>

================================================
FILE: android/app/src/main/res/values/colors.xml
================================================
<resources>
    <color name="splashscreen_background">#27282C</color> <!-- #AARRGGBB or #RRGGBB format -->
</resources>

================================================
FILE: android/app/src/main/res/values/ic_launcher_background.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<resources>
    <color name="ic_launcher_background">#27282C</color>
</resources>

================================================
FILE: android/app/src/main/res/values/strings.xml
================================================
<resources>
    <string name="app_name">MusicFree</string>
    <string name="expo_splash_screen_status_bar_translucent">true</string>
    <!-- rtnp channel id -->
    <string name="rntp_temporary_channel_id">musicfree_temporary_channel</string>
    <!-- rtnp channel name -->
    <string name="rntp_temporary_channel_name">musicfree_temporary_channel</string>
    <string name="playback_channel_name">MusicFree</string>
</resources>


================================================
FILE: android/app/src/main/res/values/styles.xml
================================================
<resources>

    <!-- Base application theme. -->
    <style name="AppTheme" parent="Theme.AppCompat.DayNight.NoActionBar">
        <!-- Customize your theme here. -->
        <item name="android:editTextBackground">@drawable/rn_edit_text_material</item>
    </style>

    <!-- Splash screen -->
    <style name="Theme.App.SplashScreen" parent="Theme.SplashScreen">
        <item name="windowSplashScreenBackground">@color/splashscreen_background</item>
        <item name="windowSplashScreenAnimatedIcon">@drawable/splashscreen_image</item>
        <item name="postSplashScreenTheme">@style/AppTheme</item>
        <item name="android:windowSplashScreenBrandingImage">@drawable/spashscreen_branding_image</item>
    </style>

</resources>


================================================
FILE: android/build.gradle
================================================
buildscript {
    ext {
        buildToolsVersion = "35.0.0"
        minSdkVersion = 24
        compileSdkVersion = 35
        targetSdkVersion = 30
        ndkVersion = "26.1.10909125"
        kotlinVersion = "1.9.24"
    }
    repositories {
        maven { url 'https://maven.aliyun.com/repository/central'}
        maven { url 'https://maven.aliyun.com/repository/public' }
        maven { url 'https://maven.aliyun.com/repository/gradle-plugin' }
        google()
        mavenCentral()
        maven { url 'https://jitpack.io' }
    }
    dependencies {
        classpath("com.android.tools.build:gradle")
        classpath("com.facebook.react:react-native-gradle-plugin")
        classpath("org.jetbrains.kotlin:kotlin-gradle-plugin")
    }
}
apply plugin: "com.facebook.react.rootproject"


================================================
FILE: android/gradle/wrapper/gradle-wrapper.properties
================================================
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
# distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-all.zip
distributionUrl=https\://mirrors.cloud.tencent.com/gradle/gradle-8.10.2-all.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists


================================================
FILE: android/gradle.properties
================================================
# Project-wide Gradle settings.

# IDE (e.g. Android Studio) users:
# Gradle settings configured through the IDE *will override*
# any settings specified in this file.

# For more details on how to configure your build environment visit
# http://www.gradle.org/docs/current/userguide/build_environment.html

# Specifies the JVM arguments used for the daemon process.
# The setting is particularly useful for tweaking memory settings.
# Default value: -Xmx512m -XX:MaxMetaspaceSize=256m
org.gradle.jvmargs=-Xmx2048m -XX:MaxMetaspaceSize=512m

# When configured, Gradle will run in incubating parallel mode.
# This option should only be used with decoupled projects. More details, visit
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true

# AndroidX package structure to make it clearer which packages are bundled with the
# Android operating system, and which are packaged with your app's APK
# https://developer.android.com/topic/libraries/support-library/androidx-rn
android.useAndroidX=true

# Use this property to specify which architecture you want to build.
# You can also override it from the CLI using
# ./gradlew <task> -PreactNativeArchitectures=x86_64
reactNativeArchitectures=armeabi-v7a,arm64-v8a,x86,x86_64

# Use this property to enable support to the new architecture.
# This will allow you to use TurboModules and the Fabric render in
# your application. You should enable this flag either if you want
# to write custom TurboModules/Fabric components OR use libraries that
# are providing them.
newArchEnabled=false

# Use this property to enable or disable the Hermes JS engine.
# If set to false, you will be using JSC instead.
hermesEnabled=true


================================================
FILE: android/gradlew
================================================
#!/bin/sh

#
# Copyright © 2015-2021 the original authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#      https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# SPDX-License-Identifier: Apache-2.0
#

##############################################################################
#
#   Gradle start up script for POSIX generated by Gradle.
#
#   Important for running:
#
#   (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is
#       noncompliant, but you have some other compliant shell such as ksh or
#       bash, then to run this script, type that shell name before the whole
#       command line, like:
#
#           ksh Gradle
#
#       Busybox and similar reduced shells will NOT work, because this script
#       requires all of these POSIX shell features:
#         * functions;
#         * expansions «$var», «${var}», «${var:-default}», «${var+SET}»,
#           «${var#prefix}», «${var%suffix}», and «$( cmd )»;
#         * compound commands having a testable exit status, especially «case»;
#         * various built-in commands including «command», «set», and «ulimit».
#
#   Important for patching:
#
#   (2) This script targets any POSIX shell, so it avoids extensions provided
#       by Bash, Ksh, etc; in particular arrays are avoided.
#
#       The "traditional" practice of packing multiple parameters into a
#       space-separated string is a well documented source of bugs and security
#       problems, so this is (mostly) avoided, by progressively accumulating
#       options in "$@", and eventually passing that to Java.
#
#       Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS,
#       and GRADLE_OPTS) rely on word-splitting, this is performed explicitly;
#       see the in-line comments for details.
#
#       There are tweaks for specific operating systems such as AIX, CygWin,
#       Darwin, MinGW, and NonStop.
#
#   (3) This script is generated from the Groovy template
#       https://github.com/gradle/gradle/blob/HEAD/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
#       within the Gradle project.
#
#       You can find Gradle at https://github.com/gradle/gradle/.
#
##############################################################################

# Attempt to set APP_HOME

# Resolve links: $0 may be a link
app_path=$0

# Need this for daisy-chained symlinks.
while
    APP_HOME=${app_path%"${app_path##*/}"}  # leaves a trailing /; empty if no leading path
    [ -h "$app_path" ]
do
    ls=$( ls -ld "$app_path" )
    link=${ls#*' -> '}
    case $link in             #(
      /*)   app_path=$link ;; #(
      *)    app_path=$APP_HOME$link ;;
    esac
done

# This is normally unused
# shellcheck disable=SC2034
APP_BASE_NAME=${0##*/}
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s
' "$PWD" ) || exit

# Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD=maximum

warn () {
    echo "$*"
} >&2

die () {
    echo
    echo "$*"
    echo
    exit 1
} >&2

# OS specific support (must be 'true' or 'false').
cygwin=false
msys=false
darwin=false
nonstop=false
case "$( uname )" in                #(
  CYGWIN* )         cygwin=true  ;; #(
  Darwin* )         darwin=true  ;; #(
  MSYS* | MINGW* )  msys=true    ;; #(
  NONSTOP* )        nonstop=true ;;
esac

CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar


# Determine the Java command to use to start the JVM.
if [ -n "$JAVA_HOME" ] ; then
    if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
        # IBM's JDK on AIX uses strange locations for the executables
        JAVACMD=$JAVA_HOME/jre/sh/java
    else
        JAVACMD=$JAVA_HOME/bin/java
    fi
    if [ ! -x "$JAVACMD" ] ; then
        die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME

Please set the JAVA_HOME variable in your environment to match the
location of your Java installation."
    fi
else
    JAVACMD=java
    if ! command -v java >/dev/null 2>&1
    then
        die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.

Please set the JAVA_HOME variable in your environment to match the
location of your Java installation."
    fi
fi

# Increase the maximum file descriptors if we can.
if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then
    case $MAX_FD in #(
      max*)
        # In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked.
        # shellcheck disable=SC2039,SC3045
        MAX_FD=$( ulimit -H -n ) ||
            warn "Could not query maximum file descriptor limit"
    esac
    case $MAX_FD in  #(
      '' | soft) :;; #(
      *)
        # In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked.
        # shellcheck disable=SC2039,SC3045
        ulimit -n "$MAX_FD" ||
            warn "Could not set maximum file descriptor limit to $MAX_FD"
    esac
fi

# Collect all arguments for the java command, stacking in reverse order:
#   * args from the command line
#   * the main class name
#   * -classpath
#   * -D...appname settings
#   * --module-path (only if needed)
#   * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables.

# For Cygwin or MSYS, switch paths to Windows format before running java
if "$cygwin" || "$msys" ; then
    APP_HOME=$( cygpath --path --mixed "$APP_HOME" )
    CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" )

    JAVACMD=$( cygpath --unix "$JAVACMD" )

    # Now convert the arguments - kludge to limit ourselves to /bin/sh
    for arg do
        if
            case $arg in                                #(
              -*)   false ;;                            # don't mess with options #(
              /?*)  t=${arg#/} t=/${t%%/*}              # looks like a POSIX filepath
                    [ -e "$t" ] ;;                      #(
              *)    false ;;
            esac
        then
            arg=$( cygpath --path --ignore --mixed "$arg" )
        fi
        # Roll the args list around exactly as many times as the number of
        # args, so each arg winds up back in the position where it started, but
        # possibly modified.
        #
        # NB: a `for` loop captures its iteration list before it begins, so
        # changing the positional parameters here affects neither the number of
        # iterations, nor the values presented in `arg`.
        shift                   # remove old arg
        set -- "$@" "$arg"      # push replacement arg
    done
fi


# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'

# Collect all arguments for the java command:
#   * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
#     and any embedded shellness will be escaped.
#   * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be
#     treated as '${Hostname}' itself on the command line.

set -- \
        "-Dorg.gradle.appname=$APP_BASE_NAME" \
        -classpath "$CLASSPATH" \
        org.gradle.wrapper.GradleWrapperMain \
        "$@"

# Stop when "xargs" is not available.
if ! command -v xargs >/dev/null 2>&1
then
    die "xargs is not available"
fi

# Use "xargs" to parse quoted args.
#
# With -n1 it outputs one arg per line, with the quotes and backslashes removed.
#
# In Bash we could simply go:
#
#   readarray ARGS < <( xargs -n1 <<<"$var" ) &&
#   set -- "${ARGS[@]}" "$@"
#
# but POSIX shell has neither arrays nor command substitution, so instead we
# post-process each arg (as a line of input to sed) to backslash-escape any
# character that might be a shell metacharacter, then use eval to reverse
# that process (while maintaining the separation between arguments), and wrap
# the whole thing up as a single "set" statement.
#
# This will of course break if any of these variables contains a newline or
# an unmatched quote.
#

eval "set -- $(
        printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" |
        xargs -n1 |
        sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' |
        tr '\n' ' '
    )" '"$@"'

exec "$JAVACMD" "$@"


================================================
FILE: android/gradlew.bat
================================================
@rem
@rem Copyright 2015 the original author or authors.
@rem
@rem Licensed under the Apache License, Version 2.0 (the "License");
@rem you may not use this file except in compliance with the License.
@rem You may obtain a copy of the License at
@rem
@rem      https://www.apache.org/licenses/LICENSE-2.0
@rem
@rem Unless required by applicable law or agreed to in writing, software
@rem distributed under the License is distributed on an "AS IS" BASIS,
@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@rem See the License for the specific language governing permissions and
@rem limitations under the License.
@rem
@rem SPDX-License-Identifier: Apache-2.0
@rem

@if "%DEBUG%"=="" @echo off
@rem ##########################################################################
@rem
@rem  Gradle startup script for Windows
@rem
@rem ##########################################################################

@rem Set local scope for the variables with windows NT shell
if "%OS%"=="Windows_NT" setlocal

set DIRNAME=%~dp0
if "%DIRNAME%"=="" set DIRNAME=.
@rem This is normally unused
set APP_BASE_NAME=%~n0
set APP_HOME=%DIRNAME%

@rem Resolve any "." and ".." in APP_HOME to make it shorter.
for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi

@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m"

@rem Find java.exe
if defined JAVA_HOME goto findJavaFromJavaHome

set JAVA_EXE=java.exe
%JAVA_EXE% -version >NUL 2>&1
if %ERRORLEVEL% equ 0 goto execute

echo. 1>&2
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 1>&2
echo. 1>&2
echo Please set the JAVA_HOME variable in your environment to match the 1>&2
echo location of your Java installation. 1>&2

goto fail

:findJavaFromJavaHome
set JAVA_HOME=%JAVA_HOME:"=%
set JAVA_EXE=%JAVA_HOME%/bin/java.exe

if exist "%JAVA_EXE%" goto execute

echo. 1>&2
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 1>&2
echo. 1>&2
echo Please set the JAVA_HOME variable in your environment to match the 1>&2
echo location of your Java installation. 1>&2

goto fail

:execute
@rem Setup the command line

set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar


@rem Execute Gradle
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %*

:end
@rem End local scope for the variables with windows NT shell
if %ERRORLEVEL% equ 0 goto mainEnd

:fail
rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
rem the _cmd.exe /c_ return code!
set EXIT_CODE=%ERRORLEVEL%
if %EXIT_CODE% equ 0 set EXIT_CODE=1
if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE%
exit /b %EXIT_CODE%

:mainEnd
if "%OS%"=="Windows_NT" endlocal

:omega


================================================
FILE: android/settings.gradle
================================================
pluginManagement { includeBuild("../node_modules/@react-native/gradle-plugin") }
plugins { id("com.facebook.react.settings") }
extensions.configure(com.facebook.react.ReactSettingsExtension){ ex ->
  def command = [
    'node',
    '--no-warnings',
    '--eval',
    'require(require.resolve(\'expo-modules-autolinking\', { paths: [require.resolve(\'expo/package.json\')] }))(process.argv.slice(1))',
    'react-native-config',
    '--json',
    '--platform',
    'android'
  ].toList()
  ex.autolinkLibrariesFromCommand(command)
}
rootProject.name = 'MusicFree'
include ':app'
includeBuild('../node_modules/@react-native/gradle-plugin')

apply from: new File(["node", "--print", "require.resolve('expo/package.json')"].execute(null, rootDir).text.trim(), "../scripts/autolinking.gradle")
useExpoModules()


================================================
FILE: app.json
================================================
{
  "name": "MusicFree",
  "displayName": "MusicFree"
}


================================================
FILE: babel.config.js
================================================
module.exports = {
    presets: ['babel-preset-expo'],
    plugins: [
        [
            'module-resolver',
            {
                root: ['./'],
                alias: {
                    '^@/(.+)': './src/\\1',
                    'webdav': "webdav/dist/react-native"
                },
            },
        ],
        'react-native-reanimated/plugin',
    ],
    env: {
        production: {
            plugins: ['transform-remove-console'],
        },
    },
};


================================================
FILE: changelog.md
================================================
`2025.10.9 v0.6.2`
1. 【优化】优化了软件启动速度

`2025.8.3 v0.6.1`
1. 修复进入软件时播放进度丢失的问题
2. 修复某些情况下无法添加到歌单的问题

`2025.7.24 v0.6.0`
一大波优化和问题修复~
1. 【功能】优化了倒计时功能,支持倒计时结束后,歌曲播放完成后再退出应用
2. 【功能】支持多语言
3. 【功能】新增音源重定向功能
4. 【功能】自定义主题中,选择颜色弹窗支持直接输入颜色代码
5. 【功能】新增配置,音频被暂时打断时可调节降低音量的幅度(感谢@eastcukt)
6. 【功能】本地歌单中,高亮正在播放的歌曲
7. 【功能】本地歌单中,新增定位按钮,点击定位按钮可跳转到正在播放的音乐
8. 【优化】略微调大了歌词页的播放按钮
9. 【优化】首页-推荐歌单支持左右滑动
10. 【优化】优化播放器的稳定性,减少出现闪退/播放自动暂停的情况
11. 【修复】修复了一批样式bug
12. 【修复】修复了点击更新订阅插件后,插件页始终展示加载中的问题
13. 【修复】修复部分情况下歌词页高亮混乱的问题
14. 【插件】插件获取评论支持分页(需要插件配合)
15. 【插件】修复移动端axios库中读取的cookie和桌面版不一致的问题
16. 【插件】插件新增description字段,可嵌入markdown格式的插件说明
17. 【其他】重构了核心部分代码逻辑,后续维护起来成本会小一些

`2025.4.4 v0.5.1`
1. 【修复】修复插件开关点击无效的问题
2. 【修复】修复开屏图片消失的问题
3. 【优化】增加新建歌单名称的长度限制
4. 【优化】优化插件安装失败的提示样式

`2025.2.9 v0.5.0`
1. 【升级】升级ReactNative到0.76.5(注意:升级后只支持安卓7.0及以上设备,低于此版本的设备请不要升级)
2. 【修复】修复了运行应用一段时间后容易闪退的问题
3. 【修复】修复了插件网络请求无法传递cookie的问题
4. 【修复】新增了设置本地歌单封面的功能(在0.4版本暂时下线了)
5. 【修复】修复了部分情况下,播放本地音乐提示 “当前非Wifi环境” 的问题
6. 【优化】优化了一些代码逻辑

`2024.11.10 v0.4.4`  
【修复】修复了部分系统上弹窗、浮层等无法出现,或动画表现异常的问题

`2024.10.27 v0.4.3`  
【修复】修复了部分系统上文字显示不全的问题

`2024.9.18 v0.4.2`
1. 【修复】修复本地音乐无法播放的问题

`2024.9.8 v0.4.1`
安装包上传到了飞书云文档,浏览器打开链接后有个下载说明,可以根据这个指引安装apk
1. 【修复】修复桌面歌词无法开启的问题
2. 【修复】修复了修改桌面歌词颜色会导致闪退的问题
3. 【修复】回滚了本地音乐部分读取文件的逻辑
4. 【修复】修复了点击【编辑歌单信息】按钮无效的问题

`2024.9.1 v0.4.0`
本次更新修改了歌单的存储机制,建议谨慎更新
安装包上传到了飞书云文档,浏览器打开链接后有个下载说明,可以根据这个指引安装apk
1. 【升级】ReactNative升级到0.74.4
2. 【功能】换了个logo和开屏页
3. 【功能】播放列表的歌曲限制从1500首调整到10000首
4. 【功能】重写了歌曲排序机制
5. 【功能】插件新增评论区功能(需要插件实现getMusicComments方法)
6. 【优化】调整部分样式,优化删除歌曲时的性能
7. 【修复】修复歌词翻译错位的问题
8. 【修复】修复部分情况下无法复制作者/专辑的问题
9. 【修复】修复在歌单详情页删除歌单会导致白屏的问题
10. 【修复】修复搜索框在部分情况下自动触发搜索的问题
11. 【修复】修复右上角菜单位置跳变的问题
12. 【修复】修复在预览专辑封面时触发返回不会关闭预览弹窗的问题
13. 【修复】下载文件时转移文件中的保留字符(感谢@GuGuMur)
14. 【其他】分架构打包,更新开源协议为 AGPL 3.0

`2024.3.31 v0.3.0`
本次更新优化了存储方式,更新到此版本后,歌单会自动转化为新的存储方式;安装新版本后再回退到老版本会导致歌单清空,虽然测试下来没啥问题,但是请谨慎升级Orz
备用链接:https://pan.baidu.com/s/1HmbHlh3vTcSyVXcOs-7kTA?pwd=saku 提取码: saku
1. 【功能】历史播放记录支持批量编辑
2. 【功能】歌单内支持按照加入时间排序
3. 【功能】新增设置“本地歌单添加歌曲顺序”,在歌单内添加歌曲时可以加到歌单开头
4. 【功能】首页新建歌单旁边新增“导入歌单”按钮,点击时会自动寻找具有导入歌单功能的插件,并拉起导入浮层
5. 【功能】设置项中新增“自动换源”功能,当插件失效/无法获取播放链接时,会自动尝试更换其他源的同名歌曲
6. 【优化】尝试优化了软件启动时间,应该有点作用
7. 【优化】更新了存储方式,现在单个歌单可以存储大于10000首歌曲;
8. 【优化】调整未开启“允许使用移动网络播放”开关时的样式表现
9. 【优化】优化了设置页的样式
10. 【优化】微调歌词详情页的布局
11. 【修复】修复打开弹窗时,点击返回按钮不关闭弹窗的问题
12. 【修复】修复启动软件时播放模式错误的问题
13. 【修复】修复搜索结果页特定情况下白屏的问题

`2024.1.21 v0.2.0`
1. 【功能】支持 Webdav 备份 & 播放
2. 【功能】插件支持显示作者
3. 【功能】插件榜单详情支持分页
4. 【功能】首页&歌词页样式改版:新增歌词进度调整、歌词大小调整、歌词翻译、自动搜索歌词
5. 【功能】新增收藏歌单功能
6. 【功能】侧边栏新增“权限管理”设置
7. 【功能】音乐播放栏支持左右滑动切歌(可能会闪一下,后续修掉)
8. 【功能】新增 “通知栏显示关闭按钮” 设置
9. 【优化】重构播放、数据存储逻辑
10. 【优化】统一浮层、toast样式
11. 【优化】去除插件URL必须以.js结尾的限制
12. 【修复】修改无限列表到底不触发onEndReached的问题 (感谢 @282931)
13. 【修复】修复标题栏背景色透明度不生效的问题
14. 【修复】修复播放记录退出后被清空的问题
15. 【修复】修复部分情况下深色模式异常的问题
16. 【其他】这次安装包备用链接发到百度网盘了:https://pan.baidu.com/s/1H360C0MqejKXS67XwMqgPw?pwd=6666 提取码6666


`2023.11.24 v0.1.2-alpha.0`
1. 【功能】新增桌面歌词功能,可在设置页开启(开启之前需要去手机设置授予悬浮窗权限)
2. 【功能】可以使用 MusicFree 打开本地 .js 或 .mp3 文件;其中 .js 文件会被当作插件安装; .mp3 文件会直接播放
3. 【功能】新增插件设置:打开软件时自动更新插件、安装插件时不校验版本
4. 【功能】新增播放设置:打开软件时自动播放歌曲
5. 【功能】插件页新增开关,可以控制是否在榜单、热门歌单、搜索结果中展示对应插件的结果
6. 【功能】插件协议新增 “用户变量” ,可以在插件中获取 APP 输入的配置(可以由此实现自建音乐源的插件/webdav源插件,但是还没写)
7. 【优化】下载单曲支持选择音质
8. 【优化】新增“关联歌词方式”设置,如果设置为“输入歌曲ID”,则会恢复老版本关联歌词,即输入ID关联歌词
9. 【优化】侧边栏新增“返回桌面”按钮
10. 【修复】修复榜单、推荐歌单、搜索歌词页白屏闪退的问题 (感谢 @282931)
11. 【修复】修复自定义背景模糊度和透明度无法设置为 0 的问题 (感谢 @282931)
12. 【修复】修复浅色主题状态栏表现错误的问题
13. 【修复】修复歌单批量编辑无法删除的问题
14. 【修复】修复无法恢复桌面版导出的歌单的问题

`2023.10.15 v0.1.1-alpha.0`
1. 【功能】音源支持m3u8 (桌面版下个版本支持m3u8)
2. 【功能】增加歌曲详情页屏幕常亮的设置
3. 【功能】重构主题相关功能,增加「跟随系统深色设置」选项;调整大部分样式,移除第三方UI库
4. 【功能】插件页增加「插件批量更新」的功能
5. 【功能】取消原「歌词关联」的逻辑,修改为拉起「歌词搜索」浮层
6. 【优化】增加了一些无障碍属性
7. 【修复】修复部分场景下无法保存歌单的问题
8. 【修复】修复部分场景下重启之后无法播放歌曲的问题
9. 【插件】部分插件更新,侧边栏更新插件即可

`2023.8.13 v0.1.0-alpha.10`
1. 【功能】当前音乐无歌词时可以在歌词页搜索歌词
2. 【优化】调整右上角弹出气泡的位置
3. 【优化】增加打开歌曲详情页时的默认表现设置
4. 【优化】修复进入歌词页时候显示跳变的问题
5. 【插件】插件协议更新,更新后可以配置某插件不出现在特定的搜索结果页下
6. 【插件】部分插件更新,侧边栏更新插件即可

`2023.6.26 v0.1.0-alpha.9`
1. 【功能】新增搜索歌单功能
2. 【功能】新增播放记录功能
3. 【优化】加了一些无障碍适配
4. 【插件】部分插件更新,侧边栏更新插件即可

`2023.6.4 v0.1.0-alpha.8`
1. 【功能】新增“推荐歌单”功能,需要配合支持该功能的插件使用
2. 【功能】导入本地文件时增加“全选”按钮
3. 【优化】修改“保存专辑封面”时的提示文案
4. 【修复】修复当目标歌曲在播放列表内时,添加到下一首播放无效的问题
5. 【插件】部分插件更新,侧边栏更新插件即可

`2023.5.21 v0.1.0-alpha.7`
1. 【功能】歌单页新增“播放全部”按钮
2. 【功能】歌曲播放页中,长按专辑封面可保存到本地
3. 【功能】歌单页新增“歌单排序”功能
4. 【插件】b站插件作者页API变动,侧边栏更新插件即可

`2023.5.3 v0.1.0-alpha.6`
小小拖更一下~
1. 【功能】歌单内搜索时支持英文大小写模糊搜索
2. 【修复】修复首次进入时歌曲可能无法正常播放的问题

`2023.3.26 v0.1.0-alpha.5`
1. 【功能】更新弹窗新增“跳过此版本”的复选框
2. 【功能】侧边栏-基本设置-开发选项中新增“查看错误日志”的选项,点击会弹出错误日志的弹窗
3. 【修复】修复输入框被软键盘遮挡的问题
4. 【优化】优化了定时关闭的样式
5. 【文档】文档中更新了插件的制作教程。文档地址:http://musicfree.upup.fun

`2023.3.19 v0.1.0-alpha.4`
1. 【功能】适配横屏设备
2. 【功能】新建歌单时添加默认歌单名;从专辑/榜单批量添加到新歌单时,默认以专辑名/榜单名为新歌单名
3. 【修复】修复设备有虚拟按键时,浮层会被遮挡的问题
4. 【修复】修复拖拽歌词时部分情况下时间异常的问题
5. 【修复】调整下载失败时的提示文案
6. 【插件】部分插件有更新,可以从侧边栏更新

`2023.2.26 v0.1.0-alpha.3`
1. 【功能】专辑列表支持分页,需要配合插件更新;
2. 【优化】去掉了全面屏手机界面下方的小白条;
3. 【优化】调整拖拽歌词时标识线的对齐范围;调整歌词拖到最底端时的逻辑;
4. 【优化】调整下载歌曲时的文件名;
5. 【优化】导入歌曲时的提示文案增加滚动;
6. 【修复】修复特殊情况下歌曲中断后可能恢复到错误状态的问题(未验证);
7. 【插件】个别插件有更新,可以去侧边栏更新订阅。

`2023.2.13 v0.1.0-alpha.2`
1. 【功能】备份&恢复:可以把本地的歌单和插件备份到一个json文件中,也可以从本地文件或网络上恢复插件和歌单。
2. 【修复】修复部分情况下后台播放切换歌曲时暂停的问题
3. 【修复】修复部分场景无法下载的问题
4. 【修复】修复部分场景无法删除本地文件的问题
5. 【优化】简单优化了下歌单列表
6. 【调试】调试面板现在可以打印出插件中的console语句

`2023.1.27 v0.1.0-alpha.1`
1. !!!【功能】插件更新,升级到新版本之后原有插件完全不兼容;更新后卸载原有插件,然后更新订阅即可(具体看公众号示例)
2. 【功能】新增功能“倍速播放”
3. 【功能】重写了插件订阅的逻辑,现在应该会更合理一点点
4. 【功能】删除本地文件之前增加二次确认提醒
5. 【功能】增加了一些无关紧要的分享
6. 【样式】换了个logo,丑的更直白一些
7. 【样式】调整了一些样式(如播放页的模糊和透明度、歌词样式等)
8. 【样式】专辑描述文字默认6行,点击可以展开或折叠
9. 【修复】修复部分情况下无法下载的问题
10. 【插件】大量插件有更新,更新到此版本后更新订阅即可

`2023.1.8 v0.0.1-alpha.13`
1. 【功能】主页入口增加“榜单”
2. 【功能】歌单页新增“编辑歌单信息”,可以修改歌单名称和歌单封面
3. 【修复】修复了一个会导致播放音乐时拖拽排序卡顿的问题,做了一些其他优化
4. 【插件】部分插件有更新,可以在侧边栏更新

`2022.12.25 v0.0.1-alpha.12`
1. 【功能】增加“单击搜索结果中单曲tab”时的行为配置
2. 【功能】增加调试配置及调试面板,可用于查看插件的错误信息
3. 【修复】修复部分情况下本地音乐中断时无法继续播放的问题
4. 【修复】尝试修复扫描本地音乐,音乐文件太多时可能卡死的问题

`2022.12.11 v0.0.1-alpha.11`
1. 【功能】完善音质功能
2. 【功能】更新下载功能,支持根据音质下载文件;修复一些小问题
3. 【功能】新增播放时被打断的设置,可设置为暂停或者暂时降低音量
4. 【优化】调整侧边栏样式,侧边栏新增“定时关闭”功能
5. 【优化】本地音乐读取歌词时,会自动读取同目录下的同名lrc文件作为歌词
6. 【修复】修复安装插件时误弹安装失败提示的问题
7. 【修复】修复部分情况下本地文件删除失败的问题
8. 【修复】修复本地音乐在通知栏不显示音乐标题的问题
9. 【插件】示例插件仓库中migu有更新(支持音质),需要可自行更新

`2022.12.4 v0.0.1-alpha.10`
1. 【功能】支持自定义下载路径
2. 【功能】支持插件排序(也就是搜索结果的排序)
3. 【功能】增加音质相关的配置
4. 【优化】弹窗、浮层的性能优化,页面嵌套较深时卡顿的情况应该会好一点
5. 【优化】拖拽排序,比上个版本手感应该会好一点
6. 【修复】修复在歌词页清空播放列表时白屏的问题

`2022.11.20  v0.0.1-alpha.9`
1. 【功能】本地音乐读取内嵌歌词
2. 【功能】批量编辑页新增了凑合能用的拖拽排序
3. 【功能】歌曲详情浮层新增凑合能用的定时关闭
4. 【功能】添加到歌单时可以新建歌单
5. 【功能】本地音乐扫描支持外置sd卡;支持导入aac格式
6. 【优化】优化播放列表浮层拉起时的锚定
7. 【修复】修复更新弹窗无法滚动的问题
8. 【修复】修复安卓12状态栏概率不沉浸的问题
9. 【修复】修复安卓12、13播一首就停的问题
10. 【插件】示例插件有更新,可以删掉原有插件重新导入

`2022.11.13  v0.0.1-alpha.8`
1. 【功能】侧边栏插件设置新增“订阅插件”功能,订阅之后直接点击“更新插件”即可更新,不需要清空重装了
2. 【功能】本地音乐读取内置封面
3. 【功能】本地音乐歌单支持批量删除(不删除源文件)
4. 【优化】重写导入本地音乐的逻辑,支持多选文件夹;修复部分机型重启应用时本地音乐消失的问题(可能需要删除后重新导入);支持导入flac,wav,wav,m4a,ogg等格式
5. 【优化】重写播放列表浮层,拉起时会锚定到当前正在播放的歌曲
6. 【优化】调整部分逻辑,可能会减少音频卡顿时卡死的情况
7. 【修复】修复歌曲详情页进度条不连续的问题
8. 【修复】修复某些情况下无法关联歌词的问题
9. 【修复】修复正在播放的歌曲无歌词时,进入歌词页白屏的问题
10. 【插件】示例插件有更新,可以删掉原有插件重新导入

`2022.10.30  v0.0.1-alpha.7`
1. 新增功能:历史记录一键清空
2. 新增功能:歌手页、本地歌单页支持批量编辑
3. 修复移动网络下无法播放本地音乐的问题
4. 样式优化&修复:toast提示显示异常、侧边栏样式优化、歌单内序号显示不全、【关于】页无法滑动
5. 之前使用的拖拽排序组件在列表较大时有很严重的性能问题,会导致卡顿甚至白屏,因此批量编辑页暂时去掉了拖拽排序,后续会重新加上

`2022.10.22  v0.0.1-alpha.6`
1. 重要!! v0.0.1-alpha.5以前的版本无法通过app正常更新,请在gitee/github发布页下载最新版本(v0.0.1-alpha.6),或QQ群自取;
2. 导入本地音乐时,如果未识别本地音乐文件,则会使用文件名作为音乐名;
3. 自建歌单、专辑详情页增加批量选择功能,可点击右上角查看(歌曲较多时可能有点卡,后续优化);使用方式:选中歌曲可进行下一首播放/加入歌单/下载/删除,长按拖动进行排序;删除/排序后点击保存按钮方可生效
4. 调整歌单内歌曲编号字体大小;

`2022.10.16  v0.0.1-alpha.5`
1. 新增功能:导入本地音乐文件
2. 从网络源安装的插件可在插件页直接更新
3. 调整下载逻辑

`2022.10.06  v0.0.1-alpha.4`
1. 修复专辑详情页没有loading的问题
2. 为插件新增Cookie管理器
3. 优化播放页的显示
4. 新增一键卸载全部插件的功能

`2022.10.04  v0.0.1-alpha.3`
1. 修复设置页无法滚动的问题
2. 修复播放结束时可能暂停的问题

`2022.10.03  v0.0.1-alpha.2`
1. 插件协议更新,需要重新安装插件
2. 支持批量导入插件
3. 新增清空播放列表功能
4. 优化搜索结果面板和播放专辑逻辑

`2022.10.02`
测试版本出现啦!撒花


================================================
FILE: generator/generate-assets.mjs
================================================
import fs from 'fs/promises';
import path from 'path';
import * as url from "node:url";


function toCamelCase(str) {
    // 将下划线和中划线统一替换为空格
    let camelCaseStr = str.replace(/[-_]/g, ' ');

    // 将每个单词的首字母大写,其余字母小写
    camelCaseStr = camelCaseStr.split(' ').map(word => {
        return word.charAt(0).toUpperCase() + word.slice(1).toLowerCase();
    }).join('');

    return camelCaseStr;
}

// 读取所有的icon
const basePath = path.resolve(url.fileURLToPath(import.meta.url), '../../src/assets/icons')

// 读取所有的svg
const icons = await fs.readdir(basePath)

const assets = icons.map(it => ({
    componentName: toCamelCase(it.slice(0, -path.extname(it).length)) + "Icon",
    filePath: `@/assets/icons/${it}`,
    name: it.slice(0, -path.extname(it).length)
}))

let scriptTemplate = `// This file is generated by generate-assets.mjs. DO NOT MODIFY.
import {SvgProps} from 'react-native-svg';

${assets.map(asset => `import ${asset.componentName} from '${asset.filePath}';`).join('\n')}

export type IIconName = ${assets.map(asset => `'${asset.name}'`).join(' | ')};

interface IProps extends SvgProps {
    /** 图标名称 */
    name: IIconName;
    /** 图标大小 */
    size?: number;
}

const iconMap = {
${assets.map(asset => `    '${asset.name}': ${asset.componentName}`).join(',\n')}
} as const;

export default function Icon(props: IProps) {
    const {name, size} = props;
    
    const newProps = {
        ...props,
        width: props.width ?? size,
        height: props.width ?? size
    } as SvgProps;
    
    const Component = iconMap[name];
    
    return <Component {...newProps}></Component>;
}
`

const targetPath = path.resolve(url.fileURLToPath(import.meta.url), '../../src/components/base/icon.tsx');
await fs.writeFile(targetPath, scriptTemplate, 'utf8');

console.log(`Generate Succeed. ${assets.length} assets.`)

================================================
FILE: index.js
================================================
/**
 * @format
 */

import {AppRegistry} from 'react-native';
import {name as appName} from './app.json';
import TrackPlayer from 'react-native-track-player';
import Pages from '@/entry';

AppRegistry.registerComponent(appName, () => Pages);
TrackPlayer.registerPlaybackService(() => require('./src/service/index'));


================================================
FILE: ios/.xcode.env
================================================
# This `.xcode.env` file is versioned and is used to source the environment
# used when running script phases inside Xcode.
# To customize your local environment, you can create an `.xcode.env.local`
# file that is not versioned.

# NODE_BINARY variable contains the PATH to the node executable.
#
# Customize the NODE_BINARY variable here.
# For example, to use nvm with brew, add the following line
# . "$(brew --prefix nvm)/nvm.sh" --no-use
export NODE_BINARY=$(command -v node)


================================================
FILE: ios/MusicFree/AppDelegate.h
================================================
#import <RCTAppDelegate.h>
#import <Expo/Expo.h>
#import <UIKit/UIKit.h>

@interface AppDelegate : EXAppDelegateWrapper

@end


================================================
FILE: ios/MusicFree/AppDelegate.mm
================================================
#import "AppDelegate.h"

#import <React/RCTBundleURLProvider.h>

@implementation AppDelegate

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
  self.moduleName = @"MusicFree";
  // You can add your custom initial props in the dictionary below.
  // They will be passed down to the ViewController used by React Native.
  self.initialProps = @{};

  return [super application:application didFinishLaunchingWithOptions:launchOptions];
}

- (NSURL *)sourceURLForBridge:(RCTBridge *)bridge
{
  return [self bundleURL];
}

- (NSURL *)bundleURL
{
#if DEBUG
  return [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@".expo/.virtual-metro-entry"];
#else
  return [[NSBundle mainBundle] URLForResource:@"main" withExtension:@"jsbundle"];
#endif
}

@end


================================================
FILE: ios/MusicFree/Images.xcassets/AppIcon.appiconset/Contents.json
================================================
{
  "images" : [
    {
      "idiom" : "iphone",
      "scale" : "2x",
      "size" : "20x20"
    },
    {
      "idiom" : "iphone",
      "scale" : "3x",
      "size" : "20x20"
    },
    {
      "idiom" : "iphone",
      "scale" : "2x",
      "size" : "29x29"
    },
    {
      "idiom" : "iphone",
      "scale" : "3x",
      "size" : "29x29"
    },
    {
      "idiom" : "iphone",
      "scale" : "2x",
      "size" : "40x40"
    },
    {
      "idiom" : "iphone",
      "scale" : "3x",
      "size" : "40x40"
    },
    {
      "idiom" : "iphone",
      "scale" : "2x",
      "size" : "60x60"
    },
    {
      "idiom" : "iphone",
      "scale" : "3x",
      "size" : "60x60"
    },
    {
      "idiom" : "ios-marketing",
      "scale" : "1x",
      "size" : "1024x1024"
    }
  ],
  "info" : {
    "author" : "xcode",
    "version" : 1
  }
}


================================================
FILE: ios/MusicFree/Images.xcassets/Contents.json
================================================
{
  "info" : {
    "version" : 1,
    "author" : "xcode"
  }
}


================================================
FILE: ios/MusicFree/Info.plist
================================================
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
	<key>CFBundleDevelopmentRegion</key>
	<string>en</string>
	<key>CFBundleDisplayName</key>
	<string>MusicFree</string>
	<key>CFBundleExecutable</key>
	<string>$(EXECUTABLE_NAME)</string>
	<key>CFBundleIdentifier</key>
	<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
	<key>CFBundleInfoDictionaryVersion</key>
	<string>6.0</string>
	<key>CFBundleName</key>
	<string>$(PRODUCT_NAME)</string>
	<key>CFBundlePackageType</key>
	<string>APPL</string>
	<key>CFBundleShortVersionString</key>
	<string>$(MARKETING_VERSION)</string>
	<key>CFBundleSignature</key>
	<string>????</string>
	<key>CFBundleVersion</key>
	<string>$(CURRENT_PROJECT_VERSION)</string>
	<key>LSRequiresIPhoneOS</key>
	<true/>
	<key>NSAppTransportSecurity</key>
	<dict>
	  <!-- Do not change NSAllowsArbitraryLoads to true, or you will risk app rejection! -->
		<key>NSAllowsArbitraryLoads</key>
		<false/>
		<key>NSAllowsLocalNetworking</key>
		<true/>
	</dict>
	<key>NSLocationWhenInUseUsageDescription</key>
	<string></string>
	<key>UILaunchStoryboardName</key>
	<string>LaunchScreen</string>
	<key>UIRequiredDeviceCapabilities</key>
	<array>
		<string>arm64</string>
	</array>
	<key>UISupportedInterfaceOrientations</key>
	<array>
		<string>UIInterfaceOrientationPortrait</string>
		<string>UIInterfaceOrientationLandscapeLeft</string>
		<string>UIInterfaceOrientationLandscapeRight</string>
	</array>
	<key>UIViewControllerBasedStatusBarAppearance</key>
	<false/>
</dict>
</plist>


================================================
FILE: ios/MusicFree/LaunchScreen.storyboard
================================================
<?xml version="1.0" encoding="UTF-8"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="15702" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" launchScreen="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES" initialViewController="01J-lp-oVM">
    <device id="retina4_7" orientation="portrait" appearance="light"/>
    <dependencies>
        <deployment identifier="iOS"/>
        <plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="15704"/>
        <capability name="Safe area layout guides" minToolsVersion="9.0"/>
        <capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
    </dependencies>
    <scenes>
        <!--View Controller-->
        <scene sceneID="EHf-IW-A2E">
            <objects>
                <viewController id="01J-lp-oVM" sceneMemberID="viewController">
                    <view key="view" contentMode="scaleToFill" id="Ze5-6b-2t3">
                        <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
                        <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
                        <subviews>
                            <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="MusicFree" textAlignment="center" lineBreakMode="middleTruncation" baselineAdjustment="alignBaselines" minimumFontSize="18" translatesAutoresizingMaskIntoConstraints="NO" id="GJd-Yh-RWb">
                                <rect key="frame" x="0.0" y="202" width="375" height="43"/>
                                <fontDescription key="fontDescription" type="boldSystem" pointSize="36"/>
                                <nil key="highlightedColor"/>
                            </label>
                            <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Powered by React Native" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumFontSize="9" translatesAutoresizingMaskIntoConstraints="NO" id="MN2-I3-ftu">
                                <rect key="frame" x="0.0" y="626" width="375" height="21"/>
                                <fontDescription key="fontDescription" type="system" pointSize="17"/>
                                <nil key="highlightedColor"/>
                            </label>
                        </subviews>
                        <color key="backgroundColor" systemColor="systemBackgroundColor" cocoaTouchSystemColor="whiteColor"/>
                        <constraints>
                            <constraint firstItem="Bcu-3y-fUS" firstAttribute="bottom" secondItem="MN2-I3-ftu" secondAttribute="bottom" constant="20" id="OZV-Vh-mqD"/>
                            <constraint firstItem="Bcu-3y-fUS" firstAttribute="centerX" secondItem="GJd-Yh-RWb" secondAttribute="centerX" id="Q3B-4B-g5h"/>
                            <constraint firstItem="MN2-I3-ftu" firstAttribute="centerX" secondItem="Bcu-3y-fUS" secondAttribute="centerX" id="akx-eg-2ui"/>
                            <constraint firstItem="MN2-I3-ftu" firstAttribute="leading" secondItem="Bcu-3y-fUS" secondAttribute="leading" id="i1E-0Y-4RG"/>
                            <constraint firstItem="GJd-Yh-RWb" firstAttribute="centerY" secondItem="Ze5-6b-2t3" secondAttribute="bottom" multiplier="1/3" constant="1" id="moa-c2-u7t"/>
                            <constraint firstItem="GJd-Yh-RWb" firstAttribute="leading" secondItem="Bcu-3y-fUS" secondAttribute="leading" symbolic="YES" id="x7j-FC-K8j"/>
                        </constraints>
                        <viewLayoutGuide key="safeArea" id="Bcu-3y-fUS"/>
                    </view>
                </viewController>
                <placeholder placeholderIdentifier="IBFirstResponder" id="iYj-Kq-Ea1" userLabel="First Responder" sceneMemberID="firstResponder"/>
            </objects>
            <point key="canvasLocation" x="52.173913043478265" y="375"/>
        </scene>
    </scenes>
</document>


================================================
FILE: ios/MusicFree/PrivacyInfo.xcprivacy
================================================
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
  <key>NSPrivacyAccessedAPITypes</key>
  <array>
    <dict>
      <key>NSPrivacyAccessedAPIType</key>
      <string>NSPrivacyAccessedAPICategoryFileTimestamp</string>
      <key>NSPrivacyAccessedAPITypeReasons</key>
      <array>
        <string>C617.1</string>
      </array>
    </dict>
    <dict>
      <key>NSPrivacyAccessedAPIType</key>
      <string>NSPrivacyAccessedAPICategoryUserDefaults</string>
      <key>NSPrivacyAccessedAPITypeReasons</key>
      <array>
        <string>CA92.1</string>
      </array>
    </dict>
    <dict>
      <key>NSPrivacyAccessedAPIType</key>
      <string>NSPrivacyAccessedAPICategorySystemBootTime</string>
      <key>NSPrivacyAccessedAPITypeReasons</key>
      <array>
        <string>35F9.1</string>
      </array>
    </dict>
  </array>
  <key>NSPrivacyCollectedDataTypes</key>
  <array/>
  <key>NSPrivacyTracking</key>
  <false/>
</dict>
</plist>


================================================
FILE: ios/MusicFree/main.m
================================================
#import <UIKit/UIKit.h>

#import "AppDelegate.h"

int main(int argc, char *argv[])
{
  @autoreleasepool {
    return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
  }
}


================================================
FILE: ios/MusicFree.xcodeproj/project.pbxproj
================================================
// !$*UTF8*$!
{
	archiveVersion = 1;
	classes = {
	};
	objectVersion = 54;
	objects = {

/* Begin PBXBuildFile section */
		00E356F31AD99517003FC87E /* MusicFreeTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* MusicFreeTests.m */; };
		0C80B921A6F3F58F76C31292 /* libPods-MusicFree.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5DCACB8F33CDC322A6C60F78 /* libPods-MusicFree.a */; };
		13B07FBC1A68108700A75B9A /* AppDelegate.mm in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.mm */; };
		13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
		13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
		7699B88040F8A987B510C191 /* libPods-MusicFree-MusicFreeTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 19F6CBCC0A4E27FBF8BF4A61 /* libPods-MusicFree-MusicFreeTests.a */; };
		81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */; };
/* End PBXBuildFile section */

/* Begin PBXContainerItemProxy section */
		00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 83CBB9F71A601CBA00E9B192;
			proxyType = 1;
			remoteGlobalIDString = 13B07F861A680F5B00A75B9A;
			remoteInfo = MusicFree;
		};
/* End PBXContainerItemProxy section */

/* Begin PBXFileReference section */
		00E356EE1AD99517003FC87E /* MusicFreeTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = MusicFreeTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
		00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
		00E356F21AD99517003FC87E /* MusicFreeTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MusicFreeTests.m; sourceTree = "<group>"; };
		13B07F961A680F5B00A75B9A /* MusicFree.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = MusicFree.app; sourceTree = BUILT_PRODUCTS_DIR; };
		13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = MusicFree/AppDelegate.h; sourceTree = "<group>"; };
		13B07FB01A68108700A75B9A /* AppDelegate.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = AppDelegate.mm; path = MusicFree/AppDelegate.mm; sourceTree = "<group>"; };
		13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = MusicFree/Images.xcassets; sourceTree = "<group>"; };
		13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = MusicFree/Info.plist; sourceTree = "<group>"; };
		13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = MusicFree/main.m; sourceTree = "<group>"; };
		13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = PrivacyInfo.xcprivacy; path = MusicFree/PrivacyInfo.xcprivacy; sourceTree = "<group>"; };
		19F6CBCC0A4E27FBF8BF4A61 /* libPods-MusicFree-MusicFreeTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-MusicFree-MusicFreeTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
		3B4392A12AC88292D35C810B /* Pods-MusicFree.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-MusicFree.debug.xcconfig"; path = "Target Support Files/Pods-MusicFree/Pods-MusicFree.debug.xcconfig"; sourceTree = "<group>"; };
		5709B34CF0A7D63546082F79 /* Pods-MusicFree.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-MusicFree.release.xcconfig"; path = "Target Support Files/Pods-MusicFree/Pods-MusicFree.release.xcconfig"; sourceTree = "<group>"; };
		5B7EB9410499542E8C5724F5 /* Pods-MusicFree-MusicFreeTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-MusicFree-MusicFreeTests.debug.xcconfig"; path = "Target Support Files/Pods-MusicFree-MusicFreeTests/Pods-MusicFree-MusicFreeTests.debug.xcconfig"; sourceTree = "<group>"; };
		5DCACB8F33CDC322A6C60F78 /* libPods-MusicFree.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-MusicFree.a"; sourceTree = BUILT_PRODUCTS_DIR; };
		81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = MusicFree/LaunchScreen.storyboard; sourceTree = "<group>"; };
		89C6BE57DB24E9ADA2F236DE /* Pods-MusicFree-MusicFreeTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-MusicFree-MusicFreeTests.release.xcconfig"; path = "Target Support Files/Pods-MusicFree-MusicFreeTests/Pods-MusicFree-MusicFreeTests.release.xcconfig"; sourceTree = "<group>"; };
		ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
		00E356EB1AD99517003FC87E /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				7699B88040F8A987B510C191 /* libPods-MusicFree-MusicFreeTests.a in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				0C80B921A6F3F58F76C31292 /* libPods-MusicFree.a in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXFrameworksBuildPhase section */

/* Begin PBXGroup section */
		00E356EF1AD99517003FC87E /* MusicFreeTests */ = {
			isa = PBXGroup;
			children = (
				00E356F21AD99517003FC87E /* MusicFreeTests.m */,
				00E356F01AD99517003FC87E /* Supporting Files */,
			);
			path = MusicFreeTests;
			sourceTree = "<group>";
		};
		00E356F01AD99517003FC87E /* Supporting Files */ = {
			isa = PBXGroup;
			children = (
				00E356F11AD99517003FC87E /* Info.plist */,
			);
			name = "Supporting Files";
			sourceTree = "<group>";
		};
		13B07FAE1A68108700A75B9A /* MusicFree */ = {
			isa = PBXGroup;
			children = (
				13B07FAF1A68108700A75B9A /* AppDelegate.h */,
				13B07FB01A68108700A75B9A /* AppDelegate.mm */,
				13B07FB51A68108700A75B9A /* Images.xcassets */,
				13B07FB61A68108700A75B9A /* Info.plist */,
				81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */,
				13B07FB71A68108700A75B9A /* main.m */,
				13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */,
			);
			name = MusicFree;
			sourceTree = "<group>";
		};
		2D16E6871FA4F8E400B85C8A /* Frameworks */ = {
			isa = PBXGroup;
			children = (
				ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
				5DCACB8F33CDC322A6C60F78 /* libPods-MusicFree.a */,
				19F6CBCC0A4E27FBF8BF4A61 /* libPods-MusicFree-MusicFreeTests.a */,
			);
			name = Frameworks;
			sourceTree = "<group>";
		};
		832341AE1AAA6A7D00B99B32 /* Libraries */ = {
			isa = PBXGroup;
			children = (
			);
			name = Libraries;
			sourceTree = "<group>";
		};
		83CBB9F61A601CBA00E9B192 /* PBXGroup */ = {
			isa = PBXGroup;
			children = (
				13B07FAE1A68108700A75B9A /* MusicFree */,
				832341AE1AAA6A7D00B99B32 /* Libraries */,
				00E356EF1AD99517003FC87E /* MusicFreeTests */,
				83CBBA001A601CBA00E9B192 /* Products */,
				2D16E6871FA4F8E400B85C8A /* Frameworks */,
				BBD78D7AC51CEA395F1C20DB /* Pods */,
			);
			indentWidth = 2;
			sourceTree = "<group>";
			tabWidth = 2;
			usesTabs = 0;
		};
		83CBBA001A601CBA00E9B192 /* Products */ = {
			isa = PBXGroup;
			children = (
				13B07F961A680F5B00A75B9A /* MusicFree.app */,
				00E356EE1AD99517003FC87E /* MusicFreeTests.xctest */,
			);
			name = Products;
			sourceTree = "<group>";
		};
		BBD78D7AC51CEA395F1C20DB /* Pods */ = {
			isa = PBXGroup;
			children = (
				3B4392A12AC88292D35C810B /* Pods-MusicFree.debug.xcconfig */,
				5709B34CF0A7D63546082F79 /* Pods-MusicFree.release.xcconfig */,
				5B7EB9410499542E8C5724F5 /* Pods-MusicFree-MusicFreeTests.debug.xcconfig */,
				89C6BE57DB24E9ADA2F236DE /* Pods-MusicFree-MusicFreeTests.release.xcconfig */,
			);
			path = Pods;
			sourceTree = "<group>";
		};
/* End PBXGroup section */

/* Begin PBXNativeTarget section */
		00E356ED1AD99517003FC87E /* MusicFreeTests */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "MusicFreeTests" */;
			buildPhases = (
				A55EABD7B0C7F3A422A6CC61 /* [CP] Check Pods Manifest.lock */,
				00E356EA1AD99517003FC87E /* Sources */,
				00E356EB1AD99517003FC87E /* Frameworks */,
				00E356EC1AD99517003FC87E /* Resources */,
				C59DA0FBD6956966B86A3779 /* [CP] Embed Pods Frameworks */,
				F6A41C54EA430FDDC6A6ED99 /* [CP] Copy Pods Resources */,
			);
			buildRules = (
			);
			dependencies = (
				00E356F51AD99517003FC87E /* PBXTargetDependency */,
			);
			name = MusicFreeTests;
			productName = MusicFreeTests;
			productReference = 00E356EE1AD99517003FC87E /* MusicFreeTests.xctest */;
			productType = "com.apple.product-type.bundle.unit-test";
		};
		13B07F861A680F5B00A75B9A /* MusicFree */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "MusicFree" */;
			buildPhases = (
				C38B50BA6285516D6DCD4F65 /* [CP] Check Pods Manifest.lock */,
				13B07F871A680F5B00A75B9A /* Sources */,
				13B07F8C1A680F5B00A75B9A /* Frameworks */,
				13B07F8E1A680F5B00A75B9A /* Resources */,
				00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
				00EEFC60759A1932668264C0 /* [CP] Embed Pods Frameworks */,
				E235C05ADACE081382539298 /* [CP] Copy Pods Resources */,
			);
			buildRules = (
			);
			dependencies = (
			);
			name = MusicFree;
			productName = MusicFree;
			productReference = 13B07F961A680F5B00A75B9A /* MusicFree.app */;
			productType = "com.apple.product-type.application";
		};
/* End PBXNativeTarget section */

/* Begin PBXProject section */
		83CBB9F71A601CBA00E9B192 = {
			isa = PBXProject;
			attributes = {
				LastUpgradeCheck = 1210;
				TargetAttributes = {
					00E356ED1AD99517003FC87E = {
						CreatedOnToolsVersion = 6.2;
						TestTargetID = 13B07F861A680F5B00A75B9A /* MusicFree */;
					};
					13B07F861A680F5B00A75B9A = {
						LastSwiftMigration = 1120;
					};
				};
			};
			buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "MusicFree" */;
			compatibilityVersion = "Xcode 12.0";
			developmentRegion = en;
			hasScannedForEncodings = 0;
			knownRegions = (
				en,
				Base,
			);
			mainGroup = 83CBB9F61A601CBA00E9B192 /* PBXGroup */;
			productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
			projectDirPath = "";
			projectRoot = "";
			targets = (
				13B07F861A680F5B00A75B9A /* MusicFree */,
				00E356ED1AD99517003FC87E /* MusicFreeTests */,
			);
		};
/* End PBXProject section */

/* Begin PBXResourcesBuildPhase section */
		00E356EC1AD99517003FC87E /* Resources */ = {
			isa = PBXResourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		13B07F8E1A680F5B00A75B9A /* Resources */ = {
			isa = PBXResourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */,
				13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXResourcesBuildPhase section */

/* Begin PBXShellScriptBuildPhase section */
		00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = {
			isa = PBXShellScriptBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			inputPaths = (
				"$(SRCROOT)/.xcode.env.local",
				"$(SRCROOT)/.xcode.env",
			);
			name = "Bundle React Native code and images";
			outputPaths = (
			);
			runOnlyForDeploymentPostprocessing = 0;
			shellPath = /bin/sh;
			shellScript = "if [[ -f \"$PODS_ROOT/../.xcode.env\" ]]; then\n  source \"$PODS_ROOT/../.xcode.env\"\nfi\nif [[ -f \"$PODS_ROOT/../.xcode.env.local\" ]]; then\n  source \"$PODS_ROOT/../.xcode.env.local\"\nfi\n\n# The project root by default is one level up from the ios directory\nexport PROJECT_ROOT=\"$PROJECT_DIR\"/..\n\nif [[ \"$CONFIGURATION\" = *Debug* ]]; then\n  export SKIP_BUNDLING=1\nfi\nif [[ -z \"$ENTRY_FILE\" ]]; then\n  # Set the entry JS file using the bundler's entry resolution.\n  export ENTRY_FILE=\"$(\"$NODE_BINARY\" -e \"require('expo/scripts/resolveAppEntry')\" \"$PROJECT_ROOT\" ios absolute | tail -n 1)\"\nfi\n\nif [[ -z \"$CLI_PATH\" ]]; then\n  # Use Expo CLI\n  export CLI_PATH=\"$(\"$NODE_BINARY\" --print \"require.resolve('@expo/cli')\")\"\nfi\nif [[ -z \"$BUNDLE_COMMAND\" ]]; then\n  # Default Expo CLI command for bundling\n  export BUNDLE_COMMAND=\"export:embed\"\nfi\n\n`\"$NODE_BINARY\" --print \"require('path').dirname(require.resolve('react-native/package.json')) + '/scripts/react-native-xcode.sh'\"`\n";
		};
		00EEFC60759A1932668264C0 /* [CP] Embed Pods Frameworks */ = {
			isa = PBXShellScriptBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			inputFileListPaths = (
				"${PODS_ROOT}/Target Support Files/Pods-MusicFree/Pods-MusicFree-frameworks-${CONFIGURATION}-input-files.xcfilelist",
			);
			name = "[CP] Embed Pods Frameworks";
			outputFileListPaths = (
				"${PODS_ROOT}/Target Support Files/Pods-MusicFree/Pods-MusicFree-frameworks-${CONFIGURATION}-output-files.xcfilelist",
			);
			runOnlyForDeploymentPostprocessing = 0;
			shellPath = /bin/sh;
			shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-MusicFree/Pods-MusicFree-frameworks.sh\"\n";
			showEnvVarsInLog = 0;
		};
		A55EABD7B0C7F3A422A6CC61 /* [CP] Check Pods Manifest.lock */ = {
			isa = PBXShellScriptBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			inputFileListPaths = (
			);
			inputPaths = (
				"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
				"${PODS_ROOT}/Manifest.lock",
			);
			name = "[CP] Check Pods Manifest.lock";
			outputFileListPaths = (
			);
			outputPaths = (
				"$(DERIVED_FILE_DIR)/Pods-MusicFree-MusicFreeTests-checkManifestLockResult.txt",
			);
			runOnlyForDeploymentPostprocessing = 0;
			shellPath = /bin/sh;
			shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n    # print error to STDERR\n    echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n    exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
			showEnvVarsInLog = 0;
		};
		C38B50BA6285516D6DCD4F65 /* [CP] Check Pods Manifest.lock */ = {
			isa = PBXShellScriptBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			inputFileListPaths = (
			);
			inputPaths = (
				"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
				"${PODS_ROOT}/Manifest.lock",
			);
			name = "[CP] Check Pods Manifest.lock";
			outputFileListPaths = (
			);
			outputPaths = (
				"$(DERIVED_FILE_DIR)/Pods-MusicFree-checkManifestLockResult.txt",
			);
			runOnlyForDeploymentPostprocessing = 0;
			shellPath = /bin/sh;
			shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n    # print error to STDERR\n    echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n    exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
			showEnvVarsInLog = 0;
		};
		C59DA0FBD6956966B86A3779 /* [CP] Embed Pods Frameworks */ = {
			isa = PBXShellScriptBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			inputFileListPaths = (
				"${PODS_ROOT}/Target Support Files/Pods-MusicFree-MusicFreeTests/Pods-MusicFree-MusicFreeTests-frameworks-${CONFIGURATION}-input-files.xcfilelist",
			);
			name = "[CP] Embed Pods Frameworks";
			outputFileListPaths = (
				"${PODS_ROOT}/Target Support Files/Pods-MusicFree-MusicFreeTests/Pods-MusicFree-MusicFreeTests-frameworks-${CONFIGURATION}-output-files.xcfilelist",
			);
			runOnlyForDeploymentPostprocessing = 0;
			shellPath = /bin/sh;
			shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-MusicFree-MusicFreeTests/Pods-MusicFree-MusicFreeTests-frameworks.sh\"\n";
			showEnvVarsInLog = 0;
		};
		E235C05ADACE081382539298 /* [CP] Copy Pods Resources */ = {
			isa = PBXShellScriptBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			inputFileListPaths = (
				"${PODS_ROOT}/Target Support Files/Pods-MusicFree/Pods-MusicFree-resources-${CONFIGURATION}-input-files.xcfilelist",
			);
			name = "[CP] Copy Pods Resources";
			outputFileListPaths = (
				"${PODS_ROOT}/Target Support Files/Pods-MusicFree/Pods-MusicFree-resources-${CONFIGURATION}-output-files.xcfilelist",
			);
			runOnlyForDeploymentPostprocessing = 0;
			shellPath = /bin/sh;
			shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-MusicFree/Pods-MusicFree-resources.sh\"\n";
			showEnvVarsInLog = 0;
		};
		F6A41C54EA430FDDC6A6ED99 /* [CP] Copy Pods Resources */ = {
			isa = PBXShellScriptBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			inputFileListPaths = (
				"${PODS_ROOT}/Target Support Files/Pods-MusicFree-MusicFreeTests/Pods-MusicFree-MusicFreeTests-resources-${CONFIGURATION}-input-files.xcfilelist",
			);
			name = "[CP] Copy Pods Resources";
			outputFileListPaths = (
				"${PODS_ROOT}/Target Support Files/Pods-MusicFree-MusicFreeTests/Pods-MusicFree-MusicFreeTests-resources-${CONFIGURATION}-output-files.xcfilelist",
			);
			runOnlyForDeploymentPostprocessing = 0;
			shellPath = /bin/sh;
			shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-MusicFree-MusicFreeTests/Pods-MusicFree-MusicFreeTests-resources.sh\"\n";
			showEnvVarsInLog = 0;
		};
/* End PBXShellScriptBuildPhase section */

/* Begin PBXSourcesBuildPhase section */
		00E356EA1AD99517003FC87E /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				00E356F31AD99517003FC87E /* MusicFreeTests.m in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		13B07F871A680F5B00A75B9A /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				13B07FBC1A68108700A75B9A /* AppDelegate.mm in Sources */,
				13B07FC11A68108700A75B9A /* main.m in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXSourcesBuildPhase section */

/* Begin PBXTargetDependency section */
		00E356F51AD99517003FC87E /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			target = 13B07F861A680F5B00A75B9A /* MusicFree */;
			targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */;
		};
/* End PBXTargetDependency section */

/* Begin XCBuildConfiguration section */
		00E356F61AD99517003FC87E /* Debug */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 5B7EB9410499542E8C5724F5 /* Pods-MusicFree-MusicFreeTests.debug.xcconfig */;
			buildSettings = {
				BUNDLE_LOADER = "$(TEST_HOST)";
				GCC_PREPROCESSOR_DEFINITIONS = (
					"DEBUG=1",
					"$(inherited)",
				);
				INFOPLIST_FILE = MusicFreeTests/Info.plist;
				IPHONEOS_DEPLOYMENT_TARGET = 15.1;
				LD_RUNPATH_SEARCH_PATHS = (
					"$(inherited)",
					"@executable_path/Frameworks",
					"@loader_path/Frameworks",
				);
				OTHER_LDFLAGS = (
					"-ObjC",
					"-lc++",
					"$(inherited)",
				);
				PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
				PRODUCT_NAME = "$(TARGET_NAME)";
				TEST_HOST = "$(BUILT_PRODUCTS_DIR)/MusicFree.app/MusicFree";
				SWIFT_VERSION = 5.0;
			};
			name = Debug;
		};
		00E356F71AD99517003FC87E /* Release */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 89C6BE57DB24E9ADA2F236DE /* Pods-MusicFree-MusicFreeTests.release.xcconfig */;
			buildSettings = {
				BUNDLE_LOADER = "$(TEST_HOST)";
				COPY_PHASE_STRIP = NO;
				INFOPLIST_FILE = MusicFreeTests/Info.plist;
				IPHONEOS_DEPLOYMENT_TARGET = 15.1;
				LD_RUNPATH_SEARCH_PATHS = (
					"$(inherited)",
					"@executable_path/Frameworks",
					"@loader_path/Frameworks",
				);
				OTHER_LDFLAGS = (
					"-ObjC",
					"-lc++",
					"$(inherited)",
				);
				PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
				PRODUCT_NAME = "$(TARGET_NAME)";
				TEST_HOST = "$(BUILT_PRODUCTS_DIR)/MusicFree.app/MusicFree";
				SWIFT_VERSION = 5.0;
			};
			name = Release;
		};
		13B07F941A680F5B00A75B9A /* Debug */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 3B4392A12AC88292D35C810B /* Pods-MusicFree.debug.xcconfig */;
			buildSettings = {
				ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
				CLANG_ENABLE_MODULES = YES;
				CURRENT_PROJECT_VERSION = 1;
				ENABLE_BITCODE = NO;
				INFOPLIST_FILE = MusicFree/Info.plist;
				IPHONEOS_DEPLOYMENT_TARGET = 15.1;
				LD_RUNPATH_SEARCH_PATHS = (
					"$(inherited)",
					"@executable_path/Frameworks",
				);
				MARKETING_VERSION = 1.0;
				OTHER_LDFLAGS = (
					"$(inherited)",
					"-ObjC",
					"-lc++",
				);
				PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
				PRODUCT_NAME = MusicFree;
				SWIFT_OPTIMIZATION_LEVEL = "-Onone";
				SWIFT_VERSION = 5.0;
				VERSIONING_SYSTEM = "apple-generic";
			};
			name = Debug;
		};
		13B07F951A680F5B00A75B9A /* Release */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 5709B34CF0A7D63546082F79 /* Pods-MusicFree.release.xcconfig */;
			buildSettings = {
				ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
				CLANG_ENABLE_MODULES = YES;
				CURRENT_PROJECT_VERSION = 1;
				INFOPLIST_FILE = MusicFree/Info.plist;
				IPHONEOS_DEPLOYMENT_TARGET = 15.1;
				LD_RUNPATH_SEARCH_PATHS = (
					"$(inherited)",
					"@executable_path/Frameworks",
				);
				MARKETING_VERSION = 1.0;
				OTHER_LDFLAGS = (
					"$(inherited)",
					"-ObjC",
					"-lc++",
				);
				PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
				PRODUCT_NAME = MusicFree;
				SWIFT_VERSION = 5.0;
				VERSIONING_SYSTEM = "apple-generic";
			};
			name = Release;
		};
		83CBBA201A601CBA00E9B192 /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
				CLANG_CXX_LANGUAGE_STANDARD = "c++20";
				CLANG_CXX_LIBRARY = "libc++";
				CLANG_ENABLE_MODULES = YES;
				CLANG_ENABLE_OBJC_ARC = YES;
				CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
				CLANG_WARN_BOOL_CONVERSION = YES;
				CLANG_WARN_COMMA = YES;
				CLANG_WARN_CONSTANT_CONVERSION = YES;
				CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
				CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
				CLANG_WARN_EMPTY_BODY = YES;
				CLANG_WARN_ENUM_CONVERSION = YES;
				CLANG_WARN_INFINITE_RECURSION = YES;
				CLANG_WARN_INT_CONVERSION = YES;
				CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
				CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
				CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
				CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
				CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
				CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
				CLANG_WARN_STRICT_PROTOTYPES = YES;
				CLANG_WARN_SUSPICIOUS_MOVE = YES;
				CLANG_WARN_UNREACHABLE_CODE = YES;
				CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
				COPY_PHASE_STRIP = NO;
				ENABLE_STRICT_OBJC_MSGSEND = YES;
				ENABLE_TESTABILITY = YES;
				"EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
				GCC_C_LANGUAGE_STANDARD = gnu99;
				GCC_DYNAMIC_NO_PIC = NO;
				GCC_NO_COMMON_BLOCKS = YES;
				GCC_OPTIMIZATION_LEVEL = 0;
				GCC_PREPROCESSOR_DEFINITIONS = (
					"DEBUG=1",
					"$(inherited)",
				);
				GCC_SYMBOLS_PRIVATE_EXTERN = NO;
				GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
				GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
				GCC_WARN_UNDECLARED_SELECTOR = YES;
				GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
				GCC_WARN_UNUSED_FUNCTION = YES;
				GCC_WARN_UNUSED_VARIABLE = YES;
				IPHONEOS_DEPLOYMENT_TARGET = 15.1;
				LD_RUNPATH_SEARCH_PATHS = (
					/usr/lib/swift,
					"$(inherited)",
				);
				LIBRARY_SEARCH_PATHS = (
					"\"$(SDKROOT)/usr/lib/swift\"",
					"\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
					"\"$(inherited)\"",
				);
				MTL_ENABLE_DEBUG_INFO = YES;
				ONLY_ACTIVE_ARCH = YES;
				OTHER_CPLUSPLUSFLAGS = (
					"$(OTHER_CFLAGS)",
					"-DFOLLY_NO_CONFIG",
					"-DFOLLY_MOBILE=1",
					"-DFOLLY_USE_LIBCPP=1",
					"-DFOLLY_CFG_NO_COROUTINES=1",
					"-DFOLLY_HAVE_CLOCK_GETTIME=1",
				);
				SDKROOT = iphoneos;
				SWIFT_VERSION = 5.0;
			};
			name = Debug;
		};
		83CBBA211A601CBA00E9B192 /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
				CLANG_CXX_LANGUAGE_STANDARD = "c++20";
				CLANG_CXX_LIBRARY = "libc++";
				CLANG_ENABLE_MODULES = YES;
				CLANG_ENABLE_OBJC_ARC = YES;
				CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
				CLANG_WARN_BOOL_CONVERSION = YES;
				CLANG_WARN_COMMA = YES;
				CLANG_WARN_CONSTANT_CONVERSION = YES;
				CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
				CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
				CLANG_WARN_EMPTY_BODY = YES;
				CLANG_WARN_ENUM_CONVERSION = YES;
				CLANG_WARN_INFINITE_RECURSION = YES;
				CLANG_WARN_INT_CONVERSION = YES;
				CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
				CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
				CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
				CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
				CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
				CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
				CLANG_WARN_STRICT_PROTOTYPES = YES;
				CLANG_WARN_SUSPICIOUS_MOVE = YES;
				CLANG_WARN_UNREACHABLE_CODE = YES;
				CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
				COPY_PHASE_STRIP = YES;
				ENABLE_NS_ASSERTIONS = NO;
				ENABLE_STRICT_OBJC_MSGSEND = YES;
				"EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
				GCC_C_LANGUAGE_STANDARD = gnu99;
				GCC_NO_COMMON_BLOCKS = YES;
				GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
				GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
				GCC_WARN_UNDECLARED_SELECTOR = YES;
				GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
				GCC_WARN_UNUSED_FUNCTION = YES;
				GCC_WARN_UNUSED_VARIABLE = YES;
				IPHONEOS_DEPLOYMENT_TARGET = 15.1;
				LD_RUNPATH_SEARCH_PATHS = (
					/usr/lib/swift,
					"$(inherited)",
				);
				LIBRARY_SEARCH_PATHS = (
					"\"$(SDKROOT)/usr/lib/swift\"",
					"\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
					"\"$(inherited)\"",
				);
				MTL_ENABLE_DEBUG_INFO = NO;
				OTHER_CPLUSPLUSFLAGS = (
					"$(OTHER_CFLAGS)",
					"-DFOLLY_NO_CONFIG",
					"-DFOLLY_MOBILE=1",
					"-DFOLLY_USE_LIBCPP=1",
					"-DFOLLY_CFG_NO_COROUTINES=1",
					"-DFOLLY_HAVE_CLOCK_GETTIME=1",
				);
				SDKROOT = iphoneos;
				VALIDATE_PRODUCT = YES;
				SWIFT_VERSION = 5.0;
			};
			name = Release;
		};
/* End XCBuildConfiguration section */

/* Begin XCConfigurationList section */
		00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "MusicFreeTests" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				00E356F61AD99517003FC87E /* Debug */,
				00E356F71AD99517003FC87E /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "MusicFree" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				13B07F941A680F5B00A75B9A /* Debug */,
				13B07F951A680F5B00A75B9A /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "MusicFree" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				83CBBA201A601CBA00E9B192 /* Debug */,
				83CBBA211A601CBA00E9B192 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
/* End XCConfigurationList section */
	};
	rootObject = 83CBB9F71A601CBA00E9B192;
}


================================================
FILE: ios/MusicFree.xcodeproj/xcshareddata/xcschemes/MusicFreeNew.xcscheme
================================================
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
   LastUpgradeVersion = "1210"
   version = "1.3">
   <BuildAction
      parallelizeBuildables = "YES"
      buildImplicitDependencies = "YES">
      <BuildActionEntries>
         <BuildActionEntry
            buildForTesting = "YES"
            buildForRunning = "YES"
            buildForProfiling = "YES"
            buildForArchiving = "YES"
            buildForAnalyzing = "YES">
            <BuildableReference
               BuildableIdentifier = "primary"
               BlueprintIdentifier = "13B07F861A680F5B00A75B9A"
               BuildableName = "MusicFree.app"
               BlueprintName = "MusicFree"
               ReferencedContainer = "container:MusicFree.xcodeproj">
            </BuildableReference>
         </BuildActionEntry>
      </BuildActionEntries>
   </BuildAction>
   <TestAction
      buildConfiguration = "Debug"
      selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
      selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
      shouldUseLaunchSchemeArgsEnv = "YES">
      <Testables>
         <TestableReference
            skipped = "NO">
            <BuildableReference
               BuildableIdentifier = "primary"
               BlueprintIdentifier = "00E356ED1AD99517003FC87E"
               BuildableName = "MusicFreeTests.xctest"
               BlueprintName = "MusicFreeTests"
               ReferencedContainer = "container:MusicFree.xcodeproj">
            </BuildableReference>
         </TestableReference>
      </Testables>
   </TestAction>
   <LaunchAction
      buildConfiguration = "Debug"
      selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
      selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
      launchStyle = "0"
      useCustomWorkingDirectory = "NO"
      ignoresPersistentStateOnLaunch = "NO"
      debugDocumentVersioning = "YES"
      debugServiceExtension = "internal"
      allowLocationSimulation = "YES">
      <BuildableProductRunnable
         runnableDebuggingMode = "0">
         <BuildableReference
            BuildableIdentifier = "primary"
            BlueprintIdentifier = "13B07F861A680F5B00A75B9A"
            BuildableName = "MusicFree.app"
            BlueprintName = "MusicFree"
            ReferencedContainer = "container:MusicFree.xcodeproj">
         </BuildableReference>
      </BuildableProductRunnable>
   </LaunchAction>
   <ProfileAction
      buildConfiguration = "Release"
      shouldUseLaunchSchemeArgsEnv = "YES"
      savedToolIdentifier = ""
      useCustomWorkingDirectory = "NO"
      debugDocumentVersioning = "YES">
      <BuildableProductRunnable
         runnableDebuggingMode = "0">
         <BuildableReference
            BuildableIdentifier = "primary"
            BlueprintIdentifier = "13B07F861A680F5B00A75B9A"
            BuildableName = "MusicFree.app"
            BlueprintName = "MusicFree"
            ReferencedContainer = "container:MusicFree.xcodeproj">
         </BuildableReference>
      </BuildableProductRunnable>
   </ProfileAction>
   <AnalyzeAction
      buildConfiguration = "Debug">
   </AnalyzeAction>
   <ArchiveAction
      buildConfiguration = "Release"
      revealArchiveInOrganizer = "YES">
   </ArchiveAction>
</Scheme>


================================================
FILE: ios/MusicFreeTests/Info.plist
================================================
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
	<key>CFBundleDevelopmentRegion</key>
	<string>en</string>
	<key>CFBundleExecutable</key>
	<string>$(EXECUTABLE_NAME)</string>
	<key>CFBundleIdentifier</key>
	<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
	<key>CFBundleInfoDictionaryVersion</key>
	<string>6.0</string>
	<key>CFBundleName</key>
	<string>$(PRODUCT_NAME)</string>
	<key>CFBundlePackageType</key>
	<string>BNDL</string>
	<key>CFBundleShortVersionString</key>
	<string>1.0</string>
	<key>CFBundleSignature</key>
	<string>????</string>
	<key>CFBundleVersion</key>
	<string>1</string>
</dict>
</plist>


================================================
FILE: ios/MusicFreeTests/MusicFreeNewTests.m
================================================
#import <UIKit/UIKit.h>
#import <XCTest/XCTest.h>

#import <React/RCTLog.h>
#import <React/RCTRootView.h>

#define TIMEOUT_SECONDS 600
#define TEXT_TO_LOOK_FOR @"Welcome to React"

@interface MusicFreeTests : XCTestCase

@end

@implementation MusicFreeTests

- (BOOL)findSubviewInView:(UIView *)view matching:(BOOL (^)(UIView *view))test
{
  if (test(view)) {
    return YES;
  }
  for (UIView *subview in [view subviews]) {
    if ([self findSubviewInView:subview matching:test]) {
      return YES;
    }
  }
  return NO;
}

- (void)testRendersWelcomeScreen
{
  UIViewController *vc = [[[RCTSharedApplication() delegate] window] rootViewController];
  NSDate *date = [NSDate dateWithTimeIntervalSinceNow:TIMEOUT_SECONDS];
  BOOL foundElement = NO;

  __block NSString *redboxError = nil;
#ifdef DEBUG
  RCTSetLogFunction(
      ^(RCTLogLevel level, RCTLogSource source, NSString *fileName, NSNumber *lineNumber, NSString *message) {
        if (level >= RCTLogLevelError) {
          redboxError = message;
        }
      });
#endif

  while ([date timeIntervalSinceNow] > 0 && !foundElement && !redboxError) {
    [[NSRunLoop mainRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]];
    [[NSRunLoop mainRunLoop] runMode:NSRunLoopCommonModes beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]];

    foundElement = [self findSubviewInView:vc.view
                                  matching:^BOOL(UIView *view) {
                                    if ([view.accessibilityLabel isEqualToString:TEXT_TO_LOOK_FOR]) {
                                      return YES;
                                    }
                                    return NO;
                                  }];
  }

#ifdef DEBUG
  RCTSetLogFunction(RCTDefaultLogFunction);
#endif

  XCTAssertNil(redboxError, @"RedBox error: %@", redboxError);
  XCTAssertTrue(foundElement, @"Couldn't find element with text '%@' in %d seconds", TEXT_TO_LOOK_FOR, TIMEOUT_SECONDS);
}

@end


================================================
FILE: ios/Podfile
================================================
require File.join(File.dirname(`node --print "require.resolve('expo/package.json')"`), "scripts/autolinking")
# Resolve react_native_pods.rb with node to allow for hoisting
require Pod::Executable.execute_command('node', ['-p',
  'require.resolve(
    "react-native/scripts/react_native_pods.rb",
    {paths: [process.argv[1]]},
  )', __dir__]).strip

platform :ios, min_ios_version_supported
prepare_react_native_project!

linkage = ENV['USE_FRAMEWORKS']
if linkage != nil
  Pod::UI.puts "Configuring Pod with #{linkage}ally linked Frameworks".green
  use_frameworks! :linkage => linkage.to_sym
end

target 'MusicFree' do
  use_expo_modules!
  post_integrate do |installer|
    begin
      expo_patch_react_imports!(installer)
    rescue => e
      Pod::UI.warn e
    end
  end
  if ENV['EXPO_USE_COMMUNITY_AUTOLINKING'] == '1'
    config_command = ['node', '-e', "process.argv=['', '', 'config'];require('@react-native-community/cli').run()"];
  else
    config_command = [
      'node',
      '--no-warnings',
      '--eval',
      'require(require.resolve(\'expo-modules-autolinking\', { paths: [require.resolve(\'expo/package.json\')] }))(process.argv.slice(1))',
      'react-native-config',
      '--json',
      '--platform',
      'ios'
    ]
  end

  config = use_native_modules!(config_command)

  use_react_native!(
    :path => config[:reactNativePath],
    # An absolute path to your application root.
    :app_path => "#{Pod::Config.instance.installation_root}/.."
  )

  target 'MusicFreeTests' do
    inherit! :complete
    # Pods for testing
  end

  post_install do |installer|
    # https://github.com/facebook/react-native/blob/main/packages/react-native/scripts/react_native_pods.rb#L197-L202
    react_native_post_install(
      installer,
      config[:reactNativePath],
      :mac_catalyst_enabled => false,
      # :ccache_enabled => true
    )
  end
end


================================================
FILE: jest.config.js
================================================
module.exports = {
    preset: 'react-native',
};


================================================
FILE: metro.config.js
================================================
const {getDefaultConfig} = require('expo/metro-config');
const {mergeConfig} = require('@react-native/metro-config');

/**
 * Reference: https://github.com/software-mansion/react-native-svg/blob/main/USAGE.md
 */
const defaultConfig = getDefaultConfig(__dirname);
const {assetExts, sourceExts} = defaultConfig.resolver;
/**
 * Metro configuration
 * https://reactnative.dev/docs/metro
 *
 * @type {import('metro-config').MetroConfig}
 */
const config = {
    transformer: {
        babelTransformerPath: require.resolve('react-native-svg-transformer'),
    },
    resolver: {
        assetExts: assetExts.filter(ext => ext !== 'svg'),
        sourceExts: [...sourceExts, 'svg'],
    },
};

module.exports = mergeConfig(getDefaultConfig(__dirname), config);


================================================
FILE: package.json
================================================
{
  "name": "MusicFree",
  "version": "0.6.2",
  "private": true,
  "license": "AGPL",
  "author": {
    "name": "猫头猫",
    "email": "lhx_xjtu@163.com"
  },
  "scripts": {
    "android": "react-native run-android",
    "ios": "react-native run-ios",
    "lint": "eslint . --ext .js,.jsx,.ts,.tsx src --fix",
    "start": "react-native start",
    "clean": "cd ./android && ./gradlew clean",
    "test": "jest",
    "commit-lint": "commitlint --edit",
    "lint-staged": "lint-staged",
    "connect-mumu": "adb kill-server & adb connect localhost:7555",
    "build-android": "cd .\\android\\ && .\\gradlew assembleRelease",
    "generate-assets": "node ./generator/generate-assets.mjs",
    "prepare": "husky"
  },
  "dependencies": {
    "@react-native-async-storage/async-storage": "1.23.1",
    "@react-native-clipboard/clipboard": "^1.15.0",
    "@react-native-community/netinfo": "11.4.1",
    "@react-native-community/slider": "~4.5.6",
    "@react-native-masked-view/masked-view": "0.3.2",
    "@react-navigation/drawer": "^6.7.2",
    "@react-navigation/native": "^6.1.18",
    "@react-navigation/native-stack": "^6.11.0",
    "@shopify/flash-list": "1.7.1",
    "axios": "1.7.4",
    "big-integer": "^1.6.52",
    "cheerio": "^1.0.0-rc.12",
    "color": "^4.2.3",
    "compare-versions": "^6.1.1",
    "crypto-js": "^4.2.0",
    "dayjs": "^1.11.12",
    "deepmerge": "^4.3.1",
    "eventemitter3": "^5.0.1",
    "expo": "^52.0.0",
    "expo-document-picker": "~13.0.1",
    "expo-file-system": "~18.0.6",
    "expo-keep-awake": "~14.0.1",
    "expo-splash-screen": "~0.29.18",
    "he": "^1.2.0",
    "immer": "^10.1.1",
    "jotai": "^2.9.1",
    "lodash.shuffle": "^4.2.0",
    "marked": "^15.0.12",
    "nanoid": "5.0.8",
    "object-path": "^0.11.8",
    "p-queue": "^8.0.1",
    "path-browserify": "^1.0.1",
    "qs": "^6.13.0",
    "react": "18.3.1",
    "react-native": "0.76.5",
    "react-native-background-timer": "^2.4.1",
    "react-native-circular-progress-indicator": "^4.4.2",
    "react-native-device-info": "^14.0.4",
    "react-native-fast-image": "^8.6.3",
    "react-native-fs": "^2.20.0",
    "react-native-gesture-handler": "~2.25.0",
    "react-native-get-random-values": "^1.11.0",
    "react-native-image-colors": "^2.4.0",
    "react-native-image-picker": "^7.1.2",
    "react-native-linear-gradient": "^2.8.3",
    "react-native-logs": "^5.1.0",
    "react-native-mmkv": "^2.12.2",
    "react-native-pager-view": "6.5.1",
    "react-native-permissions": "^4.1.5",
    "react-native-reanimated": "^3.17.5",
    "react-native-safe-area-context": "~5.4.0",
    "react-native-screens": "~4.4.0",
    "react-native-share": "^10.2.1",
    "react-native-svg": "^15.11.2",
    "react-native-tab-view": "^3.5.2",
    "react-native-track-player": "^4.1.1",
    "react-native-url-polyfill": "^2.0.0",
    "react-native-webview": "^13.13.5",
    "recyclerlistview": "^4.2.1",
    "webdav": "^5.7.0"
  },
  "devDependencies": {
    "@babel/core": "^7.25.2",
    "@babel/preset-env": "^7.25.3",
    "@babel/runtime": "^7.25.0",
    "@commitlint/cli": "^19.3.0",
    "@commitlint/config-conventional": "^19.2.2",
    "@react-native-community/cli": "15.0.1",
    "@react-native-community/cli-platform-android": "15.0.1",
    "@react-native-community/cli-platform-ios": "15.0.1",
    "@react-native/babel-preset": "0.76.5",
    "@react-native/eslint-config": "0.76.5",
    "@react-native/metro-config": "0.76.5",
    "@react-native/typescript-config": "0.76.5",
    "@types/color": "^3.0.6",
    "@types/crypto-js": "^4.2.2",
    "@types/he": "^1.2.3",
    "@types/lodash.shuffle": "^4.2.9",
    "@types/object-path": "^0.11.4",
    "@types/path-browserify": "^1.0.2",
    "@types/qs": "^6.9.15",
    "@types/react": "~18.3.12",
    "@types/react-native-background-timer": "^2.0.2",
    "@types/react-test-renderer": "^18.0.0",
    "babel-jest": "^29.6.3",
    "babel-plugin-module-resolver": "^5.0.2",
    "babel-plugin-transform-remove-console": "^6.9.4",
    "eslint": "^8.19.0",
    "eslint-config-prettier": "^9.1.0",
    "husky": "^9.1.4",
    "jest": "^29.6.3",
    "lint-staged": "^15.2.7",
    "prettier": "2.8.8",
    "react-native-svg-transformer": "^1.5.0",
    "react-test-renderer": "18.3.1",
    "typescript": "^5.3.3"
  },
  "engines": {
    "node": ">=18"
  },
  "lint-staged": {
    "src/**/*.{ts,tsx}": [
      "npm run lint",
      "git add ."
    ]
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/maotoumao/MusicFree.git"
  }
}


================================================
FILE: readme-en.md
================================================
# MusicFree

[中文](./readme.md) | **English**

![GitHub Repo stars](https://img.shields.io/github/stars/maotoumao/MusicFree) 
![GitHub forks](https://img.shields.io/github/forks/maotoumao/MusicFree)
![star](https://gitcode.com/maotoumao/MusicFree/star/badge.svg)

![GitHub License](https://img.shields.io/github/license/maotoumao/MusicFree)
![GitHub Downloads (all assets, all releases)](https://img.shields.io/github/downloads/maotoumao/MusicFree/total)
![GitHub Issues or Pull Requests](https://img.shields.io/github/issues/maotoumao/MusicFree)
![GitHub package.json version](https://img.shields.io/github/package-json/v/maotoumao/MusicFree)

<a href="https://trendshift.io/repositories/1028" target="_blank"><img src="https://trendshift.io/api/badge/repositories/1028" alt="maotoumao%2FMusicFree | Trendshift" style="width: 250px; height: 55px;" width="250" height="55"/></a>

---

## Introduction

A plugin-based, customizable, ad-free music player that currently supports Android and Harmony OS only.

> **Desktop version is here: <https://github.com/maotoumao/MusicFreeDesktop>**

If you need to stay updated on future developments, you can follow the WeChat official account below; if you have questions, you can leave feedback directly in the issue section or the official account.

![WeChat Official Account](./src/assets/imgs/wechat_channel.jpg)

For software download methods, plugin usage instructions, and plugin development documentation, please visit <https://musicfree.catcat.work>.

> [!NOTE]
> - If you see paid/ad-free/cracked versions on other platforms, they are all fake. This is an open source project to begin with. **Please report paid versions directly when encountered**;
> - The software is primarily for personal use, shared to hopefully help those in need; it's a hobby project that will be maintained as much as possible, but daily development time is limited (about half an hour), and it's expected to remain in unstable testing versions for a long time with irregular update frequency. Please use with caution;
> - Third-party plugins and the data they generate are not related to this software. Please use legally and compliantly, and delete any copyright data that may be generated in a timely manner.
> - **Please do not promote with VIP/cracked version as a gimmick**. The example repository is based on public internet API wrappers and **filters out all VIP, preview, and paid songs**. The example repository will **not provide plugins with cracking functionality** in the future;
> - Information about this software **will only be actively published in Git repositories and the WeChat official account "一只猫头猫"**. If you wish to write articles introducing this software, feel free to do so, but please **describe truthfully, and please blur the plugin sources when involving the example repository**. Don't add unreal features to the software (although I wish it had them); in case of conflicting descriptions, this repository shall prevail.

## Project Usage Agreement:
This project is open sourced under the AGPL 3.0 license. Please comply with the open source license when using this project.
In addition, please ensure you understand the following additional notes when using the code:

1. For packaging and redistribution, **please retain the code source**: https://github.com/maotoumao/MusicFree
2. Please do not use for commercial purposes; use the code legally and compliantly;
3. If the open source license changes, it will be updated in this GitHub repository without separate notice.

> [!CAUTION]
> ### 👎 Hall of Shame
> 👎 MusicFree apps on <ins>Xiaomi/Huawei/Vivo app stores</ins> are not related to this software. **They are adware that misappropriates this software's name and logo**. Please be cautious to avoid being deceived.
>
> 👎 速悦音乐 is based on secondary development of this software, with changes only including built-in plugins, UI modifications, and traffic diversion. **It has not complied with this project's open source license and refuses to communicate**.

## Features

- **Plugin-based**: This software is just a player and **does not integrate** any music sources from any platform. All search, playback, playlist import and other functions are entirely based on **plugins**. This means that **as long as music sources can be searched on the internet, as long as there are corresponding plugins, you can use this software for search, playback and other functions**. For detailed plugin information, please see the Plugin section.

- **Plugin-supported features**: Search (music, albums, artists), playback, view albums, view artist details, import singles, import playlists, get lyrics, etc.

- **Customizable and ad-free**: This software provides light and dark modes; supports custom backgrounds; this software is open sourced under the AGPL license and ~~one star for a deal~~ will remain free.
- **Privacy**: All data is stored locally, this software will not collect any of your personal information.
- **Lyrics association**: You can associate the lyrics of two songs, for example, associate song A's lyrics to song B. After association, both songs A and B will display song B's lyrics. You can also associate multiple songs' lyrics, like A->B->C, so that songs A, B, and C will all display C's lyrics.

## Plugins

### Plugin Introduction

A plugin is essentially a CommonJS module that satisfies the plugin protocol. The plugin defines basic functions such as search (music, albums, artists), playback, view albums, artist details, import playlists, get lyrics, etc. Plugin developers only need to focus on input and output logic, while pagination, caching, etc. are all handled by MusicFree. This software completes all player functions through plugins. This decoupled design also allows this software to focus on being a feature-complete player. I must say, small and beautiful.

Plugin development documentation can be found [here](https://musicfree.catcat.work/plugin/introduction.html)

Please note:

- If you are using third-party downloaded plugins, please identify the security of the plugins yourself (basically check that there are no strange network requests; self-written ones are the safest, *don't install things from unknown sources*) to prevent malicious code damage. This software is not responsible for possible losses caused by third-party malicious plugins.

- Plugins may generate certain copyright data unrelated to this software during use. Plugins and any data generated by plugins are not related to this software. Please consider carefully and delete data in a timely manner. This software does not advocate nor will it provide any cracking behavior. You can build your own offline music repository for use.

### Plugin Usage

After downloading the app, you just need to install plugins in the sidebar Settings - Plugin Settings. Supports installing local plugins and installing plugins from the network (supports parsing .js files and .json description files; several example plugins have been written: [link to this repository](https://github.com/maotoumao/MusicFreePlugins), though functionality may not be very complete);

You can directly click "Install plugin from network", then enter <https://gitee.com/maotoumao/MusicFreePlugins/raw/master/plugins.json> and click confirm to install.

For detailed usage instructions with images, please refer to the WeChat official account: [MusicFree Plugin Usage Guide](https://mp.weixin.qq.com/s?__biz=MzkxOTM5MDI4MA==&mid=2247483875&idx=1&sn=aedf8bb909540634d927de7fd2b4b8b1&chksm=c1a390c4f6d419d233908bb781d418c6b9fd2ca82e9e93291e7c93b8ead3c50ca5ae39668212#rd), or the website: https://musicfree.catcat.work/usage/mobile/install-plugin.html

## Download

Please go to the release page: [Link](https://github.com/maotoumao/MusicFree/releases) (if you can't open it, you can replace github with gitee). You can also reply "Musicfree" on the WeChat official account.

## Q&A

For common issues encountered during use, see here: [MusicFree Usage Q&A](https://musicfree.catcat.work/qa/common.html)

For technical exchange/building interesting things together/technical chats, welcome to join the QQ group: [683467814](https://jq.qq.com/?_wv=1027&k=upVpi2k3)~ (Not a Q&A group)

For casual chat, you can go to [QQ Channel](https://pd.qq.com/s/cyxnf0jj1)~

## WIP

If you have new requirements that need discussion, you can leave a message on the WeChat official account backend/submit an issue/or start a topic in discussions.

## Support This Project

If you like this project, or hope I can continue maintaining it, you can support me through any of the following ways ;)

1. Star this project and share it with people around you;
2. Follow the WeChat official account 👇 or Bilibili [不想睡觉猫头猫](https://space.bilibili.com/12866223) for the latest information;
3. Follow maotoumao's [XiaoHongShu](https://www.xiaohongshu.com/user/profile/5ce6085200000000050213a6?xhsshare=CopyLink&appuid=5ce6085200000000050213a6&apptime=1714394544) or [X](https://twitter.com/upupfun). Although I might not update software-related information there, it's still support~

![WeChat Official Account](./src/assets/imgs/wechat_channel.jpg)

Thanks to the following friends for their recommendations, very surprising and delightful ~~~

Recommendation from **果核剥壳**~ <https://mp.weixin.qq.com/s/F6hMbLv_a-Ty0fPA_0P0Rg>

Recommendation from **小棉袄**~ <https://mp.weixin.qq.com/s/Fqe3o7vcTw0KDKoB-gsQfg>

## ChangeLog

[Click here](./changelog.md)

---
This project is for learning and reference only, open sourced under the AGPL3.0 license; please use this project reasonably in compliance with laws and regulations, prohibited for commercial use.

## App Screenshots

**The following screenshots are UI examples only. The software does not provide any music sources internally and does not represent actual performance as shown below.**

#### Main Interface

<img src="./.imgs/main-v0.6.jpg" width="320px" alt="Main Interface">

#### Sidebar

- Sidebar

<img src="./.imgs/sidebar-v0.6.jpg" width="320px" alt="Sidebar">

- Basic Settings

<img src="./.imgs/basic-setting-v0.6.jpg" width="320px" alt="Basic Settings">

- Theme Settings

<img src="./.imgs/theme-setting-v0.6.jpg" width="320px" alt="Theme Settings">

#### Music Related

- Playlist Page

<img src="./.imgs/song-sheet-v0.6.jpg" width="320px" alt="Playlist Page">

- Search in Playlist

<img src="./.imgs/search-in-sheet-v0.6.jpg" width="320px" alt="Search in Playlist">

- Player Page

<img src="./.imgs/song-cover-v0.6.jpg" width="320px" alt="Player Page">

- Lyrics Page

<img src="./.imgs/song-lrc-v0.6.jpg" width="320px" alt="Lyrics Page">

#### Search Related

- Artist Information

<img src="./.imgs/artist-detail-v0.6.jpg" width="320px" alt="Artist Information">

<details>

<summary>The following are UI from early versions of the software</summary>

#### Main Interface

<img src="./.imgs/main.jpg" width="320px" alt="Main Interface">

#### Sidebar

- Basic Settings

<img src="./.imgs/basic-setting.jpg" width="320px" alt="Basic Settings">

- Theme Settings

<img src="./.imgs/theme-setting.jpg" width="320px" alt="Theme Settings">

#### Music Related

- Playlist Page

<img src="./.imgs/song-sheet.jpg" width="320px" alt="Playlist Page">

- Search in Playlist

<img src="./.imgs/search-in-sheet.jpg" width="320px" alt="Search in Playlist">

- Player Page

<img src="./.imgs/song-cover.jpg" width="320px" alt="Player Page">

- Lyrics Page

<img src="./.imgs/song-lrc.jpg" width="320px" alt="Lyrics Page">

#### Search Related

- Artist Information

<img src="./.imgs/artist-detail.jpg" width="320px" alt="Artist Information">

</details>


================================================
FILE: readme.md
================================================
# MusicFree

**中文** | [English](./readme-en.md)

![GitHub Repo stars](https://img.shields.io/github/stars/maotoumao/MusicFree) 
![GitHub forks](https://img.shields.io/github/forks/maotoumao/MusicFree)
![star](https://gitcode.com/maotoumao/MusicFree/star/badge.svg)

![GitHub License](https://img.shields.io/github/license/maotoumao/MusicFree)
![GitHub Downloads (all assets, all releases)](https://img.shields.io/github/downloads/maotoumao/MusicFree/total)
![GitHub Issues or Pull Requests](https://img.shields.io/github/issues/maotoumao/MusicFree)
![GitHub package.json version](https://img.shields.io/github/package-json/v/maotoumao/MusicFree)

<a href="https://trendshift.io/repositories/1028" target="_blank"><img src="https://trendshift.io/api/badge/repositories/1028" alt="maotoumao%2FMusicFree | Trendshift" style="width: 250px; height: 55px;" width="250" height="55"/></a>

## 简介

一个插件化、定制化、无广告的免费音乐播放器,目前只支持 Android 和 Harmony OS。

> **桌面版来啦:<https://github.com/maotoumao/MusicFreeDesktop>**

如果需要了解后续进展可以关注公众号↓;如果有问题可以在 issue 区或者公众号直接留言反馈。

![微信公众号](./src/assets/imgs/wechat_channel.jpg)

软件下载方式、插件使用说明、插件开发文档可去站点 [https://musicfree.catcat.work](https://musicfree.catcat.work) 查看。

> [!NOTE]
> - 如果你在其他的平台看到收费版/无广告版/破解版,都是假的,本来就是开源项目,**遇到收费版请直接举报**;
> - 软件首先是自用,顺带分享出来希望可以帮助到有需要的人;是业余作品,会尽量保持维护,不过每天能写的时间有限(半小时左右),目测会有很长一段时间处于不稳定测试版本,且更新频率不定,请谨慎使用;
> - 软件的第三方插件、及其所产生的数据与本软件无关,请合理合法使用,可能产生的
Download .txt
gitextract_hqly39f3/

├── .bundle/
│   └── config
├── .commitlintrc.json
├── .eslintignore
├── .eslintrc.js
├── .github/
│   ├── ISSUE_TEMPLATE/
│   │   ├── bug_report_zh.yaml
│   │   ├── config.yml
│   │   └── feature_request_zh.yaml
│   └── workflows/
│       └── build-beta.yml
├── .gitignore
├── .husky/
│   ├── commit-msg
│   └── pre-commit
├── .prettierrc.js
├── .watchmanconfig
├── Gemfile
├── LICENSE
├── android/
│   ├── app/
│   │   ├── build.gradle
│   │   ├── debug.keystore
│   │   ├── proguard-rules.pro
│   │   └── src/
│   │       ├── debug/
│   │       │   └── AndroidManifest.xml
│   │       └── main/
│   │           ├── AndroidManifest.xml
│   │           ├── java/
│   │           │   └── fun/
│   │           │       └── upup/
│   │           │           └── musicfree/
│   │           │               ├── MainActivity.kt
│   │           │               ├── MainApplication.kt
│   │           │               ├── lyricUtil/
│   │           │               │   ├── LyricUtilModule.kt
│   │           │               │   ├── LyricUtilPackage.kt
│   │           │               │   └── LyricView.kt
│   │           │               ├── mp3Util/
│   │           │               │   ├── Mp3UtilModule.kt
│   │           │               │   └── Mp3UtilPackage.kt
│   │           │               └── utils/
│   │           │                   ├── UtilsModule.kt
│   │           │                   └── UtilsPackage.kt
│   │           └── res/
│   │               ├── drawable/
│   │               │   ├── rn_edit_text_material.xml
│   │               │   └── splashscreen.xml
│   │               ├── mipmap-anydpi-v26/
│   │               │   ├── ic_launcher.xml
│   │               │   └── ic_launcher_round.xml
│   │               └── values/
│   │                   ├── colors.xml
│   │                   ├── ic_launcher_background.xml
│   │                   ├── strings.xml
│   │                   └── styles.xml
│   ├── build.gradle
│   ├── gradle/
│   │   └── wrapper/
│   │       ├── gradle-wrapper.jar
│   │       └── gradle-wrapper.properties
│   ├── gradle.properties
│   ├── gradlew
│   ├── gradlew.bat
│   └── settings.gradle
├── app.json
├── babel.config.js
├── changelog.md
├── generator/
│   └── generate-assets.mjs
├── index.js
├── ios/
│   ├── .xcode.env
│   ├── MusicFree/
│   │   ├── AppDelegate.h
│   │   ├── AppDelegate.mm
│   │   ├── Images.xcassets/
│   │   │   ├── AppIcon.appiconset/
│   │   │   │   └── Contents.json
│   │   │   └── Contents.json
│   │   ├── Info.plist
│   │   ├── LaunchScreen.storyboard
│   │   ├── PrivacyInfo.xcprivacy
│   │   └── main.m
│   ├── MusicFree.xcodeproj/
│   │   ├── project.pbxproj
│   │   └── xcshareddata/
│   │       └── xcschemes/
│   │           └── MusicFreeNew.xcscheme
│   ├── MusicFreeTests/
│   │   ├── Info.plist
│   │   └── MusicFreeNewTests.m
│   └── Podfile
├── jest.config.js
├── metro.config.js
├── package.json
├── readme-en.md
├── readme.md
├── release/
│   └── version.json
├── src/
│   ├── components/
│   │   ├── base/
│   │   │   ├── SortableFlatList.tsx
│   │   │   ├── appBar.tsx
│   │   │   ├── button.tsx
│   │   │   ├── checkbox.tsx
│   │   │   ├── chip.tsx
│   │   │   ├── colorBlock.tsx
│   │   │   ├── divider.tsx
│   │   │   ├── empty.tsx
│   │   │   ├── fab.tsx
│   │   │   ├── fastImage.tsx
│   │   │   ├── horizontalSafeAreaView.tsx
│   │   │   ├── icon.tsx
│   │   │   ├── iconButton.tsx
│   │   │   ├── iconTextButton.tsx
│   │   │   ├── image.tsx
│   │   │   ├── imageBtn.tsx
│   │   │   ├── input.tsx
│   │   │   ├── linkText.tsx
│   │   │   ├── listEmpty.tsx
│   │   │   ├── listFooter.tsx
│   │   │   ├── listItem.tsx
│   │   │   ├── loading.tsx
│   │   │   ├── noPlugin.tsx
│   │   │   ├── pageBackground.tsx
│   │   │   ├── paragraph.tsx
│   │   │   ├── playAllBar.tsx
│   │   │   ├── portal.tsx
│   │   │   ├── statusBar.tsx
│   │   │   ├── switch.tsx
│   │   │   ├── tag.tsx
│   │   │   ├── textButton.tsx
│   │   │   ├── themeText.tsx
│   │   │   ├── tip.tsx
│   │   │   ├── toast.tsx
│   │   │   ├── typeTag.tsx
│   │   │   └── verticalSafeAreaView.tsx
│   │   ├── debug/
│   │   │   └── index.tsx
│   │   ├── dialogs/
│   │   │   ├── components/
│   │   │   │   ├── base/
│   │   │   │   │   └── index.tsx
│   │   │   │   ├── checkStorage.tsx
│   │   │   │   ├── downloadDialog.tsx
│   │   │   │   ├── editSheetDetail.tsx
│   │   │   │   ├── index.ts
│   │   │   │   ├── loadingDialog.tsx
│   │   │   │   ├── markdownDialog.tsx
│   │   │   │   ├── radioDialog.tsx
│   │   │   │   ├── setScheduleCloseTimeDialog.tsx
│   │   │   │   ├── simpleDialog.tsx
│   │   │   │   └── subscribePluginDialog.tsx
│   │   │   ├── index.tsx
│   │   │   └── useDialog.ts
│   │   ├── errorBoundary/
│   │   │   └── index.tsx
│   │   ├── mediaItem/
│   │   │   ├── LyricItem.tsx
│   │   │   ├── albumItem.tsx
│   │   │   ├── musicItem.tsx
│   │   │   ├── sheetItem.tsx
│   │   │   ├── titleAndTag.tsx
│   │   │   └── topListItem.tsx
│   │   ├── musicBar/
│   │   │   ├── index.tsx
│   │   │   └── musicInfo.tsx
│   │   ├── musicList/
│   │   │   └── index.tsx
│   │   ├── musicSheetPage/
│   │   │   ├── components/
│   │   │   │   ├── header.tsx
│   │   │   │   ├── navBar.tsx
│   │   │   │   └── sheetMusicList.tsx
│   │   │   └── index.tsx
│   │   └── panels/
│   │       ├── base/
│   │       │   ├── panelBase.tsx
│   │       │   ├── panelFullscreen.tsx
│   │       │   └── panelHeader.tsx
│   │       ├── index.tsx
│   │       ├── types/
│   │       │   ├── addToMusicSheet.tsx
│   │       │   ├── associateLrc.tsx
│   │       │   ├── colorPicker.tsx
│   │       │   ├── createMusicSheet.tsx
│   │       │   ├── editMusicSheetInfo.tsx
│   │       │   ├── imageViewer.tsx
│   │       │   ├── importMusicSheet.tsx
│   │       │   ├── index.ts
│   │       │   ├── musicComment/
│   │       │   │   ├── comment.tsx
│   │       │   │   ├── index.tsx
│   │       │   │   └── useComments.ts
│   │       │   ├── musicItemLyricOptions.tsx
│   │       │   ├── musicItemOptions.tsx
│   │       │   ├── musicQuality.tsx
│   │       │   ├── playList/
│   │       │   │   ├── body.tsx
│   │       │   │   ├── header.tsx
│   │       │   │   └── index.tsx
│   │       │   ├── playRate.tsx
│   │       │   ├── searchLrc/
│   │       │   │   ├── LyricList.tsx
│   │       │   │   ├── index.tsx
│   │       │   │   ├── searchResultStore.ts
│   │       │   │   └── useSearchLrc.ts
│   │       │   ├── setFontSize.tsx
│   │       │   ├── setLyricOffset.tsx
│   │       │   ├── setUserVariables.tsx
│   │       │   ├── sheetTags.tsx
│   │       │   ├── simpleInput.tsx
│   │       │   ├── simpleSelect.tsx
│   │       │   └── timingClose.tsx
│   │       └── usePanel.ts
│   ├── constants/
│   │   ├── assetsConst.ts
│   │   ├── commonConst.ts
│   │   ├── globalStyle.ts
│   │   ├── pathConst.ts
│   │   ├── repeatModeConst.ts
│   │   └── uiConst.ts
│   ├── core/
│   │   ├── appConfig.ts
│   │   ├── appMeta.ts
│   │   ├── backup.ts
│   │   ├── downloader.ts
│   │   ├── i18n/
│   │   │   ├── index.ts
│   │   │   └── languages/
│   │   │       ├── en-us.json
│   │   │       ├── zh-cn.json
│   │   │       └── zh-tw.json
│   │   ├── localMusicSheet.ts
│   │   ├── lyricManager.ts
│   │   ├── mediaCache.ts
│   │   ├── musicHistory.ts
│   │   ├── musicSheet/
│   │   │   ├── index.ts
│   │   │   ├── migrate.ts
│   │   │   ├── sortedMusicList.ts
│   │   │   └── storage.ts
│   │   ├── pluginManager/
│   │   │   ├── index.ts
│   │   │   ├── meta.ts
│   │   │   └── plugin.ts
│   │   ├── router/
│   │   │   ├── index.ts
│   │   │   └── routes.tsx
│   │   ├── theme.ts
│   │   └── trackPlayer/
│   │       └── index.ts
│   ├── core.defination/
│   │   └── trackPlayer/
│   │       └── index.ts
│   ├── entry/
│   │   ├── bootstrap/
│   │   │   ├── BootstrapComponent.tsx
│   │   │   ├── bootstrap.atom.ts
│   │   │   └── bootstrap.ts
│   │   └── index.tsx
│   ├── hooks/
│   │   ├── useCheckUpdate.ts
│   │   ├── useColors.ts
│   │   ├── useDelayFalsy.ts
│   │   ├── useHardwareBack.ts
│   │   ├── useLogRerender.ts
│   │   ├── useMounted.ts
│   │   ├── useOnceEffect.ts
│   │   ├── useOrientation.ts
│   │   ├── usePrimaryColor.ts
│   │   ├── useRerender.ts
│   │   └── useTextColor.ts
│   ├── lib/
│   │   └── react-native-vdebug/
│   │       ├── index.js
│   │       └── src/
│   │           ├── event.js
│   │           ├── hoc.js
│   │           ├── log.js
│   │           ├── network.js
│   │           ├── storage.js
│   │           └── tool.js
│   ├── native/
│   │   ├── lyricUtil/
│   │   │   └── index.ts
│   │   ├── mp3Util/
│   │   │   └── index.ts
│   │   └── utils/
│   │       └── index.ts
│   ├── pages/
│   │   ├── albumDetail/
│   │   │   ├── hooks/
│   │   │   │   └── useAlbumMusicList.ts
│   │   │   └── index.tsx
│   │   ├── artistDetail/
│   │   │   ├── components/
│   │   │   │   ├── body.tsx
│   │   │   │   ├── content/
│   │   │   │   │   ├── albumContentItem.tsx
│   │   │   │   │   ├── index.ts
│   │   │   │   │   └── musicContentItem.tsx
│   │   │   │   ├── header.tsx
│   │   │   │   └── resultList.tsx
│   │   │   ├── hooks/
│   │   │   │   └── useQuery.ts
│   │   │   ├── index.tsx
│   │   │   └── store/
│   │   │       └── atoms.ts
│   │   ├── downloading/
│   │   │   ├── downloadingList.tsx
│   │   │   └── index.tsx
│   │   ├── fileSelector/
│   │   │   ├── fileItem.tsx
│   │   │   └── index.tsx
│   │   ├── history/
│   │   │   └── index.tsx
│   │   ├── home/
│   │   │   ├── components/
│   │   │   │   ├── ActionButton.tsx
│   │   │   │   ├── drawer/
│   │   │   │   │   └── index.tsx
│   │   │   │   ├── homeBody/
│   │   │   │   │   ├── index.tsx
│   │   │   │   │   ├── operations.tsx
│   │   │   │   │   └── sheets.tsx
│   │   │   │   ├── homeBodyHorizontal/
│   │   │   │   │   ├── index.tsx
│   │   │   │   │   └── operations.tsx
│   │   │   │   └── navBar.tsx
│   │   │   └── index.tsx
│   │   ├── localMusic/
│   │   │   ├── index.tsx
│   │   │   └── mainPage/
│   │   │       ├── index.tsx
│   │   │       └── localMusicList.tsx
│   │   ├── musicDetail/
│   │   │   ├── components/
│   │   │   │   ├── background.tsx
│   │   │   │   ├── bottom/
│   │   │   │   │   ├── index.tsx
│   │   │   │   │   ├── playControl.tsx
│   │   │   │   │   └── seekBar.tsx
│   │   │   │   ├── content/
│   │   │   │   │   ├── albumCover/
│   │   │   │   │   │   ├── index.tsx
│   │   │   │   │   │   └── operations.tsx
│   │   │   │   │   ├── heartIcon/
│   │   │   │   │   │   └── index.tsx
│   │   │   │   │   ├── index.tsx
│   │   │   │   │   └── lyric/
│   │   │   │   │       ├── draggingTime.tsx
│   │   │   │   │       ├── index.tsx
│   │   │   │   │       ├── lyricItem.tsx
│   │   │   │   │       └── lyricOperations.tsx
│   │   │   │   └── navBar.tsx
│   │   │   └── index.tsx
│   │   ├── musicListEditor/
│   │   │   ├── components/
│   │   │   │   ├── body.tsx
│   │   │   │   ├── bottom.tsx
│   │   │   │   └── musicList.tsx
│   │   │   ├── index.tsx
│   │   │   └── store/
│   │   │       └── atom.ts
│   │   ├── permissions/
│   │   │   └── index.tsx
│   │   ├── pluginSheetDetail/
│   │   │   ├── hooks/
│   │   │   │   └── usePluginSheetMusicList.ts
│   │   │   └── index.tsx
│   │   ├── recommendSheets/
│   │   │   ├── components/
│   │   │   │   └── body/
│   │   │   │       ├── index.tsx
│   │   │   │       ├── sheetBody.tsx
│   │   │   │       └── sheetList.tsx
│   │   │   ├── hooks/
│   │   │   │   ├── useRecommendListTags.ts
│   │   │   │   └── useRecommendSheets.ts
│   │   │   └── index.tsx
│   │   ├── searchMusicList/
│   │   │   ├── index.tsx
│   │   │   └── searchResult.tsx
│   │   ├── searchPage/
│   │   │   ├── common/
│   │   │   │   └── historySearch.ts
│   │   │   ├── components/
│   │   │   │   ├── historyPanel.tsx
│   │   │   │   ├── navBar.tsx
│   │   │   │   └── resultPanel/
│   │   │   │       ├── index.tsx
│   │   │   │       ├── resultSubPanel.tsx
│   │   │   │       ├── resultWrapper.tsx
│   │   │   │       └── results/
│   │   │   │           ├── albumResultItem.tsx
│   │   │   │           ├── artistResultItem.tsx
│   │   │   │           ├── defaultResults.tsx
│   │   │   │           ├── index.ts
│   │   │   │           ├── musicResultItem.tsx
│   │   │   │           └── musicSheetResultItem.tsx
│   │   │   ├── hooks/
│   │   │   │   └── useSearch.ts
│   │   │   ├── index.tsx
│   │   │   └── store/
│   │   │       └── atoms.ts
│   │   ├── setCustomTheme/
│   │   │   ├── body.tsx
│   │   │   └── index.tsx
│   │   ├── setting/
│   │   │   ├── index.tsx
│   │   │   └── settingTypes/
│   │   │       ├── aboutSetting.tsx
│   │   │       ├── backupSetting.tsx
│   │   │       ├── basicSetting.tsx
│   │   │       ├── index.ts
│   │   │       ├── pluginSetting/
│   │   │       │   ├── components/
│   │   │       │   │   └── pluginItem.tsx
│   │   │       │   ├── index.tsx
│   │   │       │   └── views/
│   │   │       │       ├── pluginList.tsx
│   │   │       │       ├── pluginSort.tsx
│   │   │       │       └── pluginSubscribe.tsx
│   │   │       └── themeSetting/
│   │   │           ├── background.tsx
│   │   │           ├── index.tsx
│   │   │           ├── logoCard.tsx
│   │   │           ├── mode.tsx
│   │   │           └── themeCard.tsx
│   │   ├── sheetDetail/
│   │   │   ├── components/
│   │   │   │   ├── header.tsx
│   │   │   │   ├── navBar.tsx
│   │   │   │   └── sheetMusicList.tsx
│   │   │   └── index.tsx
│   │   ├── topList/
│   │   │   ├── components/
│   │   │   │   ├── boardPanel.tsx
│   │   │   │   ├── boardPanelWrapper.tsx
│   │   │   │   └── topListBody.tsx
│   │   │   ├── hooks/
│   │   │   │   └── useGetTopList.ts
│   │   │   ├── index.tsx
│   │   │   └── store/
│   │   │       └── atoms.ts
│   │   └── topListDetail/
│   │       ├── hooks/
│   │       │   └── useTopListDetail.ts
│   │       └── index.tsx
│   ├── service/
│   │   └── index.ts
│   ├── types/
│   │   ├── album.d.ts
│   │   ├── artist.d.ts
│   │   ├── common.d.ts
│   │   ├── core/
│   │   │   ├── config.d.ts
│   │   │   ├── i18n/
│   │   │   │   └── index.d.ts
│   │   │   ├── musicHistory.d.ts
│   │   │   ├── pluginManager/
│   │   │   │   └── index.d.ts
│   │   │   └── trackPlayer/
│   │   │       └── index.d.ts
│   │   ├── declarations.d.ts
│   │   ├── infra.d.ts
│   │   ├── lyric.d.ts
│   │   ├── media.d.ts
│   │   ├── music.d.ts
│   │   ├── musicSheet.d.ts
│   │   ├── musicSheetGroup.d.ts
│   │   └── plugin.d.ts
│   └── utils/
│       ├── base64.ts
│       ├── checkUpdate.ts
│       ├── colorUtil.ts
│       ├── delay.ts
│       ├── eventBus.ts
│       ├── fileUtils.ts
│       ├── getOrCreateMMKV.ts
│       ├── getUrlExt.ts
│       ├── htmlUtil.ts
│       ├── jsonUtil.ts
│       ├── log.ts
│       ├── lrcParser.ts
│       ├── mediaExtra.ts
│       ├── mediaIndexMap.ts
│       ├── mediaUtils.ts
│       ├── minDistance.ts
│       ├── network.ts
│       ├── notImplementedFunction.ts
│       ├── openUrl.ts
│       ├── perfLogger.ts
│       ├── persistStatus.ts
│       ├── qualities.ts
│       ├── rpx.ts
│       ├── scheduleClose.ts
│       ├── stateMapper.ts
│       ├── storage.ts
│       ├── timeformat.ts
│       ├── toast.ts
│       └── trackUtils.ts
└── tsconfig.json
Download .txt
SYMBOL INDEX (950 symbols across 272 files)

FILE: generator/generate-assets.mjs
  function toCamelCase (line 6) | function toCamelCase(str) {

FILE: src/components/base/SortableFlatList.tsx
  type ISortableFlatListProps (line 31) | interface ISortableFlatListProps<T> {
  function SortableFlatList (line 51) | function SortableFlatList<T extends any = any>(
  type ISortableFlatListItemProps (line 318) | interface ISortableFlatListItemProps<T extends any = any> {
  function _SortableFlatListItem (line 335) | function _SortableFlatListItem(props: ISortableFlatListItemProps) {

FILE: src/components/base/appBar.tsx
  type IAppBarProps (line 29) | interface IAppBarProps {
  constant ANIMATION_EASING (line 51) | const ANIMATION_EASING: Animated.EasingFunction = Easing.out(Easing.exp);
  constant ANIMATION_DURATION (line 52) | const ANIMATION_DURATION = 500;
  function AppBar (line 59) | function AppBar(props: IAppBarProps) {

FILE: src/components/base/button.tsx
  function Button (line 13) | function Button(props: {

FILE: src/components/base/checkbox.tsx
  type ICheckboxProps (line 8) | interface ICheckboxProps {
  function Checkbox (line 16) | function Checkbox(props: ICheckboxProps) {

FILE: src/components/base/chip.tsx
  type IChipProps (line 8) | interface IChipProps {
  function Chip (line 14) | function Chip(props: IChipProps) {

FILE: src/components/base/colorBlock.tsx
  type IColorBlockProps (line 6) | interface IColorBlockProps {
  function ColorBlock (line 9) | function ColorBlock(props: IColorBlockProps) {

FILE: src/components/base/divider.tsx
  type IDividerProps (line 5) | interface IDividerProps {
  function Divider (line 9) | function Divider(props: IDividerProps) {

FILE: src/components/base/empty.tsx
  type IEmptyProps (line 7) | interface IEmptyProps {
  function Empty (line 10) | function Empty(props: IEmptyProps) {

FILE: src/components/base/fab.tsx
  type IFabProps (line 8) | interface IFabProps {
  function Fab (line 12) | function Fab(props: IFabProps) {

FILE: src/components/base/fastImage.tsx
  type IFastImageProps (line 5) | interface IFastImageProps {

FILE: src/components/base/horizontalSafeAreaView.tsx
  type IHorizontalSafeAreaViewProps (line 5) | interface IHorizontalSafeAreaViewProps {
  function HorizontalSafeAreaView (line 10) | function HorizontalSafeAreaView(

FILE: src/components/base/icon.tsx
  type IIconName (line 78) | type IIconName =
  type IProps (line 153) | interface IProps extends SvgProps {
  function Icon (line 236) | function Icon(props: IProps) {

FILE: src/components/base/iconButton.tsx
  type IIconButtonProps (line 9) | interface IIconButtonProps extends SvgProps {
  function IconButtonWithGesture (line 18) | function IconButtonWithGesture(props: IIconButtonProps) {
  function IconButton (line 46) | function IconButton(props: IIconButtonProps) {

FILE: src/components/base/iconTextButton.tsx
  type IProps (line 10) | interface IProps {

FILE: src/components/base/image.tsx
  type IImageProps (line 4) | interface IImageProps extends ImageProps {

FILE: src/components/base/imageBtn.tsx
  type IImageBtnProps (line 8) | interface IImageBtnProps {
  function ImageBtn (line 14) | function ImageBtn(props: IImageBtnProps) {

FILE: src/components/base/input.tsx
  type IInputProps (line 7) | interface IInputProps extends TextInputProps {
  function Input (line 12) | function Input(props: IInputProps) {

FILE: src/components/base/linkText.tsx
  type ILinkTextProps (line 8) | type ILinkTextProps = TextProps & {
  function LinkText (line 15) | function LinkText(props: ILinkTextProps) {

FILE: src/components/base/listEmpty.tsx
  type IEmptyProps (line 10) | interface IEmptyProps {
  function ListEmpty (line 14) | function ListEmpty(props: IEmptyProps) {

FILE: src/components/base/listFooter.tsx
  type IProps (line 12) | interface IProps {
  function ListFooter (line 17) | function ListFooter(props: IProps) {

FILE: src/components/base/listItem.tsx
  type IListItemProps (line 24) | interface IListItemProps {
  function ListItem (line 51) | function ListItem(props: IListItemProps) {
  type IListItemTextProps (line 84) | interface IListItemTextProps {
  function ListItemText (line 97) | function ListItemText(props: IListItemTextProps) {
  type IListItemIconProps (line 132) | interface IListItemIconProps {
  function ListItemIcon (line 144) | function ListItemIcon(props: IListItemIconProps) {
  type IListItemImageProps (line 184) | interface IListItemImageProps {
  function ListItemImage (line 196) | function ListItemImage(props: IListItemImageProps) {
  type IContentProps (line 235) | interface IContentProps {
  function Content (line 242) | function Content(props: IContentProps) {
  function ListItemHeader (line 281) | function ListItemHeader(props: { children?: ReactNode }) {

FILE: src/components/base/loading.tsx
  type ILoadingProps (line 8) | interface ILoadingProps {
  function Loading (line 14) | function Loading(props: ILoadingProps) {

FILE: src/components/base/noPlugin.tsx
  type IProps (line 7) | interface IProps {
  function NoPlugin (line 11) | function NoPlugin(props: IProps) {

FILE: src/components/base/pageBackground.tsx
  function PageBackground (line 7) | function PageBackground() {

FILE: src/components/base/paragraph.tsx
  type IParagraphProps (line 6) | interface IParagraphProps extends TextProps {}
  function Paragraph (line 7) | function Paragraph(props: IParagraphProps) {

FILE: src/components/base/playAllBar.tsx
  type IProps (line 17) | interface IProps {

FILE: src/components/base/portal.tsx
  type IPortalNode (line 5) | interface IPortalNode {
  type IPortalProps (line 12) | interface IPortalProps {
  function Portal (line 15) | function Portal(props: IPortalProps) {
  function PortalHost (line 62) | function PortalHost() {

FILE: src/components/base/statusBar.tsx
  type IStatusBarProps (line 5) | interface IStatusBarProps extends StatusBarProps {}

FILE: src/components/base/switch.tsx
  type ISwitchProps (line 17) | interface ISwitchProps extends SwitchProps {}
  function ThemeSwitch (line 21) | function ThemeSwitch(props: ISwitchProps) {

FILE: src/components/base/tag.tsx
  type ITagProps (line 7) | interface ITagProps {
  function Tag (line 12) | function Tag(props: ITagProps) {

FILE: src/components/base/textButton.tsx
  type IButtonProps (line 7) | interface IButtonProps {

FILE: src/components/base/themeText.tsx
  type IThemeTextProps (line 6) | type IThemeTextProps = TextProps & {
  function ThemeText (line 14) | function ThemeText(props: IThemeTextProps) {

FILE: src/components/base/tip.tsx
  type TipPosition (line 15) | type TipPosition = "top" | "bottom" | "left" | "right";
  type ITipProps (line 17) | interface ITipProps {
  type ITipPortalProps (line 27) | interface ITipPortalProps {
  function Tip (line 224) | function Tip({

FILE: src/components/base/toast.tsx
  type IToastConfig (line 24) | interface IToastConfig {
  type IToastConfigInner (line 37) | type IToastConfigInner = IToastConfig & {
  function ToastBaseComponent (line 58) | function ToastBaseComponent() {
  function showToast (line 205) | function showToast(config: IToastConfig) {

FILE: src/components/base/typeTag.tsx
  type ITypeTagProps (line 14) | interface ITypeTagProps {
  function TypeTag (line 22) | function TypeTag(props: ITypeTagProps) {

FILE: src/components/base/verticalSafeAreaView.tsx
  type IVerticalSafeAreaViewProps (line 5) | interface IVerticalSafeAreaViewProps {
  function VerticalSafeAreaView (line 10) | function VerticalSafeAreaView(

FILE: src/components/debug/index.tsx
  function Debug (line 6) | function Debug() {

FILE: src/components/dialogs/components/base/index.tsx
  type IDialogProps (line 26) | interface IDialogProps {
  function Dialog (line 31) | function Dialog(props: IDialogProps) {
  type IDialogTitleProps (line 118) | interface IDialogTitleProps {
  function Title (line 125) | function Title(props: IDialogTitleProps) {
  type IDialogContentProps (line 147) | interface IDialogContentProps {
  function Content (line 153) | function Content(props: IDialogContentProps) {
  type IDialogActionsProps (line 179) | interface IDialogActionsProps {
  function Actions (line 190) | function Actions(props: IDialogActionsProps) {
  function BottomButton (line 229) | function BottomButton(props: {

FILE: src/components/dialogs/components/checkStorage.tsx
  function CheckStorage (line 13) | function CheckStorage() {

FILE: src/components/dialogs/components/downloadDialog.tsx
  type IDownloadDialogProps (line 15) | interface IDownloadDialogProps {
  function DownloadDialog (line 21) | function DownloadDialog(props: IDownloadDialogProps) {

FILE: src/components/dialogs/components/editSheetDetail.tsx
  type IEditSheetDetailProps (line 20) | interface IEditSheetDetailProps {
  function EditSheetDetailDialog (line 23) | function EditSheetDetailDialog(props: IEditSheetDetailProps) {

FILE: src/components/dialogs/components/index.ts
  type IDialogType (line 25) | type IDialogType = typeof dialogs;
  type IDialogKey (line 26) | type IDialogKey = keyof IDialogType;

FILE: src/components/dialogs/components/loadingDialog.tsx
  type ILoadingDialogProps (line 9) | interface ILoadingDialogProps<T extends any = any> {
  function LoadingDialog (line 18) | function LoadingDialog(props: ILoadingDialogProps) {

FILE: src/components/dialogs/components/markdownDialog.tsx
  type IMarkdownDialogProps (line 16) | interface IMarkdownDialogProps {
  function MarkdownDialog (line 21) | function MarkdownDialog(props: IMarkdownDialogProps) {

FILE: src/components/dialogs/components/radioDialog.tsx
  type IKV (line 14) | interface IKV<T extends string | number = string | number> {
  type IRadioDialogProps (line 20) | interface IRadioDialogProps<T extends string | number = string | number> {
  function isObject (line 28) | function isObject(v: string | number | IKV): v is IKV {
  function RadioDialog (line 32) | function RadioDialog(props: IRadioDialogProps) {

FILE: src/components/dialogs/components/setScheduleCloseTimeDialog.tsx
  type ISetScheduleCloseTimeDialogProps (line 12) | interface ISetScheduleCloseTimeDialogProps {
  function SetScheduleCloseTimeDialog (line 16) | function SetScheduleCloseTimeDialog(

FILE: src/components/dialogs/components/simpleDialog.tsx
  type ISimpleDialogProps (line 6) | interface ISimpleDialogProps {
  function SimpleDialog (line 13) | function SimpleDialog(props: ISimpleDialogProps) {

FILE: src/components/dialogs/components/subscribePluginDialog.tsx
  type ISubscribeItem (line 11) | interface ISubscribeItem {
  type ISubscribePluginDialogProps (line 15) | interface ISubscribePluginDialogProps {
  function SubscribePluginDialog (line 26) | function SubscribePluginDialog(

FILE: src/components/dialogs/useDialog.ts
  type IDialogInfo (line 5) | interface IDialogInfo {
  function showDialog (line 15) | function showDialog<T extends keyof IDialogType>(
  function hideDialog (line 25) | function hideDialog() {
  function useDialog (line 32) | function useDialog() {
  function getCurrentDialog (line 56) | function getCurrentDialog() {

FILE: src/components/errorBoundary/index.tsx
  type DeviceInfoProps (line 10) | interface DeviceInfoProps {
  function DeviceInfoSection (line 14) | function DeviceInfoSection({ colors }: DeviceInfoProps) {
  type ErrorBoundaryProps (line 84) | interface ErrorBoundaryProps {
  type ErrorBoundaryState (line 88) | interface ErrorBoundaryState {
  class ErrorBoundary (line 94) | class ErrorBoundary extends Component<ErrorBoundaryProps, ErrorBoundaryS...
    method constructor (line 95) | constructor(props: ErrorBoundaryProps) {
    method getDerivedStateFromError (line 104) | static getDerivedStateFromError(error: Error): Partial<ErrorBoundarySt...
    method componentDidCatch (line 111) | componentDidCatch(error: Error, errorInfo: any) {
    method render (line 121) | render() {
  type ErrorFallbackProps (line 130) | interface ErrorFallbackProps {
  function ErrorFallback (line 135) | function ErrorFallback({ error, errorInfo }: ErrorFallbackProps) {

FILE: src/components/mediaItem/LyricItem.tsx
  type IAlbumResultsProps (line 6) | interface IAlbumResultsProps {
  function LyricItem (line 10) | function LyricItem(props: IAlbumResultsProps) {

FILE: src/components/mediaItem/albumItem.tsx
  type IAlbumResultsProps (line 7) | interface IAlbumResultsProps {
  function AlbumItem (line 11) | function AlbumItem(props: IAlbumResultsProps) {

FILE: src/components/mediaItem/musicItem.tsx
  type IMusicItemProps (line 13) | interface IMusicItemProps {
  function MusicItem (line 25) | function MusicItem(props: IMusicItemProps) {

FILE: src/components/mediaItem/sheetItem.tsx
  type ISheetItemProps (line 7) | interface ISheetItemProps {
  function SheetItem (line 14) | function SheetItem(props: ISheetItemProps) {

FILE: src/components/mediaItem/titleAndTag.tsx
  type ITitleAndTagProps (line 7) | interface ITitleAndTagProps {
  function TitleAndTag (line 12) | function TitleAndTag(props: ITitleAndTagProps) {

FILE: src/components/mediaItem/topListItem.tsx
  type ITopListResultsProps (line 7) | interface ITopListResultsProps {
  function TopListItem (line 12) | function TopListItem(props: ITopListResultsProps) {

FILE: src/components/musicBar/index.tsx
  function CircularPlayBtn (line 15) | function CircularPlayBtn() {
  function MusicBar (line 58) | function MusicBar() {

FILE: src/components/musicBar/musicInfo.tsx
  type IBarMusicItemProps (line 22) | interface IBarMusicItemProps {
  function _BarMusicItem (line 27) | function _BarMusicItem(props: IBarMusicItemProps) {
  type IMusicInfoProps (line 105) | interface IMusicInfoProps {
  function skipMusicItem (line 110) | function skipMusicItem(direction: number) {
  function MusicInfo (line 118) | function MusicInfo(props: IMusicInfoProps) {

FILE: src/components/musicList/index.tsx
  type IMusicListProps (line 15) | interface IMusicListProps {
  constant ITEM_HEIGHT (line 36) | const ITEM_HEIGHT = rpx(120);
  function MusicList (line 39) | function MusicList(props: IMusicListProps) {

FILE: src/components/musicSheetPage/components/header.tsx
  type IHeaderProps (line 10) | interface IHeaderProps {
  function Header (line 15) | function Header(props: IHeaderProps) {

FILE: src/components/musicSheetPage/components/navBar.tsx
  type INavBarProps (line 6) | interface INavBarProps {
  method onPress (line 20) | onPress() {
  method onPress (line 31) | onPress() {

FILE: src/components/musicSheetPage/components/sheetMusicList.tsx
  type IMusicListProps (line 13) | interface IMusicListProps {
  function SheetMusicList (line 23) | function SheetMusicList(props: IMusicListProps) {

FILE: src/components/musicSheetPage/index.tsx
  type IMusicSheetPageProps (line 10) | interface IMusicSheetPageProps {
  function MusicSheetPage (line 22) | function MusicSheetPage(props: IMusicSheetPageProps) {

FILE: src/components/panels/base/panelBase.tsx
  constant ANIMATION_EASING (line 26) | const ANIMATION_EASING: EasingFunction = Easing.out(Easing.exp);
  constant ANIMATION_DURATION (line 27) | const ANIMATION_DURATION = 250;
  type IPanelBaseProps (line 34) | interface IPanelBaseProps {

FILE: src/components/panels/base/panelFullscreen.tsx
  constant ANIMATION_EASING (line 25) | const ANIMATION_EASING: EasingFunction = Easing.out(Easing.exp);
  constant ANIMATION_DURATION (line 26) | const ANIMATION_DURATION = 250;
  type IPanelFullScreenProps (line 33) | interface IPanelFullScreenProps {

FILE: src/components/panels/base/panelHeader.tsx
  type IPanelHeaderProps (line 9) | interface IPanelHeaderProps {
  function PanelHeader (line 19) | function PanelHeader(props: IPanelHeaderProps) {

FILE: src/components/panels/index.tsx
  function Panels (line 5) | function Panels() {

FILE: src/components/panels/types/addToMusicSheet.tsx
  type IAddToMusicSheetProps (line 16) | interface IAddToMusicSheetProps {
  function AddToMusicSheet (line 22) | function AddToMusicSheet(props: IAddToMusicSheetProps) {

FILE: src/components/panels/types/associateLrc.tsx
  type INewMusicSheetProps (line 19) | interface INewMusicSheetProps {
  function AssociateLrc (line 23) | function AssociateLrc(props: INewMusicSheetProps) {

FILE: src/components/panels/types/colorPicker.tsx
  type IColorPickerProps (line 13) | interface IColorPickerProps {
  function ColorPicker (line 21) | function ColorPicker(props: IColorPickerProps) {

FILE: src/components/panels/types/createMusicSheet.tsx
  type ICreateMusicSheetProps (line 14) | interface ICreateMusicSheetProps {
  function CreateMusicSheet (line 20) | function CreateMusicSheet(props: ICreateMusicSheetProps) {

FILE: src/components/panels/types/editMusicSheetInfo.tsx
  type IEditSheetDetailProps (line 24) | interface IEditSheetDetailProps {
  function EditMusicSheetInfo (line 28) | function EditMusicSheetInfo(props: IEditSheetDetailProps) {

FILE: src/components/panels/types/imageViewer.tsx
  type IImageViewerProps (line 12) | interface IImageViewerProps {
  function ImageViewer (line 17) | function ImageViewer(props: IImageViewerProps) {

FILE: src/components/panels/types/importMusicSheet.tsx
  function ImportMusicSheet (line 18) | function ImportMusicSheet() {

FILE: src/components/panels/types/musicComment/comment.tsx
  type ICommentProps (line 11) | interface ICommentProps {
  function Comment (line 15) | function Comment(props: ICommentProps) {

FILE: src/components/panels/types/musicComment/index.tsx
  type IMusicCommentProps (line 20) | interface IMusicCommentProps {
  function MusicComment (line 25) | function MusicComment(props: IMusicCommentProps) {

FILE: src/components/panels/types/musicComment/useComments.ts
  function useComments (line 20) | function useComments(mediaItem: ICommon.IMediaBase) {

FILE: src/components/panels/types/musicItemLyricOptions.tsx
  type IMusicItemLyricOptionsProps (line 27) | interface IMusicItemLyricOptionsProps {
  constant ITEM_HEIGHT (line 32) | const ITEM_HEIGHT = rpx(96);
  type IOption (line 34) | interface IOption {
  function MusicItemLyricOptions (line 41) | function MusicItemLyricOptions(

FILE: src/components/panels/types/musicItemOptions.tsx
  type IMusicItemOptionsProps (line 35) | interface IMusicItemOptionsProps {
  constant ITEM_HEIGHT (line 44) | const ITEM_HEIGHT = rpx(96);
  type IOption (line 46) | interface IOption {
  function MusicItemOptions (line 53) | function MusicItemOptions(props: IMusicItemOptionsProps) {

FILE: src/components/panels/types/musicQuality.tsx
  type IMusicQualityProps (line 16) | interface IMusicQualityProps {
  function MusicQuality (line 27) | function MusicQuality(props: IMusicQualityProps) {

FILE: src/components/panels/types/playList/body.tsx
  constant ITEM_HEIGHT (line 16) | const ITEM_HEIGHT = rpx(108);
  constant ITEM_WIDTH (line 17) | const ITEM_WIDTH = rpx(750);
  type IPlayListProps (line 19) | interface IPlayListProps {
  function _PlayListItem (line 24) | function _PlayListItem(props: IPlayListProps) {
  type IBodyProps (line 81) | interface IBodyProps {
  function Body (line 84) | function Body(props: IBodyProps) {

FILE: src/components/panels/types/playList/header.tsx
  function Header (line 11) | function Header() {

FILE: src/components/panels/types/playRate.tsx
  type IPlayRateProps (line 14) | interface IPlayRateProps {
  function PlayRate (line 21) | function PlayRate(props: IPlayRateProps) {

FILE: src/components/panels/types/searchLrc/LyricList.tsx
  type ILyricListWrapperProps (line 16) | interface ILyricListWrapperProps {
  function LyricListWrapper (line 22) | function LyricListWrapper(props: ILyricListWrapperProps) {
  type ILyricListProps (line 28) | interface ILyricListProps {
  constant ITEM_HEIGHT (line 32) | const ITEM_HEIGHT = rpx(120);
  function LyricListImpl (line 33) | function LyricListImpl(props: ILyricListProps) {

FILE: src/components/panels/types/searchLrc/index.tsx
  type INewMusicSheetProps (line 18) | interface INewMusicSheetProps {
  function SearchLrc (line 22) | function SearchLrc(props: INewMusicSheetProps) {
  function LyricResultBodyWrapper (line 113) | function LyricResultBodyWrapper() {

FILE: src/components/panels/types/searchLrc/searchResultStore.ts
  type ISearchLyricResult (line 4) | interface ISearchLyricResult {
  type ISearchLyricStoreData (line 10) | interface ISearchLyricStoreData {

FILE: src/components/panels/types/searchLrc/useSearchLrc.ts
  function useSearchLrc (line 8) | function useSearchLrc() {

FILE: src/components/panels/types/setFontSize.tsx
  type IProps (line 12) | interface IProps {
  function SetFontSize (line 18) | function SetFontSize(props: IProps) {

FILE: src/components/panels/types/setLyricOffset.tsx
  type IProps (line 16) | interface IProps {
  function SetLyricOffset (line 22) | function SetLyricOffset(props: IProps) {

FILE: src/components/panels/types/setUserVariables.tsx
  type IUserVariablesProps (line 15) | interface IUserVariablesProps {
  function SetUserVariables (line 23) | function SetUserVariables(props: IUserVariablesProps) {

FILE: src/components/panels/types/sheetTags.tsx
  type ISheetTagsProps (line 13) | interface ISheetTagsProps {
  function SheetTags (line 19) | function SheetTags(props: ISheetTagsProps) {

FILE: src/components/panels/types/simpleInput.tsx
  type ISimpleInputProps (line 14) | interface ISimpleInputProps {
  function SimpleInput (line 24) | function SimpleInput(props: ISimpleInputProps) {

FILE: src/components/panels/types/simpleSelect.tsx
  type ICandidateItem (line 10) | interface ICandidateItem {
  type ISimpleSelectProps (line 15) | interface ISimpleSelectProps {
  function SimpleSelect (line 22) | function SimpleSelect(props: ISimpleSelectProps) {

FILE: src/components/panels/types/timingClose.tsx
  function CountDownHeader (line 20) | function CountDownHeader() {
  function TimingClose (line 37) | function TimingClose() {

FILE: src/components/panels/usePanel.ts
  type IPanel (line 5) | type IPanel = typeof panels;
  type IPanelkeys (line 6) | type IPanelkeys = keyof IPanel;
  type IPanelInfo (line 8) | interface IPanelInfo {
  function showPanel (line 19) | function showPanel<T extends IPanelkeys>(
  function hidePanel (line 38) | function hidePanel() {

FILE: src/constants/commonConst.ts
  type RequestStateCode (line 21) | enum RequestStateCode {
  constant ANIMATION_EASING (line 63) | const ANIMATION_EASING: EasingFunction = Easing.out(Easing.exp);
  constant ANIMATION_DURATION (line 64) | const ANIMATION_DURATION = 150;
  type SortType (line 87) | const enum SortType {
  type ResumeMode (line 102) | const enum ResumeMode {

FILE: src/constants/repeatModeConst.ts
  type MusicRepeatMode (line 1) | enum MusicRepeatMode {

FILE: src/constants/uiConst.ts
  type ColorKey (line 35) | type ColorKey = "normal" | "secondary" | "highlight" | "primary";

FILE: src/core.defination/trackPlayer/index.ts
  type TrackPlayerEvents (line 1) | enum TrackPlayerEvents {

FILE: src/core/appConfig.ts
  class AppConfig (line 11) | class AppConfig implements IAppConfig {
    method migrateConfig (line 13) | private async migrateConfig(): Promise<void> {
    method setup (line 171) | async setup(): Promise<void> {
    method setConfig (line 175) | setConfig<K extends keyof IAppConfigProperties>(
    method getConfig (line 186) | getConfig<K extends keyof IAppConfigProperties>(
  function useAppConfig (line 201) | function useAppConfig<K extends keyof IAppConfigProperties>(key: K): IAp...

FILE: src/core/appMeta.ts
  class AppMeta (line 3) | class AppMeta {
    method getAppMeta (line 4) | private getAppMeta(key: string) {
    method setAppMeta (line 9) | private setAppMeta(key: string, value: any) {
    method musicSheetVersion (line 17) | get musicSheetVersion(): number {
    method setMusicSheetVersion (line 25) | setMusicSheetVersion(version: number) {
    method historySheetVersion (line 29) | get historySheetVersion(): number {
    method setHistorySheetVersion (line 37) | setHistorySheetVersion(version: number) {

FILE: src/core/backup.ts
  type IBackJson (line 16) | interface IBackJson {
  function backup (line 21) | function backup() {
  function resume (line 35) | async function resume(

FILE: src/core/downloader.ts
  type DownloadStatus (line 21) | enum DownloadStatus {
  type DownloaderEvent (line 35) | enum DownloaderEvent {
  type DownloadFailReason (line 49) | enum DownloadFailReason {
  type IDownloadTaskInfo (line 61) | interface IDownloadTaskInfo {
  type IEvents (line 85) | interface IEvents {
  class Downloader (line 96) | class Downloader extends EventEmitter<IEvents> implements IInjectable {
    method generateFilename (line 102) | private static generateFilename(musicItem: IMusic.IMusicItem) {
    method injectDependencies (line 111) | injectDependencies(configService: IAppConfig, pluginManager: IPluginMa...
    method updateDownloadTask (line 116) | private updateDownloadTask(musicItem: IMusic.IMusicItem, patch: Partia...
    method markTaskAsStarted (line 127) | private markTaskAsStarted(musicItem: IMusic.IMusicItem) {
    method markTaskAsCompleted (line 134) | private markTaskAsCompleted(musicItem: IMusic.IMusicItem) {
    method markTaskAsError (line 141) | private markTaskAsError(musicItem: IMusic.IMusicItem, reason: Download...
    method getExtensionName (line 151) | private getExtensionName(url: string) {
    method getDownloadPath (line 163) | private getDownloadPath(fileName: string) {
    method getCacheDownloadPath (line 173) | private getCacheDownloadPath(fileName: string) {
    method downloadNextPendingTask (line 182) | private async downloadNextPendingTask() {
    method download (line 361) | download(musicItems: IMusic.IMusicItem | IMusic.IMusicItem[], quality?...
    method remove (line 412) | remove(musicItem: IMusic.IMusicItem) {
  function useDownloadTask (line 434) | function useDownloadTask(musicItem: IMusic.IMusicItem) {

FILE: src/core/i18n/index.ts
  class I18N (line 28) | class I18N<K extends keyof ILanguageData> {
    method setup (line 29) | setup() {
    method getSupportedLanguages (line 33) | getSupportedLanguages() {
    method getLanguage (line 37) | getLanguage() {
    method setLanguage (line 41) | setLanguage(locale: string) {
    method t (line 47) | t(key: K, args?: Record<string, any>): ILanguageData[K] {
  function useI18N (line 64) | function useI18N(): I18N<keyof ILanguageData> {

FILE: src/core/localMusicSheet.ts
  function setup (line 22) | async function setup() {
  function addMusic (line 42) | async function addMusic(
  function addMusicDraft (line 59) | function addMusicDraft(musicItem: IMusic.IMusicItem | IMusic.IMusicItem[...
  function saveLocalSheet (line 73) | async function saveLocalSheet() {
  function removeMusic (line 77) | async function removeMusic(
  function parseFilename (line 104) | function parseFilename(fn: string): Partial<IMusic.IMusicItem> | null {
  function localMediaFilter (line 118) | function localMediaFilter(filename: string) {
  function getMusicStats (line 124) | async function getMusicStats(folderPaths: string[]) {
  function cancelImportLocal (line 153) | function cancelImportLocal() {
  function importLocal (line 159) | async function importLocal(_folderPaths: string[]) {
  function isLocalMusic (line 208) | function isLocalMusic(
  function useIsLocal (line 217) | function useIsLocal(musicItem: IMusic.IMusicItem | null) {
  function getMusicList (line 230) | function getMusicList() {
  function updateMusicList (line 234) | async function updateMusicList(newSheet: IMusic.IMusicItem[]) {

FILE: src/core/lyricManager.ts
  type ILyricState (line 22) | interface ILyricState {
  class LyricManager (line 39) | class LyricManager implements IInjectable {
    method currentLyricItem (line 48) | get currentLyricItem() {
    method lyricState (line 52) | get lyricState() {
    method injectDependencies (line 56) | injectDependencies(trackPlayerService: ITrackPlayer, appConfigService:...
    method setup (line 62) | setup() {
    method associateLyric (line 125) | associateLyric(musicItem: IMusic.IMusicItem, linkToMusicItem: ICommon....
    method unassociateLyric (line 147) | unassociateLyric(musicItem: IMusic.IMusicItem) {
    method uploadLocalLyric (line 161) | async uploadLocalLyric(musicItem: IMusic.IMusicItem, lyricContent: str...
    method removeLocalLyric (line 187) | async removeLocalLyric(musicItem: IMusic.IMusicItem) {
    method updateLyricOffset (line 212) | updateLyricOffset(musicItem: IMusic.IMusicItem, offset: number) {
    method setLyricAsLoadingState (line 227) | private setLyricAsLoadingState() {
    method setLyricAsNoLyricState (line 236) | private setLyricAsNoLyricState() {
    method refreshLyric (line 249) | private async refreshLyric(skipFetchLyricSourceIfSame: boolean = true,...
    method searchSimilarLyric (line 340) | private async searchSimilarLyric(musicItem: IMusic.IMusicItem) {

FILE: src/core/mediaCache.ts
  function clearLocalCaches (line 51) | async function clearLocalCaches(cacheData: IMusic.IMusicItemCache) {
  function checkPathAndRemove (line 58) | async function checkPathAndRemove(filePath?: string) {

FILE: src/core/musicHistory.ts
  class MusicHistory (line 17) | class MusicHistory implements IMusicHistory, IInjectable {
    method injectDependencies (line 20) | injectDependencies(configService: IAppConfig): void {
    method history (line 24) | get history() {
    method setup (line 28) | async setup() {
    method addMusic (line 37) | async addMusic(musicItem: IMusic.IMusicItem) {
    method removeMusic (line 48) | async removeMusic(musicItem: IMusic.IMusicItem) {
    method clearMusic (line 56) | async clearMusic() {
    method setHistory (line 61) | async setHistory(newHistory: IMusic.IMusicItem[]) {
    method migrateToMMKV (line 66) | async migrateToMMKV() {
  function useMusicHistory (line 76) | function useMusicHistory() {

FILE: src/core/musicSheet/index.ts
  class MusicSheetClazz (line 47) | class MusicSheetClazz implements IInjectable {
    method injectDependencies (line 52) | injectDependencies(appConfigService: IAppConfig): void {
    method setup (line 57) | async setup() {
    method getSortedMusicListBySheetId (line 134) | getSortedMusicListBySheetId(sheetId: string) {
    method updateMusicSheetBase (line 151) | async updateMusicSheetBase(
    method addSheet (line 182) | async addSheet(title: string) {
    method backupSheets (line 224) | backupSheets() {
    method resumeSheets (line 233) | async resumeSheets(
    method removeSheet (line 286) | async removeSheet(sheetId: string) {
    method addMusic (line 310) | async addMusic(
    method removeMusicByIndex (line 360) | async removeMusicByIndex(sheetId: string, indices: number | number[]) {
    method removeMusic (line 398) | async removeMusic(
    method setSortType (line 433) | async setSortType(sheetId: string, sortType: SortType) {
    method manualSort (line 446) | async manualSort(
    method starMusicSheet (line 468) | async starMusicSheet(musicSheet: IMusic.IMusicSheetItem) {
    method unstarMusicSheet (line 480) | async unstarMusicSheet(musicSheet: IMusic.IMusicSheetItemBase) {
  function useSheetsBase (line 504) | function useSheetsBase() {
  function useSheetItem (line 509) | function useSheetItem(sheetId: string) {
  function useFavorite (line 552) | function useFavorite(musicItem: IMusic.IMusicItem | null) {
  function useSheetIsStarred (line 573) | function useSheetIsStarred(
  function useStarredSheets (line 593) | function useStarredSheets() {

FILE: src/core/musicSheet/migrate.ts
  function migrate (line 6) | async function migrate() {
  method migrate (line 35) | migrate(sheetId: string, musicItems: IMusic.IMusicItem[]) {
  method done (line 53) | done() {

FILE: src/core/musicSheet/sortedMusicList.ts
  class SortedMusicList (line 42) | class SortedMusicList {
    method musicList (line 49) | get musicList() {
    method firstMusic (line 53) | get firstMusic() {
    method platforms (line 57) | get platforms() {
    method length (line 61) | get length() {
    method constructor (line 65) | constructor(
    method at (line 79) | at(index: number) {
    method has (line 83) | has(musicItem: IMusic.IMusicItem | null) {
    method setSortType (line 94) | setSortType(sortType: SortType) {
    method manualSort (line 106) | manualSort(newMusicItems: IMusic.IMusicItem[]) {
    method add (line 111) | add(musicItems: IMusic.IMusicItem[]) {
    method remove (line 138) | remove(musicItems: IMusic.IMusicItem[]) {
    method removeByIndex (line 145) | removeByIndex(indices: number[]) {
    method clearAll (line 160) | clearAll() {
    method addToCountMap (line 164) | private addToCountMap(musicItems: IMusic.IMusicItem[]) {
    method removeFromCountMap (line 177) | private removeFromCountMap(musicItems: IMusic.IMusicItem[]) {
    method mergeArray (line 199) | private mergeArray(
    method findIndex (line 242) | public findIndex(musicItem: IMusic.IMusicItem) {
    method resort (line 270) | private resort() {

FILE: src/core/musicSheet/storage.ts
  function getStorageData (line 6) | function getStorageData(key: string) {
  function setStorageData (line 12) | async function setStorageData(key: string, value: any) {
  function removeStorageData (line 19) | function removeStorageData(key: string) {
  function setSheets (line 28) | async function setSheets(sheets: IMusic.IMusicSheetItemBase[]) {
  function getSheets (line 35) | function getSheets(): IMusic.IMusicSheetItemBase[] {
  function setStarredSheets (line 43) | async function setStarredSheets(sheets: IMusic.IMusicSheetItemBase[]) {
  function getStarredSheets (line 50) | function getStarredSheets(): IMusic.IMusicSheetItem[] {
  function setMusicList (line 59) | async function setMusicList(sheetId: string, musicList: IMusic.IMusicIte...
  function getMusicList (line 68) | function getMusicList(sheetId: string): IMusic.IMusicItem[] {
  function removeMusicList (line 76) | function removeMusicList(sheetId: string) {
  type IMusicSheetMeta (line 80) | interface IMusicSheetMeta extends Record<string, string> {
  function setSheetMeta (line 84) | function setSheetMeta<K extends keyof IMusicSheetMeta>(
  function getSheetMeta (line 93) | function getSheetMeta<K extends keyof IMusicSheetMeta>(

FILE: src/core/pluginManager/index.ts
  class PluginManager (line 40) | class PluginManager implements IPluginManager, IInjectable {
    method injectDependencies (line 43) | injectDependencies(config: IAppConfig): void {
    method getPlugins (line 51) | private getPlugins() {
    method setPlugins (line 59) | private setPlugins(plugins: Plugin[]) {
    method updatePluginCache (line 75) | private updatePluginCache(plugin: Plugin) {
    method setup (line 95) | async setup() {
    method installPluginFromLocalFile (line 183) | async installPluginFromLocalFile(
    method installPluginFromUrl (line 272) | async installPluginFromUrl(
    method uninstallPlugin (line 381) | async uninstallPlugin(hash: string) {
    method uninstallAllPlugins (line 402) | async uninstallAllPlugins() {
    method updatePlugin (line 429) | async updatePlugin(plugin: Plugin) {
    method getByMedia (line 450) | getByMedia(mediaItem: ICommon.IMediaBase) {
    method getByName (line 459) | getByName(name: string) {
    method getByHash (line 470) | getByHash(hash: string) {
    method getEnabledPlugins (line 480) | getEnabledPlugins() {
    method getSortedPlugins (line 490) | getSortedPlugins() {
    method getSearchablePlugins (line 504) | getSearchablePlugins(supportedSearchType?: ICommon.SupportMediaType) {
    method getSortedSearchablePlugins (line 522) | getSortedSearchablePlugins(supportedSearchType?: ICommon.SupportMediaT...
    method getPluginsWithAbility (line 537) | getPluginsWithAbility(ability: keyof IPlugin.IPluginInstanceMethods) {
    method getSortedPluginsWithAbility (line 550) | getSortedPluginsWithAbility(ability: keyof IPlugin.IPluginInstanceMeth...
    method setPluginEnabled (line 564) | setPluginEnabled(plugin: Plugin, enabled: boolean) {
    method isPluginEnabled (line 574) | isPluginEnabled(plugin: Plugin) {
    method setPluginOrder (line 582) | setPluginOrder(sortedPlugins: Plugin[]) {
    method setUserVariables (line 591) | setUserVariables(plugin: Plugin, userVariables: Record<string, string>) {
    method getUserVariables (line 595) | getUserVariables(plugin: Plugin) {
    method setAlternativePluginName (line 599) | setAlternativePluginName(plugin: Plugin, alternativePluginName: string) {
    method getAlternativePluginName (line 603) | getAlternativePluginName(plugin: Plugin) {
    method getAlternativePlugin (line 607) | getAlternativePlugin(plugin: Plugin) {
  function useSortedPlugins (line 620) | function useSortedPlugins() {
  function usePluginEnabled (line 649) | function usePluginEnabled(plugin: Plugin) {

FILE: src/core/pluginManager/meta.ts
  type IPluginPlatform (line 6) | type IPluginPlatform = string;
  type IPluginMetaStorage (line 8) | interface IPluginMetaStorage {
  class PluginMeta (line 20) | class PluginMeta {
    method getMetaStorage (line 23) | private getMetaStorage<K extends keyof IPluginMetaStorage>(key: K): IP...
    method setMetaStorage (line 27) | private setMetaStorage<K extends keyof IPluginMetaStorage>(key: K, val...
    method migratePluginMeta (line 32) | async migratePluginMeta() {
    method getPluginOrder (line 74) | getPluginOrder() {
    method setPluginOrder (line 78) | setPluginOrder(orderMap: Record<IPluginPlatform, number>) {
    method disabledPlugins (line 83) | public get disabledPlugins() {
    method isPluginEnabled (line 92) | isPluginEnabled(pluginPlatform: IPluginPlatform) {
    method setPluginEnabled (line 98) | setPluginEnabled(pluginPlatform: IPluginPlatform, enabled: boolean) {
    method getUserVariables (line 110) | getUserVariables(pluginPlatform: IPluginPlatform) {
    method setUserVariables (line 115) | setUserVariables(pluginPlatform: IPluginPlatform, userVariables: Recor...
    method setAlternativePlugin (line 119) | setAlternativePlugin(pluginPlatform: IPluginPlatform, alternativePlugi...
    method getAlternativePlugin (line 123) | getAlternativePlugin(pluginPlatform: IPluginPlatform): IPluginPlatform...

FILE: src/core/pluginManager/plugin.ts
  function formatAuthUrl (line 95) | function formatAuthUrl(url: string) {
  type PluginState (line 123) | enum PluginState {
  type PluginErrorReason (line 134) | enum PluginErrorReason {
  type ILazyProps (line 142) | interface ILazyProps {
  class PluginMethodsWrapper (line 151) | class PluginMethodsWrapper implements IPlugin.IPluginInstanceMethods {
    method constructor (line 155) | constructor(plugin: Plugin, ensurePluginIsMounted: () => Promise<void>) {
    method search (line 162) | async search<T extends ICommon.SupportMediaType>(
    method getMediaSource (line 193) | async getMediaSource(
    method getMusicInfo (line 325) | async getMusicInfo(
    method getLyric (line 353) | async getLyric(
    method getAlbumInfo (line 553) | async getAlbumInfo(
    method getMusicSheetInfo (line 604) | async getMusicSheetInfo(
    method getArtistWorks (line 650) | async getArtistWorks<T extends IArtist.ArtistMediaType>(
    method importMusicSheet (line 688) | async importMusicSheet(urlLike: string): Promise<IMusic.IMusicItem[]> {
    method importMusicItem (line 704) | async importMusicItem(urlLike: string): Promise<IMusic.IMusicItem | nu...
    method getTopLists (line 723) | async getTopLists(): Promise<IMusic.IMusicSheetGroupItem[]> {
    method getTopListDetail (line 738) | async getTopListDetail(
    method getRecommendSheetTags (line 764) | async getRecommendSheetTags(): Promise<IPlugin.IGetRecommendSheetTagsR...
    method getRecommendSheetsByTag (line 782) | async getRecommendSheetsByTag(
    method getMusicComments (line 814) | async getMusicComments(
  class Plugin (line 838) | class Plugin {
    method injectDependencies (line 860) | static injectDependencies(
    method constructor (line 866) | constructor(
    method ensureMounted (line 890) | async ensureMounted() {
    method mountPlugin (line 905) | private mountPlugin(
    method checkValid (line 1019) | private checkValid(_instance: IPlugin.IPluginDefine) {
  method getMusicInfo (line 1038) | async getMusicInfo(musicBase) {
  method getLyric (line 1048) | async getLyric(musicBase) {
  method importMusicItem (line 1077) | async importMusicItem(urlLike) { // 绝对路径
  method getMediaSource (line 1106) | async getMediaSource(musicItem, quality) {

FILE: src/core/router/index.ts
  constant ROUTE_PATH (line 10) | const ROUTE_PATH = {
  type ValueOf (line 51) | type ValueOf<T> = T[keyof T];
  type RoutePaths (line 52) | type RoutePaths = ValueOf<typeof ROUTE_PATH>;
  type RouterParamsBase (line 54) | type RouterParamsBase = Record<RoutePaths, any>;
  type RouterParams (line 56) | interface RouterParams extends RouterParamsBase {
  function useParams (line 108) | function useParams<T extends RoutePaths>(): RouterParams[T] {
  function useNavigate (line 116) | function useNavigate() {

FILE: src/core/router/routes.tsx
  type ValueOf (line 22) | type ValueOf<T> = T[keyof T];
  type RoutePaths (line 23) | type RoutePaths = ValueOf<typeof ROUTE_PATH>;
  type IRoutes (line 25) | type IRoutes = {

FILE: src/core/theme.ts
  type IBackgroundInfo (line 66) | interface IBackgroundInfo {
  function setup (line 75) | function setup() {
  function setTheme (line 104) | function setTheme(
  function setColors (line 155) | function setColors(colors: Partial<CustomizedColors>) {
  function setBackground (line 171) | function setBackground(backgroundInfo: Partial<IBackgroundInfo>) {

FILE: src/core/trackPlayer/index.ts
  class TrackPlayer (line 51) | class TrackPlayer extends EventEmitter<{
    method constructor (line 82) | constructor() {
    method previousMusic (line 86) | public get previousMusic() {
    method currentMusic (line 95) | public get currentMusic() {
    method nextMusic (line 99) | public get nextMusic() {
    method repeatMode (line 108) | public get repeatMode() {
    method quality (line 112) | public get quality() {
    method playList (line 116) | public get playList() {
    method injectDependencies (line 121) | injectDependencies(configService: IAppConfig, musicHistoryService: IMu...
    method setupTrackPlayer (line 128) | async setupTrackPlayer() {
    method getMusicIndexInPlayList (line 249) | getMusicIndexInPlayList(musicItem?: IMusic.IMusicItem | null) {
    method isInPlayList (line 256) | isInPlayList(musicItem?: IMusic.IMusicItem | null) {
    method getPlayListMusicAt (line 264) | getPlayListMusicAt(index: number): IMusic.IMusicItem | null {
    method isPlayListEmpty (line 273) | isPlayListEmpty() {
    method addAll (line 278) | addAll(
    method add (line 325) | add(
    method addNext (line 335) | addNext(musicItem: IMusic.IMusicItem | IMusic.IMusicItem[]): void {
    method remove (line 345) | async remove(musicItem: IMusic.IMusicItem): Promise<void> {
    method isCurrentMusic (line 393) | isCurrentMusic(musicItem?: IMusic.IMusicItem | null) {
    method play (line 397) | async play(
    method pause (line 627) | async pause(): Promise<void> {
    method toggleRepeatMode (line 631) | toggleRepeatMode(): void {
    method clearPlayList (line 636) | async clearPlayList(): Promise<void> {
    method skipToNext (line 645) | async skipToNext(): Promise<void> {
    method skipToPrevious (line 654) | async skipToPrevious(): Promise<void> {
    method changeQuality (line 666) | async changeQuality(newQuality: IMusic.IQualityKey): Promise<boolean> {
    method playWithReplacePlayList (line 706) | async playWithReplacePlayList(
    method seekTo (line 733) | async seekTo(progress: number) {
    method setCurrentMusic (line 746) | private setCurrentMusic(musicItem?: IMusic.IMusicItem | null) {
    method setRepeatMode (line 766) | private setRepeatMode(mode: MusicRepeatMode) {
    method setQuality (line 794) | private setQuality(quality: IMusic.IQualityKey) {
    method setTrackSource (line 800) | private async setTrackSource(track: Track, autoPlay = true) {
    method setPlayList (line 818) | private setPlayList(newPlayList: IMusic.IMusicItem[], persist = true) {
    method mergeTrackSource (line 852) | private mergeTrackSource(
    method sortByTimestampAndIndex (line 866) | private sortByTimestampAndIndex(array: any[], newArray = false) {
    method getFakeNextTrack (line 879) | private getFakeNextTrack() {
    method handlePlayFail (line 906) | private async handlePlayFail() {
    method getSimilarMusic (line 921) | private async getSimilarMusic<T extends ICommon.SupportMediaType>(
    method patchMediaArtwork (line 980) | private patchMediaArtwork(track: Track) {
  function useMusicState (line 999) | function useMusicState() {
  type PlayFailReason (line 1006) | enum PlayFailReason {

FILE: src/entry/bootstrap/BootstrapComponent.tsx
  function BootstrapComponent (line 13) | function BootstrapComponent() {

FILE: src/entry/bootstrap/bootstrap.atom.ts
  type IBootStrapState (line 4) | interface IBootStrapState {

FILE: src/entry/bootstrap/bootstrap.ts
  function bootstrapImpl (line 40) | async function bootstrapImpl() {
  function setupFolder (line 135) | async function setupFolder() {
  function initTrackPlayer (line 150) | async function initTrackPlayer(logger?: IPerfLogger) {
  function extraMakeup (line 206) | async function extraMakeup() {
  function bindEvents (line 287) | function bindEvents() {

FILE: src/entry/index.tsx
  function Pages (line 31) | function Pages() {

FILE: src/hooks/useColors.ts
  type IColors (line 5) | type IColors = Theme["colors"];
  type CustomizedColors (line 7) | interface CustomizedColors extends IColors {
  function useColors (line 40) | function useColors() {

FILE: src/hooks/useDelayFalsy.ts
  function useDelayFalsy (line 3) | function useDelayFalsy<T extends any = any>(

FILE: src/hooks/useMounted.ts
  function useOnMounted (line 3) | function useOnMounted() {

FILE: src/hooks/useOnceEffect.ts
  function useOnceEffect (line 3) | function useOnceEffect(

FILE: src/hooks/useOrientation.ts
  function useListenOrientationChange (line 7) | function useListenOrientationChange() {
  function useOrientation (line 31) | function useOrientation() {

FILE: src/hooks/usePrimaryColor.ts
  function usePrimaryColor (line 3) | function usePrimaryColor() {

FILE: src/hooks/useRerender.ts
  function useRerender (line 3) | function useRerender() {

FILE: src/hooks/useTextColor.ts
  function useTextColor (line 3) | function useTextColor() {

FILE: src/lib/react-native-vdebug/index.js
  class VDebug (line 40) | class VDebug extends PureComponent {
    method constructor (line 50) | constructor(props) {
    method componentDidMount (line 107) | componentDidMount() {
    method getRef (line 119) | getRef(index) {
    method addPanels (line 125) | addPanels() {
    method togglePanel (line 152) | togglePanel() {
    method clearLogs (line 158) | clearLogs() {
    method showDev (line 163) | showDev() {
    method reloadDev (line 167) | reloadDev() {
    method evalInContext (line 171) | evalInContext(js, context) {
    method execCommand (line 184) | execCommand() {
    method clearCommand (line 191) | clearCommand() {
    method scrollToPage (line 198) | scrollToPage(index, animated = true) {
    method scrollToCard (line 202) | scrollToCard(cardIndex, animated = true) {
    method scrollToTop (line 214) | scrollToTop() {
    method renderPanelHeader (line 231) | renderPanelHeader() {
    method syncHistory (line 259) | syncHistory() {
    method onChange (line 279) | onChange(text) {
    method renderCommandBar (line 292) | renderCommandBar() {
    method renderPanelFooter (line 359) | renderPanelFooter() {
    method onScrollAnimationEnd (line 384) | onScrollAnimationEnd({nativeEvent}) {
    method renderPanel (line 394) | renderPanel() {
    method renderDebugBtn (line 422) | renderDebugBtn() {
    method render (line 436) | render() {

FILE: src/lib/react-native-vdebug/src/event.js
  class Event (line 1) | class Event {
    method constructor (line 2) | constructor() {
    method on (line 6) | on(eventName, callback) {
    method trigger (line 14) | trigger(...args) {
    method off (line 26) | off(key, fn) {

FILE: src/lib/react-native-vdebug/src/hoc.js
  method constructor (line 5) | constructor(props) {
  method render (line 8) | render() {

FILE: src/lib/react-native-vdebug/src/log.js
  constant LEVEL_ENUM (line 15) | const LEVEL_ENUM = {
  class LogStack (line 25) | class LogStack {
    method constructor (line 26) | constructor() {
    method getLogs (line 33) | getLogs() {
    method addLog (line 37) | addLog(method, data) {
    method clearLogs (line 52) | clearLogs() {
    method notify (line 57) | notify() {
    method attach (line 63) | attach(callback) {
  class Log (line 68) | class Log extends Component {
    method constructor (line 69) | constructor(props) {
    method getScrollRef (line 89) | getScrollRef() {
    method componentDidMount (line 93) | componentDidMount() {
    method componentWillUnmount (line 103) | componentWillUnmount() {
    method ListHeaderComponent (line 119) | ListHeaderComponent() {
    method clearFilterValue (line 184) | clearFilterValue() {
    method renderItem (line 195) | renderItem({item}) {
    method render (line 233) | render() {
  function unixId (line 323) | function unixId() {
  function strLog (line 327) | function strLog(logs) {
  function formatLog (line 332) | function formatLog(obj) {

FILE: src/lib/react-native-vdebug/src/network.js
  class AjaxStack (line 8) | class AjaxStack {
    method constructor (line 9) | constructor() {
    method getRequestIds (line 17) | getRequestIds() {
    method getRequests (line 21) | getRequests() {
    method getRequest (line 25) | getRequest(id) {
    method readBlobAsText (line 29) | readBlobAsText(blob, encoding = 'utf-8') {
    method JSONTryParse (line 43) | JSONTryParse(jsonStr) {
    method formatResponse (line 51) | formatResponse(response) {
    method updateRequest (line 61) | updateRequest(id, data) {
    method clearRequests (line 140) | clearRequests() {
    method notify (line 146) | notify(args) {
    method attach (line 152) | attach(callback) {
  class Network (line 157) | class Network extends Component {
    method constructor (line 158) | constructor(props) {
    method getScrollRef (line 178) | getScrollRef() {
    method componentDidMount (line 182) | componentDidMount() {
    method componentWillUnmount (line 191) | componentWillUnmount() {
    method clearRequests (line 196) | clearRequests(name) {
    method ListHeaderComponent (line 202) | ListHeaderComponent() {
    method clearFilterValue (line 268) | clearFilterValue() {
    method copy2cURL (line 279) | copy2cURL(item) {
    method retryFetch (line 295) | retryFetch(item) {
    method renderItem (line 305) | renderItem({item}) {
    method render (line 484) | render() {
  function unixId (line 564) | function unixId() {
  function proxyAjax (line 568) | function proxyAjax(XHR, stack) {

FILE: src/lib/react-native-vdebug/src/tool.js
  function throttle (line 1) | function throttle(delay, noTrailing, callback, debounceMode) {
  function debounce (line 44) | function debounce(delay, atBegin, callback) {
  function replaceReg (line 50) | function replaceReg(str) {

FILE: src/native/lyricUtil/index.ts
  type NativeTextAlignment (line 6) | enum NativeTextAlignment {
  type ILyricUtil (line 16) | interface ILyricUtil extends NativeModule {

FILE: src/native/mp3Util/index.ts
  type IBasicMeta (line 3) | interface IBasicMeta {
  type IWritableMeta (line 11) | interface IWritableMeta extends IBasicMeta {
  type IMp3Util (line 16) | interface IMp3Util {

FILE: src/native/utils/index.ts
  type INativeUtils (line 3) | interface INativeUtils extends NativeModule {

FILE: src/pages/albumDetail/hooks/useAlbumMusicList.ts
  function useAlbumDetail (line 5) | function useAlbumDetail(

FILE: src/pages/albumDetail/index.tsx
  function AlbumDetail (line 7) | function AlbumDetail() {

FILE: src/pages/artistDetail/components/body.tsx
  function Body (line 31) | function Body() {
  function BodyContentWrapper (line 78) | function BodyContentWrapper(props: any) {

FILE: src/pages/artistDetail/components/content/albumContentItem.tsx
  type IAlbumContentProps (line 4) | interface IAlbumContentProps {
  function AlbumContentItem (line 7) | function AlbumContentItem(props: IAlbumContentProps) {

FILE: src/pages/artistDetail/components/content/musicContentItem.tsx
  type IMusicContentProps (line 4) | interface IMusicContentProps {
  function MusicContentItem (line 7) | function MusicContentItem(props: IMusicContentProps) {

FILE: src/pages/artistDetail/components/header.tsx
  type IHeaderProps (line 20) | interface IHeaderProps {
  function Header (line 24) | function Header(props: IHeaderProps) {

FILE: src/pages/artistDetail/components/resultList.tsx
  constant ITEM_HEIGHT (line 12) | const ITEM_HEIGHT = rpx(120);
  type IResultListProps (line 14) | interface IResultListProps<T = IArtist.ArtistMediaType> {
  function ResultList (line 19) | function ResultList(props: IResultListProps) {

FILE: src/pages/artistDetail/hooks/useQuery.ts
  function useQueryArtist (line 9) | function useQueryArtist(pluginHash: string) {

FILE: src/pages/artistDetail/index.tsx
  function ArtistDetail (line 15) | function ArtistDetail() {

FILE: src/pages/artistDetail/store/atoms.ts
  type IQueryResult (line 6) | interface IQueryResult<
  type IQueryResults (line 14) | type IQueryResults<

FILE: src/pages/downloading/downloadingList.tsx
  type DownloadingListItemProps (line 11) | interface DownloadingListItemProps {
  function DownloadingListItem (line 14) | function DownloadingListItem(props: DownloadingListItemProps) {
  function DownloadingList (line 58) | function DownloadingList() {

FILE: src/pages/downloading/index.tsx
  function Downloading (line 10) | function Downloading() {

FILE: src/pages/fileSelector/fileItem.tsx
  constant ITEM_HEIGHT (line 11) | const ITEM_HEIGHT = rpx(96);
  type IProps (line 13) | interface IProps {
  function FileItem (line 21) | function FileItem(props: IProps) {

FILE: src/pages/fileSelector/index.tsx
  type IPathItem (line 26) | interface IPathItem {
  type IFileItem (line 31) | interface IFileItem {
  constant ITEM_HEIGHT (line 36) | const ITEM_HEIGHT = rpx(96);
  function FileSelector (line 38) | function FileSelector() {

FILE: src/pages/history/index.tsx
  function History (line 13) | function History() {

FILE: src/pages/home/components/ActionButton.tsx
  type IActionButtonProps (line 9) | interface IActionButtonProps {
  function ActionButton (line 17) | function ActionButton(props: IActionButtonProps) {

FILE: src/pages/home/components/drawer/index.tsx
  constant ITEM_HEIGHT (line 21) | const ITEM_HEIGHT = rpx(108);
  type ISettingOptions (line 23) | interface ISettingOptions {
  function HomeDrawer (line 29) | function HomeDrawer(props: any) {
  function _CountDownItem (line 260) | function _CountDownItem() {

FILE: src/pages/home/components/homeBody/index.tsx
  function HomeBody (line 7) | function HomeBody() {

FILE: src/pages/home/components/homeBody/operations.tsx
  function Operations (line 8) | function Operations() {

FILE: src/pages/home/components/homeBody/sheets.tsx
  function Sheets (line 20) | function Sheets() {

FILE: src/pages/home/components/homeBodyHorizontal/index.tsx
  function HomeBodyHorizontal (line 7) | function HomeBodyHorizontal() {

FILE: src/pages/home/components/homeBodyHorizontal/operations.tsx
  function Operations (line 9) | function Operations() {

FILE: src/pages/home/components/navBar.tsx
  function NavBar (line 14) | function NavBar() {

FILE: src/pages/home/index.tsx
  function Home (line 17) | function Home() {
  function HomeStatusBar (line 38) | function HomeStatusBar() {
  function App (line 63) | function App() {

FILE: src/pages/localMusic/index.tsx
  function LocalMusic (line 6) | function LocalMusic() {

FILE: src/pages/localMusic/mainPage/index.tsx
  function MainPage (line 12) | function MainPage() {

FILE: src/pages/localMusic/mainPage/localMusicList.tsx
  function LocalMusicList (line 9) | function LocalMusicList() {

FILE: src/pages/musicDetail/components/background.tsx
  function Background (line 6) | function Background() {

FILE: src/pages/musicDetail/components/bottom/index.tsx
  function Bottom (line 8) | function Bottom() {

FILE: src/pages/musicDetail/components/bottom/seekBar.tsx
  type ITimeLabelProps (line 9) | interface ITimeLabelProps {
  function TimeLabel (line 13) | function TimeLabel(props: ITimeLabelProps) {
  function SeekBar (line 19) | function SeekBar() {

FILE: src/pages/musicDetail/components/content/albumCover/index.tsx
  type IProps (line 13) | interface IProps {
  function AlbumCover (line 17) | function AlbumCover(props: IProps) {

FILE: src/pages/musicDetail/components/content/albumCover/operations.tsx
  function Operations (line 21) | function Operations() {

FILE: src/pages/musicDetail/components/content/index.tsx
  function Content (line 9) | function Content() {

FILE: src/pages/musicDetail/components/content/lyric/draggingTime.tsx
  function DraggingTime (line 8) | function DraggingTime(props: { time: number }) {

FILE: src/pages/musicDetail/components/content/lyric/index.tsx
  constant ITEM_HEIGHT (line 23) | const ITEM_HEIGHT = rpx(92);
  type IItemHeights (line 25) | interface IItemHeights {
  type IProps (line 30) | interface IProps {
  function Lyric (line 41) | function Lyric(props: IProps) {

FILE: src/pages/musicDetail/components/content/lyric/lyricItem.tsx
  type ILyricItemComponentProps (line 7) | interface ILyricItemComponentProps {
  function _LyricItemComponent (line 22) | function _LyricItemComponent(props: ILyricItemComponentProps) {

FILE: src/pages/musicDetail/components/content/lyric/lyricOperations.tsx
  type ILyricOperationsProps (line 17) | interface ILyricOperationsProps {
  function LyricOperations (line 21) | function LyricOperations(props: ILyricOperationsProps) {

FILE: src/pages/musicDetail/components/navBar.tsx
  function NavBar (line 12) | function NavBar() {

FILE: src/pages/musicDetail/index.tsx
  function MusicDetail (line 15) | function MusicDetail() {

FILE: src/pages/musicListEditor/components/body.tsx
  function Body (line 18) | function Body() {

FILE: src/pages/musicListEditor/components/bottom.tsx
  function Bottom (line 18) | function Bottom() {
  type IBottomIconProps (line 102) | interface IBottomIconProps {
  function BottomIcon (line 108) | function BottomIcon(props: IBottomIconProps) {

FILE: src/pages/musicListEditor/components/musicList.tsx
  constant ITEM_HEIGHT (line 18) | const ITEM_HEIGHT = rpx(120);
  type IMusicEditorItemProps (line 20) | interface IMusicEditorItemProps {
  function _MusicEditorItem (line 24) | function _MusicEditorItem(props: IMusicEditorItemProps) {
  function MusicList (line 60) | function MusicList() {

FILE: src/pages/musicListEditor/index.tsx
  function MusicListEditor (line 13) | function MusicListEditor() {

FILE: src/pages/musicListEditor/store/atom.ts
  type IEditorMusicItem (line 3) | interface IEditorMusicItem {

FILE: src/pages/permissions/index.tsx
  type IPermissionTypes (line 15) | type IPermissionTypes = "floatingWindow" | "fileStorage";
  function Permissions (line 17) | function Permissions() {

FILE: src/pages/pluginSheetDetail/hooks/usePluginSheetMusicList.ts
  function usePluginSheetMusicList (line 5) | function usePluginSheetMusicList(

FILE: src/pages/pluginSheetDetail/index.tsx
  function PluginSheetDetail (line 7) | function PluginSheetDetail() {

FILE: src/pages/recommendSheets/components/body/index.tsx
  function Body (line 12) | function Body() {

FILE: src/pages/recommendSheets/components/body/sheetBody.tsx
  type IProps (line 13) | interface IProps {
  function SheetBody (line 18) | function SheetBody(props: IProps) {

FILE: src/pages/recommendSheets/components/body/sheetList.tsx
  type ISheetListProps (line 10) | interface ISheetListProps {
  function SheetList (line 15) | function SheetList(props: ISheetListProps) {

FILE: src/pages/recommendSheets/index.tsx
  function RecommendSheets (line 10) | function RecommendSheets() {

FILE: src/pages/searchMusicList/index.tsx
  function filterMusic (line 16) | function filterMusic(query: string, musicList: IMusic.IMusicItem[]) {
  function SearchMusicList (line 27) | function SearchMusicList() {

FILE: src/pages/searchMusicList/searchResult.tsx
  type ISearchResultProps (line 7) | interface ISearchResultProps {
  constant ITEM_HEIGHT (line 12) | const ITEM_HEIGHT = rpx(120);
  function SearchResult (line 14) | function SearchResult(props: ISearchResultProps) {

FILE: src/pages/searchPage/common/historySearch.ts
  function getHistory (line 3) | async function getHistory() {
  function addHistory (line 7) | async function addHistory(query: string) {
  function removeHistory (line 13) | async function removeHistory(query: string) {
  function removeAllHistory (line 19) | async function removeAllHistory() {

FILE: src/pages/searchPage/components/navBar.tsx
  function NavBar (line 24) | function NavBar() {

FILE: src/pages/searchPage/components/resultPanel/index.tsx
  function ResultPanel (line 28) | function ResultPanel() {

FILE: src/pages/searchPage/components/resultPanel/resultSubPanel.tsx
  type IResultSubPanelProps (line 16) | interface IResultSubPanelProps {
  function getResultComponent (line 21) | function getResultComponent(
  function getSubRouterScene (line 53) | function getSubRouterScene(
  function ResultSubPanel (line 65) | function ResultSubPanel(props: IResultSubPanelProps) {

FILE: src/pages/searchPage/components/resultPanel/resultWrapper.tsx
  type IResultWrapperProps (line 14) | interface IResultWrapperProps<
  function ResultWrapper (line 23) | function ResultWrapper(props: IResultWrapperProps) {

FILE: src/pages/searchPage/components/resultPanel/results/albumResultItem.tsx
  type IAlbumResultsProps (line 4) | interface IAlbumResultsProps {
  function AlbumResultItem (line 9) | function AlbumResultItem(props: IAlbumResultsProps) {

FILE: src/pages/searchPage/components/resultPanel/results/artistResultItem.tsx
  type IArtistResultsProps (line 8) | interface IArtistResultsProps {
  function ArtistResultItem (line 13) | function ArtistResultItem(props: IArtistResultsProps) {

FILE: src/pages/searchPage/components/resultPanel/results/defaultResults.tsx
  function DefaultResults (line 6) | function DefaultResults() {

FILE: src/pages/searchPage/components/resultPanel/results/musicResultItem.tsx
  type IMusicResultsProps (line 7) | interface IMusicResultsProps {
  function MusicResultItem (line 13) | function MusicResultItem(props: IMusicResultsProps) {

FILE: src/pages/searchPage/components/resultPanel/results/musicSheetResultItem.tsx
  type IMusicSheetResultItemProps (line 4) | interface IMusicSheetResultItemProps {
  function MusicSheetResultItem (line 8) | function MusicSheetResultItem(

FILE: src/pages/searchPage/hooks/useSearch.ts
  function useSearch (line 9) | function useSearch() {

FILE: src/pages/searchPage/store/atoms.ts
  type ISearchResult (line 6) | interface ISearchResult<T extends ICommon.SupportMediaType> {
  type ISearchResults (line 17) | type ISearchResults<
  type PageStatus (line 35) | enum PageStatus {

FILE: src/pages/setCustomTheme/body.tsx
  function Body (line 21) | function Body() {

FILE: src/pages/setCustomTheme/index.tsx
  function SetCustomTheme (line 12) | function SetCustomTheme() {

FILE: src/pages/setting/index.tsx
  function Setting (line 11) | function Setting() {

FILE: src/pages/setting/settingTypes/aboutSetting.tsx
  function AboutSetting (line 17) | function AboutSetting() {

FILE: src/pages/setting/settingTypes/backupSetting.tsx
  function BackupSetting (line 22) | function BackupSetting() {

FILE: src/pages/setting/settingTypes/basicSetting.tsx
  function createSwitch (line 28) | function createSwitch(
  method onOk (line 65) | onOk(val) {
  function useCacheSize (line 82) | function useCacheSize() {
  function BasicSetting (line 105) | function BasicSetting() {
  function LyricSetting (line 663) | function LyricSetting() {

FILE: src/pages/setting/settingTypes/pluginSetting/components/pluginItem.tsx
  type IPluginItemProps (line 20) | interface IPluginItemProps {
  type IOption (line 24) | interface IOption {
  function _PluginItem (line 31) | function _PluginItem(props: IPluginItemProps) {

FILE: src/pages/setting/settingTypes/pluginSetting/index.tsx
  function PluginSetting (line 25) | function PluginSetting() {

FILE: src/pages/setting/settingTypes/pluginSetting/views/pluginList.tsx
  type IOption (line 25) | interface IOption {
  function PluginList (line 31) | function PluginList() {
  function installPluginFromUrl (line 343) | async function installPluginFromUrl(text: string): Promise<IInstallPlugi...

FILE: src/pages/setting/settingTypes/pluginSetting/views/pluginSort.tsx
  constant ITEM_HEIGHT (line 14) | const ITEM_HEIGHT = rpx(96);
  function PluginSort (line 17) | function PluginSort() {

FILE: src/pages/setting/settingTypes/pluginSetting/views/pluginSubscribe.tsx
  type ISubscribeItem (line 17) | interface ISubscribeItem {
  constant ITEM_HEIGHT (line 22) | const ITEM_HEIGHT = rpx(108);
  function PluginSubscribe (line 24) | function PluginSubscribe() {

FILE: src/pages/setting/settingTypes/themeSetting/background.tsx
  function Background (line 12) | function Background() {

FILE: src/pages/setting/settingTypes/themeSetting/index.tsx
  function ThemeSetting (line 8) | function ThemeSetting() {

FILE: src/pages/setting/settingTypes/themeSetting/logoCard.tsx
  type ILogoCardProps (line 7) | interface ILogoCardProps {
  function LogoCard (line 13) | function LogoCard(props: ILogoCardProps) {

FILE: src/pages/setting/settingTypes/themeSetting/mode.tsx
  function Mode (line 11) | function Mode() {

FILE: src/pages/setting/settingTypes/themeSetting/themeCard.tsx
  type IThemeCardProps (line 9) | interface IThemeCardProps {
  function ThemeCard (line 15) | function ThemeCard(props: IThemeCardProps) {

FILE: src/pages/sheetDetail/components/header.tsx
  function Header (line 13) | function Header() {

FILE: src/pages/sheetDetail/components/navBar.tsx
  method onPress (line 25) | onPress() {
  method onPress (line 34) | onPress() {
  method onPress (line 44) | onPress() {
  method onPress (line 86) | onPress() {
  method onPress (line 104) | onPress() {

FILE: src/pages/sheetDetail/components/sheetMusicList.tsx
  function SheetMusicList (line 11) | function SheetMusicList() {

FILE: src/pages/sheetDetail/index.tsx
  function SheetDetail (line 9) | function SheetDetail() {

FILE: src/pages/topList/components/boardPanel.tsx
  type IBoardPanelProps (line 11) | interface IBoardPanelProps {
  function BoardPanel (line 15) | function BoardPanel(props: IBoardPanelProps) {

FILE: src/pages/topList/components/boardPanelWrapper.tsx
  type IBoardPanelProps (line 7) | interface IBoardPanelProps {
  function BoardPanelWrapper (line 10) | function BoardPanelWrapper(props: IBoardPanelProps) {

FILE: src/pages/topList/components/topListBody.tsx
  function TopListBody (line 12) | function TopListBody() {

FILE: src/pages/topList/hooks/useGetTopList.ts
  function useGetTopList (line 8) | function useGetTopList() {

FILE: src/pages/topList/index.tsx
  function TopList (line 10) | function TopList() {

FILE: src/pages/topList/store/atoms.ts
  type IPluginTopListResult (line 4) | interface IPluginTopListResult {

FILE: src/pages/topListDetail/hooks/useTopListDetail.ts
  function useTopListDetail (line 5) | function useTopListDetail(

FILE: src/pages/topListDetail/index.tsx
  function TopListDetail (line 7) | function TopListDetail() {

FILE: src/types/album.d.ts
  type IAlbumItemBase (line 2) | interface IAlbumItemBase extends ICommon.IMediaBase {
  type IAlbumItem (line 12) | interface IAlbumItem extends IAlbumItemBase {

FILE: src/types/artist.d.ts
  type IArtistItemBase (line 2) | interface IArtistItemBase extends ICommon.IMediaBase {
  type IArtistItem (line 11) | interface IArtistItem extends IArtistItemBase {
  type ArtistMediaType (line 17) | type ArtistMediaType = IArtist.ArtistMediaType;

FILE: src/types/common.d.ts
  type SupportMediaType (line 3) | type SupportMediaType =
  type SupportMediaItemBase (line 11) | type SupportMediaItemBase = {
  type IUnique (line 19) | type IUnique = {
  type IMediaBase (line 24) | type IMediaBase = {
  type IMediaMeta (line 33) | type IMediaMeta = {
  type WithMusicList (line 62) | type WithMusicList<T> = T & {
  type PaginationResponse (line 66) | type PaginationResponse<T> = {
  type IPoint (line 71) | interface IPoint {

FILE: src/types/core/config.d.ts
  type IAppConfigProperties (line 4) | interface IAppConfigProperties {
  type AppConfigPropertyKey (line 73) | type AppConfigPropertyKey = keyof IAppConfigProperties;
  type IAppConfig (line 75) | interface IAppConfig<T extends IAppConfigProperties = IAppConfigProperti...

FILE: src/types/core/i18n/index.d.ts
  type ILanguageData (line 2) | interface ILanguageData {
  type ILanguage (line 536) | interface ILanguage {

FILE: src/types/core/musicHistory.d.ts
  type IMusicHistory (line 3) | interface IMusicHistory extends IInjectable {

FILE: src/types/core/pluginManager/index.d.ts
  type Plugin (line 1) | type Plugin = any;
  type IInstallPluginConfig (line 6) | interface IInstallPluginConfig {
  type IInstallPluginResult (line 13) | interface IInstallPluginResult {
  type IPluginManager (line 24) | interface IPluginManager {

FILE: src/types/core/trackPlayer/index.d.ts
  type ITrackPlayer (line 7) | interface ITrackPlayer extends IInjectable, EventEmitter<{

FILE: src/types/infra.d.ts
  type IInjectable (line 1) | interface IInjectable {

FILE: src/types/lyric.d.ts
  type ILyricItem (line 2) | interface ILyricItem extends IMusic.IMusicItem {
  type ILyricSource (line 7) | interface ILyricSource {
  type IParsedLrcItem (line 16) | interface IParsedLrcItem {
  type IParsedLrc (line 25) | type IParsedLrc = IParsedLrcItem[];

FILE: src/types/media.d.ts
  type ICommentItem (line 2) | interface ICommentItem {
  type IComment (line 18) | interface IComment extends ICommentItem {

FILE: src/types/music.d.ts
  type IMusicItemBase (line 2) | interface IMusicItemBase extends ICommon.IMediaBase {
  type IQualityKey (line 8) | type IQualityKey = "low" | "standard" | "high" | "super";
  type IQuality (line 9) | type IQuality = Record<
  type IMediaSource (line 18) | interface IMediaSource {
  type IMusicItem (line 30) | interface IMusicItem {
  type IMusicItemCache (line 65) | interface IMusicItemCache extends IMusicItem {

FILE: src/types/musicSheet.d.ts
  type IMusicSheetItemBase (line 2) | interface IMusicSheetItemBase {
  type IMusicSheetItem (line 20) | interface IMusicSheetItem extends IMusicSheetItemBase {
  type IMusicSheet (line 24) | type IMusicSheet = Array<IMusicSheetItem>;

FILE: src/types/musicSheetGroup.d.ts
  type IMusicSheetGroupItem (line 3) | interface IMusicSheetGroupItem {

FILE: src/types/plugin.d.ts
  type IMediaSourceResult (line 2) | interface IMediaSourceResult {
  type ISearchResult (line 12) | interface ISearchResult<T extends ICommon.SupportMediaType> {
  type ISearchResultType (line 17) | type ISearchResultType = ICommon.SupportMediaType;
  type ISearchFunc (line 19) | type ISearchFunc = <T extends ICommon.SupportMediaType>(
  type IGetArtistWorksFunc (line 25) | type IGetArtistWorksFunc = <T extends IArtist.ArtistMediaType>(
  type IUserVariable (line 31) | interface IUserVariable {
  type IAlbumInfoResult (line 40) | interface IAlbumInfoResult {
  type ISheetInfoResult (line 46) | interface ISheetInfoResult {
  type ITopListInfoResult (line 52) | interface ITopListInfoResult {
  type IGetRecommendSheetTagsResult (line 58) | interface IGetRecommendSheetTagsResult {
  type IPluginDefine (line 64) | interface IPluginDefine {
  type IPluginInstance (line 146) | interface IPluginInstance extends IPluginDefine {
  type R (line 152) | type R = Required<IPluginInstance>;
  type IPluginInstanceMethods (line 153) | type IPluginInstanceMethods = {
  type IPluginMeta (line 158) | type IPluginMeta = {

FILE: src/utils/checkUpdate.ts
  type IUpdateInfo (line 11) | interface IUpdateInfo {
  function checkUpdate (line 20) | async function checkUpdate(): Promise<IUpdateInfo | undefined> {

FILE: src/utils/colorUtil.ts
  function grayRate (line 3) | function grayRate(color: string | Color) {
  function grayLevelCode (line 16) | function grayLevelCode(color: string | Color) {

FILE: src/utils/eventBus.ts
  class EventBus (line 3) | class EventBus<EventTypes> {
    method constructor (line 6) | constructor() {
    method on (line 15) | on<T extends EventTypes, K extends keyof T & (string | symbol)>(
    method once (line 22) | once<T extends EventTypes, K extends keyof T & (string | symbol)>(
    method emit (line 29) | emit<T extends EventTypes, K extends keyof T & (string | symbol)>(
    method off (line 36) | off<T extends EventTypes, K extends keyof T & (string | symbol)>(

FILE: src/utils/fileUtils.ts
  function saveToGallery (line 24) | async function saveToGallery(src: string) {
  function sizeFormatter (line 51) | function sizeFormatter(bytes: number | string) {
  function checkAndCreateDir (line 64) | async function checkAndCreateDir(dirPath: string) {
  function getFolderSize (line 75) | async function getFolderSize(dirPath: string): Promise<number> {
  function getCacheSize (line 92) | async function getCacheSize(
  function clearCache (line 105) | async function clearCache(type: "music" | "lyric" | "image") {
  function addFileScheme (line 122) | function addFileScheme(fileName: string) {
  function addRandomHash (line 129) | function addRandomHash(url: string) {
  function trimHash (line 136) | function trimHash(url: string) {
  function escapeCharacter (line 144) | function escapeCharacter(str?: string) {
  function getDirectory (line 148) | function getDirectory(dirPath: string) {
  function getFileName (line 156) | function getFileName(filePath: string, withoutExt?: boolean) {
  function mkdirR (line 174) | async function mkdirR(directory: string) {
  function writeInChunks (line 199) | async function writeInChunks(
  function resolveImportedAssetOrPath (line 221) | function resolveImportedAssetOrPath(pathOrAsset: string | number | undef...
  function resolveImportedAsset (line 229) | function resolveImportedAsset(id?: number) {

FILE: src/utils/getUrlExt.ts
  function getUrlExt (line 3) | function getUrlExt(url?: string) {

FILE: src/utils/htmlUtil.ts
  function sanitizeHtml (line 2) | function sanitizeHtml(html: string): string {

FILE: src/utils/jsonUtil.ts
  function safeStringify (line 1) | function safeStringify(raw: any): string {
  function safeParse (line 10) | function safeParse<T = any>(raw?: string) {

FILE: src/utils/log.ts
  function trace (line 30) | function trace(
  function clearLog (line 47) | async function clearLog() {
  function getErrorLogContent (line 60) | async function getErrorLogContent() {
  function errorLog (line 99) | function errorLog(desc: string, message: any) {
  function devLog (line 109) | function devLog(

FILE: src/utils/lrcParser.ts
  type LyricMeta (line 4) | type LyricMeta = Record<string, any>;
  type IOptions (line 6) | interface IOptions {
  type IParsedLrcItem (line 13) | interface IParsedLrcItem {
  class LyricParser (line 24) | class LyricParser {
    method musicItem (line 37) | get musicItem() {
    method constructor (line 41) | constructor(raw: string, options?: IOptions) {
    method getPosition (line 87) | getPosition(position: number): IParsedLrcItem | null {
    method getLyricItems (line 124) | getLyricItems() {
    method getMeta (line 128) | getMeta() {
    method toString (line 132) | toString(options?: {
    method parseTime (line 155) | private parseTime(timeStr: string): number {
    method timeToLrctime (line 164) | private timeToLrctime(sec: number) {
    method parseMetaImpl (line 174) | private parseMetaImpl(metaStr: string) {
    method parseLyricImpl (line 193) | private parseLyricImpl(raw: string) {

FILE: src/utils/mediaExtra.ts
  type IMediaExtraProperties (line 15) | interface IMediaExtraProperties {
  function getMediaExtra (line 34) | function getMediaExtra(mediaItem: ICommon.IMediaBase | null): IMediaExtr...
  function getMediaExtraProperty (line 56) | function getMediaExtraProperty<K extends keyof IMediaExtraProperties>(me...
  function patchMediaExtra (line 67) | function patchMediaExtra(mediaItem: ICommon.IMediaBase, extra: Partial<I...
  function setMediaExtra (line 97) | function setMediaExtra(mediaItem: ICommon.IMediaBase, extra: IMediaExtra...
  function removeMediaExtra (line 120) | function removeMediaExtra(mediaItem: ICommon.IMediaBase) {
  function removeAllMediaExtra (line 142) | function removeAllMediaExtra(pluginName: string) {
  function useMediaExtra (line 162) | function useMediaExtra(mediaItem: ICommon.IMediaBase) {
  function useMediaExtraProperty (line 206) | function useMediaExtraProperty<K extends keyof IMediaExtraProperties>(me...

FILE: src/utils/mediaIndexMap.ts
  type IIndexMap (line 1) | interface IIndexMap {
  function createMediaIndexMap (line 7) | function createMediaIndexMap(

FILE: src/utils/mediaUtils.ts
  function getMediaUniqueKey (line 12) | function getMediaUniqueKey(mediaItem: ICommon.IMediaBase) {
  function parseMediaUniqueKey (line 21) | function parseMediaUniqueKey(key: string): ICommon.IMediaBase {
  function isSameMediaItem (line 49) | function isSameMediaItem(
  function resetMediaItem (line 59) | function resetMediaItem<T extends ICommon.IMediaBase>(
  function getLocalPath (line 89) | function getLocalPath(mediaItem: ICommon.IMediaBase) {

FILE: src/utils/minDistance.ts
  function makeMatrix (line 1) | function makeMatrix(row: number, col: number) {
  function minDistance (line 7) | function minDistance(word1?: string, word2?: string): number {

FILE: src/utils/network.ts
  type NetworkState (line 4) | enum NetworkState {
  class Network (line 10) | class Network {
    method state (line 14) | get state() {
    method isOffline (line 19) | get isOffline() {
    method isWifi (line 24) | get isWifi() {
    method isCellular (line 29) | get isCellular() {
    method isConnected (line 34) | get isConnected() {
    method constructor (line 38) | constructor() {
    method mapState (line 48) | private mapState(state: any) {

FILE: src/utils/notImplementedFunction.ts
  function notImplementedFunction (line 1) | function notImplementedFunction() {

FILE: src/utils/perfLogger.ts
  type IPerfLogger (line 1) | interface IPerfLogger {
  function perfLogger (line 5) | function perfLogger(): IPerfLogger {

FILE: src/utils/persistStatus.ts
  type IPersistStatus (line 14) | interface IPersistStatus {
  function set (line 43) | function set<K extends keyof IPersistStatus>(
  function get (line 55) | function get<K extends keyof IPersistStatus>(key: K): IPersistStatus[K] ...
  function useValue (line 64) | function useValue<K extends keyof IPersistStatus>(

FILE: src/utils/qualities.ts
  function getQualityOrder (line 20) | function getQualityOrder(

FILE: src/utils/rpx.ts
  function vh (line 12) | function vh(pct: number) {
  function vw (line 16) | function vw(pct: number) {
  function vmin (line 20) | function vmin(pct: number) {
  function vmax (line 24) | function vmax(pct: number) {
  function sh (line 28) | function sh(pct: number) {
  function sw (line 32) | function sw(pct: number) {

FILE: src/utils/scheduleClose.ts
  function exitApp (line 15) | async function exitApp() {
  function setScheduleClose (line 20) | function setScheduleClose(deadline: number | null) {
  function setCloseAfterPlayEnd (line 41) | function setCloseAfterPlayEnd(closeAfterPlayEnd: boolean) {
  function useScheduleCloseCountDown (line 49) | function useScheduleCloseCountDown() {

FILE: src/utils/stateMapper.ts
  class StateMapper (line 3) | class StateMapper<T> {
    method constructor (line 6) | constructor(getFun: () => T) {
  type UpdateFunc (line 29) | type UpdateFunc<T> = (prev: T) => T;
  class GlobalState (line 31) | class GlobalState<T> {
    method constructor (line 35) | constructor(initValue: T) {

FILE: src/utils/storage.ts
  function setStorage (line 4) | async function setStorage(key: string, value: any) {
  function getStorage (line 12) | async function getStorage(key: string) {
  function getMultiStorage (line 22) | async function getMultiStorage(keys: string[]) {
  function removeStorage (line 40) | async function removeStorage(key: string) {

FILE: src/utils/toast.ts
  function success (line 3) | function success(message: string, config?: IToastConfig) {
  function warn (line 11) | function warn(message: string, config?: IToastConfig) {
Condensed preview — 371 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (1,504K chars).
[
  {
    "path": ".bundle/config",
    "chars": 59,
    "preview": "BUNDLE_PATH: \"vendor/bundle\"\nBUNDLE_FORCE_RUBY_PLATFORM: 1\n"
  },
  {
    "path": ".commitlintrc.json",
    "chars": 305,
    "preview": "{\r\n  \"extends\": [\"@commitlint/config-conventional\"],\r\n  \"rules\": {\r\n    \"type-enum\": [\r\n      2,\r\n      \"always\",\r\n     "
  },
  {
    "path": ".eslintignore",
    "chars": 9,
    "preview": "src/lib/*"
  },
  {
    "path": ".eslintrc.js",
    "chars": 770,
    "preview": "module.exports = {\n    root: true,\n    extends: ['@react-native', 'prettier'],\n    overrides: [\n        {\n            fi"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/bug_report_zh.yaml",
    "chars": 1372,
    "preview": "---\nname: 反馈问题\ndescription: 问题反馈模板\nlabels: [\"bug\"]\nbody:\n  - type: markdown\n    attributes:\n      value: \"## 不要在此仓库提和具体插"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/config.yml",
    "chars": 139,
    "preview": "blank_issues_enabled: false\ncontact_links:\n  - name: 讨论区\n    url: https://github.com/maotoumao/MusicFree/discussions\n   "
  },
  {
    "path": ".github/ISSUE_TEMPLATE/feature_request_zh.yaml",
    "chars": 899,
    "preview": "---\nname: 提交新需求\ndescription: 新功能需求模板\nlabels: [\"feature\"]\nbody:\n  - type: checkboxes\n    attributes:\n      label: 提需求之前,请"
  },
  {
    "path": ".github/workflows/build-beta.yml",
    "chars": 3994,
    "preview": "name: Beta 构建\n\non:\n  push:\n    branches: [dev]\n    paths: ['package.json']\n  workflow_dispatch:\n    inputs:\n      force_"
  },
  {
    "path": ".gitignore",
    "chars": 1261,
    "preview": "# OSX\r\n#\r\n.DS_Store\r\n\r\n# Xcode\r\n#\r\nbuild/\r\n*.pbxuser\r\n!default.pbxuser\r\n*.mode1v3\r\n!default.mode1v3\r\n*.mode2v3\r\n!default"
  },
  {
    "path": ".husky/commit-msg",
    "chars": 20,
    "preview": "npm run commit-lint\n"
  },
  {
    "path": ".husky/pre-commit",
    "chars": 20,
    "preview": "npm run lint-staged\n"
  },
  {
    "path": ".prettierrc.js",
    "chars": 194,
    "preview": "module.exports = {\n  arrowParens: 'avoid',\n  bracketSameLine: true,\n  bracketSpacing: false,\n  singleQuote: true,\n  trai"
  },
  {
    "path": ".watchmanconfig",
    "chars": 3,
    "preview": "{}\n"
  },
  {
    "path": "Gemfile",
    "chars": 349,
    "preview": "source 'https://rubygems.org'\n\n# You may use http://rbenv.org/ or https://rvm.io/ to install and use this version\nruby \""
  },
  {
    "path": "LICENSE",
    "chars": 35184,
    "preview": "                    GNU AFFERO GENERAL PUBLIC LICENSE\r\n                       Version 3, 19 November 2007\r\n\r\n Copyright "
  },
  {
    "path": "android/app/build.gradle",
    "chars": 7303,
    "preview": "apply plugin: \"com.android.application\"\r\napply plugin: \"org.jetbrains.kotlin.android\"\r\napply plugin: \"com.facebook.react"
  },
  {
    "path": "android/app/proguard-rules.pro",
    "chars": 435,
    "preview": "# Add project specific ProGuard rules here.\n# By default, the flags in this file are appended to flags specified\n# in /u"
  },
  {
    "path": "android/app/src/debug/AndroidManifest.xml",
    "chars": 313,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    xmlns:to"
  },
  {
    "path": "android/app/src/main/AndroidManifest.xml",
    "chars": 8717,
    "preview": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\" package=\"fun.upup.musicfree\">\r\n\r\n    <uses-permissi"
  },
  {
    "path": "android/app/src/main/java/fun/upup/musicfree/MainActivity.kt",
    "chars": 1342,
    "preview": "package `fun`.upup.musicfree\r\nimport expo.modules.ReactActivityDelegateWrapper\r\nimport expo.modules.splashscreen.SplashS"
  },
  {
    "path": "android/app/src/main/java/fun/upup/musicfree/MainApplication.kt",
    "chars": 2425,
    "preview": "package `fun`.upup.musicfree\r\nimport android.content.res.Configuration\r\nimport expo.modules.ApplicationLifecycleDispatch"
  },
  {
    "path": "android/app/src/main/java/fun/upup/musicfree/lyricUtil/LyricUtilModule.kt",
    "chars": 5971,
    "preview": "package `fun`.upup.musicfree.lyricUtil\r\n\r\nimport android.app.Activity\r\nimport android.content.Intent\r\nimport android.net"
  },
  {
    "path": "android/app/src/main/java/fun/upup/musicfree/lyricUtil/LyricUtilPackage.kt",
    "chars": 701,
    "preview": "package `fun`.upup.musicfree.lyricUtil\r\n\r\nimport android.view.View\r\nimport com.facebook.react.ReactPackage\r\nimport com.f"
  },
  {
    "path": "android/app/src/main/java/fun/upup/musicfree/lyricUtil/LyricView.kt",
    "chars": 8458,
    "preview": "package `fun`.upup.musicfree.lyricUtil\r\n\r\nimport android.app.Activity\r\nimport android.content.Context\r\nimport android.gr"
  },
  {
    "path": "android/app/src/main/java/fun/upup/musicfree/mp3Util/Mp3UtilModule.kt",
    "chars": 7781,
    "preview": "package `fun`.upup.musicfree.mp3Util\r\n\r\nimport android.graphics.Bitmap\r\nimport android.graphics.BitmapFactory\r\nimport an"
  },
  {
    "path": "android/app/src/main/java/fun/upup/musicfree/mp3Util/Mp3UtilPackage.kt",
    "chars": 695,
    "preview": "package `fun`.upup.musicfree.mp3Util\r\n\r\nimport android.view.View\r\nimport com.facebook.react.ReactPackage\r\nimport com.fac"
  },
  {
    "path": "android/app/src/main/java/fun/upup/musicfree/utils/UtilsModule.kt",
    "chars": 5302,
    "preview": "package `fun`.upup.musicfree.utils; // replace your-apps-package-name with your app’s package name\r\nimport android.Manif"
  },
  {
    "path": "android/app/src/main/java/fun/upup/musicfree/utils/UtilsPackage.kt",
    "chars": 689,
    "preview": "package `fun`.upup.musicfree.utils\r\n\r\nimport android.view.View\r\nimport com.facebook.react.ReactPackage\r\nimport com.faceb"
  },
  {
    "path": "android/app/src/main/res/drawable/rn_edit_text_material.xml",
    "chars": 1917,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2014 The Android Open Source Project\n\n     Licensed under the "
  },
  {
    "path": "android/app/src/main/res/drawable/splashscreen.xml",
    "chars": 151,
    "preview": " <layer-list xmlns:android=\"http://schemas.android.com/apk/res/android\">\r\n    <item android:drawable=\"@color/splashscree"
  },
  {
    "path": "android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml",
    "chars": 269,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<adaptive-icon xmlns:android=\"http://schemas.android.com/apk/res/android\">\r\n    "
  },
  {
    "path": "android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml",
    "chars": 269,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<adaptive-icon xmlns:android=\"http://schemas.android.com/apk/res/android\">\r\n    "
  },
  {
    "path": "android/app/src/main/res/values/colors.xml",
    "chars": 121,
    "preview": "<resources>\r\n    <color name=\"splashscreen_background\">#27282C</color> <!-- #AARRGGBB or #RRGGBB format -->\r\n</resources"
  },
  {
    "path": "android/app/src/main/res/values/ic_launcher_background.xml",
    "chars": 123,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<resources>\r\n    <color name=\"ic_launcher_background\">#27282C</color>\r\n</resourc"
  },
  {
    "path": "android/app/src/main/res/values/strings.xml",
    "chars": 433,
    "preview": "<resources>\n    <string name=\"app_name\">MusicFree</string>\n    <string name=\"expo_splash_screen_status_bar_translucent\">"
  },
  {
    "path": "android/app/src/main/res/values/styles.xml",
    "chars": 757,
    "preview": "<resources>\r\n\r\n    <!-- Base application theme. -->\r\n    <style name=\"AppTheme\" parent=\"Theme.AppCompat.DayNight.NoActio"
  },
  {
    "path": "android/build.gradle",
    "chars": 797,
    "preview": "buildscript {\n    ext {\n        buildToolsVersion = \"35.0.0\"\n        minSdkVersion = 24\n        compileSdkVersion = 35\n "
  },
  {
    "path": "android/gradle/wrapper/gradle-wrapper.properties",
    "chars": 335,
    "preview": "distributionBase=GRADLE_USER_HOME\ndistributionPath=wrapper/dists\n# distributionUrl=https\\://services.gradle.org/distribu"
  },
  {
    "path": "android/gradle.properties",
    "chars": 1737,
    "preview": "# Project-wide Gradle settings.\n\n# IDE (e.g. Android Studio) users:\n# Gradle settings configured through the IDE *will o"
  },
  {
    "path": "android/gradlew",
    "chars": 8739,
    "preview": "#!/bin/sh\n\n#\n# Copyright © 2015-2021 the original authors.\n#\n# Licensed under the Apache License, Version 2.0 (the \"Lice"
  },
  {
    "path": "android/gradlew.bat",
    "chars": 2966,
    "preview": "@rem\r\n@rem Copyright 2015 the original author or authors.\r\n@rem\r\n@rem Licensed under the Apache License, Version 2.0 (th"
  },
  {
    "path": "android/settings.gradle",
    "chars": 815,
    "preview": "pluginManagement { includeBuild(\"../node_modules/@react-native/gradle-plugin\") }\r\nplugins { id(\"com.facebook.react.setti"
  },
  {
    "path": "app.json",
    "chars": 56,
    "preview": "{\n  \"name\": \"MusicFree\",\n  \"displayName\": \"MusicFree\"\n}\n"
  },
  {
    "path": "babel.config.js",
    "chars": 480,
    "preview": "module.exports = {\n    presets: ['babel-preset-expo'],\n    plugins: [\n        [\n            'module-resolver',\n         "
  },
  {
    "path": "changelog.md",
    "chars": 8088,
    "preview": "`2025.10.9 v0.6.2`\r\n1. 【优化】优化了软件启动速度\r\n\r\n`2025.8.3 v0.6.1`\r\n1. 修复进入软件时播放进度丢失的问题\r\n2. 修复某些情况下无法添加到歌单的问题\r\n\r\n`2025.7.24 v0.6."
  },
  {
    "path": "generator/generate-assets.mjs",
    "chars": 1893,
    "preview": "import fs from 'fs/promises';\r\nimport path from 'path';\r\nimport * as url from \"node:url\";\r\n\r\n\r\nfunction toCamelCase(str)"
  },
  {
    "path": "index.js",
    "chars": 317,
    "preview": "/**\n * @format\n */\n\nimport {AppRegistry} from 'react-native';\nimport {name as appName} from './app.json';\nimport TrackPl"
  },
  {
    "path": "ios/.xcode.env",
    "chars": 482,
    "preview": "# This `.xcode.env` file is versioned and is used to source the environment\n# used when running script phases inside Xco"
  },
  {
    "path": "ios/MusicFree/AppDelegate.h",
    "chars": 133,
    "preview": "#import <RCTAppDelegate.h>\r\n#import <Expo/Expo.h>\r\n#import <UIKit/UIKit.h>\r\n\r\n@interface AppDelegate : EXAppDelegateWrap"
  },
  {
    "path": "ios/MusicFree/AppDelegate.mm",
    "chars": 853,
    "preview": "#import \"AppDelegate.h\"\r\n\r\n#import <React/RCTBundleURLProvider.h>\r\n\r\n@implementation AppDelegate\r\n\r\n- (BOOL)application:"
  },
  {
    "path": "ios/MusicFree/Images.xcassets/AppIcon.appiconset/Contents.json",
    "chars": 849,
    "preview": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"iphone\",\n      \"scale\" : \"2x\",\n      \"size\" : \"20x20\"\n    },\n    {\n      \"idiom\""
  },
  {
    "path": "ios/MusicFree/Images.xcassets/Contents.json",
    "chars": 63,
    "preview": "{\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}\n"
  },
  {
    "path": "ios/MusicFree/Info.plist",
    "chars": 1617,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
  },
  {
    "path": "ios/MusicFree/LaunchScreen.storyboard",
    "chars": 4233,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<document type=\"com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB\" version=\"3"
  },
  {
    "path": "ios/MusicFree/PrivacyInfo.xcprivacy",
    "chars": 1062,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
  },
  {
    "path": "ios/MusicFree/main.m",
    "chars": 199,
    "preview": "#import <UIKit/UIKit.h>\n\n#import \"AppDelegate.h\"\n\nint main(int argc, char *argv[])\n{\n  @autoreleasepool {\n    return UIA"
  },
  {
    "path": "ios/MusicFree.xcodeproj/project.pbxproj",
    "chars": 29845,
    "preview": "// !$*UTF8*$!\r\n{\r\n\tarchiveVersion = 1;\r\n\tclasses = {\r\n\t};\r\n\tobjectVersion = 54;\r\n\tobjects = {\r\n\r\n/* Begin PBXBuildFile s"
  },
  {
    "path": "ios/MusicFree.xcodeproj/xcshareddata/xcschemes/MusicFreeNew.xcscheme",
    "chars": 3294,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n   LastUpgradeVersion = \"1210\"\n   version = \"1.3\">\n   <BuildAction\n      "
  },
  {
    "path": "ios/MusicFreeTests/Info.plist",
    "chars": 733,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
  },
  {
    "path": "ios/MusicFreeTests/MusicFreeNewTests.m",
    "chars": 1994,
    "preview": "#import <UIKit/UIKit.h>\n#import <XCTest/XCTest.h>\n\n#import <React/RCTLog.h>\n#import <React/RCTRootView.h>\n\n#define TIMEO"
  },
  {
    "path": "ios/Podfile",
    "chars": 1928,
    "preview": "require File.join(File.dirname(`node --print \"require.resolve('expo/package.json')\"`), \"scripts/autolinking\")\r\n# Resolve"
  },
  {
    "path": "jest.config.js",
    "chars": 50,
    "preview": "module.exports = {\n    preset: 'react-native',\n};\n"
  },
  {
    "path": "metro.config.js",
    "chars": 757,
    "preview": "const {getDefaultConfig} = require('expo/metro-config');\nconst {mergeConfig} = require('@react-native/metro-config');\n\n/"
  },
  {
    "path": "package.json",
    "chars": 4631,
    "preview": "{\r\n  \"name\": \"MusicFree\",\r\n  \"version\": \"0.6.2\",\r\n  \"private\": true,\r\n  \"license\": \"AGPL\",\r\n  \"author\": {\r\n    \"name\": \""
  },
  {
    "path": "readme-en.md",
    "chars": 11632,
    "preview": "# MusicFree\n\n[中文](./readme.md) | **English**\n\n![GitHub Repo stars](https://img.shields.io/github/stars/maotoumao/MusicFr"
  },
  {
    "path": "readme.md",
    "chars": 5942,
    "preview": "# MusicFree\n\n**中文** | [English](./readme-en.md)\n\n![GitHub Repo stars](https://img.shields.io/github/stars/maotoumao/Musi"
  },
  {
    "path": "release/version.json",
    "chars": 173,
    "preview": "{\"version\":\"0.6.2\",\"changeLog\":[\n  \"【优化】优化了软件启动速度 (需要在【侧边栏-基本设置-插件】中打开【启用插件懒加载】开关)\"\n],\"download\":[\"https://r0rvr854dd1.f"
  },
  {
    "path": "src/components/base/SortableFlatList.tsx",
    "chars": 15550,
    "preview": "/**\r\n * 支持长按拖拽排序的flatlist,右边加个固定的按钮,拖拽排序。\r\n * 考虑到方便实现+节省性能,整个app内的拖拽排序都遵守以下实现。\r\n * 点击会出现\r\n */\r\n\r\nimport globalStyle from"
  },
  {
    "path": "src/components/base/appBar.tsx",
    "chars": 9577,
    "preview": "import React, { ReactNode, useEffect, useState } from \"react\";\nimport {\n    LayoutRectangle,\n    StatusBar as OriginalSt"
  },
  {
    "path": "src/components/base/button.tsx",
    "chars": 1322,
    "preview": "import {\r\n    GestureResponderEvent,\r\n    StyleProp,\r\n    StyleSheet,\r\n    TouchableOpacity,\r\n    ViewStyle,\r\n} from \"re"
  },
  {
    "path": "src/components/base/checkbox.tsx",
    "chars": 1740,
    "preview": "import React from \"react\";\r\nimport { StyleProp, StyleSheet, View, ViewProps } from \"react-native\";\r\nimport rpx from \"@/u"
  },
  {
    "path": "src/components/base/chip.tsx",
    "chars": 1609,
    "preview": "import React, { ReactNode } from \"react\";\r\nimport { Pressable, StyleProp, StyleSheet, ViewStyle } from \"react-native\";\r\n"
  },
  {
    "path": "src/components/base/colorBlock.tsx",
    "chars": 1254,
    "preview": "import React from \"react\";\nimport { Image, StyleSheet, View } from \"react-native\";\nimport rpx from \"@/utils/rpx\";\nimport"
  },
  {
    "path": "src/components/base/divider.tsx",
    "chars": 800,
    "preview": "import React from \"react\";\nimport { StyleProp, StyleSheet, View, ViewStyle } from \"react-native\";\nimport useColors from "
  },
  {
    "path": "src/components/base/empty.tsx",
    "chars": 707,
    "preview": "import React from \"react\";\nimport { StyleSheet, View } from \"react-native\";\nimport rpx from \"@/utils/rpx\";\nimport ThemeT"
  },
  {
    "path": "src/components/base/fab.tsx",
    "chars": 1500,
    "preview": "import React from \"react\";\r\nimport { Pressable, StyleSheet } from \"react-native\";\r\nimport rpx from \"@/utils/rpx\";\r\nimpor"
  },
  {
    "path": "src/components/base/fastImage.tsx",
    "chars": 1283,
    "preview": "import React, { useEffect, useState } from \"react\";\nimport { ImageRequireSource } from \"react-native\";\nimport FastImage,"
  },
  {
    "path": "src/components/base/horizontalSafeAreaView.tsx",
    "chars": 579,
    "preview": "import React from \"react\";\nimport { StyleProp, ViewStyle } from \"react-native\";\nimport { SafeAreaView } from \"react-nati"
  },
  {
    "path": "src/components/base/icon.tsx",
    "chars": 9458,
    "preview": "// This file is generated by generate-assets.mjs. DO NOT MODIFY.\nimport { SvgProps } from \"react-native-svg\";\n\nimport Al"
  },
  {
    "path": "src/components/base/iconButton.tsx",
    "chars": 1980,
    "preview": "import React from \"react\";\nimport { ColorKey, colorMap, iconSizeConst } from \"@/constants/uiConst\";\nimport { TapGestureH"
  },
  {
    "path": "src/components/base/iconTextButton.tsx",
    "chars": 1327,
    "preview": "import React from \"react\";\r\nimport { StyleProp, StyleSheet, ViewStyle } from \"react-native\";\r\nimport rpx from \"@/utils/r"
  },
  {
    "path": "src/components/base/image.tsx",
    "chars": 421,
    "preview": "import React from \"react\";\nimport { Image, ImageProps } from \"react-native\";\n\ninterface IImageProps extends ImageProps {"
  },
  {
    "path": "src/components/base/imageBtn.tsx",
    "chars": 1312,
    "preview": "import React from \"react\";\nimport { StyleProp, StyleSheet, TouchableOpacity, ViewStyle } from \"react-native\";\nimport rpx"
  },
  {
    "path": "src/components/base/input.tsx",
    "chars": 1136,
    "preview": "import useColors from \"@/hooks/useColors\";\nimport rpx from \"@/utils/rpx\";\nimport Color from \"color\";\nimport React from \""
  },
  {
    "path": "src/components/base/linkText.tsx",
    "chars": 1394,
    "preview": "import React, { useState } from \"react\";\nimport { GestureResponderEvent, StyleSheet, TextProps } from \"react-native\";\nim"
  },
  {
    "path": "src/components/base/listEmpty.tsx",
    "chars": 2037,
    "preview": "import { RequestStateCode } from \"@/constants/commonConst\";\nimport { fontSizeConst } from \"@/constants/uiConst\";\nimport "
  },
  {
    "path": "src/components/base/listFooter.tsx",
    "chars": 2342,
    "preview": "import React from \"react\";\nimport { ActivityIndicator, StyleSheet, Text, View } from \"react-native\";\nimport rpx from \"@/"
  },
  {
    "path": "src/components/base/listItem.tsx",
    "chars": 9372,
    "preview": "import React, { ReactNode } from \"react\";\r\nimport {\r\n    StyleProp,\r\n    StyleSheet,\r\n    TextProps,\r\n    TextStyle,\r\n  "
  },
  {
    "path": "src/components/base/loading.tsx",
    "chars": 1217,
    "preview": "import React from \"react\";\nimport { ActivityIndicator, StyleSheet, View } from \"react-native\";\nimport rpx from \"@/utils/"
  },
  {
    "path": "src/components/base/noPlugin.tsx",
    "chars": 1048,
    "preview": "import React from \"react\";\nimport { StyleSheet, View } from \"react-native\";\nimport rpx from \"@/utils/rpx\";\nimport ThemeT"
  },
  {
    "path": "src/components/base/pageBackground.tsx",
    "chars": 1342,
    "preview": "import React, { memo } from \"react\";\nimport { StyleSheet, View } from \"react-native\";\nimport Image from \"./image\";\nimpor"
  },
  {
    "path": "src/components/base/paragraph.tsx",
    "chars": 553,
    "preview": "import React from \"react\";\nimport { StyleSheet, TextProps } from \"react-native\";\nimport ThemeText from \"./themeText\";\nim"
  },
  {
    "path": "src/components/base/playAllBar.tsx",
    "chars": 4541,
    "preview": "import React from \"react\";\r\nimport { Pressable, StyleSheet, View } from \"react-native\";\r\nimport rpx from \"@/utils/rpx\";\r"
  },
  {
    "path": "src/components/base/portal.tsx",
    "chars": 2084,
    "preview": "import React, { ReactNode, useEffect, useRef } from \"react\";\nimport { StyleSheet, View } from \"react-native\";\nimport { a"
  },
  {
    "path": "src/components/base/statusBar.tsx",
    "chars": 892,
    "preview": "import React from \"react\";\nimport { StatusBar, StatusBarProps, View } from \"react-native\";\nimport useColors from \"@/hook"
  },
  {
    "path": "src/components/base/switch.tsx",
    "chars": 2004,
    "preview": "import React, { useEffect } from \"react\";\nimport {\n    StyleSheet,\n    SwitchProps,\n    TouchableWithoutFeedback,\n    Vi"
  },
  {
    "path": "src/components/base/tag.tsx",
    "chars": 1170,
    "preview": "import React from \"react\";\nimport { StyleProp, StyleSheet, TextStyle, View, ViewStyle } from \"react-native\";\nimport rpx "
  },
  {
    "path": "src/components/base/textButton.tsx",
    "chars": 1072,
    "preview": "import React from \"react\";\nimport { Pressable } from \"react-native\";\nimport ThemeText from \"./themeText\";\nimport rpx fro"
  },
  {
    "path": "src/components/base/themeText.tsx",
    "chars": 1151,
    "preview": "import React from \"react\";\nimport { Text, TextProps } from \"react-native\";\nimport { fontSizeConst, fontWeightConst } fro"
  },
  {
    "path": "src/components/base/tip.tsx",
    "chars": 9139,
    "preview": "import React, { ReactNode, useCallback, useEffect, useRef, useState } from \"react\";\nimport { View, StyleSheet, LayoutRec"
  },
  {
    "path": "src/components/base/toast.tsx",
    "chars": 6316,
    "preview": "import { timingConfig } from \"@/constants/commonConst\";\r\nimport { fontSizeConst } from \"@/constants/uiConst\";\r\nimport us"
  },
  {
    "path": "src/components/base/typeTag.tsx",
    "chars": 1523,
    "preview": "import React from \"react\";\nimport {\n    ColorValue,\n    StyleProp,\n    StyleSheet,\n    TouchableOpacity,\n    View,\n    V"
  },
  {
    "path": "src/components/base/verticalSafeAreaView.tsx",
    "chars": 573,
    "preview": "import React from \"react\";\nimport { StyleProp, ViewStyle } from \"react-native\";\nimport { SafeAreaView } from \"react-nati"
  },
  {
    "path": "src/components/debug/index.tsx",
    "chars": 631,
    "preview": "import React from \"react\";\nimport { StyleSheet, View } from \"react-native\";\nimport VDebug from \"@/lib/react-native-vdebu"
  },
  {
    "path": "src/components/dialogs/components/base/index.tsx",
    "chars": 8819,
    "preview": "import React, { ReactNode, useEffect, useMemo, useRef } from \"react\";\nimport {\n    BackHandler,\n    NativeEventSubscript"
  },
  {
    "path": "src/components/dialogs/components/checkStorage.tsx",
    "chars": 3097,
    "preview": "import React, { useState } from \"react\";\nimport ThemeText from \"@/components/base/themeText\";\nimport { StyleSheet, View "
  },
  {
    "path": "src/components/dialogs/components/downloadDialog.tsx",
    "chars": 4557,
    "preview": "import React, { useState } from \"react\";\nimport ThemeText from \"@/components/base/themeText\";\nimport { StyleSheet, View "
  },
  {
    "path": "src/components/dialogs/components/editSheetDetail.tsx",
    "chars": 5352,
    "preview": "import React, { useState } from \"react\";\nimport useColors from \"@/hooks/useColors\";\nimport rpx from \"@/utils/rpx\";\nimpor"
  },
  {
    "path": "src/components/dialogs/components/index.ts",
    "chars": 819,
    "preview": "import CheckStorage from \"@/components/dialogs/components/checkStorage.tsx\";\nimport DownloadDialog from \"./downloadDialo"
  },
  {
    "path": "src/components/dialogs/components/loadingDialog.tsx",
    "chars": 1826,
    "preview": "import React, { useEffect } from \"react\";\nimport Loading from \"@/components/base/loading\";\nimport rpx from \"@/utils/rpx\""
  },
  {
    "path": "src/components/dialogs/components/markdownDialog.tsx",
    "chars": 10362,
    "preview": "import React, { useEffect, useRef, useState } from \"react\";\nimport { hideDialog } from \"../useDialog\";\nimport Dialog fro"
  },
  {
    "path": "src/components/dialogs/components/radioDialog.tsx",
    "chars": 4471,
    "preview": "import React, { useEffect, useMemo, useRef } from \"react\";\r\nimport { FlatList } from \"react-native-gesture-handler\";\r\nim"
  },
  {
    "path": "src/components/dialogs/components/setScheduleCloseTimeDialog.tsx",
    "chars": 5678,
    "preview": "import React, { useState } from \"react\";\nimport rpx from \"@/utils/rpx\";\nimport { StyleSheet, View } from \"react-native\";"
  },
  {
    "path": "src/components/dialogs/components/simpleDialog.tsx",
    "chars": 1376,
    "preview": "import React from \"react\";\nimport { hideDialog } from \"../useDialog\";\nimport Dialog from \"./base\";\nimport { useI18N } fr"
  },
  {
    "path": "src/components/dialogs/components/subscribePluginDialog.tsx",
    "chars": 5197,
    "preview": "import React, { useState } from \"react\";\nimport rpx from \"@/utils/rpx\";\nimport { StyleSheet, View } from \"react-native\";"
  },
  {
    "path": "src/components/dialogs/index.tsx",
    "chars": 427,
    "preview": "import React from \"react\";\nimport components from \"./components\";\nimport { dialogInfoStore } from \"./useDialog\";\n\nexport"
  },
  {
    "path": "src/components/dialogs/useDialog.ts",
    "chars": 1238,
    "preview": "import { GlobalState } from \"@/utils/stateMapper\";\nimport { useCallback } from \"react\";\nimport { IDialogKey, IDialogType"
  },
  {
    "path": "src/components/errorBoundary/index.tsx",
    "chars": 12983,
    "preview": "import React, { Component, ReactNode, useEffect, useState } from \"react\";\nimport { View, Text, StyleSheet, ScrollView, I"
  },
  {
    "path": "src/components/mediaItem/LyricItem.tsx",
    "chars": 1076,
    "preview": "import React from \"react\";\r\nimport ListItem from \"@/components/base/listItem\";\r\nimport { ImgAsset } from \"@/constants/as"
  },
  {
    "path": "src/components/mediaItem/albumItem.tsx",
    "chars": 1755,
    "preview": "import React from \"react\";\r\nimport { ROUTE_PATH, useNavigate } from \"@/core/router\";\r\nimport ListItem from \"@/components"
  },
  {
    "path": "src/components/mediaItem/musicItem.tsx",
    "chars": 4126,
    "preview": "import React from \"react\";\r\nimport { StyleProp, StyleSheet, View, ViewStyle } from \"react-native\";\r\nimport rpx from \"@/u"
  },
  {
    "path": "src/components/mediaItem/sheetItem.tsx",
    "chars": 1144,
    "preview": "import React from \"react\";\nimport { StyleSheet, View } from \"react-native\";\nimport rpx from \"@/utils/rpx\";\nimport { ROUT"
  },
  {
    "path": "src/components/mediaItem/titleAndTag.tsx",
    "chars": 900,
    "preview": "import React from \"react\";\nimport { StyleSheet, View } from \"react-native\";\nimport ThemeText from \"../base/themeText\";\ni"
  },
  {
    "path": "src/components/mediaItem/topListItem.tsx",
    "chars": 1137,
    "preview": "import React from \"react\";\r\n// import {ROUTE_PATH, useNavigate} from '@/entry/router';\r\nimport ListItem from \"@/componen"
  },
  {
    "path": "src/components/musicBar/index.tsx",
    "chars": 4572,
    "preview": "import React, { memo, useEffect, useState } from \"react\";\r\nimport { Keyboard, StyleSheet, View } from \"react-native\";\r\ni"
  },
  {
    "path": "src/components/musicBar/musicInfo.tsx",
    "chars": 7268,
    "preview": "import React, { memo, useLayoutEffect, useMemo } from \"react\";\nimport { StyleSheet, Text, View } from \"react-native\";\nim"
  },
  {
    "path": "src/components/musicList/index.tsx",
    "chars": 6376,
    "preview": "import { RequestStateCode } from \"@/constants/commonConst\";\nimport TrackPlayer from \"@/core/trackPlayer\";\nimport rpx fro"
  },
  {
    "path": "src/components/musicSheetPage/components/header.tsx",
    "chars": 3562,
    "preview": "import React, { useState } from \"react\";\nimport { Pressable, StyleSheet, View } from \"react-native\";\nimport rpx from \"@/"
  },
  {
    "path": "src/components/musicSheetPage/components/navBar.tsx",
    "chars": 1272,
    "preview": "import React from \"react\";\r\n\r\nimport { ROUTE_PATH, useNavigate } from \"@/core/router\";\r\nimport AppBar from \"@/components"
  },
  {
    "path": "src/components/musicSheetPage/components/sheetMusicList.tsx",
    "chars": 2373,
    "preview": "import React from \"react\";\nimport { View } from \"react-native\";\n\nimport Loading from \"@/components/base/loading\";\nimport"
  },
  {
    "path": "src/components/musicSheetPage/index.tsx",
    "chars": 1469,
    "preview": "import React from \"react\";\nimport NavBar from \"./components/navBar\";\nimport MusicBar from \"@/components/musicBar\";\nimpor"
  },
  {
    "path": "src/components/panels/base/panelBase.tsx",
    "chars": 6513,
    "preview": "import useColors from \"@/hooks/useColors\";\nimport useOrientation from \"@/hooks/useOrientation\";\nimport rpx, { vh } from "
  },
  {
    "path": "src/components/panels/base/panelFullscreen.tsx",
    "chars": 5532,
    "preview": "import React, { useCallback, useEffect, useMemo, useRef } from \"react\";\r\nimport {\r\n    BackHandler,\r\n    DeviceEventEmit"
  },
  {
    "path": "src/components/panels/base/panelHeader.tsx",
    "chars": 2394,
    "preview": "import React from \"react\";\nimport { StyleProp, StyleSheet, View, ViewStyle } from \"react-native\";\nimport rpx from \"@/uti"
  },
  {
    "path": "src/components/panels/index.tsx",
    "chars": 389,
    "preview": "import React from \"react\";\nimport panels from \"./types\";\nimport { panelInfoStore } from \"./usePanel\";\n\nfunction Panels()"
  },
  {
    "path": "src/components/panels/types/addToMusicSheet.tsx",
    "chars": 6074,
    "preview": "import React from \"react\";\r\nimport { StyleSheet, View } from \"react-native\";\r\nimport rpx, { vmax } from \"@/utils/rpx\";\r\n"
  },
  {
    "path": "src/components/panels/types/associateLrc.tsx",
    "chars": 4548,
    "preview": "import rpx, { vmax } from \"@/utils/rpx\";\nimport React, { useState } from \"react\";\nimport { StyleSheet } from \"react-nati"
  },
  {
    "path": "src/components/panels/types/colorPicker.tsx",
    "chars": 15591,
    "preview": "import React, { useMemo, useRef, useState, useCallback, useEffect } from \"react\";\nimport { Image, StyleSheet, View } fro"
  },
  {
    "path": "src/components/panels/types/createMusicSheet.tsx",
    "chars": 3071,
    "preview": "import { fontSizeConst } from \"@/constants/uiConst\";\nimport useColors from \"@/hooks/useColors\";\nimport rpx, { vmax } fro"
  },
  {
    "path": "src/components/panels/types/editMusicSheetInfo.tsx",
    "chars": 6293,
    "preview": "import AppBar from \"@/components/base/appBar.tsx\";\r\nimport Image from \"@/components/base/image.tsx\";\r\nimport Input from "
  },
  {
    "path": "src/components/panels/types/imageViewer.tsx",
    "chars": 2653,
    "preview": "import React from \"react\";\r\nimport { Image, StyleSheet } from \"react-native\";\r\nimport rpx, { vh, vw } from \"@/utils/rpx\""
  },
  {
    "path": "src/components/panels/types/importMusicSheet.tsx",
    "chars": 5370,
    "preview": "import ListItem from \"@/components/base/listItem\";\r\nimport { vmax } from \"@/utils/rpx\";\r\nimport Toast from \"@/utils/toas"
  },
  {
    "path": "src/components/panels/types/index.ts",
    "chars": 1680,
    "preview": "import AddToMusicSheet from \"./addToMusicSheet\";\nimport AssociateLrc from \"./associateLrc\";\nimport ColorPicker from \"./c"
  },
  {
    "path": "src/components/panels/types/musicComment/comment.tsx",
    "chars": 3220,
    "preview": "import React from \"react\";\r\nimport { StyleSheet, View } from \"react-native\";\r\nimport rpx from \"@/utils/rpx\";\r\nimport Fas"
  },
  {
    "path": "src/components/panels/types/musicComment/index.tsx",
    "chars": 3514,
    "preview": "import React from \"react\";\r\nimport { StyleSheet, View } from \"react-native\";\r\nimport rpx from \"@/utils/rpx\";\r\nimport Pan"
  },
  {
    "path": "src/components/panels/types/musicComment/useComments.ts",
    "chars": 3597,
    "preview": "import { atom, getDefaultStore, useAtomValue } from \"jotai\";\r\nimport { RequestStateCode } from \"@/constants/commonConst."
  },
  {
    "path": "src/components/panels/types/musicItemLyricOptions.tsx",
    "chars": 11586,
    "preview": "import FastImage from \"@/components/base/fastImage\";\r\nimport ListItem from \"@/components/base/listItem\";\r\nimport ThemeTe"
  },
  {
    "path": "src/components/panels/types/musicItemOptions.tsx",
    "chars": 12199,
    "preview": "import React from \"react\";\r\nimport { StyleSheet, View } from \"react-native\";\r\nimport rpx from \"@/utils/rpx\";\r\nimport Lis"
  },
  {
    "path": "src/components/panels/types/musicQuality.tsx",
    "chars": 3555,
    "preview": "import React, { Fragment } from \"react\";\nimport { Pressable, StyleSheet } from \"react-native\";\nimport rpx from \"@/utils/"
  },
  {
    "path": "src/components/panels/types/playList/body.tsx",
    "chars": 4592,
    "preview": "import React, { useMemo, useRef } from \"react\";\r\nimport { Pressable, StyleSheet, Text, View } from \"react-native\";\r\nimpo"
  },
  {
    "path": "src/components/panels/types/playList/header.tsx",
    "chars": 2148,
    "preview": "import IconTextButton from \"@/components/base/iconTextButton\";\r\nimport ThemeText from \"@/components/base/themeText\";\r\nim"
  },
  {
    "path": "src/components/panels/types/playList/index.tsx",
    "chars": 567,
    "preview": "import React from \"react\";\n\nimport Header from \"./header\";\nimport Body from \"./body\";\nimport PanelBase from \"../../base/"
  },
  {
    "path": "src/components/panels/types/playRate.tsx",
    "chars": 2414,
    "preview": "import React, { Fragment } from \"react\";\nimport { Pressable, StyleSheet } from \"react-native\";\nimport rpx from \"@/utils/"
  },
  {
    "path": "src/components/panels/types/searchLrc/LyricList.tsx",
    "chars": 2529,
    "preview": "import Loading from \"@/components/base/loading\";\nimport LyricItem from \"@/components/mediaItem/LyricItem\";\nimport { Requ"
  },
  {
    "path": "src/components/panels/types/searchLrc/index.tsx",
    "chars": 5970,
    "preview": "import React, { useEffect, useMemo, useState } from \"react\";\nimport { StyleSheet, Text, View } from \"react-native\";\nimpo"
  },
  {
    "path": "src/components/panels/types/searchLrc/searchResultStore.ts",
    "chars": 426,
    "preview": "import { RequestStateCode } from \"@/constants/commonConst\";\nimport { GlobalState } from \"@/utils/stateMapper\";\n\nexport i"
  },
  {
    "path": "src/components/panels/types/searchLrc/useSearchLrc.ts",
    "chars": 5842,
    "preview": "import { RequestStateCode } from \"@/constants/commonConst\";\nimport PluginManager, { Plugin } from \"@/core/pluginManager\""
  },
  {
    "path": "src/components/panels/types/setFontSize.tsx",
    "chars": 3000,
    "preview": "import React, { useState } from \"react\";\nimport { StyleSheet, View } from \"react-native\";\nimport rpx from \"@/utils/rpx\";"
  },
  {
    "path": "src/components/panels/types/setLyricOffset.tsx",
    "chars": 4168,
    "preview": "import React, { useState } from \"react\";\r\nimport { StyleSheet, View } from \"react-native\";\r\nimport rpx from \"@/utils/rpx"
  },
  {
    "path": "src/components/panels/types/setUserVariables.tsx",
    "chars": 4146,
    "preview": "import React, { useRef } from \"react\";\r\nimport { KeyboardAvoidingView, StyleSheet } from \"react-native\";\r\nimport rpx, { "
  },
  {
    "path": "src/components/panels/types/sheetTags.tsx",
    "chars": 3972,
    "preview": "import React from \"react\";\nimport { StyleSheet, View } from \"react-native\";\nimport rpx, { vh } from \"@/utils/rpx\";\nimpor"
  },
  {
    "path": "src/components/panels/types/simpleInput.tsx",
    "chars": 3908,
    "preview": "import React, { useState } from \"react\";\nimport { StyleSheet, View } from \"react-native\";\nimport rpx, { vmax } from \"@/u"
  },
  {
    "path": "src/components/panels/types/simpleSelect.tsx",
    "chars": 2515,
    "preview": "import React, { Fragment } from \"react\";\r\nimport { ScrollView, StyleSheet } from \"react-native\";\r\nimport rpx from \"@/uti"
  },
  {
    "path": "src/components/panels/types/timingClose.tsx",
    "chars": 4960,
    "preview": "import React from \"react\";\nimport { StyleSheet, TouchableOpacity, View } from \"react-native\";\nimport rpx from \"@/utils/r"
  },
  {
    "path": "src/components/panels/usePanel.ts",
    "chars": 875,
    "preview": "import { GlobalState } from \"@/utils/stateMapper\";\nimport { DeviceEventEmitter } from \"react-native\";\nimport panels from"
  },
  {
    "path": "src/constants/assetsConst.ts",
    "chars": 65451,
    "preview": "export const ImgAsset = {\n    albumDefault: require(\"@/assets/imgs/album-default.jpeg\"),\n    addBackground: require(\"@/a"
  },
  {
    "path": "src/constants/commonConst.ts",
    "chars": 2248,
    "preview": "import { Easing, EasingFunction } from \"react-native-reanimated\";\n\nexport const internalSymbolKey = Symbol.for(\"$\");\n// "
  },
  {
    "path": "src/constants/globalStyle.ts",
    "chars": 658,
    "preview": "import { StyleSheet } from \"react-native\";\n\nconst globalStyle = StyleSheet.create({\n    /** flex 1 */\n    flex1: {\n     "
  },
  {
    "path": "src/constants/pathConst.ts",
    "chars": 859,
    "preview": "import { Platform } from \"react-native\";\nimport RNFS, { CachesDirectoryPath } from \"react-native-fs\";\n\nexport const base"
  },
  {
    "path": "src/constants/repeatModeConst.ts",
    "chars": 448,
    "preview": "export enum MusicRepeatMode {\n    /** 随机播放 */\n    SHUFFLE = \"SHUFFLE\",\n    /** 列表循环 */\n    QUEUE = \"QUEUE\",\n    /** 单曲循环"
  },
  {
    "path": "src/constants/uiConst.ts",
    "chars": 949,
    "preview": "import { CustomizedColors } from \"@/hooks/useColors\";\nimport rpx from \"@/utils/rpx\";\n\nconst fontSizeConst = {\n    /** 标签"
  },
  {
    "path": "src/core/appConfig.ts",
    "chars": 8057,
    "preview": "import { useMMKVObject } from \"react-native-mmkv\";\n\nimport { getStorage, removeStorage } from \"@/utils/storage\";\nimport "
  },
  {
    "path": "src/core/appMeta.ts",
    "chars": 1056,
    "preview": "import getOrCreateMMKV from \"@/utils/getOrCreateMMKV\";\n\nclass AppMeta {\n    private getAppMeta(key: string) {\n        co"
  },
  {
    "path": "src/core/backup.ts",
    "chars": 1917,
    "preview": "/** 备份与恢复 */\n/** 歌单、插件 */\nimport { compare } from \"compare-versions\";\nimport PluginManager from \"./pluginManager\";\nimpor"
  },
  {
    "path": "src/core/downloader.ts",
    "chars": 14662,
    "preview": "import { internalSerializeKey, supportLocalMediaType } from \"@/constants/commonConst\";\nimport pathConst from \"@/constant"
  },
  {
    "path": "src/core/i18n/index.ts",
    "chars": 1842,
    "preview": "import type { ILanguage, ILanguageData } from \"@/types/core/i18n\";\nimport { atom, getDefaultStore, useAtomValue } from \""
  },
  {
    "path": "src/core/i18n/languages/en-us.json",
    "chars": 26605,
    "preview": "{\n    \"common.setting\": \"Settings\",\n    \"common.software\": \"Software\",\n    \"common.language\": \"Language\",\n    \"common.th"
  },
  {
    "path": "src/core/i18n/languages/zh-cn.json",
    "chars": 20797,
    "preview": "{\n    \"common.setting\": \"设置\",\n    \"common.software\": \"软件\",\n    \"common.language\": \"语言\",\n    \"common.theme\": \"主题\",\n    \"c"
  },
  {
    "path": "src/core/i18n/languages/zh-tw.json",
    "chars": 20803,
    "preview": "{\n    \"common.setting\": \"設定\",\n    \"common.software\": \"軟體\",\n    \"common.language\": \"語言\",\n    \"common.theme\": \"主題\",\n    \"c"
  },
  {
    "path": "src/core/localMusicSheet.ts",
    "chars": 7956,
    "preview": "import {\r\n    StorageKeys,\r\n    internalSerializeKey,\r\n    supportLocalMediaType,\r\n} from \"@/constants/commonConst\";\r\nim"
  },
  {
    "path": "src/core/lyricManager.ts",
    "chars": 13561,
    "preview": "import { IAppConfig } from \"@/types/core/config\";\nimport { ITrackPlayer } from \"@/types/core/trackPlayer\";\nimport { IInj"
  },
  {
    "path": "src/core/mediaCache.ts",
    "chars": 2300,
    "preview": "import { addFileScheme } from \"@/utils/fileUtils\";\nimport getOrCreateMMKV from \"@/utils/getOrCreateMMKV\";\nimport { safeP"
  },
  {
    "path": "src/core/musicHistory.ts",
    "chars": 2762,
    "preview": "import { musicHistorySheetId } from \"@/constants/commonConst\";\nimport { isSameMediaItem } from \"@/utils/mediaUtils\";\nimp"
  },
  {
    "path": "src/core/musicSheet/index.ts",
    "chars": 18663,
    "preview": "/**\r\n * 歌单管理\r\n */\r\nimport { ResumeMode, SortType, localPluginPlatform } from \"@/constants/commonConst.ts\";\r\nimport { IAp"
  },
  {
    "path": "src/core/musicSheet/migrate.ts",
    "chars": 1762,
    "preview": "import { getStorage as oldGetStorage } from \"@/utils/storage\";\r\nimport storage from \"@/core/musicSheet/storage.ts\";\r\nimp"
  },
  {
    "path": "src/core/musicSheet/sortedMusicList.ts",
    "chars": 8024,
    "preview": "import { SortType } from \"@/constants/commonConst.ts\";\r\nimport { isSameMediaItem } from \"@/utils/mediaUtils\";\r\nimport { "
  },
  {
    "path": "src/core/musicSheet/storage.ts",
    "chars": 2670,
    "preview": "import getOrCreateMMKV from \"@/utils/getOrCreateMMKV.ts\";\r\nimport { InteractionManager } from \"react-native\";\r\nimport { "
  },
  {
    "path": "src/core/pluginManager/index.ts",
    "chars": 20982,
    "preview": "import {\n    emptyFunction,\n    localPluginHash,\n    localPluginPlatform,\n} from \"@/constants/commonConst\";\nimport pathC"
  },
  {
    "path": "src/core/pluginManager/meta.ts",
    "chars": 4839,
    "preview": "import getOrCreateMMKV from \"@/utils/getOrCreateMMKV\";\nimport { safeParse, safeStringify } from \"@/utils/jsonUtil\";\nimpo"
  },
  {
    "path": "src/core/pluginManager/plugin.ts",
    "chars": 34382,
    "preview": "import {\n    CacheControl,\n    internalSerializeKey,\n    localPluginPlatform,\n} from \"@/constants/commonConst\";\nimport p"
  },
  {
    "path": "src/core/router/index.ts",
    "chars": 3342,
    "preview": "import { useNavigation, useRoute } from \"@react-navigation/native\";\nimport { useCallback } from \"react\";\nimport { LogBox"
  },
  {
    "path": "src/core/router/routes.tsx",
    "chars": 2882,
    "preview": "import Home from \"@/pages/home\";\r\nimport MusicDetail from \"@/pages/musicDetail\";\r\nimport TopList from \"@/pages/topList\";"
  },
  {
    "path": "src/core/theme.ts",
    "chars": 6272,
    "preview": "import Config from \"@/core/appConfig\";\n\nimport { DarkTheme as _DarkTheme, DefaultTheme as _DefaultTheme } from \"@react-n"
  },
  {
    "path": "src/core/trackPlayer/index.ts",
    "chars": 34393,
    "preview": "import { getCurrentDialog, showDialog } from \"@/components/dialogs/useDialog\";\nimport {\n    internalFakeSoundKey,\n    so"
  },
  {
    "path": "src/core.defination/trackPlayer/index.ts",
    "chars": 197,
    "preview": "export enum TrackPlayerEvents {\n    // 一首歌曲播放结束\n    PlayEnd = \"play-end\",\n    // 更换正在播放的歌曲\n    CurrentMusicChanged = \"cu"
  },
  {
    "path": "src/entry/bootstrap/BootstrapComponent.tsx",
    "chars": 2379,
    "preview": "import { useAppConfig } from \"@/core/appConfig\";\nimport Theme from \"@/core/theme\";\nimport useCheckUpdate from \"@/hooks/u"
  },
  {
    "path": "src/entry/bootstrap/bootstrap.atom.ts",
    "chars": 245,
    "preview": "import { atom } from \"jotai\";\n\n\ninterface IBootStrapState {\n    state: \"Loading\" | \"Done\" | \"Fatal\" | \"TrackPlayerError\""
  },
  {
    "path": "src/entry/bootstrap/bootstrap.ts",
    "chars": 10495,
    "preview": "import \"react-native-get-random-values\";\n\nimport { getCurrentDialog, showDialog } from \"@/components/dialogs/useDialog.t"
  },
  {
    "path": "src/entry/index.tsx",
    "chars": 2695,
    "preview": "import React from \"react\";\nimport { NavigationContainer } from \"@react-navigation/native\";\nimport { createNativeStackNav"
  },
  {
    "path": "src/hooks/useCheckUpdate.ts",
    "chars": 1411,
    "preview": "import { showDialog } from \"@/components/dialogs/useDialog\";\nimport PersistStatus from \"@/utils/persistStatus\";\nimport c"
  }
]

// ... and 171 more files (download for full content)

About this extraction

This page contains the full source code of the maotoumao/MusicFree GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 371 files (1.3 MB), approximately 349.5k tokens, and a symbol index with 950 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!