Recentemente ho migrato al nuovo Studio Android IDE sulla base di IntelliJerrore di compilazione in Android Studio Quando si effettua un progetto semplice API v2 mappe di Google Android
Le Guide ho seguito sono stati:
https://developers.google.com/maps/documentation/android/start (per basi)
How can I create an Android application in Android Studio that uses the Google Maps Api v2? (per l'importazione di Google Play Services necessari e di supporto librerie in Android monolocale)
Tutte le librerie sono stati correttamente rilevati da Android Studio e non ho avuto 'errori biblioteca Non trovato' alcuna. Il progetto è stato mostrato privo di errori. Quindi quando ho provato a compilarlo ho ricevuto questo errore.
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'.
Questa era la mia explorer.java file di
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"));
}
}
E questo è stato il mio explorer.xml file di
<?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"/>
Mi piacerebbe sapere cosa è andato storto. qualsiasi aiuto sarebbe notevolmente apprezzato
Poi finalmente mi sono stufo di questo e ** commutata al Eclipse IDE ** (Juno) .. L'errore appena scomparso e le mappe ora funziona correttamente ... ma non sto chiudendo questa domanda ancora come ho bisogno di sapere che cosa sta causando un tale errore in Gradle-Studio Android ... – niranjan94