Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updating MOAI Xcode sample project settings so they compile again #124

Open
wants to merge 10 commits into
base: mindsnacks-dev
Choose a base branch
from

Commits on Dec 17, 2020

  1. Updating the xcode/osx/MoaiSample.xcodeproj so that the moai targ…

    …et will compile again on macOS. Needed to raise the deployment target, remove references to `libcrypto.dylib` and `libssl.dylib`, set `LIBRARY_SEARCH_PATHS` to `$(SDKROOT)/usr/lib/system`, and set the `customWorkingDirectory` value in the `Run` scheme to a Lua sample from the `$PROJECT_DIR/../../samples/anim/anim-basic` directory. Phew!
    aab29 committed Dec 17, 2020
    Configuration menu
    Copy the full SHA
    4df7381 View commit details
    Browse the repository at this point in the history
  2. Updating the iOS deployment target in the MoaiSample.xcodeproj to `…

    …13.0`. Believe it or not, we are no longer using iOS `4.3`! I also set changed the architectures to `$(ARCHS_STANDARD)` since `$(ARCHS_STANDARD_32_BIT)` hasn't worked for years.
    aab29 committed Dec 17, 2020
    Configuration menu
    Copy the full SHA
    777c24e View commit details
    Browse the repository at this point in the history

Commits on Dec 23, 2020

  1. Removing the "in-app purchase" capability. Setting the bundle identif…

    …ier to `com.elevate.moaisample` for now.
    aab29 committed Dec 23, 2020
    Configuration menu
    Copy the full SHA
    8c946cc View commit details
    Browse the repository at this point in the history
  2. Removing the FacebookSDKResources.bundle from the "Copy Bundle Reso…

    …urces" build phase.
    aab29 committed Dec 23, 2020
    Configuration menu
    Copy the full SHA
    7712c6c View commit details
    Browse the repository at this point in the history
  3. Removing -force_load and libmoai-ios-tapjoy.a from the "Other Lin…

    …ker Flags" entry under the "Linking" section of the MoaiSample Build Settings tab.
    aab29 committed Dec 23, 2020
    Configuration menu
    Copy the full SHA
    5da01dc View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    f20fd20 View commit details
    Browse the repository at this point in the history
  5. Copying the VALID_ARCHS values over from base-ios.xcconfig in the…

    … `Build Settings` group under `libmoai.xcodeproj`.
    aab29 committed Dec 23, 2020
    Configuration menu
    Copy the full SHA
    7a5c35f View commit details
    Browse the repository at this point in the history
  6. Since the touch handling methods had been using 32-bit addresses for …

    …the unique ID of each touch event, and that no longer compiles, use the last 32 bits of the 64-bit pointer, and pass that in.
    aab29 committed Dec 23, 2020
    Configuration menu
    Copy the full SHA
    f44a10a View commit details
    Browse the repository at this point in the history
  7. Commenting out calls related to AKUNotifyRemoteNotification that ar…

    …e preventing the app from compiling. We'll probably need to do something else to clean them up later.
    aab29 committed Dec 23, 2020
    Configuration menu
    Copy the full SHA
    b450525 View commit details
    Browse the repository at this point in the history
  8. In the libmoai Xcode project, under the project (not any of the tar…

    …gets), and under the "Deployment (unnamed domain)" section, setting the `IPHONEOS_DEPLOYMENT_TARGET` to `13.0`.
    aab29 committed Dec 23, 2020
    Configuration menu
    Copy the full SHA
    d906135 View commit details
    Browse the repository at this point in the history