Skip to content

Commit 74861b0

Browse files
Update version
1 parent 70115a5 commit 74861b0

File tree

1 file changed

+24
-3
lines changed

1 file changed

+24
-3
lines changed

README.md

Lines changed: 24 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,17 +38,38 @@ You can connect with me on:
3838

3939
### Using Android Debug Database Library in your application
4040

41-
Add this to your app's build.gradle
41+
Add this in your `settings.gradle`:
42+
```groovy
43+
maven { url 'https://jitpack.io' }
44+
```
4245

46+
If you are using `settings.gradle.kts`, add the following:
47+
```kotlin
48+
maven { setUrl("https://jitpack.io") }
49+
```
50+
51+
Add this in your `build.gradle`
4352
```groovy
44-
debugImplementation 'com.amitshekhar.android:debug-db:1.0.6'
53+
debugImplementation 'com.github.amitshekhariitbhu.Android-Debug-Database:debug-db:1.0.7'
54+
```
55+
56+
If you are using `build.gradle.kts`, add the following:
57+
```kotlin
58+
debugImplementation("com.github.amitshekhariitbhu.Android-Debug-Database:debug-db:1.0.7")
4559
```
4660

4761
Using the Android Debug Database with encrypted database
4862

63+
Add this in your `build.gradle`
4964
```groovy
50-
debugImplementation 'com.amitshekhar.android:debug-db-encrypt:1.0.6'
65+
debugImplementation 'com.github.amitshekhariitbhu.Android-Debug-Database:debug-db-encrypt:1.0.7'
66+
```
67+
68+
If you are using `build.gradle.kts`, add the following:
69+
```kotlin
70+
debugImplementation("com.github.amitshekhariitbhu.Android-Debug-Database:debug-db-encrypt:1.0.7")
5171
```
72+
5273
And to provide the password for the DB, you should add this in the Gradle:
5374
DB_PASSWORD_{VARIABLE}, if for example, PERSON is the database name: DB_PASSWORD_PERSON
5475
```groovy

0 commit comments

Comments
 (0)