Skip to content

Commit

Permalink
release 3.18
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonas committed Nov 14, 2017
1 parent 3bd24e9 commit bdf316d
Show file tree
Hide file tree
Showing 34 changed files with 1,288 additions and 671 deletions.
1,130 changes: 573 additions & 557 deletions LICENSE.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ repositories {
dependencies {
compile fileTree(dir: "libs", include: ["*.jar"])
compile 'com.android.support:appcompat-v7:25.1.0'
compile 'io.anyline:anylinesdk:3.17.0@aar'
compile 'io.anyline:anylinesdk:3.18.0@aar'
compile 'com.google.android.gms:play-services-vision:10.0.1'
compile 'com.android.support:design:25.1.0'
compile "com.facebook.react:react-native:+" // From node_modules
Expand Down
65 changes: 65 additions & 0 deletions example/Anyline/android/app/BUCK
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
# To learn about Buck see [Docs](https://buckbuild.com/).
# To run your application with Buck:
# - install Buck
# - `npm start` - to start the packager
# - `cd android`
# - `keytool -genkey -v -keystore keystores/debug.keystore -storepass android -alias androiddebugkey -keypass android -dname "CN=Android Debug,O=Android,C=US"`
# - `./gradlew :app:copyDownloadableDepsToLibs` - make all Gradle compile dependencies available to Buck
# - `buck install -r android/app` - compile, install and run application
#

lib_deps = []

for jarfile in glob(['libs/*.jar']):
name = 'jars__' + jarfile[jarfile.rindex('/') + 1: jarfile.rindex('.jar')]
lib_deps.append(':' + name)
prebuilt_jar(
name = name,
binary_jar = jarfile,
)

for aarfile in glob(['libs/*.aar']):
name = 'aars__' + aarfile[aarfile.rindex('/') + 1: aarfile.rindex('.aar')]
lib_deps.append(':' + name)
android_prebuilt_aar(
name = name,
aar = aarfile,
)

android_library(
name = "all-libs",
exported_deps = lib_deps,
)

android_library(
name = "app-code",
srcs = glob([
"src/main/java/**/*.java",
]),
deps = [
":all-libs",
":build_config",
":res",
],
)

android_build_config(
name = "build_config",
package = "com.anyline",
)

android_resource(
name = "res",
package = "com.anyline",
res = "src/main/res",
)

android_binary(
name = "app",
keystore = "//android/keystores:debug",
manifest = "src/main/AndroidManifest.xml",
package_type = "debug",
deps = [
":app-code",
],
)
6 changes: 6 additions & 0 deletions example/Anyline/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,12 @@ android.packagingOptions {
pickFirst('lib/*/libgnustl_shared.so')
}

repositories {
flatDir {
dirs 'libs'
}
}

dependencies {
compile project(':react-native-vector-icons')
compile project(':react-native-android-permissions')
Expand Down
4 changes: 4 additions & 0 deletions example/Anyline/android/app/proguard-rules.pro
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,10 @@

-dontwarn com.facebook.react.**

# TextLayoutBuilder uses a non-public Android constructor within StaticLayout.
# See libs/proxy/src/main/java/com/facebook/fbui/textlayoutbuilder/proxy for details.
-dontwarn android.text.StaticLayout

# okhttp

-keepattributes Signature
Expand Down
Empty file modified example/Anyline/android/app/src/main/assets/fonts/Entypo.ttf
100755 → 100644
Empty file.
Empty file modified example/Anyline/android/app/src/main/assets/fonts/EvilIcons.ttf
100755 → 100644
Empty file.
Empty file.
Empty file.
Empty file modified example/Anyline/android/app/src/main/assets/fonts/Ionicons.ttf
100755 → 100644
Empty file.
Empty file.
Empty file.
Binary file modified example/Anyline/android/app/src/main/assets/fonts/Octicons.ttf
100755 → 100644
Binary file not shown.
Empty file.
Empty file modified example/Anyline/android/app/src/main/assets/fonts/Zocial.ttf
100755 → 100644
Empty file.
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ public class MainActivity extends ReactActivity {
*/
@Override
protected String getMainComponentName() {
return "Anyline";
return "anyline";
}
}
12 changes: 4 additions & 8 deletions example/Anyline/config/AutoEnergyConfig.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,11 @@ export default {
options: {
"captureResolution": '1080p',
"cutout": {
"style": 'CONTOUR_RECT',
"alignment": 'top',
"offset": {
'x': 0,
'y': 120,
},
"style": 'rect',
"alignment": 'top_half',
"strokeWidth": 2,
"cornerRadius": 4,
"strokeColor": 'F21C0A',
"strokeColor": 'FFFFFF',
"outerColor": '000000',
"outerAlpha": 0.3,
},
Expand All @@ -39,7 +35,7 @@ export default {
"cancelOnResult": true,
"reportingEnabled": true,
"visualFeedback": {
"style": "contour_rect"
"style": "CONTOUR_RECT"
}
}
}
14 changes: 5 additions & 9 deletions example/Anyline/config/EnergyConfig.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,11 @@ export default {
'b1NxUUJTL3ZFS3VYUHhhCjNnanZnS285M3lrSjJKQjVBZjZiSkE9PQo=', options: {
captureResolution: '1080',
cutout: {
style: 'CONTOUR_RECT',
alignment: 'top',
offset: {
'x': 0,
'y': 120,
},
style: 'rect',
alignment: 'top_half',
strokeWidth: 2,
cornerRadius: 4,
strokeColor: 'F21C0A',
strokeColor: 'FFFFFF',
outerColor: '000000',
outerAlpha: 0.3,
},
Expand All @@ -38,7 +34,7 @@ export default {
cancelOnResult: true,
reportingEnabled: true,
visualFeedback: {
style: "contour_rect"
style: "CONTOUR_RECT"
},
segment: {
titles: [
Expand All @@ -52,7 +48,7 @@ export default {
tintColor: 'F21C0A',
offset: {
x: 0,
y: 600
y: 500
}
}
},
Expand Down
95 changes: 48 additions & 47 deletions example/Anyline/config/VoucherConfig.js
100755 → 100644
Original file line number Diff line number Diff line change
@@ -1,56 +1,57 @@
export default {
license:'eyAiYW5kcm9pZElkZW50aWZpZXIiOiBbICJjb20uYW55bGluZS5leGFtcGxlLnJl\n' +
'YWN0bmF0aXZlIiBdLCAiZGVidWdSZXBvcnRpbmciOiAib24iLCAiaW9zSWRlbnRp\n' +
'ZmllciI6IFsgImNvbS5hbnlsaW5lLmV4YW1wbGUucmVhY3RuYXRpdmUiIF0sICJs\n' +
'aWNlbnNlS2V5VmVyc2lvbiI6IDIsICJtYWpvclZlcnNpb24iOiAiMyIsICJwaW5n\n' +
'UmVwb3J0aW5nIjogdHJ1ZSwgInBsYXRmb3JtIjogWyAiaU9TIiwgIkFuZHJvaWQi\n' +
'IF0sICJzY29wZSI6IFsgIkFMTCIgXSwgInNob3dQb3BVcEFmdGVyRXhwaXJ5Ijog\n' +
'ZmFsc2UsICJzaG93V2F0ZXJtYXJrIjogdHJ1ZSwgInRvbGVyYW5jZURheXMiOiA5\n' +
'MCwgInZhbGlkIjogIjIwMjAtMTItMzEiIH0KUlliRzFBbFgwempXZTVLYkdtK000\n' +
'SXFXME5jWUdTZWNBU0t6M3k0QnQ3VGFjMWgrVEpveHlIVXFTb1JxWFZKNgpXRlhH\n' +
'N2kvVjFqNjVTTEgyS0V4NUpoRlZKT0Y1UDhJR1VLak9CY1ozR2o5WHRTLzdub3Ni\n' +
'ZHoxTTlqZWlJRWJYCjZ1ZXFyVmtyNGRpRVJsOWNDQ01kOWRvTG80dnJiMGpIbzZ0\n' +
'bk12d2VrWFdUaUFnSlNjNXB5MGlOc2F6MjRKZFYKa3dEWnY2dG9Oa1NIdjhRWTVj\n' +
'U3laSWdNSHFsRTZBUkVxcG5oNlA5THh3aWF1Sm5Sd2o4OWFWVCt4ZkoyaFdLbgpU\n' +
'NE9tUzVraWdNUVZLaW8vaWlJS2tIVEVUdUxjYWJEWWtacExZdVR2YnU1S1hIc0R6\n' +
'b1NxUUJTL3ZFS3VYUHhhCjNnanZnS285M3lrSjJKQjVBZjZiSkE9PQo=',
license:'eyAiYW5kcm9pZElkZW50aWZpZXIiOiBbICJjb20uYW55bGluZS5leGFtcGxlLnJl\n' +
'YWN0bmF0aXZlIiBdLCAiZGVidWdSZXBvcnRpbmciOiAib24iLCAiaW9zSWRlbnRp\n' +
'ZmllciI6IFsgImNvbS5hbnlsaW5lLmV4YW1wbGUucmVhY3RuYXRpdmUiIF0sICJs\n' +
'aWNlbnNlS2V5VmVyc2lvbiI6IDIsICJtYWpvclZlcnNpb24iOiAiMyIsICJwaW5n\n' +
'UmVwb3J0aW5nIjogdHJ1ZSwgInBsYXRmb3JtIjogWyAiaU9TIiwgIkFuZHJvaWQi\n' +
'IF0sICJzY29wZSI6IFsgIkFMTCIgXSwgInNob3dQb3BVcEFmdGVyRXhwaXJ5Ijog\n' +
'ZmFsc2UsICJzaG93V2F0ZXJtYXJrIjogdHJ1ZSwgInRvbGVyYW5jZURheXMiOiA5\n' +
'MCwgInZhbGlkIjogIjIwMjAtMTItMzEiIH0KUlliRzFBbFgwempXZTVLYkdtK000\n' +
'SXFXME5jWUdTZWNBU0t6M3k0QnQ3VGFjMWgrVEpveHlIVXFTb1JxWFZKNgpXRlhH\n' +
'N2kvVjFqNjVTTEgyS0V4NUpoRlZKT0Y1UDhJR1VLak9CY1ozR2o5WHRTLzdub3Ni\n' +
'ZHoxTTlqZWlJRWJYCjZ1ZXFyVmtyNGRpRVJsOWNDQ01kOWRvTG80dnJiMGpIbzZ0\n' +
'bk12d2VrWFdUaUFnSlNjNXB5MGlOc2F6MjRKZFYKa3dEWnY2dG9Oa1NIdjhRWTVj\n' +
'U3laSWdNSHFsRTZBUkVxcG5oNlA5THh3aWF1Sm5Sd2o4OWFWVCt4ZkoyaFdLbgpU\n' +
'NE9tUzVraWdNUVZLaW8vaWlJS2tIVEVUdUxjYWJEWWtacExZdVR2YnU1S1hIc0R6\n' +
'b1NxUUJTL3ZFS3VYUHhhCjNnanZnS285M3lrSjJKQjVBZjZiSkE9PQo=',
options: {
"captureResolution": "1080p",
"cutout": {
"style": "rect",
"maxWidthPercent": "80%",
"maxHeightPercent": "80%",
"alignment": "center",
"width": 540,
"ratioFromSize": {
"width": 4,
"height": 1
},
"strokeWidth": 2,
"cornerRadius": 10,
"strokeColor": "FFFFFF",
"outerColor": "000000",
"outerAlpha": 0.3
},
"flash": {
"mode": "manual",
"alignment": "bottom_right"
},
"beepOnResult": true,
"vibrateOnResult": true,
"blinkAnimationOnResult": true,
"cancelOnResult": true,
"visualFeedback": {
"style": "CONTOUR_RECT",
},
},

ocr: {
"captureResolution": "1080",
"cutout": {
"style": "rect",
"maxWidthPercent": "80%",
"maxHeightPercent": "80%",
"alignment": "center",
"width": 540,
"ratioFromSize": {
"width": 4,
"height": 1
},
"strokeWidth": 2,
"cornerRadius": 10,
"strokeColor": "FFFFFF",
"outerColor": "000000",
"outerAlpha": 0.3
},
"flash": {
"mode": "manual",
"alignment": "bottom_right"
},
"beepOnResult": true,
"vibrateOnResult": true,
"blinkAnimationOnResult": true,
"cancelOnResult": true,
"visualFeedback": {
"style": "contour_point",
"strokeColor": "0099FF",
"strokeWidth": 3
}
},
ocr: {
"scanMode": "AUTO",
"tesseractLanguages": ["anyline_capitals"],
"traineddataFiles": ["trainedData/anyline_capitals.traineddata"],
"charWhitelist": "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789",
"validationRegex": "[A-Z0-9]{8}$",
"isBrightTextOnDark": true
"minConfidence": 85
}
}
22 changes: 14 additions & 8 deletions example/Anyline/ios/Anyline.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
1B641833178C4A99B2C8D0BD /* EvilIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = B86489E0EF2C48469341B2E2 /* EvilIcons.ttf */; };
1C260602C1DA464F9AE5D9BC /* MaterialIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 3736E20A9F784065B2450AC2 /* MaterialIcons.ttf */; };
1E934CF71EC2048A00347430 /* trainedData in Resources */ = {isa = PBXBuildFile; fileRef = 1E934CF61EC2048A00347430 /* trainedData */; };
1E96072A1FB5E0BB0069BAC4 /* main.jsbundle in Resources */ = {isa = PBXBuildFile; fileRef = 1E9607281FB5E0BB0069BAC4 /* main.jsbundle */; };
1E96072B1FB5E0BB0069BAC4 /* main.jsbundle.meta in Resources */ = {isa = PBXBuildFile; fileRef = 1E9607291FB5E0BB0069BAC4 /* main.jsbundle.meta */; };
1EC2368B1E7B478400D204E7 /* EventEmitter in Resources */ = {isa = PBXBuildFile; fileRef = 1EC2368A1E7B478400D204E7 /* EventEmitter */; };
26D3BCFBBBC3470FBCA228A3 /* Octicons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 7400F0C398B141A0A5409FD2 /* Octicons.ttf */; };
2818E1101DFABDF1006BABE2 /* libPods-Anyline.a in Frameworks */ = {isa = PBXBuildFile; fileRef = BD3611D51D496457F65600D7 /* libPods-Anyline.a */; };
Expand All @@ -36,6 +38,7 @@
CF0F59D7E86A460DA52CD4ED /* SimpleLineIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = A7F1E69C222C401B91BD74DC /* SimpleLineIcons.ttf */; };
D10291E4B4C74D95B4CD3745 /* libRNVectorIcons.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5B44D98638604D41A0257133 /* libRNVectorIcons.a */; };
EFAE2B10A0764174B88966E0 /* FontAwesome.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 08267BFC102249FF879C533D /* FontAwesome.ttf */; };
84E6C2F5ED264A9BBD6E3B4B /* Feather.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 0DB06547FD004B1CABF97F66 /* Feather.ttf */; };
/* End PBXBuildFile section */

/* Begin PBXContainerItemProxy section */
Expand Down Expand Up @@ -259,7 +262,6 @@
/* End PBXContainerItemProxy section */

/* Begin PBXFileReference section */
008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = "<group>"; };
00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTActionSheet.xcodeproj; path = "../node_modules/react-native/Libraries/ActionSheetIOS/RCTActionSheet.xcodeproj"; sourceTree = "<group>"; };
00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTGeolocation.xcodeproj; path = "../node_modules/react-native/Libraries/Geolocation/RCTGeolocation.xcodeproj"; sourceTree = "<group>"; };
00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTImage.xcodeproj; path = "../node_modules/react-native/Libraries/Image/RCTImage.xcodeproj"; sourceTree = "<group>"; };
Expand All @@ -283,6 +285,8 @@
146833FF1AC3E56700842450 /* React.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = React.xcodeproj; path = "../node_modules/react-native/React/React.xcodeproj"; sourceTree = "<group>"; };
177620B6168B0FCAD53F4665 /* Pods-Anyline.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Anyline.release.xcconfig"; path = "Pods/Target Support Files/Pods-Anyline/Pods-Anyline.release.xcconfig"; sourceTree = "<group>"; };
1E934CF61EC2048A00347430 /* trainedData */ = {isa = PBXFileReference; lastKnownFileType = folder; path = trainedData; sourceTree = "<group>"; };
1E9607281FB5E0BB0069BAC4 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = "<group>"; };
1E9607291FB5E0BB0069BAC4 /* main.jsbundle.meta */ = {isa = PBXFileReference; lastKnownFileType = file; path = main.jsbundle.meta; sourceTree = "<group>"; };
1EC2368A1E7B478400D204E7 /* EventEmitter */ = {isa = PBXFileReference; lastKnownFileType = folder; name = EventEmitter; path = "../node_modules/react-native/Libraries/EventEmitter"; sourceTree = "<group>"; };
2562B9CB25984C61A7882993 /* RNVectorIcons.xcodeproj */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "wrapper.pb-project"; name = RNVectorIcons.xcodeproj; path = "../node_modules/react-native-vector-icons/RNVectorIcons.xcodeproj"; sourceTree = "<group>"; };
2818E1111DFABE3F006BABE2 /* libAnylineReact.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libAnylineReact.a; path = "../../../../../../Library/Developer/Xcode/DerivedData/Anyline-bpdhgqpfcebckocfnrqfmvpnalip/Build/Products/Debug-iphoneos/AnylineReact/libAnylineReact.a"; sourceTree = "<group>"; };
Expand All @@ -302,6 +306,7 @@
B86489E0EF2C48469341B2E2 /* EvilIcons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = EvilIcons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/EvilIcons.ttf"; sourceTree = "<group>"; };
BD3611D51D496457F65600D7 /* libPods-Anyline.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-Anyline.a"; sourceTree = BUILT_PRODUCTS_DIR; };
EB2CFDB20F2459E0363E0171 /* Pods-Anyline.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Anyline.debug.xcconfig"; path = "Pods/Target Support Files/Pods-Anyline/Pods-Anyline.debug.xcconfig"; sourceTree = "<group>"; };
0DB06547FD004B1CABF97F66 /* Feather.ttf */ = {isa = PBXFileReference; name = "Feather.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/Feather.ttf"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
Expand Down Expand Up @@ -401,6 +406,7 @@
7400F0C398B141A0A5409FD2 /* Octicons.ttf */,
A7F1E69C222C401B91BD74DC /* SimpleLineIcons.ttf */,
50D1B10DFDC340B79E86105B /* Zocial.ttf */,
0DB06547FD004B1CABF97F66 /* Feather.ttf */,
);
name = Resources;
sourceTree = "<group>";
Expand All @@ -427,7 +433,6 @@
isa = PBXGroup;
children = (
1E934CF61EC2048A00347430 /* trainedData */,
008F07F21AC5B25A0029DE68 /* main.jsbundle */,
13B07FAF1A68108700A75B9A /* AppDelegate.h */,
13B07FB01A68108700A75B9A /* AppDelegate.m */,
13B07FB51A68108700A75B9A /* Images.xcassets */,
Expand Down Expand Up @@ -537,6 +542,8 @@
83CBB9F61A601CBA00E9B192 = {
isa = PBXGroup;
children = (
1E9607281FB5E0BB0069BAC4 /* main.jsbundle */,
1E9607291FB5E0BB0069BAC4 /* main.jsbundle.meta */,
13B07FAE1A68108700A75B9A /* Anyline */,
832341AE1AAA6A7D00B99B32 /* Libraries */,
00E356EF1AD99517003FC87E /* AnylineTests */,
Expand Down Expand Up @@ -883,6 +890,7 @@
buildActionMask = 2147483647;
files = (
1E934CF71EC2048A00347430 /* trainedData in Resources */,
1E96072B1FB5E0BB0069BAC4 /* main.jsbundle.meta in Resources */,
13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */,
1EC2368B1E7B478400D204E7 /* EventEmitter in Resources */,
Expand All @@ -894,8 +902,10 @@
0D4875C561C44B55B2BF687C /* MaterialCommunityIcons.ttf in Resources */,
1C260602C1DA464F9AE5D9BC /* MaterialIcons.ttf in Resources */,
26D3BCFBBBC3470FBCA228A3 /* Octicons.ttf in Resources */,
1E96072A1FB5E0BB0069BAC4 /* main.jsbundle in Resources */,
CF0F59D7E86A460DA52CD4ED /* SimpleLineIcons.ttf in Resources */,
10CCB7E53F1945308E876A46 /* Zocial.ttf in Resources */,
84E6C2F5ED264A9BBD6E3B4B /* Feather.ttf in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
Expand Down Expand Up @@ -1017,9 +1027,7 @@
INFOPLIST_FILE = Anyline/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
LIBRARY_SEARCH_PATHS = (
"$(inherited)",
);
LIBRARY_SEARCH_PATHS = "$(inherited)";
OTHER_LDFLAGS = (
"$(inherited)",
"-ObjC",
Expand Down Expand Up @@ -1052,9 +1060,7 @@
INFOPLIST_FILE = Anyline/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
LIBRARY_SEARCH_PATHS = (
"$(inherited)",
);
LIBRARY_SEARCH_PATHS = "$(inherited)";
OTHER_LDFLAGS = (
"$(inherited)",
"-ObjC",
Expand Down
Loading

0 comments on commit bdf316d

Please sign in to comment.