refactor: 'compile' it's deprecated

`compile` it's deprecated since Gradle 6.0 and been discouraged since Gradle 3.4.

We should use `implementation` and `api` instead because `compile` will be removed in Gradle 7.0.

https://docs.gradle.org/6.5.1/userguide/upgrading_version_5.html#deprecations
This commit is contained in:
Giacomo Ferretti
2020-08-10 14:45:00 +02:00
committed by Connor Tumbleson
parent 5a5566bf27
commit 4c3f1f335a
6 changed files with 28 additions and 23 deletions

View File

@ -16,8 +16,8 @@
apply plugin: 'com.github.johnrengelman.shadow'
dependencies {
compile depends.commons_cli
compile project(':brut.apktool:apktool-lib')
implementation depends.commons_cli
implementation project(':brut.apktool:apktool-lib')
}
buildscript {