安卓源码libvulkan“ depends on undefined module “libgpud_sys“报错解决

目录


一、报错点

当修改部分系统api时,会提示更新

c 复制代码
frameworks/base/api/system-current.txt

或者

c 复制代码
frameworks/base/api/current.txt 

而安卓源码一般会有如下提示

c 复制代码
******************************
You have tried to change the API from what has been previously approved.

To make these errors go away, you have two choices:
1) You can add "@hide" javadoc comments to the methods, etc. listed in the
errors above.

2) You can update current.txt by executing the following command:
make system-api-stubs-docs-update-current-api

To submit the revised current.txt to the main Android repository,
you will need approval.
******************************

一般来说我们使用选项2即可解决问题,更新api。

而这也是本文所遇到的问题,当使用

c 复制代码
make system-api-stubs-docs-update-current-api

时报如下错误:

c 复制代码
frameworks/native/vulkan/libvulkan/Android.bp:31:1: "libvulkan" depends on undefined module "libgpud_sys"

二、解决办法

中间使用了各种方法没有解决,这里直接给出解决方案,非常简单。

首先使用

c 复制代码
make clean

清除掉out目录下编译产出的所有文件

然后整编即可,整编过程会更新current.txt 文件,但如果后续有改动,就会发生如上报错,重复上述步骤即可。

So easy !!!

相关推荐
有位神秘人3 分钟前
Android的Compose系列之文本TextView
android
Engineer-Jsp4 分钟前
Flutter 开发 Android 原生开发神器 flutter_api_stub
android·flutter
惟恋惜26 分钟前
Jetpack Compose 多页面架构实战:从 Splash 到底部导航,每个 Tab 拥有独立 ViewModel
android·ui·架构·android jetpack
ab_dg_dp1 小时前
Android bugreportz 源码分析
android
木风小助理1 小时前
如何破解 MySQL 死锁?核心原则与实操方法
android
小吴学不废Java1 小时前
MySQL慢查询日志分析
android·adb
TechMix2 小时前
【用法总结】抓取main_log、events_log、kernel_log日志的方法
android
峥嵘life2 小时前
Android16 EDLA 认证测试CTS过程介绍
android·学习
唔662 小时前
下面给出 **Fuel 2.x** 的 **“开箱即用”** 封装类,**同时支持**:
android