问题描述
在使用Java创建一个Android应用程序,你把你的类到包,如 com.example.appName
When creating an Android application using Java, you place your classes into packages such as com.example.appName
不过,在Android的XML清单文件,也没有指定包。
However, in the Android XML manifest file, you also specify the package there.
这是我的理解是,谷歌Play商店,其中Android应用上传,使用包名称作为您的应用程序的唯一标识符。
It is my understanding that the Google Play Store, where Android apps are uploaded, uses the package name as a unique identifier for your app.
那么,哪个软件包名称实际上标识您的应用程序/ APK文件?并且可以在code中的包名是清单中的包名不同?
So, which package name actually identifies your app/APK file? And can the package names in your code be different to the package name in the manifest?
推荐答案
只有在的AndroidManifest.xml
计数包名和不能改变。你把你的Java类中的包可以是任何东西。
Only the package name in AndroidManifest.xml
counts and must not change. The package you put your Java classes in can be anything.
这篇关于Android应用程序包名称的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!