Integrate the Gstreamer library in AOSP code for video streaming

I want to integrate the Gstreamer library in AOSP code for video streaming. I have seen your reply on below link:

Or if you use 1.24 or newer you can also build a single GStreamer library with all plugins (and their dependencies) that you want to use and have it initialize those automatically (“gstreamer-full”).

Below is my Android.bp file in external/gstreamer in AOSP source tree

cc_prebuilt_library_shared {
name: “gstreamer_full”,
srcs: [
“x86_64/lib/gstreamer-1.0”,
],
target: {
android_x86_64: {
srcs: [“x86_64/lib/gstreamer-1.0”],
export_include_dirs: [“include”],
},
android_x86: {
srcs: [“x86/lib/gstreamer-1.0”],
export_include_dirs: [“include”],
},
android_arm64: {
srcs: [“arm64/lib/gstreamer-1.0”],
export_include_dirs: [“include”],
},
},
vendor: true,
}

Can you please tell if this is the right way to add Android.bp for GStreamer library. I have downloaded prebuilt binary from https://gstreamer.freedesktop.org/data/pkg/android/1.24.11/gstreamer-1.0-android-universal-1.24.11.tar.xz and extracted on the path external/gstreamer. Also, if I have to add plugins.

Pls help.