diff --git a/Aerodactyl-vendor.mk b/Aerodactyl-vendor.mk index 7a3916a..aba8188 100644 --- a/Aerodactyl-vendor.mk +++ b/Aerodactyl-vendor.mk @@ -49,6 +49,7 @@ PRODUCT_COPY_FILES += \ vendor/nothing/Aerodactyl/proprietary/vendor/etc/AudioLog_dynamic.xml:$(TARGET_COPY_OUT_VENDOR)/etc/AudioLog_dynamic.xml \ vendor/nothing/Aerodactyl/proprietary/vendor/etc/MNL_Config.xml:$(TARGET_COPY_OUT_VENDOR)/etc/MNL_Config.xml \ vendor/nothing/Aerodactyl/proprietary/vendor/etc/VideoLog_dynamic.xml:$(TARGET_COPY_OUT_VENDOR)/etc/VideoLog_dynamic.xml \ + vendor/nothing/Aerodactyl/proprietary/vendor/etc/aac_richtap.config:$(TARGET_COPY_OUT_VENDOR)/etc/aac_richtap.config \ vendor/nothing/Aerodactyl/proprietary/vendor/etc/apdb/APDB_MT6886___W2439:$(TARGET_COPY_OUT_VENDOR)/etc/apdb/APDB_MT6886___W2439 \ vendor/nothing/Aerodactyl/proprietary/vendor/etc/apdb/APDB_MT6886___W2439_ENUM:$(TARGET_COPY_OUT_VENDOR)/etc/apdb/APDB_MT6886___W2439_ENUM \ vendor/nothing/Aerodactyl/proprietary/vendor/etc/audio_device.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_device.xml \ @@ -494,6 +495,7 @@ PRODUCT_PACKAGES += \ libaaa_aaautil \ libaaa_afassist_V2 \ libaaa_gma \ + libaacvibrator \ libaal_key \ libaal_mtk \ libadpcmdec_mtk \ diff --git a/Android.bp b/Android.bp index 4f3f30f..f16c633 100644 --- a/Android.bp +++ b/Android.bp @@ -2318,6 +2318,33 @@ cc_prebuilt_library_shared { soc_specific: true, } +cc_prebuilt_library_shared { + name: "libaacvibrator", + owner: "nothing", + strip: { + none: true, + }, + target: { + android_arm64: { + srcs: [ + "proprietary/vendor/lib64/libaacvibrator.so", + ], + shared_libs: [ + "liblog", + "libcutils", + "libutils", + "libc++", + "libc", + "libm", + "libdl", + ], + }, + }, + compile_multilib: "64", + prefer: true, + soc_specific: true, +} + cc_prebuilt_library_shared { name: "libaal_key", owner: "nothing", diff --git a/proprietary/vendor/etc/aac_richtap.config b/proprietary/vendor/etc/aac_richtap.config new file mode 100644 index 0000000..80eb69e Binary files /dev/null and b/proprietary/vendor/etc/aac_richtap.config differ diff --git a/proprietary/vendor/lib64/libaacvibrator.so b/proprietary/vendor/lib64/libaacvibrator.so new file mode 100644 index 0000000..0f17ca6 Binary files /dev/null and b/proprietary/vendor/lib64/libaacvibrator.so differ