体育资讯网

您现在的位置是:首页 > 分类11 > 正文

分类11

android源码编译失败(安卓资源编译失败怎么解决)

hacker2023-01-08 22:30:36分类11111
本文目录一览:1、编译Android5.1源码报错2、

本文目录一览:

编译Android5.1源码报错

再电脑上查看android源码,需要搭建android开发环境:1、jdk下载并安装2、Eclipse编译器下载安装,并安装ADT插件和androidSDK待编译环境搭建完成,导入android工程源码,就可以顺利打开了!

Android源码编译出错,各位帮忙看看是什么原因

android源码编译失败的什么系统编译android源码编译失败的 , 编译的哪个版本的源码, gcc 版本多少;

第一次编译 最好按照 Google 官方提供的 Ubuntu 12.04 64位 gcc 4.4

重新 make clear 一下 , 在编译次试试

看看是不是 Jdk 环境变量配置错android源码编译失败

编译android源码时出现错误 求助

我的2.1 源码里没有 yvup2abgr8888_venum((UINT8*) inptr0,

(UINT8*) inptr2,

(UINT8*) inptr1,

(UINT8*) outptr,

cinfo-output_width);

你的是如个版本的,不是venum,是yvup2abgr8888_venum 是一个函数,Android.mk 应该有问题。1) 含有函数yvup2abgr8888_venum 的c没有编,2)少了引用的库文件

bmlunlock模块的Android.mk 贴上来看看

Android 关于使用 Hilt 之 HiltAndroidApp(Application::class) 编译失败的问题解决

阅读 sunflower 源码 android/sunflower 时发现其使用了 Hilt 组件,其中需要在 MainApplication 上添加 HiltAndroidApp 注解,查看 HiltAndroidApp 源码,发现其提供了两种使用方式:

照葫芦画瓢,使用第一种方式时,一切 OK;使用第二种方式时,无论怎么操作都报如下错误(明明就继承了 Hilt_MainApplication 的,其实是 Hilt_MainApplication 没有正确生成出来):

费了九牛二虎之力才找到解决问题的办法,在 dagger 官网 dagger.dev 有如下描述:

If using Kotlin, then apply the kapt plugin and declare the compiler dependency using kapt instead of annotationProcessor .

Additionally configure kapt to correct error types by setting correctErrorTypes to true.

The Hilt Gradle plugin runs a bytecode transformation to make the APIs easier to use. The plugin was created for a better developer experience in the IDE since the generated class can disrupt code completion for methods on the base class. The examples throughout the docs will assume usage of the plugin. To configure the Hilt Gradle plugin first declare the dependency in your project’s root build.gradle file:

then in the build.gradle of your Android Gradle modules apply the plugin:

Warning: The Hilt Gradle plugin sets annotation processor arguments. If you are using other libraries that require annotation processor arguments, make sure you are adding arguments instead of overriding them. See below for an example.

One benefit of the Gradle plugin is that it makes using @AndroidEntryPoint and @HiltAndroidApp easier because it avoids the need to reference Hilt’s generated classes.

Without the Gradle plugin, the base class must be specified in the annotation and the annotated class must extend the generated class:

With the Gradle plugin the annotated class can extend the base class directly:

注意:官网不知为什么打不开,可以直接在 google 搜索框中搜索该网址,然后查看快照即可(后来通过修改 C:\Windows\System32\drivers\etc\hosts 文件解决了)。

也就是说,使用了 kapt 的情况下,需要额外添加如下设置:

至此,终于成功编译过了。

另外,如果整个工程是 java 工程,即没有使用 koltin 的情况下,自然也不会用到 kapt,也不需要进行上面的配置了。对应的,使用 annotationProcessor 即可。

总的来说,还是推荐使用带 Hilt Gradle Plugin 的方式,毕竟更简单;这里只是纠结了一下为什么按照其注解里的方式无法正常编译成功的原因,最终,问题得以解决。

发表评论

评论列表

  • 只影倾酏(2023-01-09 00:35:39)回复取消回复

    declare the compiler dependency using kapt instead of annotationProcessor . Additionally configure kapt to correct error types by set

  • 只酷节枝(2023-01-09 09:22:00)回复取消回复

    8_venum 是一个函数,Android.mk 应该有问题。1) 含有函数yvup2abgr8888_venum 的c没有编,2)少了引用的库文件bmlunlock模块的Andr