Skip to content

Commit

Permalink
Merge branch 'release/13.1' into release/14
Browse files Browse the repository at this point in the history
  • Loading branch information
Philipp Müller committed Sep 27, 2019
2 parents 46d5a15 + 79f7881 commit 06445f8
Show file tree
Hide file tree
Showing 8 changed files with 6 additions and 10 deletions.
1 change: 0 additions & 1 deletion example/RNExampleApp/config/VerticalContainerConfig.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ export default {
},
"cutoutConfig": {
"style": "rect",
"maxWidthPercent": "10%",
"alignment": "top_half",
"ratioFromSize": {
"width": 9,
Expand Down
2 changes: 1 addition & 1 deletion example/RNExampleApp/ios/RNExampleApp/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>12.0.0</string>
<string>13.0.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
2 changes: 1 addition & 1 deletion example/RNExampleApp/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "anyline-react-native-example-app",
"version": "12.1.0",
"version": "13.1.0",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
Expand Down
2 changes: 1 addition & 1 deletion plugin/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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:12.1@aar'
implementation 'io.anyline:anylinesdk:13@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'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
import android.widget.RadioGroup;
import android.widget.RelativeLayout;

import com.google.android.gms.vision.barcode.Barcode;
import com.google.firebase.ml.vision.barcode.FirebaseVisionBarcode;

import org.json.JSONArray;
Expand Down Expand Up @@ -532,5 +531,3 @@ public void onCheckedChanged(RadioGroup group, int checkedId) {
}

}


Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ public boolean onDocumentOutlineDetected(List rect, boolean documentShapeAndBrig
// is called when the outline of the document is detected. return true if the outline is consumed by
// the implementation here, false if the outline should be drawn by the DocumentScanView
lastOutline = rect; // saving the outline for the animations
return true;
return false;
}

@Override
Expand Down
2 changes: 1 addition & 1 deletion plugin/ios/AnylineReact.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ Pod::Spec.new do |s|

s.source_files = "*.{h,m}"

s.dependency "Anyline", "~> 12.1"
s.dependency "Anyline", "~> 13"
s.dependency "React"
end
2 changes: 1 addition & 1 deletion plugin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "anyline-ocr-react-native-module",
"version": "12.1.0",
"version": "13.1.0",
"main": "index.js",
"description": "A Plugin for connecting Anyline with React-Native",
"license": "SEE LICENSE IN LICENSE",
Expand Down

0 comments on commit 06445f8

Please sign in to comment.