Questions tagged [app-bundle]

Questions related to OS X or iOS `.app` files, particularly their creation. Underneath, these are a special folder called a bundle. iOS .ipa files are then based off of these.

In an application bundle, the first directory in the bundle underneath the top-level directory is usually named Contents. Within Contents there is usually another directory (called MacOS on Macs, or using the application's name on GNUstep), which contains the application's executable code.

An application bundle manages the code and resources associated with a launchable process. The exact structure of this bundle depends on the platform (iOS or OS X) that you are targeting. For information about the structure of application bundles

Bundles provide a simplified interface for end users and at the same time provide support for development. This chapter provides an introduction to bundles and discusses the role they play in OS X and iOS.

Reference :

140 questions
0
votes
1 answer

Qt: OSX: Where to put (both file manager and exec accessible) resources?

im a bit confused about the most proper way to manage resources (files and folders) needed by the application. I make it clear: I have an executable ( developing on mac osx with qt ), and a i have a fixed folder hierarchy, where a bunch of…
jalone
  • 1,953
  • 4
  • 27
  • 46
0
votes
1 answer

running flutter build app bundle not working

i made keystore according to flutter documentation using this command keytool -genkey -v -keystore %userprofile%\upload-keystore.jks -storetype JKS -keyalg RSA -keysize 2048 -validity 10000 -alias upload and I created my key.properties in…
0
votes
1 answer

Flutter Failed to build appbundle when using DeferredComponent

I'm using DeferredComponent in my Flutter project. The app run successfully in debug and release mode. However, when I try to make an appbundle, the Deferred Components validation fails with the following error. ERROR…
Naufal Rajabi
  • 334
  • 4
  • 13
0
votes
0 answers

How could I create a .app file from scratch? When I try and run my bundle, it opens for less than a second and closes

I am trying to create a program to pack Lua scripts into a .app file, and am having trouble with running the app. To test, I got a working program and put it in MyApp.app/Contents/MacOS/main (This program has UI), and setup…
Frityet
  • 1
  • 1
0
votes
0 answers

How to embed H2 database in MacOS App Bundle

For a Java console application, we are trying to an embed H2 database in a MacOS App Bundle. We are using Maven and Eclipse but are totally open to any tool recommendations. We made some progress with the following Maven…
anas
  • 11
  • 3
0
votes
0 answers

Do I have to create a pepk and jks file for every single app bundle I generate in android studio?

Do I have to create a private key and jks file for every app bundle I generate in android studio? I noticed that I can't place them in another folder once I have created the private key and jks file and that it becomes confusing when I have more…
0
votes
0 answers

Sample code at app-bundle-samples/PlayAssetDelivery/NativeSample/ not generating all standalone apks

I am trying to use the sample code located here - https://github.com/android/app-bundle-samples/tree/main/PlayAssetDelivery/NativeSample to get an understanding of App Bundles. According to the documentation when the minSDK Version is less than 21,…
0
votes
1 answer

Github actions - MacOS app bundle as artifact is not executable after download

I have created a Github action that builds, codesigns, notarizes and staples an Avalonia application app bundle. These steps do seem to work. As a final step, I want to add the app bundle as an artifact to the workflow. To do so, I move the .app…
sergevm
  • 171
  • 2
  • 12
0
votes
1 answer

flutter build apk --split-per-abi: Execution failed for task ':app:packageRelease'

i have been trying to build a flutter apk with this flutter build apk --split-per-abi: but i seem to be getting this error, i tried to do some refactoring and corrections from StackOverflow but the error seems to persist 192:party_app olamide$…
Ariyo
  • 49
  • 4
0
votes
0 answers

Questions about SHA-1 in flutter

good morning all, I've some questions about SHA-1 in flutter I hope to be helpful to all firstly, I want to know Is SHA-1 unique for each project? secondly, in my first project in a flutter, I could generate SHA-1 easily but later on I couldn't,…
0
votes
1 answer

Download size under the "Downloads" tab vs "Delivery" tab in Google Play App Bundle Explorer, which one is actual user's download size?

When I upload an app bundle aab into the Google Play console (under internal testing track at the moment), I can see the following two tabs from the App Bundle Explorer. The sizes shown under the "Downloads" tab (for the APKs) and the "Delivery" tab…
0
votes
2 answers

Can you sign app bundle from different PC / keystore

I uploaded my first app bundle from a desktop pc. But now I want to upload an app bundle from a different pc (MacBook to be precise). So I added additional sha-1 and sha-256 fingerprint in my console account and created a new upload-keystore.jks…
jyashi
  • 33
  • 7
0
votes
1 answer

Google play can not update older version of installed apk with new released bundle

I got a situation here that is somehow complicated to me. Some months ago one of my colleagues uploaded a bundle to google play. besides google play we upload bundle releases to other stores and apk to our website so there are different ways to…
Reza
  • 845
  • 13
  • 18
0
votes
0 answers

Swift - macOS - Problem with Bundle App Path

I made a Swift 5 macOS app, which loads some data from the folder where the .app file is located. Here is my code: rutaApp = Bundle.main.bundlePath.replacingOccurrences(of: "/RetroMac.app", with: "") it works ok in my computer. Then use Product ->…
0
votes
1 answer

How to produce an app bundle so that user can double click to launch docker application?

Suppose I have a docker application (such as this one). The standard usage is using the CLI to run docker run, in this case, for macOS users it would be: docker run -it --rm bigdeddu/nyxt:2.2.1 Now, I would like to produce an app bundle or…
Pedro Delfino
  • 2,421
  • 1
  • 15
  • 30