-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
38 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,27 @@ | ||
import Versions.androidXVer | ||
import Versions.gradlePluginVer | ||
import Versions.kotlinVer | ||
import Versions.projectVer | ||
|
||
object Versions { | ||
const val kotlin = "1.3.11" | ||
const val androidX = "1.0.0" | ||
const val gradlePlugin = "3.3.0" | ||
const val projectVersion = "1.0.0" | ||
const val kotlinVer = "1.3.11" | ||
const val projectVer = "1.0.0" | ||
const val androidXVer = "1.0.0" | ||
const val gradlePluginVer = "3.3.0" | ||
} | ||
|
||
object BuildScriptPlugins { | ||
const val dictgen = "ru.cleverpumpkin.dictgen:plugin:${Versions.projectVersion}" | ||
const val android = "com.android.tools.build:gradle:${Versions.gradlePlugin}" | ||
const val kotlin = "org.jetbrains.kotlin:kotlin-gradle-plugin:${Versions.kotlin}" | ||
const val android = "com.android.tools.build:gradle:$gradlePluginVer" | ||
const val kotlin = "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVer" | ||
const val proguardDictionaries = | ||
"ru.cleverpumpkin.proguard-dictionaries-generator:plugin:$projectVer" | ||
} | ||
|
||
object Plugins { | ||
const val dictgen = "ru.cleverpumpkin.dictgen" | ||
const val proguardDictionaries = "ru.cleverpumpkin.proguard-dictionaries-generator" | ||
} | ||
|
||
object Libraries { | ||
const val kotlin = "org.jetbrains.kotlin:kotlin-stdlib:${Versions.kotlin}" | ||
const val androidX = "androidx.appcompat:appcompat:${Versions.androidX}" | ||
const val androidX = "androidx.appcompat:appcompat:$androidXVer" | ||
const val kotlin = "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVer" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...tgen/ProguardDictionaryGeneratorPlugin.kt → ...ugin/ProguardDictionaryGeneratorPlugin.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...ictgen/ProguardDictionaryGeneratorTask.kt → ...plugin/ProguardDictionaryGeneratorTask.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters