1

私の Android プロジェクトは Maven を使用して依存関係を制御しており、Jake Wharton の ActionBarSherlock maps-plugin を使用しようとしています。

Jake の Maven リポジトリを pom.xml ファイルに追加し、IntelliJ IDEA 更新ボタンを使用してローカル リポジトリを更新しようとしましたが、常にエラーが返されます。

手伝って頂けますか?

Jake Wharton の github からのコンテンツ:

    <!-- If you are a Maven user you can easily include the library by specifying it as a dependency: -->

    <dependency>
       <groupId>com.actionbarsherlock</groupId>
       <artifactId>plugin-maps</artifactId>
      <version><!-- LATEST PLUGIN VERSION --></version>
    </dependency>

    <!-- Since the Google Maps APIs are not available in central this plugin is deployed to Jake Wharton's personal repository. You can add it with the following: -->

    <repository>
      <id>com.jakewharton</id>
      <url>http://r.jakewharton.com/maven/release</url>
    </repository>
4

1 に答える 1

0

クラス コードをパッケージにコピーし、次の行を AndroidManifest.xml に追加しました。

    <uses-library android:name="com.google.android.maps" />
于 2012-12-21T15:21:57.700 に答える