https://github.com/osmdroid/osmdroidから osmdroid リポジトリのクローン を作成しましたが、ビルドできません。私は、リポジトリ内の OpenStreetMapViewer プロジェクトに注目しています。
問題の原因は、ファイアウォールの内側にいるために maven を使用できないことだと思います。私が作成または複製したすべての Android Studio プロジェクトについて、build.gradle を削除して変更し
mavenCentral
、代わりに以下を使用する必要があります。
jcenter {
url "http://jcenter.bintray.com/"
}
このプロジェクトでは、ブロックに次build.gradle
の行を含めます。dependencies
dependencies {
compile 'com.android.support:appcompat-v4:22.2.+'
compile 'org.osmdroid:osmdroid-android:4.3'
compile 'org.osmdroid:osmdroid-third-party:4.3'
}
ただし、ここで jcenter を参照してください: https://bintray.com/bintray/jcenter v4 は表示されず、v7 (android-support-v7-appcompat) のみが表示されます。
依存関係としてv7を試しました:
compile 'com.android.support:appcompat-v7:23.0.1'
compileskdversion
を23 に変更する必要があります。
これを行うと、次のビルド エラーが発生します。
Error:A problem occurred configuring root project 'OpenStreetMapViewer'.
> Could not resolve all dependencies for configuration ':_debugCompile'.
> Could not resolve android.support:compatibility-v4:21.0.3.
Required by:
:OpenStreetMapViewer:unspecified > org.osmdroid:osmdroid-third-party:4.3
> Could not GET 'https://repo1.maven.org/maven2/android/support/compatibility-v4/21.0.3/compatibility-v4-21.0.3.pom'.
> peer not authenticated
> Could not resolve com.google.android.gms:google-play-services:22.0.0.
Required by:
:OpenStreetMapViewer:unspecified > org.osmdroid:osmdroid-third-party:4.3
> Could not GET 'https://repo1.maven.org/maven2/com/google/android/gms/google-play-services/22.0.0/google-play-services-22.0.0.pom'.
> peer not authenticated
したがって、osmdroid には v7 ではなく v4 が本当に必要なようです。
Android SDK Manager で、Extras > Android Support Repository 22 および > Android Support Library 23.0.1 をインストールしました。
私に何ができる?
編集 -------------------------------------------
始めるべきだったと思いますbuild.gradleまたはマニフェストを変更せずにプロジェクトをインポートしようとすると、エラーに関する質問が発生します。この場合、「How to Maven」の指示が機能しないことがポイントです。
Error: Cause: peer not authenticated
Untrusted Server's certificate - Server's certificate not trusted.
Issued to: Common Name plugins.jetgrains.com
Organization: Jetbrains.s.r.o
Locality: Praha 4 - Nusle
Country: CZ
ST: Praha 4 - Nusle
編集 2 ------------------------------------------------ --------------
前に述べたように、ここから osmdroid のクローンを作成しました:
https://github.com/osmdroid/osmdroid
システム環境変数 M2_HOME を、クローンされた osmdroid プロジェクトの場所に設定しました。 .
settings.xml 内:
<localRepository>D:\Users\myusername\AndroidstudioProjects\maven-android-sdk-deployer</localRepository>
ここから maven をダウンロードしました:
http://maven.apache.org/download.cgi
解凍された D:\Program Files\apache-maven-3.3.3\bin、これもpath
システム変数に含めました。
DOS ウィンドウで M2_HOME に移動し、次のコマンドを実行します。
mvn インストール
次のエラーが表示されます。
[INFO] Scanning for projects...
Downloading: https://repo.maven.apache.org/maven2/com/simpligility/maven/progressive-organization-pom/3.0.0/progressive-organization-pom-3.0.0.pom
[ERROR] Some problems were encountered while processing the POMs:
[FATAL] Non-resolvable parent POM for com.simpligility.android.sdk-deployer:maven-android-sdk-deployer:2.8.0: Could not transfer artifact com.simpligility.maven:progressive-organization-pom:pom:3.0.0 from/to central (https://repo.maven.apache.org/maven2):
sun.security.validator.ValidatorException:
PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException:
unable to find valid certification path to requested target and 'parent.relativePath' points at wrong local POM @ line 5, column 11
@
The build could not read 1 project -> [Help 1]
The project com.simpligility.android.sdk-deployer:maven-android-sdk-deployer:2.8.0 (D:\maven-android-sdk-deployer\pom.xml) has 1 error
Non-resolvable parent POM for com.simpligility.android.sdk-deployer:maven-android-sdk-deployer:2.8.0: Could not transfer artifact com.simpligility.maven:progressive-organization-pom:pom:3.0.0 from/to central (https://repo.maven.apache.org/maven2): sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException:
unable to find valid certification path to requested target and 'parent.relativePath' points at wrong local POM @ line 5, column 11 -> [Help 2]
[Help 1] http://cwiki.apache.org/confluence/display/MAVEN/ProjectBuildingException
[Help 2] http://cwiki.apache.org/confluence/display/MAVEN/UnresolvableModelException
編集 3 ------------------------------------------------ -----------
にD:\Program Files\apache-maven-3.3.3\conf/settings.xml
、次を追加しました。
<localRepository>D:\Users\myusername\AndroidstudioProjects\maven-android-sdk-deployer</localRepository>
これは何の違いもありませんでした。これを行うのは正しいですか?
編集 4 ------------------------------------------------ ------------ 証明書のコマンドにパラメータを追加しようとしました:
mvn install -Dmaven.wagon.http.ssl.insecure=true -Dmaven.wagon.http.ssl.allowall=true -Dmaven.wagon.http.ssl.ignore.validity.dates=true
編集 5 ------------------------------------------------ -------------
上記のすべてが必要かもしれませんが、十分ではありません。それが機能したのは、ネットワーク担当者にmavenのファイアウォールに例外を追加させ、Sun Certsを追加することでした。
http://www.mkyong.com/webservices/jax-ws/suncertpathbuilderexception-unable-to-find-valid-certification-path-to-requested-target/
編集 6 ------------------------------------------------ --------------
M2_HOME を Maven の場所に設定します。例:
C:\Program Files (x86)\apache-maven-3.3.9\ システム変数のパスに mvn コマンドの場所を追加します。 :
C:\Program Files (x86)\apache-maven-3.3.9\bin