Skip to content

Commit

Permalink
Support libs updated to 27.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
philips77 committed Nov 30, 2017
1 parent 2e477c4 commit 40b3b98
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 26
compileSdkVersion 27
buildToolsVersion '26.0.2'

defaultConfig {
Expand Down Expand Up @@ -41,9 +41,9 @@ dependencies {
implementation 'com.google.android.gms:play-services-wearable:10.2.0'

//noinspection GradleDependency
implementation 'com.android.support:appcompat-v7:26.1.0'
implementation 'com.android.support:appcompat-v7:27.0.2'
//noinspection GradleDependency
implementation 'com.android.support:design:26.1.0'
implementation 'com.android.support:design:27.0.2'

implementation 'no.nordicsemi.android:log:2.1.1'
implementation 'no.nordicsemi.android.support.v18:scanner:1.0.0'
Expand Down
6 changes: 3 additions & 3 deletions common/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@
apply plugin: 'com.android.library'

android {
compileSdkVersion 26
compileSdkVersion 27
buildToolsVersion "26.0.2"

defaultConfig {
minSdkVersion 18
targetSdkVersion 26
targetSdkVersion 27
versionCode 1
versionName "1.0"
resConfigs "en"
Expand All @@ -53,5 +53,5 @@ android {
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
//noinspection GradleDependency
implementation 'com.android.support:support-core-utils:26.1.0'
implementation 'com.android.support:support-core-utils:27.0.2'
}
6 changes: 3 additions & 3 deletions wear/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 26
compileSdkVersion 27
buildToolsVersion "26.0.2"

defaultConfig {
Expand Down Expand Up @@ -47,7 +47,7 @@ dependencies {

// uncomment to enable the Wear UI Library
// https://developer.android.com/training/wearables/ui/wear-ui-library.html
// implementation 'com.android.support:wear:26.1.0'
// implementation 'com.android.support:wear:27.0.2'

// nRF Toolbox is using Play Service 10.2.0 in order to make the app working in China:
// https://developer.android.com/training/wearables/apps/creating-app-china.html#ChinaSDK
Expand All @@ -61,7 +61,7 @@ configurations.all {
def requested = details.requested
if (requested.group == 'com.android.support') {
if (!requested.name.startsWith("multidex")) {
details.useVersion '26.1.0'
details.useVersion '27.0.2'
}
}
}
Expand Down

0 comments on commit 40b3b98

Please sign in to comment.