41 lines
1.7 KiB
XML
41 lines
1.7 KiB
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<manifest
|
||
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
xmlns:tools="http://schemas.android.com/tools">
|
||
|
|
|
||
|
|
<queries>
|
||
|
|
<intent>
|
||
|
|
<action android:name="com.onestore.ipc.iap.IapService.ACTION" />
|
||
|
|
</intent>
|
||
|
|
<intent>
|
||
|
|
<action android:name="android.intent.action.VIEW" />
|
||
|
|
<data android:scheme="onestore" />
|
||
|
|
</intent>
|
||
|
|
</queries>
|
||
|
|
|
||
|
|
<application>
|
||
|
|
<!--Used when Application Entry is set to Activity, otherwise remove this activity block-->
|
||
|
|
<activity android:name="com.unity3d.player.UnityPlayerActivity"
|
||
|
|
android:theme="@style/UnityThemeSelector">
|
||
|
|
<intent-filter>
|
||
|
|
<action android:name="android.intent.action.MAIN" />
|
||
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
||
|
|
</intent-filter>
|
||
|
|
<meta-data android:name="unityplayer.UnityActivity" android:value="true" />
|
||
|
|
</activity>
|
||
|
|
<!--Used when Application Entry is set to GameActivity, otherwise remove this activity block-->
|
||
|
|
<activity android:name="com.unity3d.player.UnityPlayerGameActivity"
|
||
|
|
android:theme="@style/BaseUnityGameActivityTheme">
|
||
|
|
<intent-filter>
|
||
|
|
<action android:name="android.intent.action.MAIN" />
|
||
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
||
|
|
</intent-filter>
|
||
|
|
<meta-data android:name="unityplayer.UnityActivity" android:value="true" />
|
||
|
|
<meta-data android:name="android.app.lib_name" android:value="game" />
|
||
|
|
</activity>
|
||
|
|
|
||
|
|
<!-- 테스트 : 실제 빌드에는 제거 되어야 함 -->
|
||
|
|
<!-- <meta-data android:name="onestore:dev_option" android:value="onestore_00" /> -->
|
||
|
|
</application>
|
||
|
|
</manifest>
|