Skip to content

Commit 807fbfd

Browse files
authored
Version 2.3.2 (#41)
* Application class removed from SDK, to avoid conflict with apps
1 parent 2ce0d09 commit 807fbfd

File tree

6 files changed

+9
-24
lines changed

6 files changed

+9
-24
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33

44
All notable changes to the LaunchDarkly Android SDK will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org).
55

6+
## [2.3.2] - 2018-05-02
7+
### Fixed
8+
- Application class removed from SDK, to avoid conflict with apps
9+
610
## [2.3.1] - 2018-04-20
711
### Changed
812
- SDK logging is now using [Timber](https://github.com/JakeWharton/timber).

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Check out the included example app, or follow things here:
88
1. Declare this dependency:
99

1010
```
11-
compile 'com.launchdarkly:launchdarkly-android-client:2.3.1'
11+
compile 'com.launchdarkly:launchdarkly-android-client:2.3.2'
1212
```
1313
1. In your application configure and initialize the client:
1414

launchdarkly-android-client/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ apply plugin: 'io.codearte.nexus-staging'
77

88
allprojects {
99
group = 'com.launchdarkly'
10-
version = '2.3.1'
10+
version = '2.3.2'
1111
sourceCompatibility = 1.7
1212
targetCompatibility = 1.7
1313
}

launchdarkly-android-client/src/main/AndroidManifest.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
<uses-permission android:name="com.android.alarm.permission.SET_ALARM" />
1212

1313
<application
14-
android:name="App"
1514
android:label="@string/app_name">
1615
<receiver android:name=".PollingUpdater" />
1716
<receiver

launchdarkly-android-client/src/main/java/com/launchdarkly/android/App.java

Lines changed: 0 additions & 21 deletions
This file was deleted.

launchdarkly-android-client/src/main/java/com/launchdarkly/android/LDClient.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,9 @@ public static synchronized Future<LDClient> init(@NonNull Application applicatio
9595
settableFuture.set(instance);
9696
return settableFuture;
9797
}
98+
if (BuildConfig.DEBUG) {
99+
Timber.plant(new Timber.DebugTree());
100+
}
98101
instance = new LDClient(application, config);
99102
instance.userManager.setCurrentUser(user);
100103

0 commit comments

Comments
 (0)