Questions tagged [nokia]

Nokia Corporation is a Finnish multinational communications corporation. Use this tag only for programming problems specifically related to Nokia-branded devices.

721 questions
3
votes
1 answer

Is it possible to know what processes are running on a symbian phone with Qt?

I know its possible with Symbian C++ as the following code void GetProcessListL(void) { TFullName res; TFindProcess find; while(find.Next(res) == KErrNone) { RProcess ph; ph.Open(find); // here you can use // functions of the…
Jimmy Lu
  • 4,810
  • 7
  • 25
  • 30
3
votes
1 answer

Nokia S60 oma dm/client provisioning

I am looking for a very basic provisioning example. I have a wap provisioning file that I just want to use to configure my device. I am looking for API with example that can do this?
tvr
  • 4,455
  • 9
  • 24
  • 29
3
votes
4 answers

Does the stack limit of Symbian also apply to PyS60?

Symbian has a stack limit of 8kB. Does this also apply to the function calling in PyS60 apps?
Xolve
  • 22,298
  • 21
  • 77
  • 125
3
votes
2 answers

Does PyS60 has a reliable garbage collection?

I have heard it many times that garbage collection in PyS60 is not up to to the mark. This imposes a lot of limits on writing cleaner code. Can I at least rely that the non cyclic references are cleaned up after a function exists.
Xolve
  • 22,298
  • 21
  • 77
  • 125
3
votes
0 answers

Does Any one know how to create Nokia virtual Devise (Emulator) For Test and Debug Android Application?

Currently I am facing that my Android Application getting Crash Nokia 5 (Android 8.1) device but it working fine in other devices. I don't have Actual Nokia 5 Device there for I am trying to create Nokia Emulator.
Dulanga
  • 921
  • 11
  • 23
3
votes
1 answer

Gotoline in Qt Creator

Well, I'm doing a Goto Line System. But it seems it doesn't work. It did before but I think I broke it. void ScriptWindow::gotoLine() { int line = QInputDialog::getInteger(myEdit, "Line Number","To what line do you want to go?", 1, 1,…
Kazuma
  • 1,371
  • 6
  • 19
  • 33
3
votes
1 answer

Qt Tabs for Files

Well, i'm working on an IDE System, which can open multiple files at same time. I'm somewhat noob with Tabs. What i'm trying to do is a TabSystem, you click a file on the File Tree and it opens a new tab for it and show it's content. You can switch…
Kazuma
  • 1,371
  • 6
  • 19
  • 33
3
votes
1 answer

Qt - How to set text on top of QLabel Image

I believe QPainter is used, but I can't figure out how to combine the two. QLabel* imageLabel = new QLabel(); QImage image("c://image.png"); imageLabel->setPixmap(QPixmap::fromImage(image)); imageLabel->setAlignment(Qt::AlignCenter); QPainter*…
user375566
3
votes
1 answer

using external libraries in Qt/Symbian

To get Facebook integration in our Nokia Symbian application we intend to use this library: http://gitorious.org/qfacebookconnect It is not otherwise working completely correctly, but it's a good start. I have my project (.pro and .cpp files, using…
Emmanuel Touzery
  • 9,008
  • 3
  • 65
  • 81
3
votes
4 answers

Save Call on Java Mobile / Phone to mp3 or any Audio format / file

I want to Save Call on Java Mobile / Phone to mp3 or any Audio format / file . How should I go ahead with. I am quite well versed with Core Java. I found apps supporting above mentioned functionality in symbian Phones only but NOT in Java phones…
Pratik
  • 11,534
  • 22
  • 69
  • 99
3
votes
1 answer

Nokia apps Development

I want to develop the Nokia Apps. How to start? Where to start? Where will I get the details information ? What are the dev environment they supporting? Please help me.. Thanks in advance. I am a fresher to this one.
B4G
3
votes
3 answers

where to start learning nokia application?

i have no idea about the nokia app all i know it is used the c++ and QT SDK correct me if I am wrong. any references or book will be great. Thanks
Bobj-C
  • 5,276
  • 9
  • 47
  • 83
3
votes
1 answer

How to install/configure Eclipse for Java ME development for the Nokia Series 40? (Windows)

What is required to start developing for Nokia Series 40 with Java?
hsmit
  • 3,906
  • 7
  • 34
  • 46
3
votes
2 answers

How to Increase heap size in Java ME?

Is there any way to increase the heap size for Java ME on a device? I'm developing an application for a Nokia N95, but am bumping into memory issues when I try to do image processing of larger images. The phone has plenty of heap space available,…
Cory
  • 22,772
  • 19
  • 94
  • 91
3
votes
1 answer

Nokia Application Distribution

I am making an application for Nokia phone using J2ME. I want to know how to distribute my Nokia application.
Nilesh
  • 31
  • 1