Skip to content

Commit

Permalink
Libraries are not transitive
Browse files Browse the repository at this point in the history
  • Loading branch information
nono3551 committed Jun 18, 2020
1 parent 207e1e9 commit d8ff59a
Showing 1 changed file with 4 additions and 15 deletions.
19 changes: 4 additions & 15 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
apply plugin: 'kotlin-kapt'


android {
compileSdkVersion 29
buildToolsVersion "29.0.3"
Expand All @@ -12,9 +11,7 @@ android {
minSdkVersion 23
targetSdkVersion 29
versionCode 1
versionName "1.0.14"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
versionName "1.0.15"
}

buildTypes {
Expand All @@ -40,15 +37,7 @@ dependencies {
implementation 'androidx.core:core-ktx:1.3.0'
implementation 'androidx.appcompat:appcompat:1.1.0'

implementation ('com.google.code.gson:gson:2.8.5') {
transitive=true
}

implementation ('com.github.bumptech.glide:glide:4.11.0@aar') {
transitive=true
}

implementation ('com.android.volley:volley:1.1.1@aar') {
transitive=true
}
implementation 'com.google.code.gson:gson:2.8.5'
implementation 'com.github.bumptech.glide:glide:4.11.0'
implementation 'com.android.volley:volley:1.1.1'
}

0 comments on commit d8ff59a

Please sign in to comment.