|
|
Subject: [android-beginners] Re: ADB and T-Mobile Pulse - msg#00529
I had the same problem at first. In order for the adb to detect T-
Mobile Pulse from both command line and Eclipse, the Cupcake (1.5) SDK
is needed.
1. Edit the adb.usb.ini (in home directory - ~/.android)
2. Add 0x12d1
3. Restart adb (adb kill-server / adb start-server)
adb should now be able to detect the device but with incorrect serial
number (it is listed as ?p on my machine). Eclipse (I'm using 3.5 on
Mac OS X) can now detect the correct 1.5 API on Pulse.
Well, I'd suggest not to upgrade to 2.0 SDK unless you really have to.
On Oct 29, 9:33 pm, Tim <tdh...@xxxxxxxxx> wrote:
> Hmm thought I replied to this.
>
> 1. You need the latest 2.0 SDK.
> 2. You need to use 12d1 rather than 0bb4 for the vendor ID. The
> Android Dev Guide is wrong.
>
> Even then adb does not pick up the correct serial number for the
> device, so it will work from the command like if you use ./adb -
> d ... but not from within eclipse.
>
> On Oct 27, 1:43 am, Jeffrey Blattman <jeffrey.blatt...@xxxxxxxxx>
> wrote:
>
>
>
> > under settings > applications > development is usb debugging enabled?
>
> > On 10/26/09 6:09 AM, marktyers wrote:
>
> > > Hi
> > > I have purchased a T-Mobile pulse for the purpose of testing some
> > > applications but it does not show up when I run ./adb devices or when
> > > I test my apps using Eclipse. Please can someone help otherwise Iam
> > > left with a useless lump of plastic :-(
>
> > > ps. I am an absolute beginner to this so please be gentle...
>
> > > Mark
>
> > --
--
You received this message because you are subscribed to the Google
Groups "Android Beginners" group.
To post to this group, send email to android-beginners@xxxxxxxxxxxxxxxx
To unsubscribe from this group, send email to
android-beginners+unsubscribe@xxxxxxxxxxxxxxxx
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
Thread at a glance:
Previous Message by Date:
[android-beginners] [error] Could not open Selected VM debug port (8700).
When I go to Window > Preferences > Android I get this issue:
[2009-11-01 19:48:56 - ddms]Could not open Selected VM debug port
(8700). Make sure you do not have another instance of DDMS or of the
eclipse plugin running. If it's being used by something else, choose a
new port number in the preferences.
And when I select my SDK I still get "No target available" in the
target list.
Because of this I am unable to create a new Android project.
Also, when I select Preferences > Android > DDMS I get an error:
"An error has occurred. See error log for more details."
I'm running Linux Mint 7 and Eclipse 3.2.2.
--
You received this message because you are subscribed to the Google
Groups "Android Beginners" group.
To post to this group, send email to android-beginners@xxxxxxxxxxxxxxxx
To unsubscribe from this group, send email to
android-beginners+unsubscribe@xxxxxxxxxxxxxxxx
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
Next Message by Date:
[android-beginners] Re: Post Data and get the Response as a JSON
Thanks Ian,
I have used this.
And I am getting Error Msg like this
"java.net.SocketException: Permission denied (maybe missing INTERNET
permission)"
How can I resolve it.
I am using Android 2.0 HVGA Emulator.
On Nov 6, 5:02 am, Ian Guedes Maia <iangm...@xxxxxxxxx> wrote:
> /* makes a request andgettheresponseas string */
> String responseStr = null;
> HttpClient client = new DefaultHttpClient();
> HttpGet httpGetRequest = new HttpGet(url);
> HttpResponseresponse= client.execute(httpGetRequest);
> if (response.getStatusLine().getStatusCode() == HttpStatus.SC_OK) {
> ByteArrayOutputStream os = new ByteArrayOutputStream();
> response.getEntity().writeTo(os);
> responseStr = os.toString();
>
> }
>
> /* parse the stringresponseusing the androidJSONlibrary */
> JSONObjectjson= new JSONObject(responseStr);
> JSONObject feed = (JSONObject)json.get("feed");
> JSONArray entry = (JSONArray) feed.get("entry");
> int length = entry.length();
>
> 2009/11/5 mapper <sai.vaiku...@xxxxxxxxx>:
>
> > Hi,
> > I am developing a application where I have topostthedatato the
> > server and it will give meJSONas aresponse.
> > So how can Ipostthedatato server andgettheJSONas aresponse
> > which I have to parse it?
>
> > Thanks in Advance
>
> > --
> > You received this message because you are subscribed to the Google
> > Groups "Android Beginners" group.
> > Topostto this group, send email to android-beginners@xxxxxxxxxxxxxxxx
> > To unsubscribe from this group, send email to
> > android-beginners+unsubscribe@xxxxxxxxxxxxxxxx
> > For more options, visit this group at
> >http://groups.google.com/group/android-beginners?hl=en
--
You received this message because you are subscribed to the Google
Groups "Android Beginners" group.
To post to this group, send email to android-beginners@xxxxxxxxxxxxxxxx
To unsubscribe from this group, send email to
android-beginners+unsubscribe@xxxxxxxxxxxxxxxx
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
Previous Message by Thread:
[android-beginners] [error] Could not open Selected VM debug port (8700).
When I go to Window > Preferences > Android I get this issue:
[2009-11-01 19:48:56 - ddms]Could not open Selected VM debug port
(8700). Make sure you do not have another instance of DDMS or of the
eclipse plugin running. If it's being used by something else, choose a
new port number in the preferences.
And when I select my SDK I still get "No target available" in the
target list.
Because of this I am unable to create a new Android project.
Also, when I select Preferences > Android > DDMS I get an error:
"An error has occurred. See error log for more details."
I'm running Linux Mint 7 and Eclipse 3.2.2.
--
You received this message because you are subscribed to the Google
Groups "Android Beginners" group.
To post to this group, send email to android-beginners@xxxxxxxxxxxxxxxx
To unsubscribe from this group, send email to
android-beginners+unsubscribe@xxxxxxxxxxxxxxxx
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
Next Message by Thread:
[android-beginners] Re: ADB and T-Mobile Pulse
I too am having this problem. What exactly should the adb.usb.ini file
look like, please?
On Nov 9, 4:42 am, Faiz <mohd.faizud...@xxxxxxxxx> wrote:
> I had the same problem at first. In order for the adb to detect T-
> MobilePulsefrom both command line and Eclipse, the Cupcake (1.5) SDK
> is needed.
>
> 1. Edit the adb.usb.ini (in home directory - ~/.android)
> 2. Add 0x12d1
> 3. Restart adb (adb kill-server / adb start-server)
>
> adb should now be able to detect the device but with incorrect serial
> number (it is listed as ?p on my machine). Eclipse (I'm using 3.5 on
> Mac OS X) can now detect the correct 1.5 API onPulse.
>
> Well, I'd suggest not to upgrade to 2.0 SDK unless you really have to.
>
> On Oct 29, 9:33 pm, Tim <tdh...@xxxxxxxxx> wrote:
>
>
>
> > Hmm thought I replied to this.
>
> > 1. You need the latest 2.0 SDK.
> > 2. You need to use 12d1 rather than 0bb4 for the vendor ID. The
> > Android Dev Guide is wrong.
>
> > Even then adb does not pick up the correct serial number for the
> > device, so it will work from the command like if you use ./adb -
> > d ... but not from within eclipse.
>
> > On Oct 27, 1:43 am, Jeffrey Blattman <jeffrey.blatt...@xxxxxxxxx>
> > wrote:
>
> > > under settings > applications > development is usb debugging enabled?
>
> > > On 10/26/09 6:09 AM, marktyers wrote:
>
> > > > Hi
> > > > I have purchased a T-Mobilepulsefor the purpose of testing some
> > > > applications but it does not show up when I run ./adb devices or when
> > > > I test my apps using Eclipse. Please can someone help otherwise Iam
> > > > left with a useless lump of plastic :-(
>
> > > > ps. I am an absolute beginner to this so please be gentle...
>
> > > > Mark
>
> > > --
--
You received this message because you are subscribed to the Google
Groups "Android Beginners" group.
To post to this group, send email to android-beginners@xxxxxxxxxxxxxxxx
To unsubscribe from this group, send email to
android-beginners+unsubscribe@xxxxxxxxxxxxxxxx
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
|
|