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

Check if C++ program is running as an app bundle or command-line on Mac

Is there a way for a C++ or Objective-C program to tell whether is it being run as a command-line application (e.g. with ./myprog in a shell) or as an app bundle (e.g. by double-clicking on a .app in Finder or running open myprog.app/ in…
Vortico
  • 2,610
  • 2
  • 32
  • 49
0
votes
0 answers

How to build ionic application for 64 bit?

I am having an application build in ionic 3. As google is changing his Google Play store policy for apk upload. I am having following query regarding it:- 1. How to built 64-bit apk for ionic and cordova application with crosswalk install into…
0
votes
1 answer

Creating App bundle file for Desktop Bridge Application -

I am trying to create an app bundle file to upload my file for a release to the Microsoft store. Currently I have a UWP app, Desktop Application and a Packager project to connect the two. I am trying to create the bundle file through the Packager…
yolanda
  • 1
  • 2
0
votes
1 answer

Why I have this problem with the appbundle?

I published this app on the playstore (https://play.google.com/store/apps/details?id=com.brawlcalculator) and I want to reduce the dimension of the app using an app bundle. I created the app with React Native and I used in the same project this…
0
votes
1 answer

Google Dynamic Delivery INSTALL_FAILED_INVALID_APK

I can download success and it also return installed success result.But i am getting the following error: E/Finsky: [2] com.google.android.finsky.cq.k.onReceive(20): Error -504 while installing pkgname.pkgname.pkgname: INSTALL_FAILED_INVALID_APK:…
Wade Wilson
  • 165
  • 1
0
votes
1 answer

AppBundlerTask not creating classpath in info.plist

I'm updating our app to use Java 1.7, so on OSX I've updated to the InfiniteKind AppBundlerTask. (appbundler-1.0ea.jar) When I run the task, the info.plist it generates doesn't have a classpath at all. (and the app doesn't run.) Also, i've been…
CasaDelGato
  • 1,263
  • 1
  • 12
  • 29
0
votes
2 answers

How to bundle two iOS app into single ipa file

I have to bundle two iOS app into single .ipa File. So user can download two app with single download. I searched lot but can't find any docs to do this process. Also reviewed 'App Bundles' which is in iTunes connect that is only suitable for paid…
vinoth87
  • 200
  • 1
  • 2
  • 16
0
votes
1 answer

JavaFx application Window dimension changes in El Capitan after bundling

I am creating a javaFx application that runs in Mac OSX El Capitan. When I create a bundle from my jar file to .app file, the application window dimension changes. I want window dimension to be the same before and after bundling. Any help is…
cystemd
  • 1
  • 2
0
votes
2 answers

Group multiple iOS applications

Let me set the stage first. Say a larger organization has a single iOS application. This worked just fine in the past, with new features being added to the app. The problem is that the application has become too large and hence difficult to manage.…
Andy F
  • 59
  • 3
  • 5
0
votes
0 answers

File.mkdirs() returns false when bundled in Mac OS X app

Yeah, this is totally strange… Not sure why this is happening, but I have a simple Java Swing program that, when the user clicks the button, it creates a new directory in the working directory. import javax.swing.*; import java.awt.*; import…
DrOverbuild
  • 1,245
  • 10
  • 11
0
votes
0 answers

How to wrap Java JAR in OS X App Bundle?

Apple's Jar Bundler utility is now pretty much discontinued it seems. I have an executable JAR file that I would simply like to wrap in an app bundle with an icon. I created a console application in Xcode (C++), and was able to run the JAR with an…
Sam Claus
  • 1,807
  • 23
  • 39
0
votes
1 answer

Dylib not loaded

we are creating an Mac OS X app bundle that requires a dylib to be loaded dynamically from the app directory. but when the app is excuted it is unable to find that dylib. we have even registered the dylib using itool and the dylib is placed in the…
Ajay Chaudhary
  • 298
  • 2
  • 14
0
votes
1 answer

Undefined symbols for architecture x86_64: "_CFBundleCopyResourceURL",

Trying to access the file path to the resources folder in a Mac .app bundle using Qt. Here's my code: CFURLRef appUrlRef; appUrlRef = CFBundleCopyResourceURL(CFBundleGetMainBundle(), CFSTR("AFE-MP-512"),NULL,NULL); CFStringRef filePathRef =…
Mitchell D
  • 465
  • 8
  • 24
0
votes
0 answers

what is best scaling or add highresolution art or distinguish @2x ,which use iphone5/4/6

should we use one big background image and scale that down for iphone4/5. but i read scaling is bad from 1334 to 960?? then what should we do for performance,should we use default-567h@2x.png for iphone 5 ,default-667@2x.png for iphone 6 and…
0
votes
1 answer

plist.Info so that app takes icon based on command line arguments

I have a .app. I want to edit the plist.Info such that if a command line argument of -P "main" is in the path it will use another of the icons in my resources folder. And if user right clicked and said "keep in dock" it will keep in dock with…
Noitidart
  • 35,443
  • 37
  • 154
  • 323