Use compileOnly instead of provided in Gradle files (#438)

Use compileOnly instead of provided in Gradle files
This commit is contained in:
Eugene
2018-08-05 15:51:58 -04:00
committed by Carlos
parent 56e681bed1
commit 71806a3d1d
45 changed files with 76 additions and 81 deletions

View File

@ -3,7 +3,7 @@ apply plugin: 'kotlin-android'
ext {
appName = 'Tachiyomi: AcademyVN'
pkgNameSuffix = "vi.academyvn"
pkgNameSuffix = 'vi.academyvn'
extClass = '.Academyvn'
extVersionCode = 3
extVersionSuffix = 2

View File

@ -3,7 +3,7 @@ apply plugin: 'kotlin-android'
ext {
appName = 'Tachiyomi: Blogtruyen'
pkgNameSuffix = "vi.blogtruyen"
pkgNameSuffix = 'vi.blogtruyen'
extClass = '.Blogtruyen'
extVersionCode = 2
extVersionSuffix = 1

View File

@ -3,7 +3,7 @@ apply plugin: 'kotlin-android'
ext {
appName = 'Tachiyomi: IuTruyenTranh'
pkgNameSuffix = "vi.iutruyentranh"
pkgNameSuffix = 'vi.iutruyentranh'
extClass = '.Iutruyentranh'
extVersionCode = 3
extVersionSuffix = 2

View File

@ -3,7 +3,7 @@ apply plugin: 'kotlin-android'
ext {
appName = 'Tachiyomi: TruyenTranhLh'
pkgNameSuffix = "vi.truyentranhlh"
pkgNameSuffix = 'vi.truyentranhlh'
extClass = '.Truyentranhlh'
extVersionCode = 4
extVersionSuffix = 3
@ -11,8 +11,8 @@ ext {
}
dependencies {
provided "com.google.code.gson:gson:2.8.0"
provided "com.github.salomonbrys.kotson:kotson:2.5.0"
compileOnly 'com.google.code.gson:gson:2.8.0'
compileOnly 'com.github.salomonbrys.kotson:kotson:2.5.0'
}
apply from: "$rootDir/common.gradle"