File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
sdk-java/src/main/java/ly/count/sdk/java/internal Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 66 - "isTestModeEnabled".
77 - "setLoggingTag"
88* ! Minor breaking change ! The "TestMode" functionality is being removed from the SDK.
9- * ! Minor breaking change ! It is not possible to set the logging tag anymore
9+ * ! Minor breaking change ! It is not possible to set the logging tag anymore.
10+ * Fixed a bug where the wrong platform field value was being sent in the view request.
1011
111220.11.5
1213* Fixed a bug where the backend mode module produces "null pointer exceptions" in case not initialized.
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ class ViewImpl implements View {
1515 static final String VISIT = "visit" ;
1616 static final String VISIT_VALUE = "1" ;
1717 static final String SEGMENT = "segment" ;
18- static final String SEGMENT_VALUE = "Android" ;
18+ static final String SEGMENT_VALUE = System . getProperty ( "os.name" ) ;
1919 static final String START = "start" ;
2020 static final String START_VALUE = "1" ;
2121 static final String EXIT = "exit" ;
You can’t perform that action at this time.
0 commit comments