Get Dynamsoft Capture Vision Free Trial
Python Package
Version 2.4.2100
pip install dynamsoft_capture_vision_bundle Copied √
iOS Package
Version 2.6.1000
1. Add the frameworks in your Podfile.
target 'HelloWorld' do
use_frameworks!
pod 'DynamsoftCaptureVisionBundle','2.6.1000'
end
2. Execute the pod command to install the frameworks and generate workspace(HelloWorld.xcworkspace):
pod install
Android Package
Version 2.6.1000
1. Open the file [App Project Root Path]\app\build.gradle and add the Maven repository:
allprojects {
repositories {
maven {
url "https://download2.dynamsoft.com/maven/aar"
}
}
}
2. Execute the pod command to install the frameworks and generate workspace(HelloWorld.xcworkspace):
dependencies {
implementation 'com.dynamsoft:dynamsoftcapturevisionbundle:2.6.1000'
}