PPCGeeks

PPCGeeks (http://forum.ppcgeeks.com/index.php)
-   Android On TP2 (http://forum.ppcgeeks.com/forumdisplay.php?f=179)
-   -   Android, it's alive!.. (2.0.1) - Updated 12/24 (http://forum.ppcgeeks.com/showthread.php?t=102603)

Noir 12-31-2009 07:01 AM

Re: Android, it's alive!.. (2.0.1) - Updated 12/24
 
Quote:

Originally Posted by D\/8 (Post 1450073)
The Hero image is probably a better base to work with in porting to our phone as it is a CDMA device with a lot of the same specs.

I'm sure whatever has been done so far will easily be redone with the Hero image. I don't see someone going this far with such a high profile project and just dropping it and moving on unless there was a reason behind it...

Personally, I'm intimate with both the TP2 (mine) and the Hero (my girls) and I cannot wait till the day we can run droid on the TP2... Being a diehard WM fan for many years now, I think I'm going to jump ship and head over to Android...

tough to say I know that devices that will work is gsm first

The Machinist 12-31-2009 01:06 PM

Re: Android, it's alive!.. (2.0.1) - Updated 12/24
 
Quote:

Originally Posted by The Lance (Post 1449383)
did not help very much... I'm assuming that Machinist's Calibration


at least it gets you to the edges of the screen! Niether of the two previous ones were very accruate. 0x7a.0x37f.0x35a.0x5e was too low in Y and 0x6a.0x3c1.0x376.0x8a was too high in Y and both had problems in X.

The first thing to determine was what numbers control which direction. the 1st number controls the pointer location in X(+); how far it can go right, the 2nd number is Y(+) how far it goes up, the third is X(-); left and the 4th is Y(-); down. And based on the values of all four numbers determines where the center will fall. Too much in Y(+) makes for a high center etc...

Now adding "3c1" to "37f" and divding by 2 on my calculator didn't yeild very good results (since mine doesn't add letters very well) so I guessed using a method I could never explain logically.

What I came up with seemed like a decent solution according to the "Pointer Location" within the "Dev Tools" app. in the eclair build. If anyone determines a better one I"ll be glad to use it!

stuge123 12-31-2009 01:56 PM

Re: Android, it's alive!.. (2.0.1) - Updated 12/24
 
your calibration worked perfect for me! Thank you for your hard work.

Airhead315 12-31-2009 03:04 PM

Re: Android, it's alive!.. (2.0.1) - Updated 12/24
 
Quote:

Originally Posted by The Machinist (Post 1451043)
at least it gets you to the edges of the screen! Niether of the two previous ones were very accruate. 0x7a.0x37f.0x35a.0x5e was too low in Y and 0x6a.0x3c1.0x376.0x8a was too high in Y and both had problems in X.

The first thing to determine was what numbers control which direction. the 1st number controls the pointer location in X(+); how far it can go right, the 2nd number is Y(+) how far it goes up, the third is X(-); left and the 4th is Y(-); down. And based on the values of all four numbers determines where the center will fall. Too much in Y(+) makes for a high center etc...

Now adding "3c1" to "37f" and divding by 2 on my calculator didn't yeild very good results (since mine doesn't add letters very well) so I guessed using a method I could never explain logically.

What I came up with seemed like a decent solution according to the "Pointer Location" within the "Dev Tools" app. in the eclair build. If anyone determines a better one I"ll be glad to use it!


3c1 and 37f are hexadecimal numbers. as are the other numbers you mentioned.

To do calculations in hex use windows calculator and switch to Scientific then put it is hexadecimal mode. (In windows 7 select programmer mode).

(3c1+37f)/2 = 3a0

sanjsrik 12-31-2009 04:00 PM

Re: Android, it's alive!.. (2.0.1) - Updated 12/24
 
quick question, I'm guessing this is a fully-functioning android build that you have to replace the ROM on the TP2 to make work or does it work from within WindowsMobile? Sort of like AndroidKidd?

