Skip to content
This repository was archived by the owner on Jan 3, 2024. It is now read-only.

Commit 6f479f0

Browse files
authored
Merge pull request #74 from tipsi/feature/fix-for-headers
Fix framework search paths. Fixes (#11, #29)
2 parents 559d6f9 + 93ecbaf commit 6f479f0

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

ios/TPSStripe.xcodeproj/project.pbxproj

+8-2
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,10 @@
257257
3A3A7F241DC27B520030F9DC /* Debug */ = {
258258
isa = XCBuildConfiguration;
259259
buildSettings = {
260-
FRAMEWORK_SEARCH_PATHS = "${BUILT_PRODUCTS_DIR}/**";
260+
FRAMEWORK_SEARCH_PATHS = (
261+
"${BUILT_PRODUCTS_DIR}/**",
262+
"$BUILD_DIR/$CONFIGURATION$EFFECTIVE_PLATFORM_NAME/Stripe/**",
263+
);
261264
OTHER_LDFLAGS = "-ObjC";
262265
PRODUCT_NAME = "$(TARGET_NAME)";
263266
SKIP_INSTALL = YES;
@@ -267,7 +270,10 @@
267270
3A3A7F251DC27B520030F9DC /* Release */ = {
268271
isa = XCBuildConfiguration;
269272
buildSettings = {
270-
FRAMEWORK_SEARCH_PATHS = "${BUILT_PRODUCTS_DIR}/**";
273+
FRAMEWORK_SEARCH_PATHS = (
274+
"${BUILT_PRODUCTS_DIR}/**",
275+
"$BUILD_DIR/$CONFIGURATION$EFFECTIVE_PLATFORM_NAME/Stripe/**",
276+
);
271277
OTHER_LDFLAGS = "-ObjC";
272278
PRODUCT_NAME = "$(TARGET_NAME)";
273279
SKIP_INSTALL = YES;

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tipsi-stripe",
3-
"version": "3.1.0",
3+
"version": "3.2.0",
44
"description": "React Native Stripe binding for iOS/Andriod platforms",
55
"main": "src/index.js",
66
"scripts": {

0 commit comments

Comments
 (0)