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 :

116 questions
18
votes
2 answers

Custom drop-in icons for DMG background for application packaging on MacOSX

I'm having trouble adding custom icons for a DMG background in a self-contained package built on MacOSX. I have added a package in the root directory of my project. The custom icon is getting loaded from it, but the DMG background icon isn't. I am…
Sumodh Nair
  • 1,575
  • 1
  • 10
  • 30
10
votes
4 answers

What is the cleanest way to set the environmental variable DYLD_FRAMEWORK_PATH for a release build?

I have custom frameworks in my app bundle for WebKit, WebCore, and JavaScriptCore. I would like all other frameworks that depend on the system versions of WebKit, WebCore, or JavaScriptCore to use my custom versions also. For instance my custom…
Michael Wildermuth
  • 5,282
  • 2
  • 23
  • 47
8
votes
3 answers

In Dynamic Feature Module can not access Resource file

I am trying to implement Dynamic delivery type App. First I create new project after that create Module for dynamic steps for this Select File > New > New Module from the menu bar and Create New Module dialog, select Dynamic Feature Module and…
7
votes
1 answer

Code sign Java app for OS X Gatekeeper

I am trying to distribute a Java application to OS X users. I am not using the Mac store - it is to be distributed through my own website. Whatever I try, OS X's Gatekeeper rejects the app. Here's my method: (1) Build the app as usual, get a JAR…
HughHughTeotl
  • 4,480
  • 2
  • 27
  • 41
7
votes
1 answer

AppBundle throws "LSOpenURLsWithRole() failed with error -10810" after compiling with java 7 or 8

I upgraded jdk to version 7_45. After compiling and executing the jar, which works fine, i packed it into an application bundle. But unfortunately i get this error message "LSOpenURLsWithRole() failed with error -10810 for the file…
domizai
  • 223
  • 1
  • 5
  • 12
6
votes
0 answers

Double clicking OS X app bundle built with pyinstaller doesn't open the app, but running executable from within the bundle works. What's wrong?

When I try to build this app on OS X with pyinstaller the app bundle doesn't work. Double clicking on the bundle from the finder doesn't do anything. OS version: OS X High Sierra 10.13.6 python: 3.6.3 pyinstaller: 3.3.1 (also tried…
Marieke
  • 61
  • 3
6
votes
1 answer

What makes an OS X app not open with the error "LSOpenURLsWithRole() failed with error -10810"?

I am working on what should be a very simple application bundle for OS X. My OS is version 10.7.5. The app in this case is a shell script. Kerkerkruip.app/Contents/Info.plist:
curiousdannii
  • 1,115
  • 1
  • 21
  • 30
6
votes
1 answer

Packaging C binary in Mac OS X Application Bundle

I'm trying to package my binary in a minimalistic app bundle. But I'm seeing some strange behavior with the result. My bundle has this minimal structure: $ ls -R HelloWorld.app Contents HelloWorld.app/Contents: Info.plist MacOS …
Johan Bilien
  • 382
  • 1
  • 12
4
votes
1 answer

Monomac An Exception as thown by the type initializer for System.Net.WebRequest

I'm writing a program in monomac to ftp files to a server. I used the FtpWebRequest as FtpWebRequest request =(FtpWebRequest)WebRequest.Create("ftp://serverip/filename"); When I'm running this code in monodevelop its running properly. But when I…
4
votes
1 answer

java.lang.NoSuchMethodError: No static method asAttributeSet(Lt/g/a/a;)Landroid/util/AttributeSet; in class Landroid/util/Xml;

Complete error java.lang.NoSuchMethodError: No static method asAttributeSet(Lt/g/a/a;)Landroid/util/AttributeSet; in class Landroid/util/Xml; or its super classes (declaration of 'android.util.Xml' appears in…
4
votes
1 answer

OSX Java App Bundle runs on HFS+ but not APFS

I've been encountering this issue that I find has no information on the web and would like some help as I've been working on this for the last few days with no leads. Why does my java app suddenly stop working for APFS? It works if I move the app to…
Andre Ty
  • 111
  • 6
4
votes
1 answer

Make an OSX app bundle for a Java program without user interface stay in Dock while the app is running

I tried to create my first OSX app bundle for a Java application today. It works, but there is one problem and I could not find any solution for it. The Java application is a web server without user interface. What happens when I start the app…
Sky
  • 638
  • 6
  • 18
4
votes
2 answers

Exclude specific files under a folder reference in Xcode 4

I've added a resources directory as a folder reference to the app bundle according to this question. I'd like to exclude some of underlying files, since I don't need them in my app. The "Delete" context menu item is disabled on every file below the…
kshahar
  • 9,617
  • 9
  • 45
  • 66
3
votes
0 answers

How can I build Flutter appbundle with a locale engine?

I've built local engine according to the document https://github.com/flutter/flutter/wiki/Compiling-the-engine In my out directory, there are 4 directories, which is android_debug_unopt, android_debug_unopt_arm64, host_debug_unopt,…
Singun
  • 41
  • 1
3
votes
1 answer

is there any upper limit on publishing Android app bundle on play store?

Our .aab file size has been increased to more than 150mb. So i want to know whether we can publish the .aab file more than 150mb file on play store. As per developer docs : https://developer.android.com/guide/app-bundle/ Publishing with Android App…
Ashok Kumar
  • 1,052
  • 9
  • 12
1
2 3 4 5 6 7 8