Apologies, I started reading the 33 pages and got lost along the way with the very technical discussions such as calculating hex numbers.

tr0s 12-31-2009 04:24 PM

Re: Android, it's alive!.. (2.0.1) - Updated 12/24
 
Quote:

Originally Posted by sanjsrik (Post 1451622)
quick question, I'm guessing this is a fully-functioning android build that you have to replace the ROM on the TP2 to make work or does it work from within WindowsMobile? Sort of like AndroidKidd?

Apologies, I started reading the 33 pages and got lost along the way with the very technical discussions such as calculating hex numbers.

basically there is a program called haret that you run from within windows mobile, it executes and runs android over top of windows something like a linux live cd does over top of your home computer. it doesn't install itself to your memory or mess up your current system setup. to go back to windows you simply restart the phone. it does save files and settings to your microSD but that's about it.

sanjsrik 12-31-2009 04:26 PM

Re: Android, it's alive!.. (2.0.1) - Updated 12/24
 
Thank you, very much. I'm not stupid but that explanation was concise, clear, and helpful.

Awesome response and thank you tr0s

The Machinist 12-31-2009 05:11 PM

Re: Android, it's alive!.. (2.0.1) - Updated 12/24
 
Quote:

Originally Posted by The Machinist (Post 1451043)
at least it gets you to the edges of the screen! Niether of the two previous ones were very accruate. 0x7a.0x37f.0x35a.0x5e was too low in Y and 0x6a.0x3c1.0x376.0x8a was too high in Y and both had problems in X.

The first thing to determine was what numbers control which direction. the 1st number controls the pointer location in X(+); how far it can go right, the 2nd number is Y(+) how far it goes up, the third is X(-); left and the 4th is Y(-); down. And based on the values of all four numbers determines where the center will fall. Too much in Y(+) makes for a high center etc...

Now adding "3c1" to "37f" and divding by 2 on my calculator didn't yeild very good results (since mine doesn't add letters very well) so I guessed using a method I could never explain logically.

What I came up with seemed like a decent solution according to the "Pointer Location" within the "Dev Tools" app. in the eclair build. If anyone determines a better one I"ll be glad to use it!

Quote:

Originally Posted by Airhead315 (Post 1451454)
3c1 and 37f are hexadecimal numbers. as are the other numbers you mentioned.

To do calculations in hex use windows calculator and switch to Scientific then put it is hexadecimal mode. (In windows 7 select programmer mode).

(3c1+37f)/2 = 3a0

I think you missed the humor...

HTCotta 12-31-2009 06:08 PM

Re: Android, it's alive!.. (2.0.1) - Updated 12/24
 
K i'm missing something. What exactly do i need to do with this? I tried root of device, run haret. Root of storage card, run haret. Neither of them worked, i guess I thought this was easier than it is haha.

twostep 12-31-2009 06:31 PM

Re: Android, it's alive!.. (2.0.1) - Updated 12/24
 
Quote:

Originally Posted by HTCotta (Post 1451944)
K i'm missing something. What exactly do i need to do with this? I tried root of device, run haret. Root of storage card, run haret. Neither of them worked, i guess I thought this was easier than it is haha.

put the entire folder in the root of the SDCard and then click haret, and it SHOULD work. in theory.

mlin 12-31-2009 06:56 PM

Re: Android, it's alive!.. (2.0.1) - Updated 12/24
 
Quote:

Originally Posted by piratedninja (Post 1450296)
i tried the same a while back, it truely sucks that sprint is doing this to their customers.
my contract expired a couple of days ago so they better announce something good on january 6th or im switching to verizon and getting a droid

Why not just switch to a compatable plan on Sprint? You're going to get the same types of plan requirements with Verizon and your the plans will be more expensive.

HTCotta 12-31-2009 07:29 PM

Re: Android, it's alive!.. (2.0.1) - Updated 12/24
 
