Skip to content

Commit a8d42df

Browse files
BilalBilal
authored andcommitted
Update gradle dependencies and use api instead of implementation
1 parent a15a396 commit a8d42df

File tree

2 files changed

+6
-9
lines changed

2 files changed

+6
-9
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ buildscript {
77
jcenter()
88
}
99
dependencies {
10-
classpath 'com.android.tools.build:gradle:3.1.0'
10+
classpath 'com.android.tools.build:gradle:3.1.3'
1111

1212

1313
// NOTE: Do not place your application dependencies here; they belong

sdl_android/build.gradle

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -33,17 +33,14 @@ android {
3333
}
3434

3535
dependencies {
36-
implementation fileTree(dir: 'libs', include: ['*.jar'])
37-
implementation ('com.smartdevicelink:bson_java_port:1.1.1@aar'){
38-
transitive = true
39-
}
36+
api fileTree(dir: 'libs', include: ['*.jar'])
37+
api 'com.smartdevicelink:bson_java_port:1.1.1'
4038
androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
4139
exclude group: 'com.android.support', module: 'support-annotations'
4240
})
4341
testImplementation 'junit:junit:4.12'
4442
testImplementation 'org.mockito:mockito-core:2.9.0'
45-
implementation 'com.android.support:support-annotations:27.1.1'
46-
43+
api 'com.android.support:support-annotations:27.1.1'
4744
}
4845

4946
buildscript {
@@ -52,8 +49,8 @@ buildscript {
5249
mavenCentral()
5350
}
5451
dependencies {
55-
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3'
56-
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5'
52+
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.1'
53+
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
5754
}
5855
}
5956

0 commit comments

Comments
 (0)