Skip to content
This repository was archived by the owner on Dec 17, 2020. It is now read-only.

Commit 27169d3

Browse files
committed
Updated support libraries to version 27 also the target and compile SDK to 27
1 parent 0eaaad5 commit 27169d3

File tree

2 files changed

+9
-17
lines changed

2 files changed

+9
-17
lines changed

demo/build.gradle

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
apply plugin: 'com.android.application'
22

33
android {
4-
compileSdkVersion 26
4+
compileSdkVersion 27
55
buildToolsVersion '26.0.2'
66

77
defaultConfig {
88
applicationId "org.neotech.app.retainabletasksdemo"
99
minSdkVersion 14
10-
targetSdkVersion 26
10+
targetSdkVersion 27
1111
versionCode 1
1212
versionName "1.0"
1313
}
@@ -21,11 +21,10 @@ android {
2121

2222
dependencies {
2323
implementation project(':library')
24-
implementation project(":annotations")
2524
annotationProcessor project(":annotations-processor")
2625

27-
implementation 'com.android.support:appcompat-v7:26.1.0'
28-
implementation 'com.android.support:design:26.1.0'
26+
implementation 'com.android.support:appcompat-v7:27.0.1'
27+
implementation 'com.android.support:design:27.0.1'
2928

3029
//LeakCanary is used to detect memory leaks in debug builds.
3130
debugImplementation 'com.squareup.leakcanary:leakcanary-android:1.5.4'

library/build.gradle

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ version = VERSION_NAME
1313
preBuild.dependsOn ":annotations:build"
1414

1515
android {
16-
compileSdkVersion 26
16+
compileSdkVersion 27
1717
buildToolsVersion '26.0.2'
1818

1919
defaultConfig {
2020
minSdkVersion 14
21-
targetSdkVersion 26
21+
targetSdkVersion 27
2222
versionName = VERSION_NAME
2323
}
2424
buildTypes {
@@ -36,16 +36,9 @@ configurations {
3636
dependencies {
3737
implementation fileTree(include: ['*.jar'], dir: 'libs')
3838

39-
implementation project(':annotations')
40-
41-
// Android Architecture Lifecycle library to support using the TaskManagerLifeCycleProxy in
42-
// combination with LifecycleOwner.getLifecycle().addObserver().
43-
//implementation 'android.arch.lifecycle:extensions:1.0.0'
44-
//annotationProcessor "android.arch.lifecycle:compiler:1.0.0"
45-
46-
// Support library for the support library specific TaskManagerOwners (TaskActivityCompat).
47-
implementation 'com.android.support:appcompat-v7:26.1.0'
48-
javadoc 'com.android.support:appcompat-v7:26.1.0'
39+
api project(':annotations')
40+
implementation 'com.android.support:appcompat-v7:27.0.1'
41+
javadoc 'com.android.support:appcompat-v7:27.0.1'
4942

5043
testImplementation 'junit:junit:4.12'
5144
}

0 commit comments

Comments
 (0)