Questions tagged [relaunch]
46 questions
0
votes
0 answers
Is this possible to activate app in terminate state if user enter into any region - iOS
I have implemented geofencing functionality in my App.
I get notified when user enter into particular region with below method
func locationManager(_ manager: CLLocationManager, didEnterRegion region: CLRegion) {
if region is CLCircularRegion…

Alok
- 24,880
- 6
- 40
- 67
0
votes
1 answer
Re-launch app on application launcher icon tap
According to Android behavior when user takes an app to background by pressing home button, on launcher icon tap the app will resume from where it went to background. I want a different behavior in my app, i want to relaunch the launcher activity…

SKP
- 410
- 5
- 20
0
votes
0 answers
Relaunching iOS application
I am a new user of Titanium and have started debugging a bank application. I am stuck at one of the bugs related to user session handling.
Currently, the user logs in to the app and does the transactions, but if the user kills the app without…
0
votes
1 answer
Relaunching app due to Significant Location Change
I am monitoring Significant Location Changes (SLC) even when the app is not in the foreground. It is working as expected and the app is woken up even when it is not running to handle the SLC. However, I would like to understand better how…

rgal75
- 151
- 6
0
votes
1 answer
relaunch android app in play store deleting previous
I have an android app in google play store and I lost keystore file. So I can not update the apk in play store. I want to delete the previous apk and upload new apk with same name. Is app users affected with this change? Whether they have to…

user3317695
- 76
- 7
0
votes
1 answer
Relaunching a jar from within itself?
I am looking to relaunch a program I've written programmatically without knowing the name of the jar it's contained in. I know there's a way to do it if it's a class by doing Runtime.getRuntime().exec(new String[]{"javaw", getClass().getName()});…

Scoopta
- 987
- 1
- 9
- 22
0
votes
2 answers
why am getting NullPointerException on onActivityResult while relaunching the app?
I have a problem on onActivityResult method of an activity(Cordova activity), following is the case where this happens
Launch a Activity1
StartActivityForResult named Activity2
Press home button
Relaunch the app through clicking on app icon
am…

Sampath Kumar
- 4,433
- 2
- 27
- 42
0
votes
0 answers
App is left open for a long period of time in the background, when brought to front it crashes
This problem happens when the user exits the app but doesn't quit the app. Then if the app is left in the background for too long it crashes when the user brings it to the front again. After the app crashes it relaunches the app, which is fine…

java
- 1,319
- 6
- 15
- 30
0
votes
0 answers
Android App Launch behavior changed when the app is overwritten while it is running
App launch behavior makes me complicated!
After my app is overwritten to be upgraded while it is running, re-launching behavior is something wrong.
Normally it displays last activity running when I click its icon to resume since it was stopped by…
0
votes
0 answers
Python auto re-launch script
My OS is OSX Maverick
Python 3.x
I have a python script sample.py that I run in terminal.
Sometime due to unexplained reason my script crash.
Is there a way to re-launch my script automatically on crash?
Thanks in advance for your help.

user3224813
- 85
- 4
0
votes
3 answers
Relaunch application to front witout recreating it
I am trying to relaunch application when a call is started. I am listening for phone state change and when I get state off hook I try to relaunch my application .
This is the launch activity code I am using:
Intent i = new Intent(context,…

user1252459
- 563
- 7
- 7
0
votes
1 answer
App Doesn't Behave Correctly On Relaunch
So, the app that I'm writing allows the user to upload a photo from their camera roll, and it displays in a UIImageView. I have a "Save" button, that allows the images to be saved when pressed. I also have an "Edit" button, when tapped, it allows…

Henry F
- 4,960
- 11
- 55
- 98
-1
votes
1 answer
alertDialogBuilder crashes only when relaunching the APP
I have a "alertDialogBuilder" to rename an entry when a button is pressed. This works fine when the App is freshly opened. But If I press the back button (meaning the App is minimized and I am back at the Android home-screen), when I relaunch the…

Vahid
- 13
- 4
-1
votes
2 answers
Is there any way to force an iPhone application to relaunch?
Basically -[UIApplication openURL:] would be perfect, if it wasn't for the fact that it doesn't work within the same application (at least on simulator -- if this works on device someone please tell me). It's not a super big deal though if it just…

Jared Pochtar
- 4,925
- 2
- 29
- 39
-1
votes
1 answer
is it possible to do this with a batch file?
first post. I have an interesting request that has to do with batch files.
I want to know if it's possible to code it so that the program that is launched with the bat file will terminate after a set amount of time, and then automatically restart,…