はい、2 つのマニフェスト ファイルを作成します。Maven を使用してコンパイルします (これには Ant も使用できると思います) 2 つのプロファイルを作成します。プロファイルに応じてマニフェストを設定します。
すなわち。
pom.xml
<profile>
<id>Target1</id>
<properties>
<customerManifest>Target1Manifest.xml</customerManifest>
</properties>
</profile>
<profile>
<id>Target2</id>
<properties>
<customerManifest>Target2Manifest.xml</customerManifest>
</properties>
</profile>
<plugin>
<groupId>com.jayway.maven.plugins.android.generation2</groupId>
<artifactId>android-maven-plugin</artifactId>
<version>3.2.0</version>
<configuration>
<androidManifestFile>${customerManifest}</androidManifestFile>
<sdk>
<platform>15</platform>
</sdk>
</plugin>
これにより、マニフェストが切り替えられるため、個別のエントリ ポイントを設定できます。