PARA Saber Donde Esta El Debug - Keystore Windows Preferences Android Build
PARA Saber Donde Esta El Debug - Keystore Windows Preferences Android Build
PARA Saber Donde Esta El Debug - Keystore Windows Preferences Android Build
keystore Windows>Preferences>Android>Build
If we dont have debug.keystore file we cant get Google Maps API Key. To solve this issue and
to get the debug.keystore file in the desired location is
1. Open Eclipse
2. Start a new Android project
3. Run the project in any AVD thats already created.
When the project is successfully RUN on the Android Virtual Device. Now go to your
.android folder and check. You will see that the debug.keystore is present there.
C:\Program Files\Java\jdk1.7.0_02\bin>
http://code.google.com/android/maps-api-signup.html
<com.google.android.maps.MapView
android:id="@+id/mapView"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:enabled="true"
android:clickable="true"
android:apiKey="0KqtoP3aQpNqQbfHPi1xsBpVzYB9ZN4rB_6_u4A"
/>
import com.google.android.maps.GeoPoint;
import com.google.android.maps.MapActivity;
import com.google.android.maps.MapController;
import com.google.android.maps.MapView;
import com.google.android.maps.Overlay;
spnOpcion=(Spinner)findViewById(R.id.spinner1);
String[] opciones={"San Miguel", "Santa Ana","San Salvador"};
ArrayAdapter<String> adapter=new ArrayAdapter<String>(this,
android.R.layout.simple_spinner_item,opciones);
spnOpcion.setAdapter(adapter);
String txtopcion=spnOpcion.getSelectedItem().toString();
txtDisplay=(EditText)findViewById(R.id.editText2);
txtDisplay.setText(txtopcion);
import android.location.*;
import android.content.*;