├── .github └── workflows │ └── release.yml ├── .gitignore ├── .vscode └── launch.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── bin └── zipsigner.jar ├── magisk ├── META-INF │ └── com │ │ └── google │ │ └── android │ │ ├── update-binary │ │ └── updater-script └── module.prop ├── prebuilt └── overlay │ └── DialerCallRecordingAllowed.apk ├── recovery ├── META-INF │ └── com │ │ └── google │ │ └── android │ │ ├── update-binary │ │ └── updater-script └── system │ └── addon.d │ └── 20-call-recording.sh ├── release_body.txt ├── rro ├── AndroidManifest.xml └── res │ └── xml │ └── call_record_states.xml └── toybox ├── arm └── toybox └── arm64 └── toybox /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2shrestha22/lineage-call-recording-enabler/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2shrestha22/lineage-call-recording-enabler/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2shrestha22/lineage-call-recording-enabler/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2shrestha22/lineage-call-recording-enabler/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2shrestha22/lineage-call-recording-enabler/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2shrestha22/lineage-call-recording-enabler/HEAD/README.md -------------------------------------------------------------------------------- /bin/zipsigner.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2shrestha22/lineage-call-recording-enabler/HEAD/bin/zipsigner.jar -------------------------------------------------------------------------------- /magisk/META-INF/com/google/android/update-binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2shrestha22/lineage-call-recording-enabler/HEAD/magisk/META-INF/com/google/android/update-binary -------------------------------------------------------------------------------- /magisk/META-INF/com/google/android/updater-script: -------------------------------------------------------------------------------- 1 | #MAGISK 2 | -------------------------------------------------------------------------------- /magisk/module.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2shrestha22/lineage-call-recording-enabler/HEAD/magisk/module.prop -------------------------------------------------------------------------------- /prebuilt/overlay/DialerCallRecordingAllowed.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2shrestha22/lineage-call-recording-enabler/HEAD/prebuilt/overlay/DialerCallRecordingAllowed.apk -------------------------------------------------------------------------------- /recovery/META-INF/com/google/android/update-binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2shrestha22/lineage-call-recording-enabler/HEAD/recovery/META-INF/com/google/android/update-binary -------------------------------------------------------------------------------- /recovery/META-INF/com/google/android/updater-script: -------------------------------------------------------------------------------- 1 | # Dummy file; update-binary is a shell script. 2 | -------------------------------------------------------------------------------- /recovery/system/addon.d/20-call-recording.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2shrestha22/lineage-call-recording-enabler/HEAD/recovery/system/addon.d/20-call-recording.sh -------------------------------------------------------------------------------- /release_body.txt: -------------------------------------------------------------------------------- 1 | - align file names with LineageOS (arm and arm64) 2 | -------------------------------------------------------------------------------- /rro/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2shrestha22/lineage-call-recording-enabler/HEAD/rro/AndroidManifest.xml -------------------------------------------------------------------------------- /rro/res/xml/call_record_states.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2shrestha22/lineage-call-recording-enabler/HEAD/rro/res/xml/call_record_states.xml -------------------------------------------------------------------------------- /toybox/arm/toybox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2shrestha22/lineage-call-recording-enabler/HEAD/toybox/arm/toybox -------------------------------------------------------------------------------- /toybox/arm64/toybox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2shrestha22/lineage-call-recording-enabler/HEAD/toybox/arm64/toybox --------------------------------------------------------------------------------