更改程序包名称时Flutter App不起作用

时间:2019-11-21 07:01:21

标签: flutter dart

当我尝试在kotlin内的MainActivity.kt中更改程序包名称时,该应用程序无法运行

此错误:

e: /Users/dma/development/flutter_share/android/app/src/main/kotlin/com/example/souqmubtath/MainActivity.kt: (8, 7): Redeclaration: MainActivity
e: /Users/dma/development/flutter_share/android/app/src/main/kotlin/dev/dhari/souqmubtath/MainActivity.kt: (8, 7): Redeclaration: MainActivity

FAILURE: Build failed with an exception.                                

* What went wrong:                                                      
Execution failed for task ':app:compileDebugKotlin'.                    
> Compilation error. See log for more details                           

* Try:                                                                  
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.

* Get more help at https://help.gradle.org                              

BUILD FAILED in 27s                                                     
Running Gradle task 'assembleDebug'...                                  
Running Gradle task 'assembleDebug'... Done                        27.6s
Gradle task assembleDebug failed with exit code 1

2 个答案:

答案 0 :(得分:0)

您必须在顶部MainActivity.kt内更新软件包名称。

如果正确,请检查清单文件,包名称是否已更新?

只有两个原因导致您的应用无法正常工作。

答案 1 :(得分:0)

您没有正确更改软件包名称,

只需转到以下路径

android> app> src> main> kotlin

此外,您还会发现一个包含MainActivity文件的软件包,例如 your_package_name

在您的情况下,就像“ com.example.souqmubtath”

因此,要正确更改它,只需转到您的android清单文件,然后从那里找到package =“ com.example.souqmubtath”

只需选择com.example.souqmubtath并对其进行重构。

要重构,请选择程序包名称-> 右键单击在其上-> 重构-> 重命名 。                                            只需选择程序包名称,然后使用重构重命名快捷方式,即 Shift + F6

您可以将其重命名为所需的软件包名称。在您的情况下,它就像“ dev.dhari.souqmubtath”

此外,转到您的 android>应用> build.gradle 文件路径。在文件和 defaultConfig {} 中,找出 applicationId 并将其重构为与包名称相同的名称。