Skip to content

Commit

Permalink
Version 2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
philips77 committed Nov 8, 2018
1 parent 9342a08 commit 00da347
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 13 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ nRF Logger is available for Android 4.1.* and newer.
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:

```Groovy
implementation 'no.nordicsemi.android:log:2.1.3'
implementation 'no.nordicsemi.android:log:2.2.0'
```

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

```Groovy
implementation 'no.nordicsemi.android:log-timber:2.1.3'
implementation 'no.nordicsemi.android:log-timber:2.2.0'
```

If you use proguard, the following line will be automatically added to your proguard rules:
Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

buildscript {
repositories {
jcenter()
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.0'
classpath 'com.android.tools.build:gradle:3.2.1'
classpath "com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4"
// The following dependency has been replaced with newer version according to https://github.com/dcendents/android-maven-plugin
// classpath 'com.github.dcendents:android-maven-plugin:1.2'
Expand All @@ -19,7 +19,7 @@ buildscript {

allprojects {
repositories {
jcenter()
google()
jcenter()
}
}
9 changes: 4 additions & 5 deletions log-timber/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ apply plugin: 'com.jfrog.bintray'
ext {
PUBLISH_GROUP_ID = 'no.nordicsemi.android'
PUBLISH_ARTIFACT_ID = 'log-timber'
PUBLISH_VERSION = '2.1.3'
PUBLISH_VERSION = '2.2.0'

bintrayRepo = 'android'
bintrayName = 'nrf-logger-timber'
Expand Down Expand Up @@ -46,19 +46,18 @@ android {
defaultConfig {
minSdkVersion 16
targetSdkVersion 28
versionCode 6
versionName "2.1.3"
versionCode 7
versionName "2.2.0"
}
buildTypes {
release {
minifyEnabled false
consumerProguardFiles 'log-proguard-rules.pro'
}
}
}

dependencies {
api 'no.nordicsemi.android:log:2.1.3'
api 'no.nordicsemi.android:log:2.2.0'
api 'com.jakewharton.timber:timber:4.7.1'
}

Expand Down
6 changes: 3 additions & 3 deletions log/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ apply plugin: 'com.jfrog.bintray'
ext {
PUBLISH_GROUP_ID = 'no.nordicsemi.android'
PUBLISH_ARTIFACT_ID = 'log'
PUBLISH_VERSION = '2.1.3'
PUBLISH_VERSION = '2.2.0'

bintrayRepo = 'android'
bintrayName = 'nrf-logger-api'
Expand Down Expand Up @@ -46,8 +46,8 @@ android {
defaultConfig {
minSdkVersion 16
targetSdkVersion 28
versionCode 6
versionName "2.1.3"
versionCode 7
versionName "2.2.0"
}
buildTypes {
release {
Expand Down

0 comments on commit 00da347

Please sign in to comment.