Questions tagged [app-startup]

Concerns that are a focus of application startup include configuration, startup time optimization, locking/threading/race conditions, preconditions, and configuration changes.

Application startup concerns include:

  • Configuration (e.g., database connection strings, SMTP server names, etc.)
  • Startup time optimization
  • Locking/threading/race conditions
  • Checking preconditions (e.g., presence of required folders / files, security checks)
  • Handling of configuration changes (i.e., whether the application has to be redeployed / recompiled / restarted)
176 questions
0
votes
1 answer

What's the difference between cold launch, warm launch?

Are these terms defined by Apple? Does cold mean app was killed. And warm means app was in memory?
mfaani
  • 33,269
  • 19
  • 164
  • 293
0
votes
2 answers

How do I set a program to run on startup and how desktop application's login check done

I have a small application built using python and tkinter, and I want that application to run on startup. Here I have few questions My question is how do I actually set the app to run at startup. My application needs to login, but I don't…
0
votes
2 answers

Android | Logcat is not displaying app startup time

I have been trying to measure the app startup time and stumbled across App startup time. It is mentioned here that using logcat with no filters we can see the log ActivityManager: Displayed com.android.myexample/.StartupTiming: +3s534ms (total…
0
votes
1 answer

How to get command line parameters in a WPF application using MvvmCross?

I'm trying to get command line parameters passed to my WPF application using MvvmCross. I want to access the parameters in my MainViewModel. Similar to how you would override the OnStartup() method (or create an event handler for the Startup event)…
toogeneric
  • 53
  • 6
0
votes
1 answer

How to Inject Multiple Startup Config Files in Net Core MVC modular plugin app?

please read below scenario: in a plugin based application built with Plugin Library DotnetCorePlugins where a single host application serves with micro plugins everything is working well and good. But i need to do startup service registration from…
Alok
  • 808
  • 13
  • 40
0
votes
0 answers

TomEE taking lot of time while initializing virtual directory

We are using Apache TomEE plus 8 on Windows 2016 Server. We have created a Virtual Directory containing 300K+ files. It was observed that TomEE taking more than an hour to get started. TomEE getting started in around 2 minutes if Virtual directory…
Prasad
  • 21
  • 2
0
votes
1 answer

How to ignore HTTPS Only Azure Appservice custom domain setting for Always on

I have a ASP.Net Core 2.2 site running as an Azure AppService. As part of the configuration, I have a custom domain with the HTTPS only setting turned on. I also have the Always on setting turned on on my Appservice. According to this…
0
votes
1 answer

Filter and Sort Projects in Visual Studio 2019 For Better Management Of Multiple Startup Projects

My team works on a solution in Visual Studio 2019. The solution contains many dozens of projects. We do use solution filters, but there are occasions where it is more convenient overall to load the entire solution. One thing that's less convenient…
0
votes
0 answers

Automatically restart Shiny apps after server reboot

I have a Shiny application that needs to load into memory some fairly large data sets. To save the users some time when browsing to the dashboard, I set the app_idle_timeout to zero (using the community version of the Shiny server application), as…
S-UP
  • 83
  • 1
  • 8
0
votes
1 answer

vb.NET starting a form with a vb class instead of a form but the form closes as soon as it starts

I want to use an object to start my form in VB but when I use an object, the form open but then closes right after. I'm using a vb class as an object to start the application in my projects properties. The problem I encounter is that as soon as it…
Celoufran
  • 93
  • 1
  • 9
0
votes
2 answers

Splash Screen not appearing when using intent-filter for file extension

I am implementing a splash screen that is visible until the main Activity of my app manages to render a PDF. When I am opening the app, by clicking on the launcher icon, I can see the splash screen normally. When I try to open a PDF with the app,…
Iakovos
  • 1,842
  • 4
  • 25
  • 30
0
votes
2 answers

Initialise a slow-loading resource on Android?

I have an Android application, written in Java. It uses a Java class that takes a few seconds to load (some .csv files and jars). What is the idiomatic way to load that stuff? I inherited the code, and right now it tries to load it in the…
dfrankow
  • 20,191
  • 41
  • 152
  • 214
0
votes
1 answer

.NET Core 2.2 - Unable to get app configuration from Azure AppConfig

I've created an Azure AppConfiguration store and get the Access Keys (EndPoint, Id, Secret, ConnectionString). Now from my .NET Core WebAPI app, I want to read the configurations from Azure. I have tried many approaches that I found online but none…
Jay Nguyen
  • 342
  • 1
  • 2
  • 18
0
votes
1 answer

Autostarting applicaton without putting in startup folder

I have an application, in which we automatically start derby DB, spring boot web service and Java Fx application through and a python script. I created an exe which executes that python script and puts it in the startup folder. Is this correct…
kailashdesiti
  • 165
  • 1
  • 13
0
votes
1 answer

Suppressing file open at macOS app startup

I have a file-based Objective C app for macOS. When the user starts the app, macOS automatically reopens files that were open when the user last ran the app. I want to prevent that, sometimes. I'd like to use AppDelegate…