#問問 例外:JNI:Init'd AndroidJavaClass與null ptr! UnityEngine.AndroidJavaClass..ctor(IntPtr jclass)(在C:/BuildAgent/work/d63dfc6385190b60/Runtime/Export/AndroidJavaImpl.cs:539)UnityEngine.AndroidJavaObject.get_JavaLangClass()(在C:/ BuildAgent/work/d63dfc6385190b60/Runtime /Export/AndroidJavaImpl.cs:517)UnityEngine.AndroidJavaObject.FindClass(System.String name)(在C:/BuildAgent/work/d63dfc6385190b60/Runtime/Export/AndroidJavaImpl.cs:508)UnityEngine.AndroidJavaClass._AndroidJavaClass(System.String (C:/BuildAgent/work/d63dfc6385190b60/Runtime/Export/AndroidJavaImpl.cs:528)UnityEngine.AndroidJavaClass..ctor(System.String className)(在C:/ BuildAgent/work/d63dfc6385190b60/artifacts/EditorGenerated/StartApp.StartAppWrapper.getWrapper()(在Assets/StartAppWrapper.cs中:112)StartApp.StartAppWrapper.loadAd(AdEventListener監聽器)(在Assets/StartAppWrapper.cs中:123)StartApp.StartAppWrapper.loadAd()(在資產/ StartAppWrapper.cs:128)StartAppBackPlugin.Start()(在資產/ StartAppBackPlugin.cs:9)我在Unity中得到這個錯誤
-2
A
回答
1
確保您只在#if UNITY_ANDROID
或Android設備中運行任何Android Java或JNI助手類,而不是在Unity編輯器中運行。
您可以使用預處理器來阻止運行Android Java助手API在編輯器或任何其他平臺中運行。
#if UNITY_ANDROID
//your Android class code here AndroidJavaClass
#endif
相關問題
- 1. 我在android中得到這個錯誤
- 2. 我得到這個錯誤
- 3. 我得到這個錯誤,而R中
- 4. 爲什麼我得到這個錯誤?
- 5. 爲什麼我得到這個錯誤
- 6. 我得到這個錯誤java.lang.NumberFormatException:多點
- 7. 爲什麼我得到這個錯誤?
- 8. 爲什麼我得到這個錯誤?
- 9. 爲什麼我得到這個錯誤?
- 10. 爲什麼我得到這個錯誤?
- 11. 我得到這個錯誤「No module:ngResource」
- 12. 我得到這個錯誤:com.android.internal.os.ZygoteInit $ MethodAndArgsCaller
- 13. 爲什麼我得到這個錯誤?
- 14. 爲什麼我得到這個錯誤?
- 15. 我得到這個錯誤(1064)
- 16. 我得到這個「SyntaxError:Unexpected token>」錯誤
- 17. 爲什麼我得到這個錯誤?
- 18. 爲什麼我得到這個錯誤?
- 19. 爲什麼我得到這個錯誤
- 20. 爲什麼我得到這個錯誤?
- 21. 我得到這個錯誤vlog-13069
- 22. 爲什麼我得到這個錯誤?
- 23. 爲什麼我得到這個錯誤
- 24. 當我寫這行到flex代碼,我得到這個錯誤:
- 25. 我在做什麼錯誤在Java中得到這個IllegalArgumentException?
- 26. 在我的phpmyadmin當我使用這個程序我得到這個SQL錯誤
- 27. 我在Eclipse中得到這3個錯誤(android hello world app)
- 28. 我在LocationManager中得到了這個錯誤
- 29. 爲什麼我得到這個錯誤?在Xcode中
- 30. 爲什麼我在mySQL中得到這個語法錯誤?
Android插件正試圖在編輯器中執行。要麼停止發生或刪除插件 –
請澄清您的具體問題或添加額外的細節,以確切地突出你所需要的。正如目前所寫,很難確切地說出你在問什麼。請參閱[如何提問](http://stackoverflow.com/help/how-to-ask)頁面以獲得澄清此問題的幫助。 –