Skip to content

Commit

Permalink
feat/Version 2.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wassil committed Nov 20, 2020
1 parent cf16d8e commit 20ef25d
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 7 deletions.
7 changes: 7 additions & 0 deletions Documentation/RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
## Release Notes
## Release Notes for 2.9.0
#### November 20, 2020
* Features
* Removed Firebase default init override. By default Firebase initializes before the application is started using FirebaseInitProvider. Our SDK was removing this initializer and manually creating Firebase app when the Exponea SDK was initialized, to make Firebase token tracking easier. This has caused issues in React Native, where other packages rely on the default Firebase initializer. In 2.8.3 we made a change that remembers Firebase token until Exponea SDK is initialized, so there is no point in overriding default Firebase initializer any more.
* Documentation improvements


## Release Notes for 2.8.3
#### October 06, 2020
* Features
Expand Down
2 changes: 1 addition & 1 deletion Guides/INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
2. Add ExponeaSDK dependency and sync your project
```groovy
dependencies {
implementation 'com.exponea.sdk:sdk:2.8.3'
implementation 'com.exponea.sdk:sdk:2.9.0'
}
```
3. After synchronization is complete, you can start using the SDK.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Download via Gradle:

```groovy
dependencies {
implementation 'com.exponea.sdk:sdk:2.8.3'
implementation 'com.exponea.sdk:sdk:2.9.0'
}
```

Expand All @@ -32,7 +32,7 @@ Download via Maven:
<dependency>
<groupId>com.exponea.sdk</groupId>
<artifactId>sdk</artifactId>
<version>2.8.3</version>
<version>2.9.0</version>
</dependency>
```

Expand Down
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ android {
applicationId "com.exponea.example"
minSdkVersion 21
targetSdkVersion 27
versionCode 47
versionName "2.8.3"
versionCode 48
versionName "2.9.0"
vectorDrawables.useSupportLibrary = true
}
buildTypes {
Expand Down
4 changes: 2 additions & 2 deletions sdk/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ android {
defaultConfig {
minSdkVersion 16
targetSdkVersion 27
versionCode 42
versionName "2.8.3"
versionCode 43
versionName "2.9.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles 'proguard-rules.pro'
}
Expand Down

0 comments on commit 20ef25d

Please sign in to comment.