Jump to content

Walter Campelo

Members
  • Content Count

    9
  • Joined

  • Last visited

Community Reputation

1 Neutral

About Walter Campelo

  • Birthday September 12

Technical Information

  • Delphi-Version
    Delphi 10.4 Sydney

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. Walter Campelo

    Error deploying IOS Release App

    Yes, exactly!!! I installed both Mosco and Codex and used the workaround for Delphi and finally generated the IPA! Thanks a lot, Dave! You are a lifesaver! Best Regards
  2. Walter Campelo

    Error deploying IOS Release App

    Ok, guys.... An update: I solve the problem with Delphi calling PackageApplication by deploying a blank app with XCode. After that Delphi start calling the right routine. But, I'm now experiencing another error: [PAClient Error] Error: E0776 2021-10-23 15:00:43.694 xcodebuild[1230:32509] [MT] IDEDistribution: -[IDEDistributionLogging _createLoggingBundleAtPath:]: Created bundle at path "/var/folders/q0/xxxxx/T/xxxxxxx.xcdistributionlogs". [PAClient Error] Error: E0776 2021-10-23 15:00:44.288 xcodebuild[1230:32589] CFURLRequestSetHTTPCookieStorageAcceptPolicy_block_invoke: no longer implemented and should not be called [PAClient Error] Error: E0776 Exported FaithfulBible to: /Users/xxxxx/PAServer/scratch-dir/MacOS BigSur/xxxxx.archive/temp Does anyone know about this issue?
  3. Walter Campelo

    Error deploying IOS Release App

    Hi Dave... The result was: $ /usr/bin/xcodebuild -version Xcode 13.0 Build version 13A233 I also issued the sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer And, unfortunately, this has not changed the error message during the build for the App Store... [PAClient Error] Error: E0776 Unable to execute '"/usr/bin/xcrun" -sdk iphoneos PackageApplication -v "/Users/xxxxx/PAServer/scratch-dir/MacOS BigSur/XXXXX.app" -o "/Users/xxxxx/PAServer/scratch-dir/MacOS BigSur/XXXXX. ipa" -sign "Apple Distribution: Walter Campelo (XXXXXXXXXXXX)" --embed "/Users/xxxxx/Library/MobileDevice/Provisioning Profiles/xxxxxxxxxxxxxxx.mobileprovision"' (Error 72)
  4. Walter Campelo

    Error deploying IOS Release App

    Guys: The SDK problem was solved running the following command at Terminal on Mac: sudo xcode-select --switch "/applications/Xcode.app" However, after that, I am back to the initial problem, however, with a new error message. That is, I can run the app in Development mode, but I cannot generate the IPA for the App Store, because I get the following error message: [PAClient Error] Error: E0776 Unable to execute '"/usr/bin/xcrun" -sdk iphoneos PackageApplication -v "/Users/xxxxx/PAServer/scratch-dir/MacOS BigSur/XXXXX.app" -o "/Users/xxxxx/PAServer/scratch-dir/MacOS BigSur/XXXXX. ipa" -sign "Apple Distribution: Walter Campelo (XXXXXXXXXXXX)" --embed "/Users/xxxxx/Library/MobileDevice/Provisioning Profiles/xxxxxxxxxxxxxxx.mobileprovision"' (Error 72) And the problem is that this construction used by Delphi is deprecated. According to the information I could find here: https://subathrathanabalan.com/2016/01/07/building-ipa-export-archive/ The right way to do that would be this: # Archive the application xcodebuild \ -scheme "${SCHEME_NAME}" \ -sdk "${TARGET_SDK}" \ -archivePath "${PROJECT_BUILDDIR}/${SCHEME_NAME}.xcarchive" \ -configuration Release PROVISIONING_PROFILE="${PROVISIONING_PROFILE}" \ archive # Export the archive to an ipa xcodebuild -exportArchive -archivePath "${PROJECT_BUILDDIR}/${SCHEME_NAME}.xcarchive" \ -exportOptionsPlist "${EXPORT_PLIST}" \ -exportPath "${BUILD_OUTPUT_DIR}" Is there any information about this issue already available?
  5. Walter Campelo

    Error deploying IOS Release App

    Yes, XCode is recognizing my iPad without any problems in the device window. I am a fully qualified Apple developer, and I have all the certificates and profiles installed. Everything was running smoothly except for generating the App Store deploy file. And this was probably because my XCode was beta. So I uninstalled the XCode beta (and also deleted all its settings and cache). And I installed XCode from the App Store, and from that point Delphi no longer recognizes the SDKs. This is all quite annoying
  6. Walter Campelo

    Error deploying IOS Release App

    Well, I uninstalled the XCode Beta (clearing all cache files, preferences, etc ...) and installed the stable XCode that is distributed by the App Store, and then the Command Line Tools downloaded directly from Apple's site. In Delphi I deleted all the SDKs (both MacOSX and iOS) and also deleted the Connection Profile. After testing the correct operation of XCode both to generate programs on iOS and Mac, I ran again the PAServer. Then I created a new Connection Profile. Now, when I try to install the SDKs again, Delphi selects Command Line Tools as the SDK version (for Mac) and for iOS Delphi says there is no SDK... What to do now????
  7. Walter Campelo

    Error deploying IOS Release App

    Clean, Build and then Deploy results the same error message...
  8. Walter Campelo

    Error deploying IOS Release App

    I'm using MacOS X Big Sur and XCode 13.0 beta (13A5155e)
  9. Walter Campelo

    Error deploying IOS Release App

    Dear friends: I am using Delphi 10.4.2 to compile an application for Android and for iOS. For Android it has already been published on Google Play. For iOS I can compile and run the application in development mode on an iPad (4th generation). I created all the certificates and also created a provisioning for the App with Apple through my developer account. But, when I go to perform the deployment I get the following error: [PAClient Error] Error: E0776 2021-10-18 20:57:41.276 xcodebuild[28696:1176276] [MT] DVTPlugInManager: Required plug-in compatibility UUID 42E1F17B-27B3-4DE8-92A8-DC76BA4F5921 for DVTCoreGlyphs.framework (com.apple.dt.DVTCoreGlyphs) not present Does anyone know how to solve this? Reminding that you just need to change the setting to "development" and the App runs on the iPad without problems. Best Regards!
×