Skip to content

Commit 0d2e355

Browse files
author
Shrikanth Ravi
authored
Merge pull request #34 from tobiasschuerg/gradle-4.6
Updated to gradle 4.6, set android sdk to 28 and cleaned up dependencies
2 parents 90c7881 + e67c3f9 commit 0d2e355

File tree

4 files changed

+17
-22
lines changed

4 files changed

+17
-22
lines changed

app/build.gradle

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@ android {
2424
sourceCompatibility = '1.8'
2525
targetCompatibility = '1.8'
2626
}
27-
buildToolsVersion = '28.0.2'
2827
}
2928

3029
dependencies {
31-
implementation fileTree(dir: 'libs', include: ['*.jar'])
32-
implementation 'com.android.support:appcompat-v7:27.1.1'
33-
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
34-
testImplementation 'junit:junit:4.12'
35-
androidTestImplementation 'androidx.test:runner:1.1.0-alpha4'
36-
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0-alpha4'
3730
implementation project(':collapsiblecalendarview2')
31+
implementation 'androidx.appcompat:appcompat:1.0.2'
32+
implementation 'androidx.constraintlayout:constraintlayout:2.0.0-alpha2'
33+
34+
testImplementation 'junit:junit:4.12'
35+
36+
androidTestImplementation 'androidx.test:runner:1.1.0'
37+
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0'
3838
}

build.gradle

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
22

33
buildscript {
4-
4+
55
repositories {
66
google()
77
jcenter()
88
}
99
dependencies {
10-
classpath 'com.android.tools.build:gradle:3.1.4'
11-
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.0'
12-
10+
classpath 'com.android.tools.build:gradle:3.2.1'
11+
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
1312

1413
// NOTE: Do not place your application dependencies here; they belong
1514
// in the individual module build.gradle files

collapsiblecalendarview2/build.gradle

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -29,18 +29,14 @@ android {
2929
sourceCompatibility = '1.8'
3030
targetCompatibility = '1.8'
3131
}
32-
buildToolsVersion = '28.0.2'
33-
34-
3532
}
3633

3734
dependencies {
38-
implementation fileTree(dir: 'libs', include: ['*.jar'])
39-
40-
implementation 'com.android.support:appcompat-v7:27.1.1'
35+
implementation 'androidx.appcompat:appcompat:1.0.2'
36+
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
4137

4238
testImplementation 'junit:junit:4.12'
43-
androidTestImplementation 'androidx.test:runner:1.1.0-alpha4'
44-
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0-alpha4'
45-
implementation 'androidx.constraintlayout:constraintlayout:1.1.2'
39+
40+
androidTestImplementation 'androidx.test:runner:1.1.0'
41+
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0'
4642
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Tue Mar 06 20:01:26 IST 2018
1+
#Fri Nov 09 15:35:52 CET 2018
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-4.6-all.zip

0 commit comments

Comments
 (0)