Small updates

Signed-off-by: Tad <tad@spotco.us>
This commit is contained in:
Tad 2022-11-21 05:41:49 -05:00
parent ad5f2d7bfa
commit 7f24df22f7
11 changed files with 18 additions and 16 deletions

View File

@ -8,5 +8,5 @@
<bool name="useCustomUserAgent">true</bool> <bool name="useCustomUserAgent">true</bool>
<bool name="allowEditingSmscAddress">true</bool> <bool name="allowEditingSmscAddress">true</bool>
<bool name="enableGroupMms">true</bool> <bool name="enableGroupMms">true</bool>
<bool name="groupChatDefaultsToMMS">true</bool> <bool name="groupChatDefaultsToMMS">false</bool>
</mms_config> </mms_config>

View File

@ -7,4 +7,5 @@
<int name="maxImageWidth">1600</int> <int name="maxImageWidth">1600</int>
<bool name="useCustomUserAgent">true</bool> <bool name="useCustomUserAgent">true</bool>
<bool name="allowEditingSmscAddress">true</bool> <bool name="allowEditingSmscAddress">true</bool>
<bool name="groupChatDefaultsToMMS">false</bool>
</mms_config> </mms_config>

View File

@ -8,5 +8,5 @@
<bool name="useCustomUserAgent">true</bool> <bool name="useCustomUserAgent">true</bool>
<bool name="allowEditingSmscAddress">true</bool> <bool name="allowEditingSmscAddress">true</bool>
<bool name="enableGroupMms">true</bool> <bool name="enableGroupMms">true</bool>
<bool name="groupChatDefaultsToMMS">true</bool> <bool name="groupChatDefaultsToMMS">false</bool>
</mms_config> </mms_config>

View File

@ -3,5 +3,5 @@
<bool name="allowEnablingWapPushSI">true</bool> <bool name="allowEnablingWapPushSI">true</bool>
<bool name="enableWapPushSI">false</bool> <bool name="enableWapPushSI">false</bool>
<bool name="enableGroupMms">true</bool> <bool name="enableGroupMms">true</bool>
<bool name="groupChatDefaultsToMMS">true</bool> <bool name="groupChatDefaultsToMMS">false</bool>
</mms_config> </mms_config>

View File

@ -9,5 +9,5 @@
<bool name="useCustomUserAgent">true</bool> <bool name="useCustomUserAgent">true</bool>
<bool name="allowEditingSmscAddress">true</bool> <bool name="allowEditingSmscAddress">true</bool>
<bool name="enableGroupMms">true</bool> <bool name="enableGroupMms">true</bool>
<bool name="groupChatDefaultsToMMS">true</bool> <bool name="groupChatDefaultsToMMS">false</bool>
</mms_config> </mms_config>

View File

@ -7,4 +7,5 @@
<int name="maxImageWidth">1600</int> <int name="maxImageWidth">1600</int>
<bool name="useCustomUserAgent">true</bool> <bool name="useCustomUserAgent">true</bool>
<bool name="allowEditingSmscAddress">true</bool> <bool name="allowEditingSmscAddress">true</bool>
<bool name="groupChatDefaultsToMMS">false</bool>
</mms_config> </mms_config>

View File

