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
-1
votes
1 answer

how to build appbundle in release mode with real device in flutter?

I have built an app in flutter using android studio and am trying to release it on the play store. According to https://flutter.dev/docs/deployment/android#reviewing-the-build-configuration, "Run flutter build appbundle (Running flutter build…
Saied Rahimi
  • 170
  • 2
  • 8
-1
votes
1 answer

Can i upload a new app bundle with same version code?

Can i upload a new app bundle with same version code? I asked this question because i can upload a new app bundle with same version code in internal app sharing? Is same thing possible for Internal,Alpha, Beta and Release production?
-2
votes
1 answer

install_name_tool: can't open input file: *.dylib for writing (Permission denied)

I can clearly see that libopenvdb.dylib file exists and I'm the owner. But install_name_tool throws this error: install_name_tool: can't open input file: libopenvdb.dylib for writing (Permission denied) Terminal commands: aec@mojaves-Mac…
Megidd
  • 7,089
  • 6
  • 65
  • 142
-2
votes
1 answer

How can I save a file into appbundle

I have an image named my-image. Can I save this image to the application bundle? If yes, can you provide me the code or paths. As of now, I have the following code – NSData * imageData = UIImagePNGRepresentation(userSavedImage); //convert image…
Vipin
  • 4,718
  • 12
  • 54
  • 81
-2
votes
1 answer

Exception in thread "main" java.lang.UnsupportedClassVersionError - While extracting bundle apks using BundleTool in android

Exception in thread "main" java.lang.UnsupportedClassVersionError: com/android/tools/build/bundletool/BundleToolMain : Unsupported major.minor version 52.0 I am trying to run bundletool.jar to extract apks from .aab in android studio.
1 2 3
9
10