Questions tagged [launching-application]

285 questions
0
votes
2 answers

What is signature in the android and why it show me error "the signature is in debug mode"?

There are lots of free android appmarket but Mobogenie is genuine and robust android application container but when i go to upload my android .apk file it is showing me a error "the signature is in debug mode". How can i fix it? so what is…
Pranav P
  • 1,755
  • 19
  • 39
0
votes
1 answer

Android Application Crashing on Launch

My android application crashes on launch on any device, there are no noticeable errors in the Code, can anyone help? this is the MainActivity.java package com.example.smartfood; import android.content.Intent; import android.os.Bundle; import…
0
votes
1 answer

Activity is not launched by NFC Tag

I've declared required intent filters, in manifest file for Activity. Scenario #1: when I tested with NFCDemo android sample app -> broad cast nfc tag -> that time my app is prompted in chooser dialog like other nfc apps NFC Tag Info & NXP Tag…
0
votes
1 answer

How start another package ontop of the stack?

I have to app stacks like this: A->B-C->D X->Y In Y I want to use getLaunchIntentForPackage("package") to get to D, however I get to A. What launch mode should I use etc? I would like to use singleTask for ABCD if possible. Also when in D and I…
0
votes
1 answer

Launch statistics in Android

Is there any way to get statistics about other application launches in Android system? Specifically I have the following questions: How many times other applications was launched? How much time user spent in other applications? Is there any API…
pvshnik
  • 1,760
  • 3
  • 12
  • 14
0
votes
2 answers

Android - Launch 3rd party app and do something

This is my first question so please don't be so harsh. Basically I want to open a 3rd party android app with mine and do something with that 3rd party app like search in a searchfield. I know how to just open another app (with intent) but that…
0
votes
1 answer

How to come back to last visible activity after splash screen on app icon click: Android

I have an application which always has to start with a splash screen. But after the splash screen, I want that it should go to the last activity that was visible before the application went to the background. Also, I would like the same behaviour…
Sunny
  • 7,444
  • 22
  • 63
  • 104
0
votes
0 answers

Sometimes cannot launch an application programmatically on jailbroken device

NSInteger error = SBSLaunchApplicationWithIdentifier((CFStringRef)bundleID, NO); NSLog(@"launching [%@] error: [%d]", bundleName, error); if (error) { CFStringRef errorStr = SBSApplicationLaunchingErrorString(error); DLog(@"launching %@…
BB.
  • 707
  • 2
  • 11
  • 22
0
votes
0 answers

How to launch app with arguments on Windows?

I would like launch an installed app on Windows and pass a string to it, so it can load a text and image directly after it started. I imagine something like this: C:\MyApp\example.exe?share&text=helloworld&img=example.jpg Is there a way to do this?…
Tom
  • 5,588
  • 20
  • 77
  • 129
0
votes
0 answers

Change icon of app

I want to change the application icon using button to change it. I've seen apps like Whatsapp Plus and Audio Manager does this. In Audio manager the apps name, title and even the launch screen(may be Main Activity) can be changed. I want to…
0
votes
0 answers

Lanching application and transition speed, fluidity

I just built my mobile application using JQM and Phonegap Build and I have two questions: I have a script to run at startup of the application that uses autologin, however on the first page after the splashscreen, you see the page appear and…
0
votes
1 answer

Launchurl handled twice in IOS Application

If i start my app via urlscheme i get the url in launchoptions in application:didFinishLaunchingWithOptions: and handle it there and return YES, but application:openURL:sourceApplication:annotation: is also called and therefore url is handled twice.…
jalmaas
  • 908
  • 8
  • 17
0
votes
2 answers

Android - bring OTHER apps to the foreground at their previous state

When you long press the homoe button and select an app from the recent apps, this app comes to the foreground the way you left it, in the same activity. How can someone launch an app simulating this behavior ? Something like this.. : if (there is a…
Anonymous
  • 4,470
  • 3
  • 36
  • 67
0
votes
1 answer

Launching windows metro app from secondary pinned tile

I am developing windows metro app using xaml/C#. I have following functions for handling app states in App.xaml.cs file : public overide OnLaunching(); public OnSuspending(); public OnResuming(); I have pinned some app content as secondary…
0
votes
1 answer

How to programmatically get scheme from an installed app?

I'm making an app that shows you the list of all apps you have installed, then when I select then, I want to launch that app in my device. I'm using the following code - (IBAction)openapp:(NSString*)app { urlString = [[NSString…