| Commit message (Collapse) | Author | Age |
|
|
|
|
| |
Change-Id: I0efa9f044056d16418bc08d53390f9b3ea4ac20e
Signed-off-by: Nanhumly <admin@warbler.cc>
|
|
|
|
| |
Change-Id: Ie4143c300287575a18d5da038aa6b4d13ec85b42
|
|
|
|
|
|
|
| |
The protobuf vendorcompat libs are built now.
Change-Id: I8eeec1203b05341bfd4b808f72e55e4f90e33f1e
Signed-off-by: Nanhumly <admin@warbler.cc>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Our blobs are compiled against libprotobuf-full-cpp.so, but
starting in R, Android is using a versioned naming approach,
e.g. libprotobuf-cpp-full-3.9.1.so.
See https://r.android.com/1109518
The entry in public.libraries.txt is needed to allow the
linker to find and use the lib outside the VNDK.
See https://source.android.com/devices/tech/config/namespaces_libraries
[wight554: added libprotobuf-cpp-lite as well]
Signed-off-by: Volodymyr Zhdanov <wight554@gmail.com>
Change-Id: I28222c89e1e07017867088492a726ee9d45d8e6f
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* RenderScript is deprecated on newer platforms and
is being officially replaced.
* On April 19, 2021, Google announced that RenderScript
will be deprecated in Android 12, and recommended
porting existing code to Vulkan.
https://android-developers.googleblog.com/2021/04/android-gpu-compute-going-forward.html
Change-Id: I19460ef266a646b046f1e7d2f0b4eab7c48ae536
|
|
|
|
|
|
|
| |
This is copied in vendor/lineage/config/common.mk
Change-Id: Ida45932cdf0505e7295a4af5128d73ac03b34d3e
Signed-off-by: Nanhumly <admin@warbler.cc>
|
|
|
|
|
|
|
| |
* Built by default
Change-Id: Id6666535bb8d0b84d2d0a8d19411fafa49df3d68
Signed-off-by: Nanhumly <admin@warbler.cc>
|
|
|
|
|
|
|
| |
* It's built by default if vndk is set to current
Change-Id: I2a00446046bafe265e5ac894656abc72514319d8
Signed-off-by: Nanhumly <admin@warbler.cc>
|
|
|
|
|
|
|
| |
These syscalls are now allowed by default.
Change-Id: I405f609d030331e19031612cbd912a54a3c72339
Signed-off-by: Nanhumly <admin@warbler.cc>
|
|
|
|
|
|
|
| |
Since Android 10 that this is already done while inheriting from
full_base_telephony.mk.
Change-Id: If533fbf95a9cf9798ddba24955a624d26f550d62
|
|
|
|
|
|
|
| |
* This tool can be built manually for debugging cases,
there is no need to ship it in production
Change-Id: I9ab8b076b4bede70c368c198960ceabc68dad65b
|
|
|
|
|
|
|
|
|
|
|
| |
APM would fail to parse the config anyway:
E DevicesFactoryHAL: loadAudioInterface couldn't load audio hw module audio.a2dp (No such file or directory)
W DevicesFactoryHalHidl: The specified device name is not recognized: "a2dp"
E AudioFlinger: loadHwModule() error -22 loading module a2dp
W APM_AudioPolicyManager: could not open HW module a2dp
Change-Id: Iaa1be881cfe8f8474cef0ba46e1b0a62b59e14be
|
|
|
|
|
|
|
| |
Test: m
Bug: 203490261
Change-Id: I4b8ac40d5ad410b89eb6a0573d740d86471ecfc7
Merged-In: I4b8ac40d5ad410b89eb6a0573d740d86471ecfc7
|
|
|
|
| |
Change-Id: I4d12752ae5fb2829d6612647c8740c84967f5434
|
|
|
|
| |
Change-Id: Ibdd2bbbc7b7d46d73a237b5fc9f3a9c96650ef90
|
|
|
|
| |
Change-Id: I339c35b09c0efdc3ea9f06193844e711f58e1087
|
|
|
|
| |
Change-Id: I4ab9183c90cd5d294c7710c9c16d8109eecc827b
|
|
|
|
|
|
|
| |
The fs_config_files for each partition is already added to
PRODUCT_PACKAGES by base_{product,system,system_ext,vendor}.mk.
Change-Id: Ifbadacd5cb20beca70ed8b3accb3baf86a989c92
|
|
|
|
|
|
|
| |
This is not needed, since Widevine DRM and Clearkey DRM
services are available.
Change-Id: I97023f1bab88ddb8fa4cb205df190c516a759951
|
|
|
|
|
|
| |
This is no longer needed as of Android 13.
Change-Id: I38435c47c8781678f82014decbbae40dcab0a07b
|
|
|
|
|
|
|
| |
Bug: 220306859
Test: atest
Tag: #feature
Change-Id: I1af8461f8ad82afbb21b43dd6968e824ea89f5d6
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
They doesn't work right, because xml attributes where
stripped down, and leading zeros are removed.
E.g. instead of
<carrier_config mcc="262" mnc="06">
the values are modified and get
<carrier_config mcc="262" mnc="6">
This prevents matching of defined carrier definitions.
Change-Id: I11efe716f9d2ea44bef80c15004d7a8cb71b58b9
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Google's prebuilt cgroups.json and task_profiles.json for products
launched with previous API levels only covers
ro.product.first_api_level >= 28. [1]
These devices were launched with M (API level 23), so schedtune
and task groups are completely broken. Since the system also checks
/vendor/etc for vendor profiles, make a copy of cgroups_28.json
and task_profiles_28.json and ship them to /vendor/etc. Profiles
for previous API levels are all the same anyway.
Test: boot and check /dev/stune/
[1] system/core/libprocessgroup/profiles/
Signed-off-by: Chenyang Zhong <zhongcy95@gmail.com>
Change-Id: I65fe622a804a720a97b43d8092cc8a37703f4b64
|
|
|
|
|
|
| |
No longer shipped by default with lineage-19.0.
Change-Id: Iae740ef18505b7f2bb01fe54d45810e72fd521e9
|
|
|
|
|
|
| |
* Won't be implemented this cycle (or ever again hopefully).
Change-Id: Ie2a346319dfe814deaf9833cb31640505cc6b7dc
|
|
|
|
|
|
| |
Bug: 191252896
Test: android.graphics.cts.VulkanDeqpLevelTest#testVulkanDeqpLevel pass
Change-Id: I0e598ee8a26cd614dc5076a87c514756ba39d740
|
|
|
|
|
|
|
|
|
|
|
| |
Populates a new feature flag to record the level of OpenGL ES dEQP
test support. Updates the analogous Vulkan dEQP feature flag to the
value for the next dessert release.
Bug: 159841535
Bug: 175706433
Merged-In: Ib0fb8f83732d0b3f56bb11a97c84fdc7727c1026
Change-Id: Ic97a65fba95a67e3e16cedd0eb4f3f209f645421
|
|
|
|
|
|
|
|
| |
Test: atest
atest CtsMediaTestCases:android.media.cts.MediaDrmClearkeyTest#testGetPlaybackComponent
Bug: 182525516
Change-Id: I106a727f2f29bf5472484402b2801a630b0d6301
|
|
|
|
|
|
| |
* Also remove unneeded radio 1.2 entry while at it
Change-Id: I1db79176ac103cb7fc8db0fa4b4cfc699e38ad49
|
|
|
|
|
|
| |
* F linker : CANNOT LINK EXECUTABLE "/vendor/bin/hw/android.hardware.drm@1.2-service.widevine": library "android.hardware.drm@1.2.so" not found: needed by main executable
Change-Id: Ibfab6bd1ddbbe9724c194d9efc485f563e3748e6
|
|
|
|
| |
Change-Id: Iedd67b40869c919ce5138e2c1993d76b683ca430
|
|
|
|
|
|
|
|
|
|
|
| |
For some reason, any prebuilt ones from pre-R ROMs no longer work on R
and cause the following error:
E ANDR-PERF: Unable to link to gPerfHal death notifications!
What's worse, the minimal CPU frequency of both clusters will be locked
at 1036MHz on msm8996.
Change-Id: I1dc96e4a51c4c81dd847c59a58ec670d89054f64
|
|
|
|
| |
Change-Id: I8f95de6be002767d7f281cfea38147ac29da9d66
|
|
|
|
|
|
| |
It no longer exists, the service is fully binderized
Change-Id: I06ee402b50216948e0e72a2797c2edfda1c4886a
|
|
|
|
| |
Change-Id: Ic6302844ac58c16713b43b6871a705b9b4749a96
|
|
|
|
|
|
|
|
|
|
| |
Legacy service name, use android.hardware.audio.service instead
Bug: 153579444
Test: presubmit
Signed-off-by: Roman Kiryanov <rkir@google.com>
Merged-In: I4c05accb86dd0c9cd1b3fef3d84e0d54b2afc6a1
Change-Id: I6b55b4b1db2577f4176c99dca7021cfe78e13307
|
|
|
|
|
|
| |
Bug: 73829928
Test: boot, check directories, no errors during boot
Change-Id: Ia1272b2bcc5006fa75a50631861fbaccdeed7bee
|
|
|
|
| |
Change-Id: I38329f6d4ebb7b1a0b0f01e40918fdb73ccbcba9
|
|
|
|
|
|
|
| |
-- Include ims_ext_common permission xml.
Change-Id: Ide3ecae57cc1909180c8d8f323aa31620e900888
CRs-Fixed: 2373721
|
|
|
|
|
|
|
|
|
|
| |
classpath"
No longer needed with Q ims.apk
This reverts commit 8187364cb4a34ca889915160180665e350981477.
Change-Id: I4e2429e78204ed5a65cc1a2659f0065b78e30865
|
|
|
|
| |
Change-Id: I107aa37abdcbbe0581d0d9047d0e27a2eabafd9e
|
|
|
|
|
|
| |
Add telephony-qti-utils libarary to product packages
Change-Id: Ie8651ebadc246c21bd5eb69ef060fe32d8f5f7c8
|
|
|
|
| |
Change-Id: I4e248bb6de482d503e672d284189b24cafac8d20
|
|
|
|
|
|
| |
Bug: 118823052
Test: make
Change-Id: I579d09480c7a482543ea616dd5c493d825bb98b1
|
|
|
|
| |
Change-Id: I4bdea354e54d34d0dfe9b811e228fc6f8762d2ed
|
|
|
|
|
|
| |
BUG: 163800715
Signed-off-by: Weilun Du <wdu@google.com>
Change-Id: Ia0834f5215ff8c3b13effa591bd2f84d93419a06
|
|
|
|
|
|
| |
Bug: 148617260
Test: Device boots up and connects to wifi networks.
Change-Id: Iec27a6d947a232a42451ef095dc73d1a52327db5
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Runtime Resource Overlays (RROs) can no longer change the value of
resources in manifest when read during PackagerParser.
This change uses component-override to enable the service by default.
Remove usages of profile_supported_* from overlays as they no
longer configure the enable state of Bluetooth components.
Bug: 135048762
Test: adb shell pm query-services \
com.android.bluetooth/.avrcpcontroller.AvrcpControllerService
adb shell pm query-services \
com.android.bluetooth/.hfpclient.HeadsetClientService
adb shell pm query-services \
com.android.bluetooth/.sap.SapService
Change-Id: I284d254a921b14d1533745611a083f4b5a27d9dc
|
|
|
|
|
|
| |
* v30 one doesn't have `strdup8to16` symbol in it.
Change-Id: Id2b4bb3017bc24c817dbe4b03834960aa1a4b444
|
|
|
|
| |
Change-Id: I980a9e66cc0f99b5292210428c6ae9737e5b3969
|