Hi Felgo
I have an app on Android running Gps service in background, I’m using “service” tag in AndroidManifest. If I set activity name and service name according to my package eg:
package – mycompany.myapp
activity – mycompany.myapp.GpsActivity
service – mycompany.myapp.GpsService
Ewerything works, gps service starts and also I can start front activity by clicking on service in Android task bar.
However, when I try to use nativeUtils.displayCameraPicker to take a picture app does not receive picture, I mean onCameraPickerFinished is not called in application.
How should I setup activity and service name ? Now I have :
package mycompany.myapp
activity – net.vplay.helper.VPlayActivity
service – ?
In order for the gps service to work, I’m using two classes GpsActivity.java GpsService.java
Best,
Marek