Doesn't work for me, on either of the storage cards I tried. And now one of them freezes the phone whenever I insert it and i don't have a reader so I can't format it til i find one. Hard reset party!

cornelious2 12-31-2009 07:32 PM

Re: Android, it's alive!.. (2.0.1) - Updated 12/24
 
its been as easy as extract and run for me, soo addicted to robot defence...

dave01978 12-31-2009 10:48 PM

Re: Android, it's alive!.. (2.0.1) - Updated 12/24
 
for those who cant get it to load, try a different micro sd card, I was having issues with my sandisk 1gb (yes it was fat32 and i gave it time, 30 mins), just tried the new transcend 8gb class 6 that I ordered, and I finally got it to boot, not sure why some cards work, and some dont. But try a different sd card if you have one laying around

HTCotta 12-31-2009 10:59 PM

Re: Android, it's alive!.. (2.0.1) - Updated 12/24
 
I've got a transcend 8GB Class 6 on the way, so we'll see when that gets here.

dave01978 12-31-2009 11:13 PM

Re: Android, it's alive!.. (2.0.1) - Updated 12/24
 
lets hope that works for you, I loaded the android on it only right now, and booted right up, adding my other stuff over now and will try it again just to make sure, shows about 25 mins though, i should have coppied everything to the laptop first instead of from old card straight to phone, oh well


Edit, Its hanging up now, must be something on the memory card it doesnt like, deleted everything off the old 1gb and loaded up, so I will try and see if I can find what its hanging on

CellGuy 01-01-2010 04:10 AM

Re: Android, it's alive!.. (2.0.1) - Updated 12/24
 
Here's to the year of Android! Dare I say, WM RIP? Happy New Year Everyone!

lefty11 01-01-2010 12:33 PM

Re: Android, it's alive!.. (2.0.1) - Updated 12/24
 
I have read that running harem with phone in use allows ability to make and receive calls.....has anyone tried running harem while wifi is turned on, or browser connected , or mp3 playing??? probably but had not seen it asked, so thought I would ...

cashtommy689 01-01-2010 02:04 PM

Re: Android, it's alive!.. (2.0.1) - Updated 12/24
 
anyone with cdma / verizon get the wifi to work, i tried about 8 different things.. just cant get it running 2.0.1

Rick#2 01-01-2010 02:35 PM

Re: Android, it's alive!.. (2.0.1) - Updated 12/24
 
No, I couldn't get the wifi to work on Telus (CDMA) either. I read in the Topaz thread on xda that they've got Bluetooth semi-working in one of the builds, so at least steady progress is being made. I'm checking this thread obsessively until I can get internet access working somehow, be it by Wifi or CDMA data.

And Robo Defense is like crack, holy smokes.

blazin-asian 01-01-2010 05:39 PM

Re: Android, it's alive!.. (2.0.1) - Updated 12/24
 
i cant wait until android is fully ported to the TP2. then i could probably get away with using android with my sero plan. take that sprint!

ajac 01-01-2010 07:45 PM

Re: Android, it's alive!.. (2.0.1) - Updated 12/24
 
Quote:

Originally Posted by blazin-asian (Post 1453734)
i cant wait until android is fully ported to the TP2. then i could probably get away with using android with my sero plan. take that sprint!

our luck they will start requiring all pda phones to have an everything plan.. i can see it eventually though I cant wait for a full android port myself be awesome!

piratedninja 01-01-2010 07:48 PM

Re: Android, it's alive!.. (2.0.1) - Updated 12/24
 
what happened to development? at first we were getting updates almost every day, and now it seems to have come to a halt

whats going on?

ExpletiveDeleted001 01-01-2010 07:50 PM

Re: Android, it's alive!.. (2.0.1) - Updated 12/24
 
