将我创建的多个应用程序捆绑到一个 .apk 文件中

发布于 2024-11-18 14:08:19 字数 71 浏览 2 评论 0原文

是否可以将应用程序和应用程序设置捆绑到一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

满栀 2024-11-25 14:08:19

如果这两个应用没有重叠,则只需合并AndroidManifest.xml、res和src文件夹即可。

使用以下意图过滤器保留两个活动:

<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>

将使您在启动器中有两个启动入口。

事实上,它是一个应用程序和一个 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:

<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文