android 的 .java 文件,用于在 android 中启动新 apk 文件的安装
有人可以帮助我完成 android 中的安装步骤吗?具体来说,我想知道 android 的 .java 文件,它启动新 apk 文件的安装,包括解析清单文件并验证它们。
Can someone help me with the installation steps in android.Specifically I want to know the .java files of android that initiates the installation of new apk files that includes parsing of manifest files and validating them.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Android 应用程序中,首先从您在清单文件中签名的主 Activity 启动。因此您可以认为包含您的主 Activity 的 java 文件。
onCreate() 是 Android 应用程序启动时自动触发的第一个方法
In android application first starts from the main Activity that you signed in your manifest file.So you can think of the java file that includes your main Activity.
onCreate() is the first method that fired automatically when android application starts