私は Android アプリ (X と呼びましょう) を持っています。2 つ目のアプリ X2 を作成したいのですが、他のアプリに基づいています。そのため、マニフェスト アプリケーション名のプロパティを X2 に変更し、パッケージ名も変更しましたが、X2 をインストールすると、アプリ X が消去されます。
1 つのデバイスに 2 つのアプリを個別にインストールするには、どのプロパティを変更する必要がありますか? 私は日食に取り組んでいます。
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.company.app1"
android:versionCode="1"
android:versionName="1.0" >
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name1"
android:theme="@style/AppTheme" >
変更後。
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.company.app2"
android:versionCode="1"
android:versionName="1.0" >
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name2"
android:theme="@style/AppTheme" >