如何在android studio中更改包名称

问题描述 投票:0回答:1

我正在尝试将新版本上传到 google play,但出现错误

Your APK or Android App Bundle needs to have the package name com.app.myapp. Remove conflicts from the manifest before uploading. The following content provider authorities are in use by other developers: $(applicationId).provider.
现在我正在尝试尽快将
AndroidManifest.xml
中的包名称从 package="com.example.myapp" 更改为
package="com.app.myapp"
当我更改它时,清单文件中的活动标记中会显示错误

Class referenced in the manifest, com.app.myapp.MainActivity, was not found in the project or the libraries Unresolved class 'MainActivity' 
,它建议我创建 MainActivity 类。

如何更改应用程序的包名?谢谢。

android package
1个回答
0
投票

嗨,我想知道你是否知道这个问题的解决方案,因为我也面临着同样的问题

© www.soinside.com 2019 - 2024. All rights reserved.