Skip to content

Commit 00da347

Browse files
committed
Version 2.2.0
1 parent 9342a08 commit 00da347

File tree

4 files changed

+12
-13
lines changed

4 files changed

+12
-13
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ nRF Logger is available for Android 4.1.* and newer.
1111
The nRF Logger API library is available as *jar* or from jcenter and Maven Central repositories. For Android Studio, add the following dependency to your component's *gradle.build* file:
1212

1313
```Groovy
14-
implementation 'no.nordicsemi.android:log:2.1.3'
14+
implementation 'no.nordicsemi.android:log:2.2.0'
1515
```
1616

1717
For easy integration with [Timber (4.7.1)](https://github.com/JakeWharton/timber), use this instead:
1818

1919
```Groovy
20-
implementation 'no.nordicsemi.android:log-timber:2.1.3'
20+
implementation 'no.nordicsemi.android:log-timber:2.2.0'
2121
```
2222

2323
If you use proguard, the following line will be automatically added to your proguard rules:

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22

33
buildscript {
44
repositories {
5-
jcenter()
65
google()
6+
jcenter()
77
}
88
dependencies {
9-
classpath 'com.android.tools.build:gradle:3.2.0'
9+
classpath 'com.android.tools.build:gradle:3.2.1'
1010
classpath "com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4"
1111
// The following dependency has been replaced with newer version according to https://github.com/dcendents/android-maven-plugin
1212
// classpath 'com.github.dcendents:android-maven-plugin:1.2'
@@ -19,7 +19,7 @@ buildscript {
1919

2020
allprojects {
2121
repositories {
22-
jcenter()
2322
google()
23+
jcenter()
2424
}
2525
}

log-timber/build.gradle

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ apply plugin: 'com.jfrog.bintray'
1515
ext {
1616
PUBLISH_GROUP_ID = 'no.nordicsemi.android'
1717
PUBLISH_ARTIFACT_ID = 'log-timber'
18-
PUBLISH_VERSION = '2.1.3'
18+
PUBLISH_VERSION = '2.2.0'
1919

2020
bintrayRepo = 'android'
2121
bintrayName = 'nrf-logger-timber'
@@ -46,19 +46,18 @@ android {
4646
defaultConfig {
4747
minSdkVersion 16
4848
targetSdkVersion 28
49-
versionCode 6
50-
versionName "2.1.3"
49+
versionCode 7
50+
versionName "2.2.0"
5151
}
5252
buildTypes {
5353
release {
5454
minifyEnabled false
55-
consumerProguardFiles 'log-proguard-rules.pro'
5655
}
5756
}
5857
}
5958

6059
dependencies {
61-
api 'no.nordicsemi.android:log:2.1.3'
60+
api 'no.nordicsemi.android:log:2.2.0'
6261
api 'com.jakewharton.timber:timber:4.7.1'
6362
}
6463

log/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ apply plugin: 'com.jfrog.bintray'
1515
ext {
1616
PUBLISH_GROUP_ID = 'no.nordicsemi.android'
1717
PUBLISH_ARTIFACT_ID = 'log'
18-
PUBLISH_VERSION = '2.1.3'
18+
PUBLISH_VERSION = '2.2.0'
1919

2020
bintrayRepo = 'android'
2121
bintrayName = 'nrf-logger-api'
@@ -46,8 +46,8 @@ android {
4646
defaultConfig {
4747
minSdkVersion 16
4848
targetSdkVersion 28
49-
versionCode 6
50-
versionName "2.1.3"
49+
versionCode 7
50+
versionName "2.2.0"
5151
}
5252
buildTypes {
5353
release {

0 commit comments

Comments
 (0)