Skip to content

Commit 65916d1

Browse files
committed
Merge branch 'release/5.4.0'
2 parents 5fa195a + e6fefea commit 65916d1

40 files changed

+722
-463
lines changed

NOTICE

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Copyright 2018 DuckDuckGo
2+
3+
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
4+
5+
http://www.apache.org/licenses/LICENSE-2.0
6+
7+
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

app/build.gradle

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ apply plugin: 'kotlin-kapt'
66
apply from: '../versioning.gradle'
77

88
ext {
9-
VERSION_NAME = "5.3.1"
9+
VERSION_NAME = "5.4.0"
1010
USE_ORCHESTRATOR = project.hasProperty('orchestrator') ? project.property('orchestrator') : false
1111
}
1212

@@ -77,13 +77,15 @@ android {
7777
}
7878

7979
ext {
80-
supportLibrary = "27.1.0"
80+
supportLibrary = "27.1.1"
8181
architectureComponents = "1.0.0"
8282
architectureComponentsExtensions = "1.1.1"
83+
androidKtx = "0.3"
8384
dagger = "2.14.1"
8485
retrofit = "2.3.0"
8586
ankoVersion = "0.10.4"
8687
glide = "4.6.1"
88+
androidTestRunner = "1.0.2"
8789
}
8890

8991

@@ -92,10 +94,10 @@ dependencies {
9294
releaseImplementation 'com.squareup.leakcanary:leakcanary-android-no-op:1.5.4'
9395

9496
implementation fileTree(dir: 'libs', include: ['*.jar'])
95-
implementation "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
97+
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
9698
implementation "com.android.support:appcompat-v7:$supportLibrary"
9799
implementation "com.android.support:design:$supportLibrary"
98-
implementation "com.android.support.constraint:constraint-layout:1.0.2"
100+
implementation "com.android.support.constraint:constraint-layout:1.1.0"
99101
implementation "com.squareup.okhttp3:okhttp:3.10.0"
100102
implementation "com.squareup.retrofit2:retrofit:$retrofit"
101103
implementation "com.squareup.retrofit2:converter-moshi:$retrofit"
@@ -115,7 +117,7 @@ dependencies {
115117
implementation "org.jetbrains.anko:anko-design:$ankoVersion"
116118

117119
// Android KTX
118-
implementation 'androidx.core:core-ktx:0.2'
120+
implementation "androidx.core:core-ktx:$androidKtx"
119121

120122
// ViewModel and LiveData
121123
implementation "android.arch.lifecycle:extensions:$architectureComponentsExtensions"
@@ -143,9 +145,10 @@ dependencies {
143145
testImplementation "com.nhaarman:mockito-kotlin-kt1.1:1.5.0"
144146
testImplementation "junit:junit:4.12"
145147

146-
androidTestImplementation "com.android.support.test:runner:1.0.1"
147-
androidTestUtil "com.android.support.test:orchestrator:1.0.1"
148-
androidTestImplementation "com.android.support.test.espresso:espresso-core:3.0.1"
148+
androidTestImplementation "com.android.support.test:runner:$androidTestRunner"
149+
androidTestImplementation "com.android.support.test:rules:$androidTestRunner"
150+
androidTestUtil "com.android.support.test:orchestrator:1.0.2"
151+
androidTestImplementation "com.android.support.test.espresso:espresso-core:3.0.2"
149152
androidTestImplementation "org.mockito:mockito-android:2.15.0"
150153
androidTestImplementation "com.nhaarman:mockito-kotlin-kt1.1:1.5.0"
151154

0 commit comments

Comments
 (0)