chore(plugins,ci): remove livekit audio switch patch plugin and simplify build config
Some checks failed
Frontend CI / ota (ios) (push) Has been cancelled
Frontend CI / ota (android) (push) Has been cancelled
Frontend CI / build-and-push-web (push) Failing after 3m58s
Frontend CI / build-android-apk (push) Failing after 45m17s

Remove the LiveKit audio switch patch plugin as it's no longer needed after the JitPack
repository was restricted to GitHub packages only. Simplify CI by removing npm caching and
Android NDK caching/installation steps. Update privacy policy and terms of service to
reflect JPush SDK naming changes.
This commit is contained in:
lafay
2026-06-16 08:38:07 +08:00
parent 4c4d28f0e2
commit c46260e4c0
5 changed files with 15 additions and 104 deletions

View File

@@ -41,7 +41,6 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: '25.6.1'
cache: 'npm'
- name: Install dependencies
run: npm ci
@@ -123,28 +122,10 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: '25.6.1'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Cache Android NDK
uses: actions/cache@v4
id: cache-ndk
with:
path: /opt/android/ndk
key: ndk-v2
- name: Install Android NDK
if: steps.cache-ndk.outputs.cache-hit != 'true'
run: |
echo "Existing NDK versions:"
ls /opt/android/ndk/ 2>/dev/null || echo "No NDK dir"
echo "Installing required NDK versions..."
yes | sdkmanager --install "ndk;27.1.12297006" "ndk;27.0.12077973"
echo "NDK after install:"
ls /opt/android/ndk/
- name: Cache Gradle
uses: actions/cache@v4
with:
@@ -204,12 +185,7 @@ jobs:
maven { url 'https://developer.huawei.com/repo/' }
google()
mavenCentral()
maven {
url 'https://www.jitpack.io'
content {
includeGroupByRegex "com\\.github.*"
}
}
maven { url 'https://www.jitpack.io' }
}
}
@@ -256,12 +232,7 @@ jobs:
maven { url 'https://developer.huawei.com/repo/' }
google()
mavenCentral()
maven {
url 'https://www.jitpack.io'
content {
includeGroupByRegex "com\\.github.*"
}
}
maven { url 'https://www.jitpack.io' }
}
}