43 lines
1.5 KiB
XML
43 lines
1.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.onestore.iap.sdk.unity"
|
|
android:versionCode="1"
|
|
android:versionName="1.0" >
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
<!--
|
|
if your binary use ONE store's In-app SDK,
|
|
Please make sure to declare the following query on Androidmanifest.xml.
|
|
Refer to the notice for more information.
|
|
https://dev.onestore.net/devpoc/support/news/noticeView.omp?noticeId=32968
|
|
-->
|
|
<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
|
|
android:allowBackup="true"
|
|
android:supportsRtl="true" >
|
|
|
|
<activity android:name="com.unity3d.player.UnityPlayerActivity" android:exported="true">
|
|
<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="unityplayer.ForwardNativeEventsToDalvik" android:value="true" />
|
|
</activity>
|
|
|
|
<!-- 테스트 : 실제 빌드에는 제거 되어야 함 -->
|
|
<!-- <meta-data android:name="onestore:dev_option" android:value="onestore_00" /> -->
|
|
</application>
|
|
|
|
</manifest>
|