chore(plugins,ci): remove livekit audio switch patch plugin and simplify build config
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:
@@ -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' }
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user