Questions tagged [nexus-one]

Mobile phone manufactured by HTC Corporation and using Android as operating system

The Nexus One (codenamed HTC Passion) was Google's flagship smartphone manufactured by Taiwan's HTC Corporation. It became available on January 5, 2010 and uses the Android open source mobile operating system.

57 questions
3
votes
1 answer

DH Keypair generation time on Android

This is the code that I'm using to generate a DH keypair: KeyPairGenerator keyGen = KeyPairGenerator.getInstance("DH"); keyGen.initialize(1024, new SecureRandom()); KeyPair ackp = keyGen.generateKeyPair(); (without the needed try/catch, of…
cloud
  • 159
  • 1
  • 2
  • 6
3
votes
5 answers

What Programming Language is Google's Nexus One Using?

Is it just Java?
Zach Smith
  • 5,490
  • 26
  • 84
  • 139
2
votes
1 answer

How does the power log entry in HTC Nexus One G5 or amazon Kindle Fire differ?

The 'power' logcat entry in the HTC Nexus One G5 And Kindle fire seem to be different from other devices. In my smartphone (HTC G7 Desire and Motorola Xoom),the log as follows: 11-24 09:24:36.748: INFO/power(13223): * set_screen_state 0 11-24…
Xianfeng.Cai
  • 309
  • 1
  • 7
  • 21
2
votes
0 answers

Where do I find AudioHardware.cpp for the Nexus One?

Googling for Nexus One AudioHardware.cpp yields lots of results but none brings the actual source file as can easily found for other phones (e.g. Vogue or msm7k). If possible, I would like to find both the stock (Google's official) version and the…
ateiob
  • 9,016
  • 10
  • 44
  • 55
2
votes
2 answers

Android debugging on device - LogCat doesn't work!

Hi I use Nexus One to debug my project... But when connected to computer (with Debugging mode ON) no Log is in Debug mode (Eclipse). The app is installed ad started from computer, but logs don't show... What can I do? And idea?
M.V.
  • 1,662
  • 8
  • 32
  • 55
2
votes
1 answer

2-Microphone Android Phones for ASR purposes?

Is the Nexus One the only Android phone having 2 microphones? I know that the 2nd microphone is intended for helping noise cancellation and I need this feature for my software development project. I am wondering whether the Nexus One is the only…
Android Eve
  • 14,864
  • 26
  • 71
  • 96
2
votes
3 answers

Is there a limit to the size of an application in the Android Marketplace?

I know from reading this: Is there a size limit for Android Market downloads? That there wasn't a limit to the size of an application that could be downloaded over the air (OTA) but I wonder if a limit, like that imposed by the Apple App Store…
Trukdero
  • 21
  • 1
2
votes
1 answer

Nexus One GL_FRAMEBUFFER_OES Extension... Not actually there?

I'm porting an iPhone app to Android, and I need to use OpenGL framebuffers. I have a Nexus One, and a call to glGet(GL_EXTENSIONS) shows that the Nexus One supports the same framebuffer extension as the iPhone. However, I can't seem to call…
Ben Gotow
  • 14,805
  • 3
  • 42
  • 47
2
votes
3 answers

Is android getting a jit compiler soon?

I've read that there is a jit compiler module for dalvik vm on the works and the results are quite promising. Some people claim an improvement of 100% in terms of execution speed. Does anyone have an idea when it is going to be incorporated in an…
Tasos Kleisas
  • 214
  • 1
  • 6
1
vote
2 answers

Nexus one ignores touch events sent via ADB

I'm connecting an HTC Nexus One to my PC via USB (using ADB), running Android 2.3.6, with debug mode enabled. Sending individual keys as such, Works! adb shell input keyevent 82 adb shell input keyevent 20 adb shell input keyevent 20 adb shell input…
Uri Goren
  • 13,386
  • 6
  • 58
  • 110
1
vote
0 answers

When parsing XML on Nexus one, NullPointerException

Today.. I have so strange thing on Nexus One. I have two Android devices, Nexus one and Samsung Galaxy S. Using this two devices, I wish to parse XML file from assets folder. The below is the code. AssetManager manager =…
mooongcle
  • 3,987
  • 5
  • 33
  • 42
1
vote
1 answer

Find the 3G band for Nexus One

Given a nexus one (rather any Android phone), is it a way to find out which 3g band it supports (t-mobile or att), without inserting any SIM cards ? currently I'm just interested in nexus one, but generic info can be useful too.
advantej
  • 20,155
  • 4
  • 34
  • 39
1
vote
2 answers

SharedPreferences.Editor.apply force closes

I am using the following code: SharedPreferences.Editor edit = mPrefs.edit(); edit.putString("UUID", UUID.randomUUID().toString()); edit.commit(); //edit.apply(); This works fine, but if I comment out the commit and uncomment the apply, the app…
Venatu
  • 1,264
  • 1
  • 13
  • 24
1
vote
2 answers

Connect HTC Nexus one to a PC

Using the command prompt i want to check if my HTC nexus one is connected to the pc using the "adb devices" command. I have installed all the available packages for the Android SDK including Usb Driver package, revision 4 and i have the USB…
Apollon1954
  • 1,388
  • 4
  • 16
  • 33
1
vote
1 answer

Could not find adb.exe on my tools folder

I just bought the HTC Nexus One and i'm trying to create Air application fon Android. I have downloaded Android SDK for windows and i installed it, but on the tools folder i can't find the adb.exe I'm watching the following video…
Apollon1954
  • 1,388
  • 4
  • 16
  • 33