HTC IME a security issue? - G1 General

I downloaded and installed the HTC IME from Haykuro site.
http://haykuro.theiphoneproject.org/?p=213
When installing the HTC IME and Enabling it via "Locale & Text->Touch Input" I get a message stating
This input method may be able to collect all the text you type, including personal data like passwords and credit card numbers. It comes from the application Touch Input. Enable this input method?
How is this keyboard input different than the standard Android virtual keyboard?

When you install an IME (goes into /data/app) rather than having one preloaded (/system/app), you will always get that warning. This is because IMEs by their nature have access to all your keystroke data (including passwords). So in the end the warning is there to remind you to only use IMEs you acquire from a source you trust.

jashsu said:
When you install an IME (goes into /data/app) rather than having one preloaded (/system/app), you will always get that warning. This is because IMEs by their nature have access to all your keystroke data (including passwords). So in the end the warning is there to remind you to only use IMEs you acquire from a source you trust.
Click to expand...
Click to collapse
I see. So I take it that downloading from Haykuro site is safe, since I see his name on this forum a lot

androidmonkey said:
I see. So I take it that downloading from Haykuro site is safe, since I see his name on this forum a lot
Click to expand...
Click to collapse
I'd hope so, considering that a lot of folks have installed a lot of other stuff from Haykuro.

Related

SecurIt 1.1: Sim/IMSI checking opensource security for us all

