Skip to content

Commit

Permalink
New release 1.0.2 details updated and Issue #40 resolved
Browse files Browse the repository at this point in the history
  • Loading branch information
androidmads authored Sep 5, 2024
1 parent 60a215e commit efa4b55
Showing 1 changed file with 19 additions and 2 deletions.
21 changes: 19 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ QR Generator Library and Saves the QR Code as Image
### How to Import the Library:
Add it in your root build.gradle at the end of repositories:

<b>App-level build.gradle:</b>
``` groovy
allprojects {
repositories {
Expand All @@ -16,12 +17,28 @@ allprojects {
}
}
```
<b>Gradle:</b>
<b>Module-level build.gradle:</b>
```groovy
dependencies {
implementation 'com.github.androidmads:QRGenerator:1.0.1'
implementation 'com.github.androidmads:QRGenerator:1.0.2'
}
```
<b>settings.gradle:</b>
```
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven(url = "https://jitpack.io")
}
}
```
Activity:
```
import androidmads.library.qrgenearator.QRGContents;
import androidmads.library.qrgenearator.QRGEncoder;
```

### Features:
1. QR code color can be changed dynamically
Expand Down

0 comments on commit efa4b55

Please sign in to comment.