Bryan C
Bryan C

Reputation: 153

New app replaces old - With different package name

For example, I have two apps:

com.example.free

com.example.paid

Can I specify somewhere (AndroidManifest?) that when com.example.paid is installed, com.example.free is removed, or replaced by the paid version?

Thanks.

Upvotes: 1

Views: 65

Answers (2)

prijupaul
prijupaul

Reputation: 2086

As @goto10 says, it is not possible. They are two different apps. I suggest you to try in app purchase. In this manner you will have just one app.

you can find more about this at In app billing

Upvotes: 1

goto10
goto10

Reputation: 4370

No, you cannot. A package name uniquely identifies an app.

Upvotes: 0

Related Questions