I'm been working on this for a little bit now since I found all the existing apps don't work well in WM6 or don't work well in a custom rom. This is a open source program (as all of mine are) and I welcome help/donations/and comments. Bug reports will be helpful in this first release as I certainly consider this a alpha release at the moment.
What it does:
once setup at every boot it compares your IMSI number with the one stored, if it's a match it plays a little sound and that's it. If it's not a match, it locks the device and displays your email and a request to please get it back to you. It also send you the "new sim's" imsi and phone number via a SMS.
------------------------------
SecurIt 1.1 (BETA) by Shadowmite
------------------------------
TODO: Build in SMS rule filtering thus adding remote control
Lock out activesync connections?
Protect the datafile from being deleted, or keep a backup in registry.
NOTE: THIS DOES NOT WORK WITH CDMA PHONES!
Version 1 (BETA) Instructions:
This security applicatioon can run loaded normally via a cab file to your device, or via being cooked into a rom. It will require your phone able to run unsigned code (most roms at this site are fine in this regard). Furthermore it does require the .NET Framework so it's really for WM6 devices, WM5 will be more tricky and is left up to the user to figure out how to make it all work.
When first run the program resides in \windows and must run from there. If you ran the cab installer it will have created a shortcut for you into the Programs folder.
The application comes up with a form showing you the current device imei, imsi, and phone number. You need to enter a password (needed to disable security programmatically or change SIM info), a email you can be reached at my a "finder" of your phone, and a SMS phone number you'd like alert messages sent to. Once done click set. Finally, click Enable security.
The application then sets itself up to autorun upon boot and if the SIM matches, it plays a little sound file to let you know everything is fine. If the sim is found to have changed, it will lock down the device until a password is entered. Meanwhile it shows your contact email and has sent the alert sms to you with the new imsi and phone number.
If you enter the proper password the program will take you to the settings screen where you can reenter the password and make changes to the settings and resave them. Simply clicking enable security without making changes will keep the settings as they are.
Clicking disable security will remove the autorun entries and remove the data file the programs keeps at \windows\SecurIt.dat.
The data file keeps 5 lines, MD5 hashes of your imei, imsi, password, and also your email and sms phone number as plain text. Thus stealing this file does not enable retrieving the password or easy changing of the imsi. Deleting this file however would remove security. Furthermore activesync will still link to a locked device. Knowledgable people about these devices could therefore defeat this security, however it's goal is to keep the casual theif / finder out of the phone.
This program is a work in progress and I welcome help with modifications to it as well as bug fixes. Source can be found at:
svn://www.shadowmite.com/shadowmite/SecurIt
To cook this into a rom, you need 3 files. 2 of them need to be generated when you first install it like normal and set it up. Copy the SecurIt.dat from \windows and the SecurIt.lnk from \windows\start up to your rom as well as the SecurIt.exe file. It's that simple. Enjoy!
History:
1.1: Fixed all kinds of bugs causing security to crash with various sims
1.0: Initial release
If you like my work and would like to help insure I continue to have time for this, please consider a donation to: foglemATshadowmiteDOTcom
Shadowmite, thnx for starting an "opensource" project for this. I havent tried it yet, will try once I reach home.. But I had a cpl of suggestions\questions:
1. Why do u keep email and sms phone no in plain text instead of encrypting them as well?
2. Instead of storing config in a file, store the config in registry which lessens the chances of someone finding out about the prog and deleting the file to disable security.
nice work as usual...
shantzg001 said:
Shadowmite, thnx for starting an "opensource" project for this. I havent tried it yet, will try once I reach home.. But I had a cpl of suggestions\questions:
1. Why do u keep email and sms phone no in plain text instead of encrypting them as well?
2. Instead of storing config in a file, store the config in registry which lessens the chances of someone finding out about the prog and deleting the file to disable security.
Click to expand...
Click to collapse
number 2 is in the TODO list...
#1) we could encrypt them as long as it's not a one-way hash like the first 3 lines, however those are the bits of data we don't mind the theif/finder seeing afterall as they are the means to get the phone back to its rightful owner. I suppose we could hide them but the phone number will be on his next bill for sending it a SMS and the email is displayed on the locked screen.
And as walshy said, #2 is certainly on the todo, but locking our activesync connections is a bigger concern and I believe completely doable.
#1) we could encrypt them as long as it's not a one-way hash like the first 3 lines, however those are the bits of data we don't mind the theif/finder seeing afterall as they are the means to get the phone back to its rightful owner. I suppose we could hide them but the phone number will be on his next bill for sending it a SMS and the email is displayed on the locked screen.
And as walshy said, #2 is certainly on the todo, but locking our activesync connections is a bigger concern and I believe completely doable.
Click to expand...
Click to collapse
ok, and sorry abt the #2, I missed the TODO part..
Keep up the good work..I myself was thinking abt making smthing similar but now I think I'll drop my idea to make a different one, as this seems to be a better idea (opensource is always better )..
I hope I can make some contribution to the code if possible..
shantzg001 said:
ok, and sorry abt the #2, I missed the TODO part..
Keep up the good work..I myself was thinking abt making smthing similar but now I think I'll drop my idea to make a different one, as this seems to be a better idea (opensource is always better )..
I hope I can make some contribution to the code if possible..
Click to expand...
Click to collapse
What advantages does this give over "Mobile Justice"..another similar util...my rom has Mobile Justice cooked with it which makes it hard to remove.
famewolf said:
What advantages does this give over "Mobile Justice"..another similar util...my rom has Mobile Justice cooked with it which makes it hard to remove.
Click to expand...
Click to collapse
If you like that software and have it working properly use it. Maybe you'd like to post in every rom thread asking why not use some other rom while you're at it?
Shadowmite said:
If you like that software and have it working properly use it. Maybe you'd like to post in every rom thread asking why not use some other rom while you're at it?
Click to expand...
Click to collapse
I'm not using Mobile Justice which is WHY I asked what advantages YOURS had over theres for COMPARISON. If it had additional features I was going to recommend it for addition into XM6R3 (the next release of the current rom), but with an attitude like yours I won't bother with further review.
famewolf said:
I'm not using Mobile Justice which is WHY I asked what advantages YOURS had over theres for COMPARISON. If it had additional features I was going to recommend it for addition into XM6R3 (the next release of the current rom), but with an attitude like yours I won't bother with further review.
Click to expand...
Click to collapse
you dont bother with a review but bother with a slagging ... take your "fame" somewhere else...
Ok, for starters mine isn't based on assuming every device has a GPS built in (while technically being a Trinity owner I should go that route). I instead base mine on nicely locking down the interface so far with a polite message to get the device back to the owner. Furthermore mine is trivial to build into a cooked rom which was my main reason to write it. I tried every security app out there over the last weekend without any of them working "properly" and figured the best way to get one is to write one. In addition mine is open source, mobilejustice is not.
Now then, you said you're not using it... But the last post said you had it cooked in? WTF? Need some help deciding what you use and don't use?
my rom has Mobile Justice cooked with it which makes it hard to remove.
Click to expand...
Click to collapse
I'm not using Mobile Justice which is WHY I asked what advantages YOURS had over theres for COMPARISON.
Click to expand...
Click to collapse
Shadowmite said:
Now then, you said you're not using it... But the last post said you had it cooked in? WTF? Need some help deciding what you use and don't use?
Click to expand...
Click to collapse
1) The rom I currently have installed comes with Mobile Justice preinstalled.
2) I have not configured and am not currently using Mobile Justice
3) The author is currently taking suggestions for software to include in the next revision of their rom.
What part of any of those statements are you having difficulty comprehending?
Perhaps you and the gentleman from Melbourne should both grow up and quit reading an insult where one was not intended.
Well than back on track... Give it a try and see what you think. I really want feedback from folks outside the USA as I believe it will not properly catch your phone number of the "thief's sim" however if the sms works it should still get the phone number to you obviously.
The GPS coord. request feature is a nice one and will have to go on the todo list.
well, well, fights apart, what drew me to this app over the other apps was the opensource nature as mentioned by Shadowmite because I, like shadowmite, was not happy with the other apps doing things properly or just because I wanted somethings to be done differently..
@shadowmite:
1. I have a few ideas of getting "coordinates" and sending to the original owner even on non-GPS devices ..Maybe we can discuss some things later on once the basic structure of the app is ok.
2. Couldn't find the source code of the app on ur site..(May be am just one dim-witted dim-sighted git ) Please point me to it..
You'll need svn to get it, windows users: http://superb-west.dl.sourceforge.n...vn/TortoiseSVN-1.4.4.9706-win32-svn-1.4.4.msi
svn://www.shadowmite.com/shadowmite is my master repository for all projects.
cool, I do have TortoiseSVN installed at home..Will check it when I go back..
Will it sustain a hard re-set ? Dont think so.
@shailesh, for sustaining hard resets, it has to be cooked into the rom, pointed out by shadow on post 1..
I don't know if something else can be done for this (writing into ext rom is one option but that is not possible for most devices now)
Sounds like a great piece of software. And open source is a great idea too.
I did tried several others like this one (Eye on the thef, Ultimately Theft Alert ...) some features were still missing :
First an autoconfig method :
As already said, whatever your storage methode is (file or registry), you 'll everytime lose the configuration when a hard-reset is done on the device. The only one possibility i can imagine is to store your "installer" program on extended rom with the ability to add an external config (encrypted) file as a parameter.
Installation will be handled by the autoconfig process, using this external file. Config will probably needs to be stored on extended rom too. It's not peace of cake to create an extended rom, but easier that cook a rom.
This feature won't be very helpfull if there is no way to generate a config file automaticaly base on settings done by user : kind of export process.
On standart start/soft-reset, your program will run as it does actually, but when a hard-reset, is proceed, programm will reinstall unattented and will still be running after boot... No way to easily remove it. Bad effect is that it will also be difficult to update programm/config.
Secondly, i'd like to have the a way to "format"(or encrypt) a memory card remotely.
Do you thinks those could be part of your TODO list ?
Will try it on few next days and i'm ready to help you translating it in french
hi shantzg001,
thanks for replying,
My mistake, did not read the whole text.

PointUI - New Version 1.01b - Now with customization

