Initial Upload
This commit is contained in:
commit
f4c99a1817
25
README.md
Normal file
25
README.md
Normal file
@ -0,0 +1,25 @@
|
||||
## Add In Rom
|
||||
|
||||
Add This Line In device.mk
|
||||
|
||||
$(call inherit-product, vendor/bcr/bcr.mk)
|
||||
|
||||
## Features
|
||||
|
||||
* Supports Android 9 through 13
|
||||
* Supports output in various formats:
|
||||
* OGG/Opus - Lossy, smallest files, default on Android 10+
|
||||
* M4A/AAC - Lossy, smaller files, default on Android 9
|
||||
* FLAC - Lossless, larger files
|
||||
* WAV/PCM - Lossless, largest files, least CPU usage
|
||||
* Supports Android's Storage Access Framework (can record to SD cards, USB devices, etc.)
|
||||
* Per-contact auto-record rules
|
||||
* Quick settings toggle
|
||||
* Material You dynamic theming
|
||||
* No persistent notification unless a recording is in progress
|
||||
* No network access permission
|
||||
* Works with call screening on Pixel devices (records the caller, but not the automated system)
|
||||
|
||||
## Credits
|
||||
|
||||
Thanks to [chenxiaolong](https://github.com/chenxiaolong) For Base Repo And [StudioKeys](https://github.com/StudioKeys) For Helping Me
|
5
bcr.mk
Normal file
5
bcr.mk
Normal file
@ -0,0 +1,5 @@
|
||||
LOCAL_PATH := $(call my-dir)
|
||||
include $(call all-subdir-makefiles,$(LOCAL_PATH))
|
||||
|
||||
# Include prebuilts packages
|
||||
include vendor/bcr/prebuilts/prebuilts.mk
|
6
prebuilts/prebuilts.mk
Normal file
6
prebuilts/prebuilts.mk
Normal file
@ -0,0 +1,6 @@
|
||||
# Copy permission files
|
||||
PRODUCT_COPY_FILES += $(call find-copy-subdir-files,*,vendor/bcr/prebuilts/product/etc/permissions,$(TARGET_COPY_OUT_PRODUCT)/etc/permissions)
|
||||
|
||||
# Build apps
|
||||
PRODUCT_PACKAGES += \
|
||||
bcr
|
1
prebuilts/product/Android.mk
Normal file
1
prebuilts/product/Android.mk
Normal file
@ -0,0 +1 @@
|
||||
include $(call all-subdir-makefiles,$(LOCAL_PATH))
|
@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<permissions>
|
||||
<privapp-permissions package="com.chiller3.bcr">
|
||||
<permission name="android.permission.CAPTURE_AUDIO_OUTPUT" />
|
||||
<permission name="android.permission.CONTROL_INCALL_EXPERIENCE" />
|
||||
</privapp-permissions>
|
||||
</permissions>
|
1
prebuilts/product/priv-app/Android.mk
Normal file
1
prebuilts/product/priv-app/Android.mk
Normal file
@ -0,0 +1 @@
|
||||
include $(call all-subdir-makefiles,$(LOCAL_PATH))
|
11
prebuilts/product/priv-app/com.chiller3.bcr/Android.mk
Normal file
11
prebuilts/product/priv-app/com.chiller3.bcr/Android.mk
Normal file
@ -0,0 +1,11 @@
|
||||
LOCAL_PATH:= $(call my-dir)
|
||||
|
||||
include $(CLEAR_VARS)
|
||||
LOCAL_MODULE := bcr
|
||||
LOCAL_SRC_FILES := bcr.apk
|
||||
LOCAL_PRODUCT_MODULE := true
|
||||
LOCAL_MODULE_CLASS := APPS
|
||||
LOCAL_CERTIFICATE := PRESIGNED
|
||||
LOCAL_PRIVILEGED_MODULE := true
|
||||
LOCAL_MODULE_SUFFIX := $(COMMON_ANDROID_PACKAGE_SUFFIX)
|
||||
include $(BUILD_PREBUILT)
|
BIN
prebuilts/product/priv-app/com.chiller3.bcr/bcr.apk
Normal file
BIN
prebuilts/product/priv-app/com.chiller3.bcr/bcr.apk
Normal file
Binary file not shown.
Loading…
Reference in New Issue
Block a user