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
2
votes
1 answer

AppBundler doesn't include binaries from JRE in OS X Java App

I'm trying to to package my java app into an OS X App Bundle and I want to include the JRE, so it can run without a installed JRE. I'm following http://docs.oracle.com/javase/7/docs/technotes/guides/jweb/packagingAppsForMac.html The AppBundler Ant…
user3005567
  • 87
  • 1
  • 11
2
votes
2 answers

iphone app id change bundle prefix

We have 4 app ids on the Developer ios porthole. prefix1.com.example.app1 prefix1.com.example.app2 prefix2.com.example.app3 prefix3.com.example.app4 These are all posted in the store. The prefix2 and the prefix3 are older prefix numbers. Prefix1…
ort11
  • 3,359
  • 4
  • 36
  • 69
2
votes
0 answers

Java swing app in Mac won't start

I made an app in netbeans and build my project to create a jar file. When I double click on jar file the app get started without any problem. Now I packaged the app using appbundler. I follow every instruction from here. I issued the command ant…
Sunny
  • 14,522
  • 15
  • 84
  • 129
1
vote
2 answers

iPhone: move resources to Application bundle

My application just got rejected from Apple because I store my resources under Documents folder! The Documents folder gets synched to iCloude automatically so only user generated data should be stored under Documents. All application data should go…
Paresh Masani
  • 7,474
  • 12
  • 73
  • 139
1
vote
1 answer

Create (sane/safe) app bundle identifier from any (unsafe) string

I want to create a sane/safe app bundle name (i.e. somewhat readable, no "strange" characters, etc.) from some random Unicode string (mich might contain just anything). (It doesn't matter for me wether the function is Cocoa, ObjC, Python,…
Albert
  • 65,406
  • 61
  • 242
  • 386
1
vote
1 answer

Flutter: When I run this code flutter build appbundle this error occurs

PS C:\Users\saikr\projects\Todo-Flutter-master> flutter build appbundle Building with sound null safety Removed unused resources: Binary resource data reduced from 36KB to 28KB: Removed 21% FAILURE: Build failed with an exception. What went…
1
vote
0 answers

Allow Launching multiple instances of an App Bundle in macOS

I have a couple of bash scripts wrapped as apps, like transcoding videos with ffmpeg or uploading files to FTP right from the Finder. Before Big Sur, it was possible to open the app multiple times to process files in parallel. It was nice but it’s…
florit
  • 325
  • 2
  • 13
1
vote
1 answer

Execution failed for task ':app:validateSigningRelease'. > Keystore file not set for signing config release

MacOS using VSCode executed: flutter build appbundle I have previously published Flutter to android on another project without a problem (pre null safety). I created a new keystore for this App. When I got this message I tried using the keystore…
1
vote
1 answer

Can APK files be decompiled and rebuild to App Bundle?

Is it possible to decompile an APK file and rebuild it to an .abb file (App Bundle) For publish in Google play console?
1
vote
1 answer

AppGallery Connect App Signature failed to upload public key with "DSS Handle Fail" error

I am trying to enable Huawei AppGallery Connect App Signature functionality to support uploading my App Bundle. When I try to upload the signing key, AppGallery Connect gives me an error message saying that it failed to upload the public key. I…
1
vote
0 answers

Play console Pre-launch report not working with Android App Bundle

I try to upload an app-bundle for testing on Beta track in Google Play Console and as a result in pre-launch report section in STABILITY tab it says "This device could not be tested at this time. Please upload a new APK." for most devices. Testing…
dzikovskyy
  • 5,027
  • 3
  • 32
  • 43
1
vote
0 answers

Enable "low resolution" mode in Mac app bundle by default

I'm publishing a Mac app which supports Retina (high resolution) mode, but I would like to disable this mode by default. In other words, I want the "Open in Low Resolution" option in the Get Info menu of the app bundle to be checked when the app…
Vortico
  • 2,610
  • 2
  • 32
  • 49
1
vote
0 answers

ResourceNotFoundException after splitting apks

After integrating App-Bundle into my professional app I faced many issues through Crashlytics about the first screen of the app when inflating an ImageView. This is the ResourceNotFoundException. Caused by: android.view.InflateException: Binary XML…
Toubap
  • 29
  • 7
1
vote
0 answers

Make Fragment as app bundle entry point in android app

Hi I just wanted to know if we separate one bundle from main module of app and that module entry point is a fragment instead of Activity, then will it work ? Because I tried with fragment it throws resource not found exception on inflating layout in…
Android Killer
  • 18,174
  • 13
  • 67
  • 90
1
vote
1 answer

how to know apk size reduction after dynamic feature

I have separated one module of my project as dynamic feature module. But how I will test to know that how much (kb or mb) size has been reduced after I separated my module. It will be better if it will be possible without uploading apk into google…
Android Killer
  • 18,174
  • 13
  • 67
  • 90