Created
October 6, 2017 03:16
-
-
Save matsuyoro/79ca1f1236e24c14546b05cf52a9916f to your computer and use it in GitHub Desktop.
Unity2017にAdmobメディエーションでAppLovinSDKをいれたら、UnityEditor上でエラーがでる ref: http://qiita.com/matsuyoro/items/2f5a07cf23980dda0c4c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Exception: JNI: Init'd AndroidJavaClass with null ptr! | |
UnityEngine.AndroidJavaClass..ctor (System.IntPtr jclass) (at /Users/builduser/buildslave/unity/build/Runtime/Export/AndroidJavaImpl.cs:622) | |
UnityEngine.AndroidJavaObject.get_JavaLangClass () (at /Users/builduser/buildslave/unity/build/Runtime/Export/AndroidJavaImpl.cs:600) | |
UnityEngine.AndroidJavaObject.FindClass (System.String name) (at /Users/builduser/buildslave/unity/build/Runtime/Export/AndroidJavaImpl.cs:591) | |
UnityEngine.AndroidJavaClass._AndroidJavaClass (System.String className) (at /Users/builduser/buildslave/unity/build/Runtime/Export/AndroidJavaImpl.cs:611) | |
UnityEngine.AndroidJavaClass..ctor (System.String className) (at /Users/builduser/buildslave/unity/build/artifacts/generated/common/runtime/AndroidJavaBindings.gen.cs:92) | |
AppLovin.getDefaultPlugin () (at Assets/Plugins/AppLovin/AppLovin.cs:106) | |
AppLovin.SetSdkKey (System.String sdkKey) (at Assets/Plugins/AppLovin/AppLovin.cs:560) | |
GameSceneSingleton.RequestRewardBasedVideo () (at Assets/Scripts/Common/GameSceneSingleton.cs:232) | |
GameManager.Awake () (at Assets/Scripts/Common/GameManager.cs:371) | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
AppLovin.SetSdkKey(Constant.SDK_APPLOVIN_API_KEY); | |
AppLovin.InitializeSdk(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#if UNITY_EDITOR | |
// Do not process with unityEditor | |
#elif UNITY_ANDROID | |
// AppLovin | |
AppLovin.SetSdkKey(Constant.SDK_APPLOVIN_API_KEY); | |
AppLovin.InitializeSdk(); | |
#elif UNITY_IOS | |
#endif | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment