File tree Expand file tree Collapse file tree 1 file changed +24
-3
lines changed Expand file tree Collapse file tree 1 file changed +24
-3
lines changed Original file line number Diff line number Diff line change @@ -38,17 +38,38 @@ You can connect with me on:
38
38
39
39
### Using Android Debug Database Library in your application
40
40
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
+ ```
42
45
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 `
43
52
``` 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" )
45
59
```
46
60
47
61
Using the Android Debug Database with encrypted database
48
62
63
+ Add this in your ` build.gradle `
49
64
``` 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" )
51
71
```
72
+
52
73
And to provide the password for the DB, you should add this in the Gradle:
53
74
DB_PASSWORD_ {VARIABLE}, if for example, PERSON is the database name: DB_PASSWORD_PERSON
54
75
``` groovy
You can’t perform that action at this time.
0 commit comments