This repository was archived by the owner on Dec 17, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +9
-17
lines changed Expand file tree Collapse file tree 2 files changed +9
-17
lines changed Original file line number Diff line number Diff line change 11apply plugin : ' com.android.application'
22
33android {
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
2222dependencies {
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'
Original file line number Diff line number Diff line change @@ -13,12 +13,12 @@ version = VERSION_NAME
1313preBuild. dependsOn " :annotations:build"
1414
1515android {
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 {
3636dependencies {
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}
You can’t perform that action at this time.
0 commit comments