Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
MYID Public Code
MyID Sample Android
Commits
a50fe665
Commit
a50fe665
authored
Jul 04, 2024
by
Javohir Savriy
Browse files
Update README.md
parent
0055de5d
Changes
1
Hide whitespace changes
Inline
Side-by-side
README.md
View file @
a50fe665
...
...
@@ -37,18 +37,34 @@ compileOptions {
### 1.2 Setup MyID Android SDK
Add reference to library to module
**_build.gradle_**
:
#### Step 1: Add the Repository
First, add the Artifactory repository to the repositories block of your module's
**_build.gradle_**
file:
```
gradle
repositories
{
maven
{
url
"https://artifactory.aigroup.uz:443/artifactory/myid"
}
}
```
#### Step 2: Add the Dependency
Next, add the SDK dependency to the dependencies block:
```
gradle
dependencies
{
implementation
(
"uz.myid.sdk.capture:myid-capture-sdk:2.3.2"
)
}
```
If you are using Huawei devices, Flutter or an environment that does not support Google Play Services, use the bundled version of the SDK:
```
gradle
dependencies
{
implementation
(
"uz.myid.sdk.capture:myid-capture-sdk-bundled:2.3.2"
)
}
```
After synchronization, You should be able to access to SDK classes from your source code.
### 1.3 Permissions
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment