Приложение Unity с установленным 2 apk на Android - PullRequest
0 голосов
/ 04 мая 2018

Я могу удостовериться, что unity packageName и имя пакета aar полностью совпадают, но почему здесь идет 2 apk, и удаление одного приведет к удалению другого. ниже - мой мейнфест

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.bojoy.xplan">
<uses-permission android:name="android.permission.RECORD_AUDIO" />
    <uses-feature android:name="@string/step_detector" android:required="false"/>
    <uses-feature android:name="@string/step_counter" android:required="false"/>


<application >
    <activity android:name=".MainActivity">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
</application>

enter image description here

...