just a FYI it worked for me too. Im on Sprint... I just unzipped to the root of my freshly formated 8 gig SanDisk.. Took about 5mins to load 1st time. No data, wifi, or sounds.. Seems to make calls but no sound.. All non Data Apps seem to work. Cant wait for this to be fully functioning.. Still a bit laggy but that is expected this early in the process.. I think IPhone and Android will be the new wave in mobile devices.. WinMo is on borrowed time...

x10guy 01-01-2010 09:55 PM

Re: Android, it's alive!.. (2.0.1) - Updated 12/24
 
Quote:

Originally Posted by piratedninja (Post 1454045)
what happened to development? at first we were getting updates almost every day, and now it seems to have come to a halt

whats going on?

Yeah, I noticed that too. Maybe just a holiday break.

duck867 01-01-2010 10:25 PM

Re: Android, it's alive!.. (2.0.1) - Updated 12/24
 
Quote:

Originally Posted by ExpletiveDeleted001 (Post 1454051)
just a FYI it worked for me too. Im on Sprint... I just unzipped to the root of my freshly formated 8 gig SanDisk.. Took about 5mins to load 1st time. No data, wifi, or sounds.. Seems to make calls but no sound.. All non Data Apps seem to work. Cant wait for this to be fully functioning.. Still a bit laggy but that is expected this early in the process.. I think IPhone and Android will be the new wave in mobile devices.. WinMo is on borrowed time...


How'd you get calls to work? When i boot in it says Sprint (No Service)

Beejis 01-01-2010 11:34 PM

Re: Android, it's alive!.. (2.0.1) - Updated 12/24
 
Quote:

Originally Posted by x10guy (Post 1454298)
Yeah, I noticed that too. Maybe just a holiday break.

It's still alive, hahaha (I sounded like Frankenstein just now). Check here for updates (looks like a new build was released yesterday, here is the download link).

ExpletiveDeleted001 01-01-2010 11:41 PM

Re: Android, it's alive!.. (2.0.1) - Updated 12/24
 
Quote:

Originally Posted by duck867 (Post 1454354)
How'd you get calls to work? When i boot in it says Sprint (No Service)

Calls seemed to work "out of the box".. after install i tried calling voicemail.. it connected but no audio.. not 100% it worked.. but it said connected and the seconds were ticking away.. hope that helps..

newone757 01-02-2010 01:41 AM

Re: Android, it's alive!.. (2.0.1) - Updated 12/24
 
it doesnt matter that it says no service, still works.

just boot haret while on the phone with your voicemail and you will have phone service with sound/mic working

cheif_of_smoke 01-02-2010 02:34 AM

Re: Android, it's alive!.. (2.0.1) - Updated 12/24
 
im using a 4gb class 4 sd card by dane-elec and had no problem booting up. i even tried using a 256mb sandisk card. it started to work but it ran out of memory. would love to see this up and going. i do know that us cellular is working on a couple of android phones. when they will be is anyones guess. uscc is always behind by a few years. i just upgraded from a moto q, not the moto q9c.

klynch1969 01-02-2010 03:43 AM

Re: Android, it's alive!.. (2.0.1) - Updated 12/24
 
Quote:

Originally Posted by ExpletiveDeleted001 (Post 1454051)
just a FYI it worked for me too. Im on Sprint... I just unzipped to the root of my freshly formated 8 gig SanDisk.. Took about 5mins to load 1st time. No data, wifi, or sounds.. Seems to make calls but no sound.. All non Data Apps seem to work. Cant wait for this to be fully functioning.. Still a bit laggy but that is expected this early in the process.. I think IPhone and Android will be the new wave in mobile devices.. WinMo is on borrowed time...

It has been reported that in order to get audio to work you need to call your voicemail from within winmo first and while still in the call, launch android. I believe the same goes for wifi, it must be enabled first within winmo. I don't know if the wifi needs to be connected though.

ExpletiveDeleted001 01-02-2010 03:52 AM

Re: Android, it's alive!.. (2.0.1) - Updated 12/24
 
