There was an error while loading. Please reload this page.
1 parent 1cb6137 commit ee9f048Copy full SHA for ee9f048
README.md
@@ -48,6 +48,13 @@ Using the Android Debug Database with encrypted database
48
```groovy
49
debugImplementation 'com.amitshekhar.android:debug-db-encrypt:1.0.6'
50
```
51
+And to provide the password for the DB, you should add this in the Gradle:
52
+DB_PASSWORD_{VARIABLE}, if for example, PERSON is the database name: DB_PASSWORD_PERSON
53
+```groovy
54
+debug {
55
+ resValue("string", "DB_PASSWORD_PERSON", "password")
56
+}
57
+```
58
59
Use `debugImplementation` so that it will only compile in your debug build and not in your release build.
60
0 commit comments