Here's the new version of PointUI.
New Features
- Weather update frequency now includes "Manual".
- Customisation (yes, we are Aussies so spell it with an 's'): Media Player - ok, a little techy at this stage, but you can now specify the path of your media player in the registry:
- In the key: HKLM\SOFTWARE\Pointui\Home\{your version} (i.e. version = 1.01b) create a new String value called App.Path.Media
- You can include in your path {Windows}, {Programs}, {ProgramFiles} which will get replaced with your device specific folders but if you do use them then don't start the path with a backslash
- The path can be to a shortcut or exe, and include spaces, but don't use any quotes
- An example value is: {Windows}\wmplayer.exe
- You don't need to restart Home for this change to kick in
- Customisation: Email account
- You can specify a store name in a String value called App.Email.StoreName
- This will then launch to the specified inbox instead of Outlook mail
- The store name is CASE SENSITIVE
- It doesn't appear to break if you enter a dodgy store name - just doesn't do anything Smile
- Unread message count indicator will be count of TOTAL emails across all accounts
- You NEED TO RESTART Home for this one to kick in
- Customisation: Tasks and Calendar
- You can specify an alternative app for Tasks and Calendar using the registry keys App.Path.Tasks and App.Path.Calendar
- If the alternative app requires command line args then you can supply them with the corresponding keys App.Path.Tasks.Args and App.Path.Calendar.Args
- You don't need to restart Home for this change to kick in
- Customisation: Phone
- To use an alternative dialer (or if your device has the problem of when you click the Phone icon it freezes for 8 seconds, then you can specify an alternative dialer (or any app really) using the registry key App.Path.Phone
- You don't need to restart Home for this change to kick in
- Customisation: Lock Screen
- To use an alternative lock screen application you can set the registry key App.Path.LockScreen. This should provide a workaround for Smartphone users who cannot get out of our lock screen.
- You don't need to restart Home for this change to kick in
Changes
- Clicking calendar icon from Home screen will go to the day view instead of week.
- When browsing applications, sometimes you would see a file called "icon" that didn't launch anything - it's actually on your device and is a real file but is hidden, so hidden files are now excluded from the list.
- Updated fonts to include extended characters.
Bug Fixes
- Support for special folder locations other than the default English ones.
- Phone numbers now include all characters in addition to standard digits.
- When the Phone icon is clicked and there are no phone calls in the history it now works correctly instead of showing a grey bar at the top.
- Japan added to weather locations.
Known Issues
- Not enough time in the day.
- Red Bull wearing off.
- VGA
- Devices without Phones
- Recurring Appointments
- Uninstall - we'll need to get the uninstall sorted out soon. All Pointui apps have a command line switch -uninstall that will prompt it to remove itself, registry settings etc, so you can use Update Manager to uninstall Home (through it's interface), and then get rid of Update Manager with command line. That will still leave the left soft key reverting to Phone, but pretty much everything else should be gone.
Head over to www.pointui.com for more info.
installing now.. thanks
Hi,
This version still doesn't show hebrew letters, Please give a chance to change the software fonts....
to Tahoma, since SEOGE (Or the fon't u'r using) doesn't have the hebrew letters.
Thanks.
Nadavi
Will finally get a chance to test now - was trying to wait for initial bugs to get fixed... Heard lots of great reviews on this app!
Thanks for the changes.
I will try this evening (german time)
This version introduces new problems. I'm enjoying SPB Backup like never before
Anyone had success removing this after install I have tried uninstalling via phone/ computer and it removes it from the list but does not remove the program. I would love not to have to hard reset.
you dont...
after normally uninstall on your phone/pda you can
delete the registry-keys under
HKLM\Software\PoitUI and the Home-directory
located under "Prgram Files" or "Programme" or
whatever language you have...
After reboot, all is like befor....normally
On my deinstall it worked so
CABs Please
Hi,
I don't use Windows and will be better if somebody post th eCABs files.
Regards,
Taguapire.
haiopei said:
you dont...
after normally uninstall on your phone/pda you can
delete the registry-keys under
HKLM\Software\PoitUI and the Home-directory
located under "Prgram Files" or "Programme" or
whatever language you have...
After reboot, all is like befor....normally
On my deinstall it worked so
Click to expand...
Click to collapse
Jesus it puts the lotion on its skin. Where being held captive by a piece of software gotta love that. Talk about nazi'ism feels like AOL for mobile devices go ahead install if you dare will require a format if u want to get rid of us though.
Easy to remove if you do it the right way. You would have found this if you would have looked on the forums for the program.
To Remove .Home
Drop back to the default Windows Mobile Today Screen
Start > Programs > .Update Manager
Pointui Products > Home > 1.0 Free > Uninstall
Perform a Soft Reboot after the uninstall and Home will be removed.
To finish the uninstall, use Remove Programs to uninstall the update manager, you can delete the installation folder if you so desire and the icon form the start menu.
To bad this procedure does not work on the 6800 there is no uninstall option in the update manager.
Custom Program?
Can someone make a program that you don't have to go in the registry and make it easier to change on the fly.
blazingwolf said:
Easy to remove if you do it the right way. You would have found this if you would have looked on the forums for the program.
Click to expand...
Click to collapse
Yeah, but going to the devs own forums and reading their instructions actually requires more than the single braincell a lot of people seem blessed with these days...
FloatingFatMan said:
Yeah, but going to the devs own forums and reading their instructions actually requires more than the single braincell a lot of people seem blessed with these days...
Click to expand...
Click to collapse
I love when jackasses speak about things they dont know.
NexVision said:
I love when jackasses speak about things they dont know.
Click to expand...
Click to collapse
And I love it when people with the IQ of a zit ask questions that are actually answered several times by several people on official forums.
NexVision said:
To bad this procedure does not work on the 6800 there is no uninstall option in the update manager.
Click to expand...
Click to collapse
It is there on my 6800.
Yup a IQ of a zit because the uninstall instructions do not work for me or hundreds of others and we want this off of our device so we ask for help. Real good insult there dont quit your dayjob (if u even have one) anyways I am done with you thanks for being a complete and utter waste of space.
Thank you blazingwolf for your attempt although it did not work.
This method did though.. Still had to alter the softkey though but no biggie.
haiopei said:
you dont...
after normally uninstall on your phone/pda you can
delete the registry-keys under
HKLM\Software\PoitUI and the Home-directory
located under "Prgram Files" or "Programme" or
whatever language you have...
After reboot, all is like befor....normally
On my deinstall it worked so
Click to expand...
Click to collapse
@Nexvision,
Did you go to the right location? It took me a minute to relize that I clicked on the wrong item one time.
blazingwolf said:
It is there on my 6800.
Click to expand...
Click to collapse
HMMMMMMM maybe it was the version I downloaded then I even tried downloading a new version today reinstalling and uninstalling no dice still for the uninstall method posted (other then manual delete). Oh well.

