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 1
1
apply plugin : ' com.android.application'
2
2
3
3
android {
4
- compileSdkVersion 26
4
+ compileSdkVersion 27
5
5
buildToolsVersion ' 26.0.2'
6
6
7
7
defaultConfig {
8
8
applicationId " org.neotech.app.retainabletasksdemo"
9
9
minSdkVersion 14
10
- targetSdkVersion 26
10
+ targetSdkVersion 27
11
11
versionCode 1
12
12
versionName " 1.0"
13
13
}
@@ -21,11 +21,10 @@ android {
21
21
22
22
dependencies {
23
23
implementation project(' :library' )
24
- implementation project(" :annotations" )
25
24
annotationProcessor project(" :annotations-processor" )
26
25
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 '
29
28
30
29
// LeakCanary is used to detect memory leaks in debug builds.
31
30
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
13
13
preBuild. dependsOn " :annotations:build"
14
14
15
15
android {
16
- compileSdkVersion 26
16
+ compileSdkVersion 27
17
17
buildToolsVersion ' 26.0.2'
18
18
19
19
defaultConfig {
20
20
minSdkVersion 14
21
- targetSdkVersion 26
21
+ targetSdkVersion 27
22
22
versionName = VERSION_NAME
23
23
}
24
24
buildTypes {
@@ -36,16 +36,9 @@ configurations {
36
36
dependencies {
37
37
implementation fileTree(include : [' *.jar' ], dir : ' libs' )
38
38
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'
49
42
50
43
testImplementation ' junit:junit:4.12'
51
44
}
You can’t perform that action at this time.
0 commit comments