I wrote simple application for my Symbian mobile(Nokia 5800). Let's say it something like this:
import appuifw
appuifw.app.screen = "normal"
appuifw.app.title = u'Group 13'
colors = [u"red", u"green", u"blue", u"brown"]
index = appuifw.selection_list(colors, 1)
if index == 2:
print "blue is correct!"
elif index != None:
print "Bzz! " + colors[index] + " is not correct"
Then I convert it with "Python for S60"(ensymble) to make .sis file.
But when I install it, it asks me to allow application to use connectivity application, read user data, write user data, use camera and etc(Application access).
Is there any way to get rid of all of that functions, or not letting it access it?
Thanks.