Skip to content

Commit

Permalink
Merge pull request #106 from optimizely/devel
Browse files Browse the repository at this point in the history
Release version 1.3.0
  • Loading branch information
elliotykim authored Apr 12, 2017
2 parents 7e595ed + b357e17 commit 1d7f916
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 4 additions & 0 deletions android-sdk/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,10 @@ android {
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
}

dexOptions {
javaMaxHeapSize "4g"
}
}

dependencies {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ public void track(@NonNull String eventName,

/**
* Track an event for a user with attributes and a value
* @see Optimizely#track(String, String, Map, Long)
* @see Optimizely#track(String, String, Map, long)
* @deprecated see {@link Optimizely#track(String, String, Map, Map)} and pass in revenue values as event tags instead.
* @param eventName the String name of the event
* @param userId the String user id
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
import android.content.Context;
import android.content.res.Configuration;
import android.support.annotation.NonNull;
import android.support.annotation.VisibleForTesting;

import com.optimizely.ab.event.internal.payload.Event;

Expand All @@ -35,7 +34,6 @@ public class OptimizelyClientEngine {
* @param context any valid Android {@link Context}
* @return String value of client engine
*/
@VisibleForTesting
public static Event.ClientEngine getClientEngineFromContext(@NonNull Context context) {
UiModeManager uiModeManager = (UiModeManager) context.getSystemService(Context.UI_MODE_SERVICE);

Expand Down

0 comments on commit 1d7f916

Please sign in to comment.