mirror of
https://github.com/revanced/Apktool.git
synced 2025-06-12 21:27:36 +02:00
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:

committed by
Connor Tumbleson

parent
5a5566bf27
commit
4c3f1f335a
@ -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 {
|
||||
|
Reference in New Issue
Block a user