@ -21,7 +21,7 @@ Change-Id: I694c683c9bfde60343f0f6ea8d806bc5e24437e6
2 files changed, 6 insertions(+) 2 files changed, 6 insertions(+)
diff --git a/hal/audio_extn/audio_extn.h b/hal/audio_extn/audio_extn.h diff --git a/hal/audio_extn/audio_extn.h b/hal/audio_extn/audio_extn.h
index 75ef7f239a..58f7f72be9 100644 index f35a9d60b0..b8abfd04a4 100644
--- a/hal/audio_extn/audio_extn.h --- a/hal/audio_extn/audio_extn.h
+++ b/hal/audio_extn/audio_extn.h +++ b/hal/audio_extn/audio_extn.h
@@ -868,7 +868,11 @@ bool audio_extn_utils_is_dolby_format(audio_format_t format); @@ -868,7 +868,11 @@ bool audio_extn_utils_is_dolby_format(audio_format_t format);
@ -37,10 +37,10 @@ index 75ef7f239a..58f7f72be9 100644
int audio_extn_utils_get_vendor_enhanced_info(); int audio_extn_utils_get_vendor_enhanced_info();
int audio_extn_utils_get_app_sample_rate_for_device(struct audio_device *adev, int audio_extn_utils_get_app_sample_rate_for_device(struct audio_device *adev,
diff --git a/hal/audio_extn/utils.c b/hal/audio_extn/utils.c diff --git a/hal/audio_extn/utils.c b/hal/audio_extn/utils.c
index 6c97447c9a..364250f2d8 100644 index 174e43fa96..9b72e31a2c 100644
--- a/hal/audio_extn/utils.c --- a/hal/audio_extn/utils.c
+++ b/hal/audio_extn/utils.c +++ b/hal/audio_extn/utils.c
@@ -3303,6 +3303,7 @@ int audio_extn_utils_get_channels_from_string(const char *id_string) @@ -3312,6 +3312,7 @@ int audio_extn_utils_get_channels_from_string(const char *id_string)
return -EINVAL; return -EINVAL;
} }
@ -48,7 +48,7 @@ index 6c97447c9a..364250f2d8 100644
void audio_extn_utils_release_snd_device(snd_device_t snd_device) void audio_extn_utils_release_snd_device(snd_device_t snd_device)
{ {
audio_extn_dev_arbi_release(snd_device); audio_extn_dev_arbi_release(snd_device);
@@ -3311,6 +3312,7 @@ void audio_extn_utils_release_snd_device(snd_device_t snd_device) @@ -3320,6 +3321,7 @@ void audio_extn_utils_release_snd_device(snd_device_t snd_device)
audio_extn_listen_update_device_status(snd_device, audio_extn_listen_update_device_status(snd_device,
LISTEN_EVENT_SND_DEVICE_FREE); LISTEN_EVENT_SND_DEVICE_FREE);
} }

View File

@ -18,10 +18,10 @@ Change-Id: Ibfe080c3d801af34fb64fda1b6b8f4f39a2b1ccf
10 files changed, 134 insertions(+), 5 deletions(-) 10 files changed, 134 insertions(+), 5 deletions(-)
diff --git a/AndroidManifest.xml b/AndroidManifest.xml diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 693ded4..91e85a3 100644 index cc485f7..7cdfb93 100644
--- a/AndroidManifest.xml --- a/AndroidManifest.xml
+++ b/AndroidManifest.xml +++ b/AndroidManifest.xml
@@ -12,6 +12,10 @@ @@ -13,6 +13,10 @@
<uses-permission android:name="android.permission.START_ACTIVITIES_FROM_BACKGROUND" /> <uses-permission android:name="android.permission.START_ACTIVITIES_FROM_BACKGROUND" />
<uses-permission android:name="android.permission.WAKE_LOCK" /> <uses-permission android:name="android.permission.WAKE_LOCK" />

@ -1 +1 @@
Subproject commit 87a15eaebffbd24345e80e46636e62835c0b158f Subproject commit 0c4313b2cf1d06442b5f271c10a2893799873c1e

View File

@ -102,9 +102,9 @@ patchWorkspace() {
gpgVerifyGitTag "$DOS_BUILD_BASE/external/SecureCamera"; gpgVerifyGitTag "$DOS_BUILD_BASE/external/SecureCamera";
gpgVerifyGitHead "$DOS_BUILD_BASE/external/chromium-webview"; gpgVerifyGitHead "$DOS_BUILD_BASE/external/chromium-webview";
#source build/envsetup.sh; source build/envsetup.sh;
#repopick -i 343790; #usb: have enableUsbDataSignal() call queryPortStatus() if successful repopick -i 343790; #usb: have enableUsbDataSignal() call queryPortStatus() if successful
#repopick -i 343791; #UsbManager: enableUsbDataSignal: return early if HAL version is too old repopick -i 343791; #UsbManager: enableUsbDataSignal: return early if HAL version is too old
#repopick -it T_tzdb2022f; #repopick -it T_tzdb2022f;
sh "$DOS_SCRIPTS/Patch.sh"; sh "$DOS_SCRIPTS/Patch.sh";

View File

@ -29,11 +29,11 @@ wget "https://github.com/LineageOS/android_packages_apps_LineageParts/raw/lineag
#TODO: wireless-regdb #TODO: wireless-regdb
#https://mirrors.edge.kernel.org/pub/software/network/wireless-regdb/ #https://mirrors.edge.kernel.org/pub/software/network/wireless-regdb/
#Last: 2022/10/12 #Last: 2022/11/21
#TODO: MMS Configs #TODO: MMS Configs
#https://github.com/GrapheneOS/platform_packages_apps_Messaging #https://github.com/GrapheneOS/platform_packages_apps_Messaging
#Last: 2022/10/12 #Last: 2022/11/21
#TODO: Carrier List #TODO: Carrier List
#https://android.googlesource.com/platform/packages/providers/TelephonyProvider/ #https://android.googlesource.com/platform/packages/providers/TelephonyProvider/