I developed a new version of the application, and I changed the name of the activity being launched.
Before updating, the manifest had:
<activity android:name=".Splash" android:label="@string/app_name" android:screenOrientation="portrait" android:theme="@android:style/Theme.NoTitleBar" > <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity>
and then I just changed the name and action package, and now this:
<activity android:name=".view.SplashActivity" ... > ... </activity>
what happens is that after users download the application from the market, the launcher does not refresh and still causes the old path to activity.
Do you know how to solve this?
source share