Questions tagged [launching-application]

281 questions
173
votes
45 answers

Xcode 9 error: "iPhone has denied the launch request"

Using Xcode beta 9 (v4), I'm trying to launch the app by clicking on the "play" button. I get a "build succeeded" but right before launching, a popup message appears in Xcode: "iPhone has denied the launch request." It used to work yesterday. It…
user1988824
  • 2,877
  • 2
  • 18
  • 25
163
votes
17 answers

How to detect first time app launch on an iPhone

How can I detect the very first time launch of - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { // if very first launch than perform actionA // else perform actionB } method?
Shishir.bobby
  • 10,696
  • 20
  • 67
  • 99
65
votes
7 answers

Detect when an iOS app is launched for the first time?

How do I detect when an iOS app is launched for the first time?
Steph Thirion
  • 9,093
  • 9
  • 48
  • 58
42
votes
4 answers

How to start/ launch application at boot time Android

I would like to launch my app when my tablet starts, so that the main activity of my app is the first thing that the user see when they start the tablet. I've read about LauncherActivity but I don't understand how to use it. Can anyone help me with…
28
votes
4 answers

How to launch Google Maps on iPhone via web link?

I am building a site that will have address links as well as image of a map - both of which have a link to Google Maps. The problem is that when I click on these links using my iPhone - or any address link that shows up in an email, the result is…
19
votes
3 answers

Java launch error selection does not contain a main type

I am a total newbie in Java and Eclipse. I googled for lots of help but still confused. From Eclipse I click run then choose Java application and I get this error immediately. Here is my source code: import java.util.Arrays; import…
John Adams
  • 4,573
  • 23
  • 85
  • 124
18
votes
5 answers

catch another process unhandled exception

I wish to know if i can catch the unhandled exceptions thrown by another process which I started using the Process.Start(...) I know i can catch the standered error using this link , but what I want is to catch the error that are usually caught by…
18
votes
5 answers

Launching Plugin Fails, Missing Constraint javax.xml.bind

I am writing an Eclipse plugin using Eclipse RCP (Kepler). Everything was working fine until last night all the sudden I started getting null pointer exceptions when trying to test my plugin. Here is a snippit of the stacktrace: !ENTRY…
Jan Tacci
  • 2,931
  • 16
  • 56
  • 82
18
votes
4 answers

Launch an external application from node.js

I'm writing a desktop web app that uses node.js to access the local file system. I can currently use node.js to open and copy files to different places on the hard drive. What I would also like to do is allow the user to open a specific file using…
Pete Gardner
  • 435
  • 1
  • 5
  • 16
18
votes
3 answers

Launch android app when a link is tapped on SMS

I don't know if many people have tried this but I am trying a build an app that requires user to tap on a link on the sms he/she receives and this will launch the android app. Is it possible to do in android? If yes, how can I do this? I know this…
nishantvodoo
  • 768
  • 3
  • 15
  • 31
18
votes
6 answers

iOS: Failed to launch .app file

I don't know why it is looking for directory inside my .app file. Every time I run application it installs the App on iPhone but doesn't run and gives below error. Could anyone please tell me where's this settings stored? Thanks. error: failed to…
AlienMonkeyCoder
  • 7,314
  • 11
  • 69
  • 138
17
votes
7 answers

How to change start Activity dynamically?

I am working on an android app. I want to change Start activity dynamically. i mean when user start app first time then start activity will different and when start second time start activity change.This will skip first two activity and move to…
user2223286
  • 199
  • 2
  • 6
17
votes
2 answers

How to make an Android launcher icon

The first impression of an app is the launcher icon in the app store so it is something that should not be taken lightly. I have finally made it to the end of my first app but still need an icon. I am not great in graphics or design. My question…
Matt
  • 3,690
  • 14
  • 42
  • 87
15
votes
1 answer

android app screen flashing at launch

Hi I have searched everywhere here and on Google, without getting a correct answer. So I post a new question: I have several Android Apps that were working perfectly with 1.6 up to 2.3... BUT now, with Android 4.0 (ICS), I have users reporting that…
13
votes
1 answer

Any way to detect URI schema is available in windows using JavaScript in IE

I found few ways to detect where window support current URI scheme for Firefox and Chrome browser, if application not registered i will download and register those application uri Chrome var appWindow =…
1
2 3
18 19