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
vote
0 answers

How to Download the AppBundler Jar

I would like to package a Java app into a .app but the java.net site is down. I can't find a mirror for the appbundler jar. How can I get this jar or what is another way that I can package my app with the JRE.
Dylan Siegler
  • 742
  • 8
  • 23
1
vote
0 answers

Reducing mono framework size for macOS application bundle

We are porting a rather big mostly .Net based application to macOS, consisting of multiple managed and native libraries and applications. We want to bundle the Mono.framework (4.8) in our application bundle. But sadly the Mono.framework is rather…
sanosdole
  • 2,469
  • 16
  • 18
1
vote
1 answer

macOS: Create .app bundle

I am currently developing a Java application. Now I created a setup for Windows users to make it easier for them to use the application. Now I would like to do the same (or let's say the equivalent) for macOS users. As I am not a macOS user I…
zimmerrol
  • 4,872
  • 3
  • 22
  • 41
1
vote
0 answers

Java App Bundler doesn't support Retina?

I recently used the Java App Bundler utility to successfully create a Mac App bundle, with an icon of my choice. Here are links: http://docs.oracle.com/javase/7/docs/technotes/guides/jweb/packagingAppsForMac.html (Oracle's…
Sam Claus
  • 1,807
  • 23
  • 39
1
vote
1 answer

Issues creating new app bundle on iTunes Connect

I have two paid apps on iTunes Connect and I wish to create a new app bundle including both apps. However, when I select the first app on the 'New App Bundle' page, the second app simply disappears from the 'Apps in This Bundle' and I can't select…
Joshua
  • 1,974
  • 2
  • 23
  • 39
1
vote
0 answers

cx_freeze builds Mac program that runs from command line but dies when clicked

I have a Python 2.7/PyQt4 program that I am attempting to freeze with cx_freeze. The program also uses requests, serial, xml.etree.ElementTree, and collections. Using the unmodified setup.py generated by cxfreeze-quickstart-2.7, I can successfully…
1
vote
0 answers

LSOpenURLsWithRole() failed with error -10810 from fstream cpp

I wrote a cross platform cpp application and wish to create a *.app bundle for osx. Compiling and running as unix-executable works just fine. Using SET(MACOSX_BUNDLE_BUNDLE_NAME ${appName}) SET_TARGET_PROPERTIES(${appName} PROPERTIES MACOSX_BUNDLE…
Teris
  • 600
  • 1
  • 7
  • 24
1
vote
1 answer

i am getting an error while using app bundler in ant

When I am going to create .app file using app bundler in ant it gives an error given below: /Users/vijaygupta/NetBeansProjects/Screen Grabber/build.xml:14: Problem: failed to create task or type bundleapp Cause: The name is undefined. Action: Check…
ppst99
  • 69
  • 1
  • 13
1
vote
1 answer

How can I set right click->Options->Keep in Dock on a program that only runs for 10 seconds?

I have a program (.app bundle) that I wrote for OS X Mountain Lion. It performs a task that only I need and it only runs for 10 seconds. Once a day, I click on it (Launchpad->click my app) and 10 seconds later, it is done and it closes. I want it…
Robert Louis Murphy
  • 1,558
  • 1
  • 16
  • 29
1
vote
2 answers

iOS - Copy sqlite to bundle for CoreData

Here's what I've done: Created the sqlite file with a populated version of the app. Copied that file into my app bundle, making sure that the target is set and that it is present in "Copy Bundle Resources" I then try to populate Core Data like…
soleil
  • 12,133
  • 33
  • 112
  • 183
1
vote
1 answer

Allow iOS user to email a PDF from the app bundle

Is it possible to allow the iOS user to email a locally stored PDF document (contained within the app bundle)? I already have a function in my project that allows the user to email the link of the page the webView is displaying, but I would like…
adamdehaven
  • 5,890
  • 10
  • 61
  • 84
0
votes
0 answers

How to Automatically Bundle Plugins into a macOS App Bundle with CMake and CPack?

I'm working on a macOS application that consists of an executable, a library, and multiple plugins. I'm using CMake and CPack for building and packaging the application. The problem I'm facing is that while the executable and library are correctly…
ManuelSchneid3r
  • 15,850
  • 12
  • 65
  • 103
0
votes
0 answers

How to enable terminal window to show for my command line tool when I run it from an app bundle?

I'm trying to notarize and staple my command line tool. Since mach-o binaries cannot be stapled, I decided to embed it into an app bundle. This works, except that when I run my command line tool by double-clicking the app bundle (.app directory,…
c00000fd
  • 20,994
  • 29
  • 177
  • 400
0
votes
0 answers

Project stops working when I sign it and export as app Bundle or APK

enter image description hereI recently did a project in flutter for a company, at the moment I am trying to deliver the project to upload the app on google play, to upload the app google play asks me that I have to upload the application as a signed…
0
votes
1 answer

How can I make my Flutter application visible to users with Gmail.com email addresses on the Google Play Store?

I have recently deployed my Flutter application to the production mode on the Google Play Store. The application is targeted for 177 countries and should be available to all users, regardless of their email domain. However, I have received feedback…