반응형
반응형
<?xml version="1.0" encoding="utf-8"?>
<!-- This file was automatically generated by the Google Play Games plugin for Unity
Do not edit. -->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="cohttp://m.google.example.games.mainlibproj"
android:versionCode="1"
android:versionName="1.0" >
<application>
<!-- The space in these forces it to be interpreted as a string vs. int -->
<meta-data android:name="cohttp://m.google.android.gms.games.APP_ID"
android:value="\u003APP_ID" />
<!-- Keep track of which plugin is being used -->
<meta-data android:name="cohttp://m.google.android.gms.games.unityVersion"
android:value="\u0032.0.0" />
<activity android:name="cohttp://m.google.games.bridge.NativeBridgeActivity"
android:theme="@android:style/Theme.Translucent.NoTitleBar.Fullscreen" />
</application>
</manifest>
APP_ID << 이 부분 앞에 개행 문자에 해당하는 \u003 를 붙여줘야지 구글 플레이와 연동이 됩니다.
이것 때문에 시간을 좀 썼네요.
반응형