Posts filed under 'Symbian开发'

New app to show off your phone — FingerPrint!

You can play a trick with your friend to use your fingerprint to unlock your phone.

When the FingerPrint screen pops up, you need to touch your finger to the screen to be “scanned” for your identity, there will be vibration and beep sounds during the scan. You phone will be unlocked only under special conditions!

main screen setting 

Don’t believe? Watch the YouTube Video yourself here: http://www.youtube.com/watch?v=QyXyt-Ui5AM

Currently, it works only on Nokia 5800 and N97 with touch UI.
 For more info, please visit: http://thinkchange.cn

Popularity: 22% [?]

Add comment 06月 25th, 2009

AutoInstaller updates to V1.02

For those who have not used AutoInstaller before:

AutoInstaller makes it easy for you to install multiple apps with just one click, you just need to copy all the installation packages (sis, sisx, jar etc) to E:\ThinkChange\C or E:\ThinkChange\E ~

Several main updates:
1, supports 5800, no error msg during installtion.
2, show all the apps with sucess or fail notes
3, if failed, a detailed reason will be shown to the user.
4, several other bug fixes.

 Download it here: http://thinkchange.cn

Screenshots:

s60-3rd-install.jpg
(S60 3rd phones - installing)

s60-5th-installed.jpg
(S60 5th phones - all installed)

Popularity: 14% [?]

Add comment 06月 4th, 2009

ShakeSMS supports nokia 5800, N96 etc!

Are you still shake your phone to read the SMS?
As numerous requests from users, I made ShakeSMS supports for 5800, N96, N85 and E66 (E66 not tested).
The version for N95, N95 8GB and N82 has also been updated ;-)

The new version enables you to control the operation when reading a sms configurable! You can choose to reply SMS, delete SMS, Back & Lock, goto SMS folder in or do nothing based on your gesture ;-)

shakesms

 Wanna a try, please download at flipsilent.com !

Popularity: 23% [?]

3 comments 02月 13th, 2009

FlipSilent supports N96, N85 etc!

As the sensor API has changed in S60 3rd FP2, the previous version of FlipSilent is not working with N96, N85 …

I have changed the sensor part of FlipSilent to support the new sensor framework introduced in S60 3rd FP2,  So FlipSilent is supposed to support N96, N85, E65, 6210 navigator, please let me know if it supports on more devices.

The new beta unsigned version is available for download on http://flipsilent.com

FlipSilent For N96

 Welcome to any comments or suggestions ;-)

Popularity: 26% [?]

2 comments 12月 3rd, 2008

Problem fix for SDK/IDE installation

I changed my laptop to IBM T400, and during my installation of the SDK/IDEs, I encountered several small problems, I posted here hope that would help if you encounter the same problem.

I installed S60 3rd FP1, S60 5th SDK, Carbide.c++ v1.3, and the problems are listed here:

1, “Call to RegDBQueryKey failed” when installing the SDK — you can ignore it

2, Add the following path to the Environment path Variable:
C:\Program Files\CSL Arm Toolchain\libexec\gcc\arm-none-symbianelf\3.4.3;C:\Program Files\CSL Arm Toolchain\arm-none-symbianelf\bin;C:\Program Files\CSL Arm Toolchain\bin;

3, The S60 5th SDK project template won’t appear when creating a new symbian project in Carbide.C++ v1.3, download TouchUI-Project Template , and copy the S60-TouchUIApplication directory to the following directory on your hard driver:
” C:\Program Files\Nokia\Carbide.c++ v1.3\plugins\com.nokia.cdt.templates_1.3.0.023\templates\com\nokia\cdt\templates\projecttemplates”
And replace the “plugin.properties” and “plugin.xml” at: “C:\Program Files\Nokia\Carbide.c++ v1.3\plugins\com.nokia.cdt.templates_1.3.0.023″

Popularity: 24% [?]

Add comment 12月 3rd, 2008

How to detect a device has internal GPS hardware

Using the following code you can detect that if a phone device has an internal GPS hardware.

You have to #include <lbs.h> and link against lbs.lib.
————————————————————
   RPositionServer server;
   TPositionModuleInfo modInfo;

   User::LeaveIfError(server.Connect());
   CleanupClosePushL(server);

   TUint numModules;
   User::LeaveIfError(server.GetNumModules(numModules));

   for (TInt i = 0; i < numModules; i++)
    {
    User::LeaveIfError(server.GetModuleInfoByIndex(i, modInfo));
    if ((modInfo.TechnologyType()
      == TPositionModuleInfo::ETechnologyTerminal )
      && (modInfo.DeviceLocation()
        == TPositionModuleInfo::EDeviceInternal ))
     {
     User::InfoPrint(_L(”Internal GPS Detected!”));
     }
    }
   CleanupStack::PopAndDestroy(&server);
—————————————————————————

Popularity: 25% [?]

Add comment 11月 12th, 2008

AutoSisInstaller V1.01 Released!

Update:
1, Support installation to memory card.
2, Add Simplified Chinese language
3, Interface improvement
4, Serveral small bug fix.

Files copied to E:\ThinkChange\C\ will be installed to phone memory.
Files copied to E:\ThinkChange\E\ will be installed to memory card.

Enjoy and have fun playing with S60 phones!

Popularity: 30% [?]

3 comments 08月 23rd, 2008

FlipSilent V1.06 Get Symbian Signed!

From the very first version of FlipSilent on Jan,20, 2008, it has attracted users from 177 countries and got 330K page views, today , it finally get SIGNED!

FlipSilent Google Analytics

The main functionality of FlipSilent is to mute the call or alarm when you flip your phone over (by utilizing the accrocelemeters to detect the movement), also it can change the profile based on the position of the phone.The idea of FlipSilent comes from a Video on the S60 site (http://cn.s60.com/main/experience_touchUI_video.html). And Nokia high end phones such as Arte 8800 has preinstalled the same functionality, called “TurnToMute”, also, to the most recent news, Nokia 6210 will also have the same functionality.

Currently, it supports N95, N95 8GB and N82. Welcome to comments on how to improve, a thank you would be good motivation for my future work ;-)

The signed version will be available on my new site soon: http://thinkchange.cn !

Popularity: 36% [?]

3 comments 07月 13th, 2008

small font problem for the setting list

When using a setting list, if you change to small font, the text will be displayed incorrectly! (Menu -> Tools -> Settings -> General -> Personalization -> Display -> Font size ).

This problem appears only on the Numbered Style Setting list, (EAknSettingItemNumberedStyle). The only way to make it look right should be not using this style…

font bad    font good

Popularity: 33% [?]

Add comment 06月 25th, 2008

How to hide app icon from the main menu

Normally you should write a server to run in the background.

Anyway, with a normal app, you can do this by adding one line to your <appname>_reg.rss file.

RESOURCE APP_REGISTRATION_INFO
 {
 app_file=”hello_0xE67432E1″;
 localisable_resource_file =  qtn_loc_resource_file_1;
 localisable_resource_id = R_LOCALISABLE_APP_INFO;

 embeddability=KAppNotEmbeddable;
 newfile=KAppDoesNotSupportNewFile;
 hidden=KAppIsHidden;
 }

Popularity: 31% [?]

1 comment 06月 15th, 2008

Older Posts


标签

Calendar

09月 2010
« Apr    
 12345
6789101112
13141516171819
20212223242526
27282930  

Posts by Month

Posts by Category