Updated Android Support Library dependencies
This commit is contained in:
parent
b6be7d829d
commit
a88dee6c95
2 changed files with 10 additions and 6 deletions
|
@ -1,10 +1,10 @@
|
|||
import com.anthonycicchetti.financetracker.DependencyVersions
|
||||
|
||||
apply plugin: 'com.android.application'
|
||||
|
||||
apply plugin: 'kotlin-android'
|
||||
|
||||
apply plugin: 'kotlin-android-extensions'
|
||||
plugins {
|
||||
id 'com.android.application'
|
||||
id 'kotlin-android'
|
||||
id 'kotlin-android-extensions'
|
||||
}
|
||||
|
||||
repositories {
|
||||
google()
|
||||
|
@ -45,7 +45,7 @@ dependencies {
|
|||
testImplementation "org.junit.jupiter:junit-jupiter-api:${DependencyVersions.Jupiter}"
|
||||
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:${DependencyVersions.Jupiter}"
|
||||
|
||||
implementation 'com.android.support:design:27.1.0'
|
||||
implementation "com.android.support:design:${DependencyVersions.Android.SupportLibrary}"
|
||||
implementation 'androidx.appcompat:appcompat:1.0.0-beta01'
|
||||
implementation 'androidx.constraintlayout:constraintlayout-solver:1.1.2'
|
||||
implementation 'com.google.android.material:material:1.0.0-beta01'
|
||||
|
|
|
@ -9,4 +9,8 @@ object DependencyVersions {
|
|||
object Server {
|
||||
const val Capsule = "1.0.2"
|
||||
}
|
||||
|
||||
object Android {
|
||||
const val SupportLibrary = "27.1.1"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue