-
Notifications
You must be signed in to change notification settings - Fork 623
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
lib的AndroidManifest ${applicationId} 失效 #23
Comments
感谢反馈,该问题已修复,可以使用1.1.8版本的插件试试。 |
我的gradle插件版本3.0.1 gradle版本4.6 为什么远程依赖com.alibaba:fastjson:1.2.5包加不进去,你的com.facebook.fresco:fresco:1.11.0却可以加进去,是不是一个bug |
刚试了下,在3.0.1上对jar包的合并有bug,晚一些时间我会修复,建议先用3.1.0+的版本。 |
rebuild 整项目会报错,Error:警告: [options] 未与 -source 1.7 一起设置引导类路径
BUILD FAILED in 6s |
@wuyaobang 你把你的问题新开一个issue吧,我到时候找时间一起处理下。 |
fat-aar后lib的AndroidManifest ${applicationId} 会变为lib的包名
example:
1、lib的包名com.kezong.demo.lib
2、AndroidManifest 下
<provider
android:authorities="${applicationId}.InitProvider"
android:exported="false"
android:name=".InitProvider"/>
3、fat-aar后变为
<provider
android:authorities="com.kezong.demo.lib.InitProvider"
android:exported="false"
android:name="com.kezong.demo.lib.InitProvider"/>
4、fat-aar后希望结果:
<provider
android:authorities="${applicationId}.InitProvider"
android:exported="false"
android:name="com.kezong.demo.lib.InitProvider"/>
The text was updated successfully, but these errors were encountered: