We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents fc94fca + f0dae1c commit 5d5dd5fCopy full SHA for 5d5dd5f
android/build.sh
@@ -245,7 +245,19 @@ execute_build() {
245
create_directory_if_not_found "$TARGET_DIR/libs/"
246
create_directory_if_not_found "$TARGET_DIR/jni/"
247
248
- ARCH_JNI="$TARGET_DIR/jni/${WEBRTC_ARCH}"
+ if [ "$WEBRTC_ARCH" = "x86" ] ;
249
+ then
250
+ ARCH_JNI="$TARGET_DIR/jni/x86"
251
+ elif [ "$WEBRTC_ARCH" = "x86_64" ] ;
252
253
+ ARCH_JNI="$TARGET_DIR/jni/x86_64"
254
+ elif [ "$WEBRTC_ARCH" = "armv7" ] ;
255
256
+ ARCH_JNI="$TARGET_DIR/jni/armeabi-v7a"
257
+ elif [ "$WEBRTC_ARCH" = "armv8" ] ;
258
259
+ ARCH_JNI="$TARGET_DIR/jni/arm64-v8a"
260
+ fi
261
create_directory_if_not_found "$ARCH_JNI"
262
263
# Copy the jars
0 commit comments