質問

私はこのチュートリアル リンク 僕達の過去のこちらの地図を統合しました。私の出力のようにこのエラー

java.lang.IllegalAccessError:クラスの参考に事前検証のクラスを解決 予期せぬ実施

enter image description here

Manifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.heremap"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="11"
        android:targetSdkVersion="16" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.CHANGE_NETWORK_STATE"/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >

<uses-library android:name="com.here.android" android:required="true" />
        <activity
            android:name="com.example.heremap.MainActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>

        </activity>
        <meta-data android:name="com.here.android.maps.appid"
android:value="XXXXXX"/>
<meta-data android:name="com.here.android.maps.apptoken"
android:value="XXXXXX"/>
    </application>

</manifest>

MainActivity.java

    package com.example.heremap;

import android.app.Activity;
import android.os.Bundle;

import com.here.android.mapping.FragmentInitListener;
import com.here.android.mapping.InitError;
import com.here.android.mapping.Map;
import com.here.android.mapping.MapAnimation;
import com.here.android.mapping.MapFactory;
import com.here.android.mapping.MapFragment;

public class MainActivity extends Activity {

    // map embedded in the map fragment
    private Map map = null;

    // map fragment embedded in this activity
    private MapFragment mapFragment = null;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        // Search for the map fragment to finish setup by calling init().
        mapFragment = (MapFragment) getFragmentManager().findFragmentById(
                R.id.mapfragment);
        mapFragment.init(new FragmentInitListener() {
            @Override
            public void onFragmentInitializationCompleted(InitError error) {
                if (error == InitError.NONE) {
                    // retrieve a reference of the map from the map fragment
                    map = mapFragment.getMap();
                    // Set the map center coordinate to the Vancouver region
                    map.setCenter(MapFactory.createGeoCoordinate(49.196261,
                            -123.004773, 0.0), MapAnimation.NONE);
                    // Set the map zoom level to the average between min and max
                    // (with no animation)
                    map.setZoomLevel((map.getMaxZoomLevel() +
                            map.getMinZoomLevel()) / 2);
                } else {
                    System.out.println("ERROR: Cannot initialize Map Fragment");
                }
            }
        });
    }
}

activity_main.xml

<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <TextView
        android:id="@+id/title"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/hello_world"
        tools:context=".MainActivity" />
<fragment
    class="com.here.android.mapping.MapFragment"
    android:id="@+id/mapfragment"
    android:layout_width="match_parent"
    android:layout_height="match_parent"/>
</LinearLayout>

エラーログ:

 02-26 06:06:47.192: E/AndroidRuntime(808): FATAL EXCEPTION: main 02-26
 06:06:47.192: E/AndroidRuntime(808): java.lang.IllegalAccessError:
 Class ref in pre-verified class resolved to unexpected implementation
 02-26 06:06:47.192: E/AndroidRuntime(808):     at
 com.example.heremap.MainActivity.onCreate(MainActivity.java:27) 02-26
 06:06:47.192: E/AndroidRuntime(808):   at
 android.app.Activity.performCreate(Activity.java:5180) 02-26
 06:06:47.192: E/AndroidRuntime(808):   at
 android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1094)
 02-26 06:06:47.192: E/AndroidRuntime(808):     at
 android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2031)
 02-26 06:06:47.192: E/AndroidRuntime(808):     at
 android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2092)
 02-26 06:06:47.192: E/AndroidRuntime(808):     at
 android.app.ActivityThread.access$600(ActivityThread.java:133) 02-26
 06:06:47.192: E/AndroidRuntime(808):   at
 android.app.ActivityThread$H.handleMessage(ActivityThread.java:1203)
 02-26 06:06:47.192: E/AndroidRuntime(808):     at
 android.os.Handler.dispatchMessage(Handler.java:99) 02-26
 06:06:47.192: E/AndroidRuntime(808):   at
 android.os.Looper.loop(Looper.java:137) 02-26 06:06:47.192:
 E/AndroidRuntime(808):     at
 android.app.ActivityThread.main(ActivityThread.java:4807) 02-26
 06:06:47.192: E/AndroidRuntime(808):   at
 java.lang.reflect.Method.invokeNative(Native Method) 02-26
 06:06:47.192: E/AndroidRuntime(808):   at
 java.lang.reflect.Method.invoke(Method.java:511) 02-26 06:06:47.192:
 E/AndroidRuntime(808):     at
 com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:792)
 02-26 06:06:47.192: E/AndroidRuntime(808):     at
 com.android.internal.os.ZygoteInit.main(ZygoteInit.java:559) 02-26
 06:06:47.192: E/AndroidRuntime(808):   at
 dalvik.system.NativeStart.main(Native Method)

