Skip to content

Latest commit

 

History

History
33 lines (21 loc) · 912 Bytes

DEVELOPMENT.md

File metadata and controls

33 lines (21 loc) · 912 Bytes

Braintree iOS Drop-in Development Notes

This document outlines development practices that we follow while developing this SDK.

Development Merchant Server

The included demo app utilizes a sandbox sample merchant server hosted on Heroku.

Tests

Running the tests requires Xcode 13+.

Run the following test schemes in Xcode:

  • UITests
  • UnitTests

Importing Header Files

Example: importing a public header file

#import <BraintreeDropIn/BTDropInRequest.h>

Example: importing an internal header file

#import "BTUIKAppearance.h"

For more information on how header imports work for each package manager, see the DEVELOPMENT guide in Braintree iOS.

Releasing

Refer to the ios/releases section in the SDK Knowledge Repo.