diff --git a/example/RNExampleApp/android/app/build.gradle b/example/RNExampleApp/android/app/build.gradle index e2abf636..f688637e 100644 --- a/example/RNExampleApp/android/app/build.gradle +++ b/example/RNExampleApp/android/app/build.gradle @@ -138,7 +138,7 @@ android { dependencies { implementation project(':anyline-ocr-react-native-module') - compile project(':anyline-ocr-react-native-module') + implementation project(':anyline-ocr-react-native-module') implementation fileTree(dir: "libs", include: ["*.jar"]) implementation "com.android.support:appcompat-v7:${rootProject.ext.supportLibVersion}" implementation "com.facebook.react:react-native:+" // From node_modules diff --git a/example/RNExampleApp/ios/RNExampleApp.xcodeproj/project.pbxproj b/example/RNExampleApp/ios/RNExampleApp.xcodeproj/project.pbxproj index d64627ff..1bde741c 100644 --- a/example/RNExampleApp/ios/RNExampleApp.xcodeproj/project.pbxproj +++ b/example/RNExampleApp/ios/RNExampleApp.xcodeproj/project.pbxproj @@ -785,6 +785,7 @@ developmentRegion = English; hasScannedForEncodings = 0; knownRegions = ( + English, en, Base, ); @@ -1229,7 +1230,7 @@ ); inputPaths = ( "${SRCROOT}/Pods/Target Support Files/Pods-RNExampleApp/Pods-RNExampleApp-resources.sh", - "${PODS_ROOT}/Anyline/AnylineSDK_iOS_8.1/Framework/AnylineResources.bundle", + "${PODS_ROOT}/Anyline/AnylineSDK_iOS_9/Framework/AnylineResources.bundle", ); name = "[CP] Copy Pods Resources"; outputPaths = ( diff --git a/example/RNExampleApp/ios/RNExampleApp/Info.plist b/example/RNExampleApp/ios/RNExampleApp/Info.plist index 4a90e25f..fdc4173b 100644 --- a/example/RNExampleApp/ios/RNExampleApp/Info.plist +++ b/example/RNExampleApp/ios/RNExampleApp/Info.plist @@ -17,7 +17,7 @@ CFBundlePackageType APPL CFBundleShortVersionString - 9.0.0 + 10.0.0 CFBundleSignature ???? CFBundleVersion diff --git a/example/RNExampleApp/package.json b/example/RNExampleApp/package.json index ae1ba2fd..9751e01f 100644 --- a/example/RNExampleApp/package.json +++ b/example/RNExampleApp/package.json @@ -1,6 +1,6 @@ { "name": "anyline-react-native-example-app", - "version": "9.0.0", + "version": "10.0.0", "private": true, "scripts": { "start": "node node_modules/react-native/local-cli/cli.js start", diff --git a/example/RNExampleApp/yarn.lock b/example/RNExampleApp/yarn.lock index 5c55dab3..a4453475 100644 --- a/example/RNExampleApp/yarn.lock +++ b/example/RNExampleApp/yarn.lock @@ -1286,7 +1286,7 @@ ansi@^0.3.0, ansi@~0.3.1: integrity sha1-DELU+xcWDVqa8eSEus4cZpIsGyE= anyline-ocr-react-native-module@../../plugin: - version "8.0.0" + version "10.0.0" dependencies: buffer "^5.1.0" @@ -2956,9 +2956,9 @@ iconv-lite@0.4.24, iconv-lite@^0.4.17, iconv-lite@^0.4.4, iconv-lite@~0.4.13: safer-buffer ">= 2.1.2 < 3" ieee754@^1.1.4: - version "1.1.12" - resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.12.tgz#50bf24e5b9c8bb98af4964c941cdb0918da7b60b" - integrity sha512-GguP+DRY+pJ3soyIiGPTvdiVXjZ+DbXOxGpXn3eMvNW4x4irjqXm4wHKscC+TfxSJ0yw/S1F24tqdMNsMZTiLA== + version "1.1.13" + resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.13.tgz#ec168558e95aa181fd87d37f55c32bbcb6708b84" + integrity sha512-4vf7I2LYV/HaWerSo3XmlMkp5eZ83i+/CDluXi/IGTs/O1sejBNhTtnxzmRZfvOUqj7lZjqHkeTvpgSFDlWZTg== ignore-walk@^3.0.1: version "3.0.1" diff --git a/plugin/android/build.gradle b/plugin/android/build.gradle index f0861f18..8a18b573 100755 --- a/plugin/android/build.gradle +++ b/plugin/android/build.gradle @@ -62,7 +62,7 @@ repositories { dependencies { implementation fileTree(dir: "libs", include: ["*.jar"]) implementation 'com.android.support:appcompat-v7:26.1.0' - implementation 'io.anyline:anylinesdk:9@aar' + implementation 'io.anyline:anylinesdk:10@aar' implementation 'com.google.firebase:firebase-ml-vision:19.0.2' implementation 'com.google.firebase:firebase-ml-vision-face-model:17.0.2' implementation 'com.android.support:design:26.1.0' diff --git a/plugin/ios/AnylineReact.podspec b/plugin/ios/AnylineReact.podspec index 167dd7ea..49c3c1e2 100644 --- a/plugin/ios/AnylineReact.podspec +++ b/plugin/ios/AnylineReact.podspec @@ -20,5 +20,5 @@ Pod::Spec.new do |s| s.source_files = "*.{h,m}" - s.dependency "Anyline", "~> 9" + s.dependency "Anyline", "~> 10" end diff --git a/plugin/package.json b/plugin/package.json index f6827998..3fcb8723 100644 --- a/plugin/package.json +++ b/plugin/package.json @@ -1,6 +1,6 @@ { "name": "anyline-ocr-react-native-module", - "version": "9.0.0", + "version": "10.0.0", "main": "index.js", "description": "A Plugin for connecting Anyline with React-Native", "license": "SEE LICENSE IN LICENSE",