包名更改后,项目仍然使用旧包名来启动应用程序

After package name change the project still uses old package name for launching the application

我最近更改了 android 应用程序的包名。

改项目包名正确

used这个包名称更改的方法。

我确保包名更改是清单中最近的更改。

但是在启动应用程序时它使用旧包名称,除此之外一切正常。

我厌倦了重新启动 android 工作室和我的 machine.Nothing 作品。

这是我收到的错误信息

Starting: Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] cmp=com.test.old/com1.test1.new.LoginActivity } Error type 3 Error: Activity class {com.test.old/com1.test1.new.LoginActivity} does not exist.

我在 build.gradle 它解决了我的问题

Build.gradle

 defaultConfig {
        applicationId "com1.test1.new"
        minSdkVersion 14
        targetSdkVersion 22
    }