次に、jarから 注文および輸出 フォルダに新たなエラーログの更新結果

02-26 06:34:09.810:E/Trace(1266):エラーの開traceファイル:な ファイルまたはディレクトリ(2) 02-26 06:34:09.859:D/BYD_Flex(1266):getValue() 名=@NOKIAFLEX@packageNeedData02-26 06:34:09.859:D/BYD_Flex(1266):なファイルvariant/cfg/flex.xml 02-26 06:34:09.870:D/BYD_Flex(1266):getValue()readFlexFromXml= TypedValue{t=0x0/d=0x0}02-26 06:34:09.870:D/BYD_Flex(1266):getValue()名前=@NOKIAFLEX@setDataUsageReminder02-26 06:34:09.870:D/BYD_Flex(1266):なファイルvariant/cfg/flex.xml 02-26 06:34:09.870:D/BYD_Flex(1266):getValue()readFlexFromXml= TypedValue{t=0x0/d=0x0}02-26 06:34:10.249:I/振付家(1266):スキップされ44フレーム!るださるようお願い致しますいく、そ 主なねじになります。02-26 06:34:10.249:W/TextureView(1266):A TextureViewや サブクラスでのみ使用できるハードウェア高速有効になります。02-26 06:34:10.459:I/振付家(1266):スキップされ53フレーム!の ださるようお願い致しますいく、その主なねじになります。02-26 06:34:11.679:I/振付家(1266):スキップされ314フレーム!の ださるようお願い致しますいく、その主なねじになります。02-26 06:34:30.191:I/振付家(1266):スキップされ38フレーム!の ださるようお願い致しますいく、その主なねじになります。02-26 06:34:32.183:I/振付家(1266):スキップされ34フレーム!の ださるようお願い致しますいく、その主なねじになります。02-26 06:35:00.068:I/振付家(1266):スキップ35フレーム!の ださるようお願い致しますいく、その主なねじになります。02-26 06:35:11.672:I/振付家(1266):スキップされ56フレーム!の ださるようお願い致しますいく、その主なねじになります。

役に立ちましたか?

解決

HI Friends Atlastエラーを見つけると、エラーがエミュレータに入っている場合は、このconfig を使用してエミュレータを作成する必要があります。画像の説明ここで

その後ライブラリ

で2つのjarを追加した後

  • com.here.android.sdk.jar
  • com.google.android.maps.sdk.jar

画像の入力ここで

出力この

Enter Image説明

他のヒント

サードパーティライブラリ基準が2回追加されたため、このエラーが発生しています。プロジェクトのビルドパスにアプリケーションパスを追加しました。そのため、ライブラリリファレンスがプロジェクトに自動的に追加されました。[プロパティ] - > [Android]の下の[プロジェクトのJava Build Path]の下の[順序とエクスポート]タブから[Export and Export]タブから[プロパティとエクスポート]タブから[Exclipse.But]の[プロジェクト]タブから[Experse.But]の[プロパティ]タブを削除します。"タブ。[OK]、[プロジェクトのクリーン]、[今すぐビルド]をクリックします。それは機能します。

エラー

       error opening trace file: No such file or directory (2)
.

Android仮想デバイスの再作成、SDカードサイズの値を入力することを確認します(200 MIBを使用しました)。

画像の入力ここで

あなたのminSdkVersion is 8しかしhttp://developer.nokia.com/resources/library/nokia-x/here-maps/quick-start/creating-a-simple-Application-using-the-HTML "REL=" NOFOLLOW NOREFERRER ">公式チュートリアル minSdkVersion to 11を設定するように言われ、android-2.3 api level 10でそのマップにアクセスしたい場合はサポートライブラリ

一般に、マップ制御の初期化が失敗したときにブラックコントロールを取得するので、初期化完了関数を確認し、エラーコードが何が悪いのかを示すかどうかを確認できます。P>

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top