最近、私は私が続いガイドのIntelliJコンパイルエラー
に基づいて新しいのAndroid StudioのIDEに移行し、簡単なGoogleのAndroid Maps APIをv2のプロジェクトを作っていた:
https://developers.google.com/maps/documentation/android/start ( ための基礎)
How can I create an Android application in Android Studio that uses the Google Maps Api v2? (必要なGoogleがアンドロイドスタジオにサービスとサポート ライブラリを再生するインポートするための)
すべてのライブラリが適切にAndroidのメーカーによって検出されたと私はすべての「ライブラリが見つからないエラー」を取得できませんでした。プロジェクトにはエラーが発生していませんでした。それから私はそれをコンパイルしようとしたとき、私はこのエラーを受け取りました。
Gradle:
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':AID-AmritaInfoDesk:compileDebug'.
> Compilation failed; see the compiler error output for details.
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.
Could not execute build using Gradle distribution 'http://services.gradle.org/distributions/gradle-1.6-bin.zip'.
これは
package com.aid.explorer;
import com.google.android.gms.maps.GoogleMap;
import com.google.android.gms.maps.SupportMapFragment;
import com.google.android.gms.maps.model.LatLng;
import com.google.android.gms.maps.model.MarkerOptions;
import android.os.Bundle;
import android.support.v4.app.FragmentActivity;
public class explorer extends FragmentActivity {
private GoogleMap mMap;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.explorer);
setUpMapIfNeeded();
}
@Override
protected void onResume() {
super.onResume();
setUpMapIfNeeded();
}
private void setUpMapIfNeeded() {
// Do a null check to confirm that we have not already instantiated the map.
if (mMap == null) {
// Try to obtain the map from the SupportMapFragment.
mMap = ((SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.map))
.getMap();
// Check if we were successful in obtaining the map.
if (mMap != null) {
setUpMap();
}
}
}
private void setUpMap() {
mMap.addMarker(new MarkerOptions().position(new LatLng(0, 0)).title("Marker"));
}
}
私explorer.javaファイルだったそして、これは私が何が悪かったのか知りたいのですが、私のexplorer.xmlファイル
<?xml version="1.0" encoding="utf-8"?>
<fragment xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/map"
android:layout_width="match_parent"
android:layout_height="match_parent"
class="com.google.android.gms.maps.SupportMapFragment"/>
ました。任意のヘルプはとなるでしょう。が評価されました
はその後、最後に、私はこれをうんざりと**(ジュノ)** IDEをEclipseにスイッチバック..エラーだけで消えたとマップは正しく動作します...しかし、私はこの質問を閉じていませんよまだ私はGradle-Android Studioでこのようなエラーを引き起こしていることを知る必要があります。 – niranjan94