-
Notifications
You must be signed in to change notification settings - Fork 38
- Updated Java sdk version from 1.8 to 2.0.0-beta2 and removed Live variables #168
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
- Updated Java sdk version from 1.8 to 2.0.0-beta2 and removed Live variables #168
Conversation
* - Updated Java sdk version from 1.8 to 2.0.0-beta2 - Removed getVariableString getVariableBoolean getVariableInteger getVariableDouble -Remove track with revenue as a parameter. Pass the revenue value as an event tag instead track(String, String, long) track(String, String, Map<String, String>, long) * added multidex enabled support * make common Constant of $multidex_ver to use in all gradle
* Excluded group: 'com.google.code.findbugs' from dependency of com.optimizely.ab:core-api removed Multidex enabling from sdk and test app
@thomaszurkan-optimizely we are investigating why test_api_version_25 getting failed. I will let you know once its fixed. It's showing out of memory but need to fix it. |
@@ -62,7 +62,9 @@ dependencies { | |||
compile project(':datafile-handler') | |||
compile project(':event-handler') | |||
compile project(':user-profile') | |||
compile "com.optimizely.ab:core-api:$java_core_ver" | |||
compile ("com.optimizely.ab:core-api:$java_core_ver") { | |||
exclude group: 'com.google.code.findbugs' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why are we excluding the find bugs scan?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thanks. we should move off of findbugs
anyways since they are not currently being supported
@mnoman09 what other static code linters should we use?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
mostly looks good. can you tell me why we are removing findbugs check?
|
||
// This app is built against a real Optimizely project with real experiments set. Automated | ||
// This app is built against a real Optimizely project with real experiments set. Automated |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit
undo this part
getVariableString
getVariableBoolean
getVariableInteger
getVariableDouble
-Remove track with revenue as a parameter. Pass the revenue value as an event tag instead
track(String, String, long)
track(String, String, Map<String, String>, long)
added multidex enabled support
make common Constant of $multidex_ver to use in all gradle