thanks for your help.. i had wifi on tho when i launched it... to no avail.. ill have to try the phone connection trick tho... maybe ill have more luck

evilecho 01-02-2010 05:02 AM

Re: Android, it's alive!.. (2.0.1) - Updated 12/24
 
So i did some testing last night.

I have a Sprint Touch Pro 2 which i got sim unlocked via htc-unlocks.com

Im running the 1224 build

Im using a Tmobile SIM Prepaid sidekick data plan.

Im not able to get any data
Im able to send and recieve text
Im able to recieve mms but not able to download the attachment
Im able to place and recieve calls but since the mic and speaker arent working im not able to here the caller nor are they able to hear me.

JimP 01-02-2010 10:16 AM

Re: Android, it's alive!.. (2.0.1) - Updated 12/24
 
Quote:

Originally Posted by evilecho (Post 1455098)
So i did some testing last night.

I have a Sprint Touch Pro 2 which i got sim unlocked via htc-unlocks.com

Im running the 1224 build

Im using a Tmobile SIM Prepaid sidekick data plan.

Im not able to get any data
Im able to send and recieve text
Im able to recieve mms but not able to download the attachment
Im able to place and recieve calls but since the mic and speaker arent working im not able to here the caller nor are they able to hear me.


I don't get why anybody would go to the trouble to try it at this stage of development given that stories like this are fairly common. Somebody kick start me so I can get into the fun.

Scrufdog 01-02-2010 11:06 AM

Re: Android, it's alive!.. (2.0.1) - Updated 12/24
 
If people posted what memory cards do and do not work, would the OP be willing to update the first post as people report back?

ExpletiveDeleted001 01-02-2010 02:22 PM

Re: Android, it's alive!.. (2.0.1) - Updated 12/24
 
Quote:

Originally Posted by JimP (Post 1455274)
I don't get why anybody would go to the trouble to try it at this stage of development given that stories like this are fairly common. Somebody kick start me so I can get into the fun.

People need to try it and find out what works.. Otherwise the developers have even MORE work to do.. They do AWSOME things for us here for very little money... The least we can do is try to help them by Beta testing stuff as it comes out the pipes.. I'd make a big donation to em if i wasnt a poor bastard (If any of you guys are ever in Mpls.. I can hook ya up w/ a tattoo tho!). Thanks to everyone on here and everyone over at xda we have software that's more useful and more stable than what the big dogs come out with.. YOU GUYS ARE AWESOME!

gramerssss 01-02-2010 04:09 PM

Re: Android, it's alive!.. (2.0.1) - Updated 12/24
 
how do you install this on your phone?

x10guy 01-02-2010 04:13 PM

Re: Android, it's alive!.. (2.0.1) - Updated 12/24
 
Quote:

Originally Posted by Beejis (Post 1454515)
It's still alive, hahaha (I sounded like Frankenstein just now). Check here for updates (looks like a new build was released yesterday, here is the download link).

Is the OP still updating the thread? If not, that's fine. It's alot of work to keep up. But perhaps this thread should be unstickied.

gramerssss 01-02-2010 04:31 PM

Re: Android, it's alive!.. (2.0.1) - Updated 12/24
 
when i tried installing it it got stuck at a part and it wont stop saying waiting for sd card
over and over again any advice?

Telus HTC Touch Pro 2

cornelious2 01-02-2010 05:02 PM

Re: Android, it's alive!.. (2.0.1) - Updated 12/24
 
Quote:

Originally Posted by x10guy (Post 1455842)
Is the OP still updating the thread? If not, that's fine. It's alot of work to keep up. But perhaps this thread should be unstickied.

The next release is completely untested, I'd say wait for that to be the real next build before assuming its not getting updated.


All times are GMT -4. The time now is 11:07 PM.

Powered by vBulletin® ©2000 - 2025, Jelsoft Enterprises Ltd.
©2012 - PPCGeeks.com


Content Relevant URLs by vBSEO 3.6.0