Issue
I don't use Android Studio nor Eclipse, but I just got into Android development.
I wrote an app, named project A here. It works just fine!
I wanted to write a similar app, so I copied the whole A project and made the B. I changed the name labels in the manifest, I changed the project name in build.xml, but when I install B it actually overwrites A!
What am I missing? How to install A and B, without removing one another?
Solution
The package name/application id (in the manifest manifest
tag package=...
) are still the same probably.
Example:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.bimjay.timerflow"
android:versionCode="100"
...
Answered By - Mattias Isegran Bergander
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.