Bipin
Bipin

Reputation: 352

Can we replace application with lower version from higher version

Two Android apk with API One with version name 1.0 and the other with version name 1.1. Can i install 1.0 version on 1.1?

Upvotes: 0

Views: 420

Answers (3)

Darshan Rivka Whittle
Darshan Rivka Whittle

Reputation: 34051

The version name is irrelevant. Just set the android:versionCode for your version named 1.0 to be anything higher than what you used for the version named 1.1.

Upvotes: 0

Swayam
Swayam

Reputation: 16364

No, this is not possible.

The higher version needs to be uninstalled before installing any lower version.

Upvotes: 0

RPB
RPB

Reputation: 16340

To achieve this,

You have to uninstall higher version first and then install older version.

Upvotes: 1

Related Questions