Skip to content

Commit 5b83f6c

Browse files
authored
Use 'debugImplementation' instead 'debugCompile'
Compile dependencies for 'debug' sources (deprecated: use 'debugImplementation' instead). https://docs.gradle.org/current/userguide/java_library_plugin.html#sec:java_library_separation
1 parent 7595b16 commit 5b83f6c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,10 @@
3636
### Using Android Debug Database Library in your application
3737
Add this to your app's build.gradle
3838
```groovy
39-
debugCompile 'com.amitshekhar.android:debug-db:1.0.3'
39+
debugImplementation 'com.amitshekhar.android:debug-db:1.0.3'
4040
```
4141

42-
Use `debugCompile` so that it will only compile in your debug build and not in your release build.
42+
Use `debugImplementation` so that it will only compile in your debug build and not in your release build.
4343

4444
That’s all, just start the application, you will see in the logcat an entry like follows :
4545

0 commit comments

Comments
 (0)