将我创建的多个应用程序捆绑到一个 .apk 文件中
是否可以将应用程序和应用程序设置捆绑到一个 apk 文件中?这样我就可以从“应用程序设置”更改应用程序设置
谢谢
Is it possible to bundle an app and the app settings into one apk file? so I can change the app settings from the "App settings"
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果这两个应用没有重叠,则只需合并AndroidManifest.xml、res和src文件夹即可。
使用以下意图过滤器保留两个活动:
将使您在启动器中有两个启动入口。
事实上,它是一个应用程序和一个 apk。但由于有两个可启动的 Activity,用户会感觉他们用一个 apk 安装了两个应用程序。
在另一个 问题
If these two apps have no overlaps, you only need to merge the AndroidManifest.xml, res and src folders.
Keep two activities with the following intent filter:
will make you have two launch entrances in Launcher.
In fact, it's one app with one apk. But since have two launchable activities, user will feel like they have installed two apps with one apk.
Found answer on another question