The application is requesting an Internet connection

When I launch any application that I wrote using python for my Nokia 5800 (software version 60.0.003), it asks me for an Internet connection. The application does not use it or does not need it. And if I miss this application works fine.

I am using ensymble (PyS60 application packager 2.0.0) with Python 2.5.2 to create an application and python version 2.0.0 on a Nokia phone.

I tried to set only "--caps =" or "--caps = ReadUserData" to check if it would delete it, but it still asks for the access point. Even for simple use:

print "Hello world!" 

Does anyone know how I can remove this?

Thanks.

+6
source share
1 answer

This is not Python itself. I traced it and it does not open any sockets at startup. Check out the features that are installed in the Python interpreter. Perhaps he has a set of NetworkServices because he can use sockets.

0
source

Source: https://habr.com/ru/post/908744/


All Articles