Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Newcomers » Newcomers » Trouble getting my app started on my android device.
Trouble getting my app started on my android device. [message #1058176] Mon, 13 May 2013 04:50 Go to next message
Sebastian Bueno is currently offline Sebastian BuenoFriend
Messages: 1
Registered: May 2013
Junior Member
I had been trying to make an app using Eclipse Juno (), I have no idea abour programming and thats why I was tring to make it using a tutorial from youtube, from an user called "Javier C". I made all what he said, but I cant getting it started on my Android device and this is what my manifest says:

MANIFEST:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http(ignore this)://schemas.android.com/apk/res/android"
    package="com.sebab.mapasvegetarianoschile1"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="7"
        android:targetSdkVersion="14" />

    <permission
        android:name="com.sebab.mapasvegetarianoschile1.permission.MAPS_RECEIVE"
        android:protectionLevel="signature"/>
	<uses-permission android:name="com.sebab.mapasvegetarianoschile1.permission.MAPS_RECEIVE"/>
	<uses-permission android:name="android.permission.INTERNET"/>
	<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
	<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
	<uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES"/>
	<!-- The following two permissions are not required to use
	     Google Maps Android API v2, but are recommended. -->
	<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
	<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
	
	<uses-feature
        android:glEsVersion="0x00020000"
        android:required="true"/>
    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
		<meta-data
		    android:name="com.google.android.maps.v2.API_KEY"
		    android:value="AIzaSyC8NhXNs1vJu-7hD2EHOPeAynZJ_VG6_lQ"/>
        <activity
            android:name="com.sebab.mapasvegetarianoschile1.MainActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>


ANDROID DEVICE IM USING:
Motorola XT531 with Android 2.3.4 (I sent the apk via gmail to my phone and installed it), but it doesnt runs, there is an error (Its in spanish so I dont know which would be the error in english).

On my google account:
Im using the API key that they gave me, but im not sure if the package should be exactly the same, but thats what I wrote. I used the SHA1 that I got from my debug.keystore on it.

What I can do? Which can be the diagnostic? Do you need any information to help me with this issue? Please, ask me whatever you need to help me, it would be perfect. Thanks you.
Re: Trouble getting my app started on my android device. [message #1058274 is a reply to message #1058176] Mon, 13 May 2013 12:40 Go to previous message
Nitin Dahyabhai is currently offline Nitin DahyabhaiFriend
Messages: 4435
Registered: July 2009
Senior Member

Your questions would be better served in an Android-specific forum. See http://www.eclipse.org/forums/index.php/t/225513/ .

_
Nitin Dahyabhai
Eclipse Web Tools Platform
Previous Topic:Newbie in need of help
Next Topic:SQl to JPQL syntax
Goto Forum:
  


Current Time: Thu Apr 25 00:18:58 GMT 2024

Powered by FUDForum. Page generated in 0.09209 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top