AssetPackExtractionService 类已添加到我的清单中
最近,在编译我的应用程序后,我在合并清单中看到了这样的条目:
<!-- The services will be merged into the manifest of the hosting app. -->
<service
android:name="com.google.android.play.core.assetpacks.AssetPackExtractionService"
android:enabled="false"
android:exported="true" >
</service>
我以前从未注意到这种条目。有谁知道如何将其引入我的应用程序中?
I recently saw an entry like this in my merged manifest after I compiled my app:
<!-- The services will be merged into the manifest of the hosting app. -->
<service
android:name="com.google.android.play.core.assetpacks.AssetPackExtractionService"
android:enabled="false"
android:exported="true" >
</service>
I had never noticed this kind of entry before. Does anyone know how that could have been introduced into my app?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您很可能在 build.gradle 中使用 navigation-dynamic-features-fragment lib
。如果您不打算构建捆绑包,请尝试将其删除。
it's highly likely you're using navigation-dynamic-features-fragment lib in build.gradle
Try to remove it if you're not planning to build bundle.