2017-09-04 7 views
0

でArcoreのを実行することにより、クラッシュが、私は次のようなエラーになっています:画素に例のアプリを実行しようとしているピクセル

java.lang.UnsatisfiedLinkError: No implementation found for int com.google.atap.tango.TangoJNINative.Initialize(android.content.Context) (tried Java_com_google_atap_tango_TangoJNINative_Initialize and Java_com_google_atap_tango_TangoJNINative_Initialize__Landroid_content_Context_2) 
    at com.google.atap.tango.TangoJNINative.Initialize(Native Method) 
    at com.google.atap.tangoservice.Tango.<init>(Tango.java:385) 
    at com.google.ar.core.TangoWrapper.createInstance(TangoWrapper.java:32) 
    at com.google.ar.core.Session.bindTangoService(Session.java:425) 
    at com.google.ar.core.Session.resume(Session.java:153) 
    at com.google.ar.core.examples.java.helloar.HelloArActivity.onResume(HelloArActivity.java:136) 
    at android.app.Instrumentation.callActivityOnResume(Instrumentation.java:1269) 
    at android.app.Activity.performResume(Activity.java:6786) 
    at android.app.ActivityThread.performResumeActivity(ActivityThread.java:3407) 
    at android.app.ActivityThread.handleResumeActivity(ActivityThread.java:3470) 
    at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2733) 
    at android.app.ActivityThread.-wrap12(ActivityThread.java) 
    at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1478) 
    at android.os.Handler.dispatchMessage(Handler.java:102) 
    at android.os.Looper.loop(Looper.java:154) 
    at android.app.ActivityThread.main(ActivityThread.java:6121) 
    at java.lang.reflect.Method.invoke(Native Method) 
    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:889) 
    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:779) 

任意のアイデアなぜそれが機能していませんの?

+0

携帯電話がサポートされているリストにあることを確認してください –

答えて

5

docs:
ARCoreサービスをダウンロードしてインストールする必要があります。

You must use a supported, physical device. ARCore does not support virtual devices such as the Android Emulator. To prepare your device:

Enable developer options
Enable USB debugging
Download the ARCore Service , then install it with the following adb command:
adb install -r -d arcore-preview.apk

参照:https://developers.google.com/ar/develop/java/getting-started私はあなたがタンゴコアをインストールする必要があると思うあなたのデバイス

+0

ああ!次の時間に私はドキュメントを読むことを忘れないで....ありがとう – Alfaplus

関連する問題