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

Finding fourth vertex of rectangle

Given three points (x1,y1),(x2,y2),(x3,y3) on a Cartesian plane can u find a fourth point such that these four points form a rectangle using c program Tha code I am expecting
0
votes
1 answer

How to Use letsencrypt/certbot to get certification for .app domain

I have a .app domain and would like to use letsencrypt/certbot to generate ssl certificates. Based on the instructions in https://certbot.eff.org/, I will need to have an HTTP website running on this domain to get the ssl certification using…
krahimi
  • 21
  • 1
  • 7
0
votes
1 answer

I have used Py2App to create an .app file from a Python code project I am working on but when I open the app to browse files they are all greyed out?

I have written an application using Python code utilizing the Pandas and Openpyxl modules. Summary of my app: Browse and find an excel file(original), browse and find another excel file(new). Press a button and update certain columns from original…
0
votes
0 answers

How to compile to an APP file on Visual Studio instead of an EXE in C++

I have created a program in C++ using Visual Studio that compiles code to an EXE file that can then be run. This works fine for Windows computers, but EXE files are not runnable on Mac without extra programs such as Wine Bottler. I would like to be…
Pierce
  • 1
  • 2
0
votes
1 answer

Go - How to link Go macOS binary in an Xcode project?

I'm completely new to macOS development, this might sound quite basic. I need to distribute a Golang app for macOS. I built the Go executable for macOS, the executable works fine on macOS. I made its .app structure following this tutorial But before…
Sagar Agarwal
  • 153
  • 2
  • 11
0
votes
1 answer

Double clicking Unix Executable file is different from running it from terminal

I'm trying to create .app package that contains jdk, jar and shell script, basically I'm trying to run jar inside .app. My contents inside .app looks like this (app has same name as unix executable): . ├── MacOS │   └── AppName ├── app │   └──…
Sandro J
  • 508
  • 3
  • 11
0
votes
0 answers

Need help for making a .app file on MacOS

I have a shell script for My Mac M1 with libraries and an icon separately and I wanted to know if I could convert this into an .app file. I already tried to make my own .app executable with appify ( https://github.com/machinebox/appify ) or by…
0
votes
1 answer

Accessing parallel folder's file in a standalone application

I created a standalone .app application (ToDoList.py / ToDoList.app / ToDoList (Unix Executable)) using pyinstaller. My code uses a file called List.tx to remember and store data which is put on the screen. The program cannot run without the file. I…
Moose
  • 5
  • 4
0
votes
0 answers

Swift - macOS - Problem with Bundle App Path

I made a Swift 5 macOS app, which loads some data from the folder where the .app file is located. Here is my code: rutaApp = Bundle.main.bundlePath.replacingOccurrences(of: "/RetroMac.app", with: "") it works ok in my computer. Then use Product ->…
0
votes
1 answer

How to open an .app file on a real iOS device?

I have an .app file, need to open it on a real iOS device, instead of iOS device simulator in xCode. this is answer ( How to run .app on iOS device ) is not suitable for me. Looking for an actual way
Ian
  • 77
  • 1
  • 9
0
votes
1 answer

Why Catalina 10.15.7 block JarLauncher when start from .app?

I have My.app correctly working on(starts from two click): High Sierra 10.13.6 Catalina 10.15.2 but refuse to start on Catalina 10.15.7, it starts than immediately quit. My.app - it is java application(spring-boot, javaFX) which starts from bash…
0
votes
1 answer

Bundle.main.resourcePath returning nil in my flutter plugin, after working fine previously

I've made a test flutter app that uses a plugin I made that simply retrieves the path of the resources folder in my .app and returns it to my dart code. This works completely fine in the example project generated with the plugin, and has previously…
Letal1s
  • 47
  • 2
  • 9
0
votes
1 answer

Why would Gatekeeper ignore an unsigned application bundle?

I am helping a client package a legacy Adobe AIR application as a standalone application. The AIR compiler outputs a .app application bundle. After compiling an unsigned application bundle, I figured I might as well try sending it to the client to…
Kevin
  • 269
  • 3
  • 13
0
votes
1 answer

Why would a script function differently when packaged as a .app versus run directly as a .sh?

The script checks if homebrew is installed and outputs the result to a text file on the Desktop. I outputted to a text file on the Desktop for debugging purposes. Here is the script: #! /usr/bin/env bash cd ~/Desktop (command -v brew >/dev/null…
cmcdev
  • 75
  • 9
0
votes
0 answers

How can I wrap a JAR into a Windows and Mac Executable (.exe, .jar)?

I have searched hours and hours for a wrapper program that can create executables from jar and runs on mac. Seraching on stackoverflow etc there were only deprecated solutions such as javabundler, appbundler, packr, jar2app. I tried all of them but…
F_Schmidt
  • 902
  • 1
  • 11
  • 32