Questions tagged [.app]

.app is an extension given to application bundles on Mac OS X.

.app is an extension given to both Mac OS X and iOS applications.

The bundle typically includes everything the application needs to run, such as references, frameworks, resources, and localization information.

160 questions
0
votes
2 answers

How to have a natural MacOSX .app of a complex python application (including custom interpreter) via a shell initialization script?

I am trying to integrate a complex python application (with a custom python interpreter shipped along) for OSX. In order to handle a set of issues due to cross platform requirements, I created a .app bundle pointing at a shell script with its…
Stefano Borini
  • 138,652
  • 96
  • 297
  • 431
0
votes
1 answer

How do I create binary in XCode 5

How can I create a binary in XCode 5? I want to find (or create) the .app file. I tried the following: Open project. Find folder with name Product. But when I right click it, "open with finder" option is not enabled. So I am unable to select it.
Dinesh
  • 2,194
  • 3
  • 30
  • 52
0
votes
0 answers

Lost links to .app files in Xcode

In fumbling around trying to solve the problem of why my unit tests no longer linked in Xcode after renaming the app, I ended up with the .app files no longer being linked to anything in the Products group. I can remove the red links that are there,…
Feldur
  • 1,121
  • 9
  • 23
0
votes
1 answer

Mac Java app runs as .jar but fails to properly run when bundled as .app

I wrote a file copy program for my Mac using Java. When I export a runnable .jar from Eclipse everything works great. So I bundle it up as a .app and I run the app. Everything looks fine, the GUI loads, but when I tell it to copy the exact same…
Dr-ZoidBerg
  • 41
  • 3
  • 10
0
votes
1 answer

uploading and redownloading executable script

I have an executable terminal program (built on MacOS from Haskell code with GHC) which runs when I double-click it in the Finder. I want to put this on my website, from which people can download and run it from their Finder by double-clicking.…
user2744010
  • 453
  • 2
  • 6
0
votes
1 answer

how to load and launch .app file in iPhone?

How to load and launch .app executable of other project in my project without URL based?
suse
  • 10,503
  • 23
  • 79
  • 113
0
votes
1 answer

Running custom installation script with .app

I'm currently in the process of creating an installer for a Java application that I am porting to OS X. I'd love to be able to keep it as simple .dmg with a .app inside because I'd rather avoid the wizard that .pkg installers open. However, there…
Yrlec
  • 3,401
  • 6
  • 39
  • 75
0
votes
0 answers

Starting java .app in java via Runtime.getRuntime().exec crashes with 'Program quit unexpectedly'

I want to start an .app Application in java on a Mac OS X 10.7.5 with the following code: Runtime.getRuntime().exec(new String[] { "/usr/bin/open", filename }); The filename contains the physical path and the filename. If I start the filename…
0
votes
2 answers

Why does Mac OS sometimes launch the wrong binary when I click on a .app

I created this application that contains several binary files (let's say X, Y and Z). I have a .plist file that specifies that the application should launch X when opened. Everything works fine 99.9% of the time but sometimes, it launches another…
Boris
  • 63
  • 1
  • 1
  • 3
0
votes
1 answer

How can I run my project on IOS device.?

I am very new to IOS. I have developed one application in xcode and I want to run this app with my iPhone device. HOw can I run this app in my mobile. PLease provide the steps to generate .app /IPA file and provide details that how can I run this…
0
votes
1 answer

Starting a .app file from java

I need run a system call to run a .app file from java. Any ideas?
Mike2012
  • 7,629
  • 15
  • 84
  • 135
0
votes
2 answers

Xcodebuild's .app crashes immediately? But Xcode's .app runs successfully

I'm using xcodebuild to build and install my app on the simulator (by copying the .app to ~/Library/Application Support/iPhone Simulator/6.1/Applications/UUID/) from the command line. I use: xcodebuild -target MyApp -configuration Debug …
johngraham
  • 6,461
  • 2
  • 16
  • 22
0
votes
1 answer

How to run AppleScript from Windows program running in Mac Crossover?

I work on a program designed in C++ to run on windows, but the program is being used by some of our clients running Macs by installing it with crossovers. It works fine for the most part but our email generating has a problem. I wrote code to…
0
votes
1 answer

ios binary .app file not clickable

This is my first time putting an app on the itunes app store. I've tested on a device and created the binary, but when I use Application Loader to upload the binary I see the binary is lighted-out and un-clickable. Also, when I bring up the binary…
Hash88
  • 692
  • 1
  • 6
  • 17
0
votes
1 answer

Get as much as possible from Application bundle (.app)

I want to know as much as possible technical information about given Application bundle .app, e.g: compiler used frameworks used implementation details QuickLook plugin that show extensive information about .app would be ideal, but I don't know…
diimdeep
  • 1,096
  • 17
  • 27
1 2 3
10
11