iPhon-izing my tmo WING: Some final questions: Numbers 10-19

(UPDATE July 15, 3:40pm Pacific)
I've gotten the answers I need to Questions 1-9 below, thanks! Can anyone give a shot to any question from 10-19 ? Thank you much!
I figured out a lot from my "part 1" thread several months ago: Should I flash-ROM to a better WM version than T-Mobile's -- before installing ifonz? .. (thanks ivanmmj, alongenemylines, and particularly robpet2,for getting me into the ballpark.
Summary of part 1:
1. A lot of really fantastic ROMS and themes here for many different needs, look at pureskills' lists, investigate them.
2. I've spent 2 months with ifonz "iphone theme" however, and it really works for my sensibilities, even if it is not the speediest. So I wanted a rec on a ROM to use.
3. Advice was: Yes, flash to a lite ROM, then install the iPhone-like apps you want, a la carte.
I'm about to do that now, I've read all the sticky threads and the Herald wiki, but despite doing my homework, I still have a laundry list of things to clarify. Hope you can help
-------------------------------------
Click to expand...
Click to collapse
1. Am I supposed to first install HardSPL to facilitate flashing roms? (I see that some ROM instructions require it) http://forum.xda-developers.com/showthread.php?t=358615 ( My T-Mob Wing’s less than 4 months old. )
2. Is this correct: If I ever have warranty or other issues with Tmo, I would remove HardSPL using DaMyth’s sequence? ( http://forum.xda-developers.com/showthread.php?t=364543 ) to restore to unmodified version; yes?
3. Do I want or need this? “T-Mo Wing RUU for USA!!” ( http://forum.xda-developers.com/showthread.php?t=321717 )
4. I just bought 8g micro-SD HC flash card. I’ve read of need, sometimes, to partition it first, to fool ROM installers that sometimes misread storage capacity. Should I ? ( http://forum.xda-developers.com/showthread.php?t=267475 )
5. I got some recs on ROMS to start with ((( you can use ifonz with papas rc5 rom, but you will need to disable the bs plug in and the UL plugin.. )))
(thanks robpet2 for the links to screenshots here, here, here, here, here, here, and here .
Is this the latest rc5 ROM?
[Update 1/July/2008 Herald|Wing|Micro] ITsPapaBlackDiamond_19949.1.2.0
Google Link 1 / Link 2 (Google cache, since I can't get the actual thread to open)
6. I know BS = BatteryStatus, UL=UltimateLauncher. After I flash to rc5 ROM, is there an initial config sequence where I disable the bs plug in and the UL plugin?
7. Top-Level question about what TouchFlo controls: Does TouchFlo provide finger-scrollable navigation for everything in WindowsMobile, and in any apps added? When using iphone-like apps like A_C’s, does TouchFlo conflict, enhance, or irrelevant with those apps?
8. Some specific APPS: I don’t like “ContactManager” from http://pocketcm.com/contact.php . It doesn't display notes, too many steps to edit, non-intuitive method of adding a contact. Do you have rec for finger-scrollable contact mgr that has large-type so I can use in car? (California now has “hands free” law re cellphones, so i’m looking for big-type interface, but with full functions of windows-default Contacts App. )
9. Every DIALER I see has no link to CONTACTS, yet has History. Have you seen any Dialer that has one-touch access to CONTACTS?
10. PCM Keyboard: It’s worked well for me while I’ve used ifonz. Anything better now, or is this still best?
11. Music Player: I've used MortPlayer, is there anything new/better?
a. Function I would like with MortPlayer: while it’s playing music in bg, I’m doing other things. I want instant access to pause, next track without having to get back into MP app. Possible?
b. MP skins: have you seen selections other than on his site? I can't find any I like, especially for CAR.
12. QuickMenu -- I really like this a lot. And it’s worked fine with ifonz. Will it work with papa’s rom? I change my windows hard-key to invoke QuickMenu.
13. Browser -- I like Netfront, but have yet to have any access to Skyfire. But Netfront lacks handy BACK button; it’s 2 steps away. Do most here use OperaMini? If so, does “StartOperaMini” work with the configurations I am building -- papa’s rc5, plus ifonz app? I tried it with my current stock t-mobile ROM and couldn't get it to work. ... or, maybe I just coudn't find the correct link to it to assign to an icon.
14. IMAGE VIEWER/ cropper: WindowsMobile's standard app is clunky. Is there better one? I tried A_C’s S2V, but it's problematic.
15. VOLUME/ Mute: I’d tried a few, didn’t like, but have you seen/tried “SET VOLUME” ? new as of a few days ago
http://www.freewarepocketpc.net/ppc-download-setvolume.html
16. Is TRANSCRIBER avail as an independent cab file? I'm prob one of the few people who use it and like it.
17. RECORD: I also like this app from default T-mobile wing (audio notes) (not sure if its WindowsMobile or HTC, but it's NOT the newer HTC Voice Notes app, which is meant for MMS, and audio quality is poorer)
18. VOICE COMMAND: The only thing I care about is in the car, dialing a contact, by speaking into my headset's mic. With WM5, i liked the VOICE TAGS to specifically associate with contacts. It’s gone now in WM6 with their new recognition system. ... Are there any add-on apps that enable voice-tags tied to contacts? The default app doesn;t work for me because I force the order of many of my contacts by beginning the entry with 01_name 1, 02_name 2, etc.
19. OTHER: I looked at ASerg’s CABS - http://forum.xda-developers.com/showpost.php?p=1961488&postcount=123 - Do you rec I add some of these to my microSD “to have available” after I flash to papas rc5, or “No opinion either way”? He puts his name in front of these apps, so does this mean he’s tweeked them, or just made the cabs to help install those apps more easily to his ROMs ?
Aserg Hard-Spl.4.70.yan *** is this what I need to install to WING before flashing rc5 ?
Aserg Remove-Hard-Spl *** should I get this?
ASerg HTC Scrolling.cab *** is this an alternative to TouchFlo, something different; useful to me?
ASerg Advanced_Configuration_Tool_2.1.0.cab *** This is just for his ROMS, right?
ASerg HTC_Task_Manager_2_0_31261_1US.cab *** Is this different from X-button ?
ASerg Fix-SmartDial&Scroll-Contacts-US&RUS.cab ***
ASerg NoDeleteCab.cab *** Is this the app that maintains your CABS on storage card so they are there again for later re-install?
ASerg Increase_in_sensitivity_TouchPanel.cab *** any experience with this? *** what is it meant to do?
ASerg Touch_Dual_Dialer_2G_US.cab *** have you tried, is it recommended?
--- end ---- Thanks for any numbered answers you can give. It's be nice if my whole message isn't quoted for replies, but I'll be thrilled with anything I can get. I'm not one who has time to test a bunch of things. I need to get this phone functional in a way that suits my workflow, then use it
Get an iPhone.
yeah that's funny except WM /Wing has more
I don't mind snark, if that's what that was.
But WindowsMobile devices offer more of what I need and like, including Video and transcriber recognition (something I use a lot) -- and these are no small matters for me and how I use a PDA device. I also like this open community and the constant development, and the ability to access my phone's ROM, and the microSD.
This has nothing to do with iPhone envy. Even if iPhone had all the features I want & like, I also actually have tremendous issues with ATT for their unlawful pervasive domestic spying of every citizen in USA, and you know what -- that matters to me.
And fact is, other than some performance problems due to OEM software creating no headroom, what I've been using (ifonz, with A_C's apps, PCMkeyboard, etc) has been fantastic for me -- best of both worlds -- which for me is the point.
Only 6-9 months ago there was tremendous attention to all these iPhoney issues, and the ifonz theme release caused several developers here to abandon further development on their own approaches to similar interface.
All I am looking for is performance improvement and slimming down the OS -- which is why I inquired about how to achieve that, and got a recommend from several people here about how to do this.
These are all refinement questions -- since I'd like to just get to it and take the time-hit required to accomplish this and then rebuild the app-set and icnon configuration that has WORKED GREAT for my needs. And all of these relate to making good choices before the downtime.
So I hope there's more to offer than your answer. gracias.
quicksite said:
1. Am I supposed to first install HardSPL to facilitate flashing roms? (I see that some ROM instructions require it) http://forum.xda-developers.com/showthread.php?t=358615 ( My T-Mob Wing’s less than 4 months old. )
Click to expand...
Click to collapse
Yes, doing a HardSPL will make it much easier to flash most custom-made ROMS. Highly recommended.
2. Is this correct: If I ever have warranty or other issues with Tmo, I would remove HardSPL using DaMyth’s sequence? ( http://forum.xda-developers.com/showthread.php?t=364543 ) to restore to unmodified version; yes?
Click to expand...
Click to collapse
Yes, following his method will allow you to reflash an original t-mobile ROM in case you ever need to return it for warranty purposes (though sometimes the reps don't scrutinize the details, from what i hear)
3. Do I want or need this? “T-Mo Wing RUU for USA!!” ( http://forum.xda-developers.com/showthread.php?t=321717 )
Click to expand...
Click to collapse
That's optional...it's useful if you ever want to revert back to the original t-mobile stock rom...however most people forgo this after they start flashing custom roms. (you could keep it saved, just in case you ever need to return it for warranty reasons, in which case you'll be following the steps in question 2, and then flashing this RUU)
6. I know BS = BatteryStatus, UL=UltimateLauncher. After I flash to rc5 ROM, is there an initial config sequence where I disable the bs plug in and the UL plugin?
Click to expand...
Click to collapse
in most custom roms to disable batterystatus and ultimatelauncher, you should go into settings--> personal-->today and uncheck the boxes in the items tab for both programs.
7. Top-Level question about what TouchFlo controls: Does TouchFlo provide finger-scrollable navigation for everything in WindowsMobile, and in any apps added? When using iphone-like apps like A_C’s, does TouchFlo conflict, enhance, or irrelevant with those apps?
Click to expand...
Click to collapse
not 100% sure on this, but i've noticed that the touchflo controls do have scrolling capabilities in most programs, ie word, excel, explorer, internet explorer.
9. Every DIALER I see has no link to CONTACTS, yet has History. Have you seen any Dialer that has one-touch access to CONTACTS?
Click to expand...
Click to collapse
in the default dialer (and i think most other dialer skins), you can hit your right softkey button and it will open up your contacts list.
Thank you so much!
monkey_knight said:
Yes, doing a HardSPL will make it much easier to flash most custom-made ROMS. Highly recommended.
Click to expand...
Click to collapse
I hope it's okay to say this (not sure of etiquette here)... but robpet2 highly recommends that I do NOT install it -- and instead use Flashing Center... and I am presuming that is because he is sensitive to my being a total newbie, and just providing an extra layer of security for me from doing something wrong in the sequence. btw, I don't know what Flashing Center is -- is this an app for Windows XP/ Vista? If so is it something I need to download ? (I use XP)
in most custom roms to disable batterystatus and ultimatelauncher, you should go into settings--> personal-->today and uncheck the boxes in the items tab for both programs.
Click to expand...
Click to collapse
Thank you! exactly what I needed to know
in the default dialer (and i think most other dialer skins), you can hit your right softkey button and it will open up your contacts list.
Click to expand...
Click to collapse
Now that you mention it, I now recall that. I have been using some addon dialer, and in that spot the soft menu item says "Menu", not contacts. Could you tell me is the dialer that comes from papa's latest (July 1st) rom a custom-dialer or the HTC dialer with unique skin. And does it have "Contacts" in the right hand soft-key?

[PRJ]Raphael & Diamond, Japanese Input and SoftBank MMS CABs

THIS THREAD WILL NOT BE UPDATED ANYMORE, FOR NEWS CHECK HERE
1. Displaying Japanese text
2. Japanese Advanced IME
3. SoftBank MMS
Fantastic job.I try it at once.
Oh wow... This is awesome stuff... Do you mean i can put the Softbank IME on my WWE ROM? I am just uninstalling my other Japanese enabling software so i can try it out right now (Even though its 2:30am and i have to work tomorrow...)
Perfect!
I now have my ultimate phone!
Ok well maybe if the battery would last a full day, but i am willing to accept that because now i have a proper Japanese input and access to Kaomoji
THANKYOU!
Edit: at 3am its hard to think straight and easy to get excited Any way to fix up the fact that the compact qwerty no longer works (only enters numerics, no alphabet), and proper T9 using the phonepad SIP? I assume thats the result of installing LetsJapan?
Also, are Emoji removed intentionally, or disabled for some reason?
Still very grateful by the way!
Please see the flinx1 thread for Japanese input for more information about the T9 bug:
http://forum.xda-developers.com/showthread.php?t=445550
It has to do with how LetsJapan sets all keyboards to 411 (Japanese), while T9 requires 409 (English) to work properly. You can revert the registry settings to 409+411 (see thread above), but you need to use the Ctrl+Shift shortcut to switch between keyboards (similar to Alt+Shift on Windows).
Emoji will require a special font, or HTML rendering provided by S!Mail. Are you perhaps referring to kaomoji? If so, kaomoji requires dictionaries to be updated/installed. Those will depend on what IME you're using: standard MS IME (LetsJapan), ATOK, WNN, or FSKAREN. I'm not sure which the Softbank SIP uses (usually ATOK or WNN), but only MS IME is free to distribute; the rest are commercial products and it would not be okay to redistribute them.
The files above included the kaomoji so thats pretty cool, but the emoji (bitmap smileys) are not enabled. But i am pretty sure you are correct about it requiring HTML rendering or something like that... Probably if the SB MMS cab was installed it could be used, but then i couldnt use MMS here in Australia anymore.
Edit: Tried some of the registry suggestions in that thread (not that any of them were very clearly described), and nothing enables the T9/Compact qwerty keyboard again. As an FYI, prior to installing this IME, i was using flinkx1's cabs; installed directly without any other changes, and i had the same problem. I then uninstalled everything before trying this solution
Hate to sound like a noob (ok well i am), but is there any way to keep the original Touch T9 + Compact Qwerty functionality as well as the Keytouch SIP?
Yeah; Japanese phones use a basic HTML renderer to display emoji in their MMS (with the emoji images cached on the phone). The previous solution was to use MMSLite which used a special dingbats font and (afaik) would parse the HTML in the MMS and return text that used the dingbats. Crude but effective, although the emoji font was of course only black&white.
S!Mail should provide proper image-based emoji, but you may be right that it might not work with existing MMS services. Then again, it's possible S!Mail simply runs as a separate program/process and does not change existing MMS settings. But I have no firsthand experience so hopefully someone else can provide more information.
Getting T9+JPIME to work together is going to be difficult and will probably be different from person to person, because not everyone will be using the same kinds of SIPs and the registry settings might differ. However, I looked at the Keytouch CAB and there are a couple keys that are overwriting other settings that might cause T9 to become disabled:
HKCU\ControlPanel\Sip
DefaultIm = {9BBD6249-34B4-4cfe-934A-1F0607FB1D5C} sets Keytouch as default SIP
Use {62B00599-25D2-4e09-8C48-03BF26DB8517} for Compact QWERTY
HKCU\keyboard layout\Preload
@ = e0010411 sets JP as the default input method
Use e0010409 for English/T9; You may also need to change or switch the settings in Preload\1 and Preload\2 accordingly.
There are also some settings in HKLM, although I think changing them will cause Keytouch to not work. Of course, it's also possible that using Keytouch will disable T9 regardless of the settings, so there's no way to know for sure if T9+JPIME is possible until people do some further testing.
I thought I had responded already... Anyway, I do know that on the Softbank 705NK (AKA Nokia N73), S!Mail is implemented as regular MMS. Emoji are displayed as part of the font, and it is possible to enable Emoji in all areas of the phone with a bit of a tweak. My 705NK was sim-unlocked, and I was able to use MMS here in Australia just by setting the MMS server details
So I suspect the X04HT S!Mail client can also be used here; but only if you have access to the server settings
Now, I tried setting the region coding settings, but as expected, this broke the TouchKey SIP (well the SIP worked, but it couldn’t insert the Japanese characters into the message). Now I have another idea... If I install TouchPal SIP will that work together with TouchKey? I hear that TouchPal is supposed to be an amazingly good input system anyway...
Edit: This seems to be the solution. Touchpal works fine with Japanese region settings, and its arguably a better keyboard anyway...
fhsieh said:
Please see the flinx1 thread for Japanese input for more information about the T9 bug:
http://forum.xda-developers.com/showthread.php?t=445550
It has to do with how LetsJapan sets all keyboards to 411 (Japanese), while T9 requires 409 (English) to work properly. You can revert the registry settings to 409+411 (see thread above), but you need to use the Ctrl+Shift shortcut to switch between keyboards (similar to Alt+Shift on Windows).
Emoji will require a special font, or HTML rendering provided by S!Mail. Are you perhaps referring to kaomoji? If so, kaomoji requires dictionaries to be updated/installed. Those will depend on what IME you're using: standard MS IME (LetsJapan), ATOK, WNN, or FSKAREN. I'm not sure which the Softbank SIP uses (usually ATOK or WNN), but only MS IME is free to distribute; the rest are commercial products and it would not be okay to redistribute them.
Click to expand...
Click to collapse
The problem with the flinx1 package is that while it works for displaying Japanese it does not always work with getting the IME installed correctly. I tend to change roms almost daily but I keep my flinx pack in my nand memory so I can just reinstall at a whim.
Problem is, you can't use the flinx package with the default qwerty input from HTC. You must install a separate IME. I have been using spb keyboard as it has a quick switch to Japanese. But for some reason, as of late, I have been unable to get Japanese input working with spb keyboard without going in to the full screen keyboard option. Of course zgembo's isn't offering IME with the qwerty input but it is offering a reliable input method; something I have been without for far too long.
When I finish at work, I will give zgembo's a shot. Looks like big shoes to fill. I also need to get my Softbank MMS working. I have set up a gmail account with smtp but it's a pain when you mail to phones and they are set up to block internet mail. I would love to go back to my @softbank.ne.jp account.
@zgembo
I am staying tuned, bud. I have set up my mail correctly before by following an fc2 blog but I noticed that after a few messages or if the message has emoji or an attachment, I get the evil "unable to decode header" error. What app will you base the work on? MMS Lite, arcsoft, other, self created?
hate to nitpick
if possible, would you be able to edit your first post and change X04HT and X05HT to 'X05HT and X04HT'? Just so that it's parallel with the line before it (Raphael and Diamond phones).
Kev, do you have the SB ROM on your TD? Do you have access to the MMS settings like on the WWE versions (Servers etc?)
The IME put up by ZGembo is awesome. I am already typing Japanese quicker than i was on my 705NK, and Kaomoji is a nice bonus. English is a bit more difficult than a normal Phonepad input system, but its *exactly* the same as normal Japanese keitai's with the benefit of word prediction (the bit that is the same is that each letter doesnt 'time out' so if you want to type "back" you press 2 twice, then right d-pad or a long press of the 'キャッチ' button to move on so you can press 2 once for 'a' and then again so you can press it 3 times for 'c').
DominikB said:
Kev, do you have the SB ROM on your TD? Do you have access to the MMS settings like on the WWE versions (Servers etc?)
The IME put up by ZGembo is awesome. I am already typing Japanese quicker than i was on my 705NK, and Kaomoji is a nice bonus. English is a bit more difficult than a normal Phonepad input system, but its *exactly* the same as normal Japanese keitai's with the benefit of word prediction (the bit that is the same is that each letter doesnt 'time out' so if you want to type "back" you press 2 twice, then right d-pad or a long press of the 'キャッチ' button to move on so you can press 2 once for 'a' and then again so you can press it 3 times for 'c').
Click to expand...
Click to collapse
Dom,
I currently have ITJE's TouchIT on my Diamond. It's a really nice rom. I got S!Mail working on WWE before but it was such a hassle I gave up. I just got home now and am in the process of uninstalling what's on my device now and uploading both of zgembo's files to rapidshare. I will PM it to zgembo and it will be up to him/her to post it.
I want to give the gesture entry a try for JP input. Can you use the same SIP for both IMEs?
I noticed that the letsjapan screws up the date in TF3D on the home screen (top left). I assume this is because the WWE rom lacks the japanese TF3D files. If you change your region to English (USA; or other English) your date will be fixed and magically the JP input still works great with prediction.
Zgembo, all your work finally paid off! Nice job!
Zgembo said:
2. Japanese Advanced IME
This is a new thing. It enables word prediction input in both English and Japanese, and unlike traditional WM5 & WM6 Japanese IME engines, SoftBank introduced this third party IME (Omron mobile wnn v2?) and integrated into its newer ROMs. After installation, KeyTouch IME will become default. It only works in portrait mode, and in the case of landscape mode, IME will change to classic romaji or kana input. Kensaku and Tegaki IMEs are included. Also, settings for Japanese keyboard layout are in this CAB, so if you are using some different layout, you are on your own (there are plenty of posts around which explain how to change this). This CAB is only for VGA (480x640) devices (Planning to make QVGA version too, stay tuned)​
Click to expand...
Click to collapse
Doesn't this violate their copyright? it's not supposed to redistribute itself nor is a default Japanese IME for Windows Mobile from Microsoft. but Softbank just paid money to Omron to ship it in their product. it's a kind of a proprietary software.
Kevbodian said:
I noticed that the letsjapan screws up the date in TF3D on the home screen (top left). I assume this is because the WWE rom lacks the japanese TF3D files. If you change your region to English (USA; or other English) your date will be fixed and magically the JP input still works great with prediction.
Zgembo, all your work finally paid off! Nice job!
Click to expand...
Click to collapse
Messes up how? (screenshot?)
All the WWE ROMs I've used come with MUIs for all languages (including Japanese). My guess is that LetsJapan is modifying the LCIDs (HKLM\nls) so that any non-ANSI Japanese programs can default to the corresponding codepage. TF3D will change accordingly, usually to 2009年02月18日 format (but that isn't exactly "screwed up"). You can of course customize regional settings (Settings > System > Regional > Date), and switch to English/西暦(英語) in order to change date localization back to English (for TF3D and other apps) while still keeping the device on the Japanese LCID/codepage.
Of course, I certainly haven't used every ROM so it's possible some chefs have removed all non-English TF3D MUIs, but you can't really blame that on LetsJapan.
fhsieh said:
Messes up how? (screenshot?)
All the WWE ROMs I've used come with MUIs for all languages (including Japanese). My guess is that LetsJapan is modifying the LCIDs (HKLM\nls) so that any non-ANSI Japanese programs can default to the corresponding codepage. TF3D will change accordingly, usually to 2009年02月18日 format (but that isn't exactly "screwed up"). You can of course customize regional settings (Settings > System > Regional > Date), and switch to English/西暦(英語) in order to change date localization back to English (for TF3D and other apps) while still keeping the device on the Japanese LCID/codepage.
Of course, I certainly haven't used every ROM so it's possible some chefs have removed all non-English TF3D MUIs, but you can't really blame that on LetsJapan.
Click to expand...
Click to collapse
Well, let's see. Flinx's pack doesnt do anything to the date display on the home tab of TF3D whereas every version of Lets I have tried, does. Flinx released a compatibility patch that is optional for his pack; once installed, it does the same thing to the date.
The thing that was happening to my date is like this:
Instead of saying: Feb 18, 2009, it would just change to 2 18, 2009. Again, this was easily fixed by going back to the English USA region. I did not claim that letsjapan screwed up anything that wasn't easily fixable by touching the screen a few times in the right places, nor was my remark about "nice job" in any kind of sarcastic tone. I wouldn't say I was placing blame anywhere.
As for the date thing... it's happened to me in every single WWE rom that I have tried installing LetsJapan on to. Again, this is fixed by changing the region or by installing TF3D tweak and setting the TF3D to japanese language altogether.
I have part 1 and 2 of zgembo's first post installed and all I can say is... fantastic.
The LCID keys that are included in the LetsJapan packs and in the optional flinx1 compatability patch are what cause TF3D (and any other app that relies on Regional Settings) to change the date format. It's a side effect, to be sure, and it will happen with all WWE roms, but it's not because LetsJapan (or the patch) are specifically affecting TF3D, nor is it because TF3D is missing 0411 MUIs.
I guess it's a choice of words; when you originally said "screws up the date in TF3D", I had imagined the date was somehow corrupted or illegible, and not simply a format change according to the LCIDs (which is normal).
At any rate it's amazing that WM, any windows for any system, is where it is now (just about 6.5) and IME is still such a pain in the ass. Why can't an OS just support this stuff without having to tweak so many little nooks and crannies. I just love the way the SIP that comes with our diamonds is simply incompatible with more than one IME.
Hi, I am new to all these stuff...
Is it possible to do with HTC S740 notouch model?
HTC: http://www.htc.com/europe/product/s740/overview.html
I wan enable Japanese read/write both Land/Potrait mode and how to turn on and off IME?
And also Softbank SMS/MMS
if some one can provide me the steps since I am newbei...
Thanks in advance
Thanks in advance
does anyone can help for my x05ht (Japanese keyboard)
Hi there.
I'm using x05ht which I bought cell phone in Japan.
so my x05ht keyborad layout is difficult to US Model.
and I was trying to search how to fix it in this forum.
then I found this thread.
I'm using EnergyRom1.6 Latest. then I tried to install
some software following step.
1.install the Rom
2.LetsJapanWM61r07.cab
3.KeyTouchJapIMEr07.cab
then I can type Japanese, and read Japanese.
But keyborad still doesn't work well.
which part should I edit (about reg or something relavent part.)?
I'm not sure, but when I using At0mAng Rom it works fine about keyborad.
especially now, function and some buttom isn't work.
when I push the fn button, then running calender. I also tried search any
thread about this problem. but usually I can't find the way to fix completely.
Best regards.
I was reading today about the MMS settings and it seems there are some registry hacks needed as well as a neat little browser called wasabi for enabling the yahoo keitai page.
Attached is said browser. Please note I am not the creator of this software and I found it at this link: url. I have not, as of yet, tried it either, so don't blame me if it doesn't work as I currently know only what I have skimmed on the above link.

[XAP] NTP Time Synchronization for interopunlocked Samsung phones

Because my GSM network's automatic time is somehow set wrong, the set automatic time+date doesn't work for me, so this is a quite useful app for me, it can get various NTP server times and synchronize the phone's time and date to it.
It can currently sync with multiple NTP servers, I tried to add as many as I could find, although the default Russian NTP server one works fine most of the time.
Since another person did most of the programming, and not me, it will be updated if needed, but that update might not be immediate...please add any comments bellow...second post is reserved for change log descriptions. Feel free to add your insight, along with any comments, they're all valuable.
TIA
p.s.
As of yet this can't be published to windows phone store because it uses INTEROPSERVICES capability (among other things), if anything about that changes you will be notified immediately with the store link, also you'll be notified if this ever starts working on other manufacturer's phones....until then please make sure your phone is developer unlocked to deploy/sideload it...and that it is interopunlocked to work.
p.p.s.
Last, but not least, thanks to GDTD and dimoniche.
post rsrvd
wow
I was somehow expecting some ugly but functional UI, but this certainly is awesome, and it works flawless!!
and the UI is well done!!
Any chance you can post the source? There's a capability (not INTEROPSERVICES) that specifically enables setting the time; it might be better to use that instead.
GoodDayToDie said:
Any chance you can post the source? There's a capability (not INTEROPSERVICES) that specifically enables setting the time; it might be better to use that instead.
Click to expand...
Click to collapse
Could you please provide this capability (for setting time)? I've tried to use kernel's SetSystemTime (with GetProcAddress trick) but it always returns 0 (i.e. BOOL FALSE).
You probably want ID_CAP_BUILTIN_SETTIME. Will probably require capability-unlock, but should let you use the Win32 APIs.
By the way, no need to mess with GetProcAddress. You can get the function prototype (from MSDN or from the header files) and link against the relevant library directly (may need to use DLL2LIB to extract the link library from the DLL).
GoodDayToDie said:
You probably want ID_CAP_BUILTIN_SETTIME. Will probably require capability-unlock, but should let you use the Win32 APIs.
Click to expand...
Click to collapse
I've got a build error: Error 1 The 'Name' attribute is invalid - The value 'ID_CAP_BUILTIN_SETTIME' is invalid according to its datatype 'String' - The Enumeration constraint failed.
GoodDayToDie said:
By the way, no need to mess with GetProcAddress. You can get the function prototype (from MSDN or from the header files) and link against the relevant library directly (may need to use DLL2LIB to extract the link library from the DLL).
Click to expand...
Click to collapse
App build by this way will never pass marketplace certification.
Well, not any more than a third-party app using ID_CAP_INTEROPSERVICES (or, probably, ID_CAP_BUILTIN_SETTIME) would, no... Unless you have a reason to try and be sneaky about what the app is doing, I find my approach to be more readable and straightforward. However, it's true that if you're trying to pull a fast one, it probably won't work because the import will appear in the PE data and that's easy to find.
GoodDayToDie said:
However, it's true that if you're trying to pull a fast one, it probably won't work because the import will appear in the PE data and that's easy to find.
Click to expand...
Click to collapse
Hmm... I believe we've already discussed how that stuff works (as far as I remember, I've sent you a source code). There is no imported function names in the import section, everything loaded dynamically (except one call). And - "yes" - it works perfect for store certification (just check current number of "volume controllers" at the store)

Categories

Resources