summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* add in non-null to settersfeature/mandatory_paramsBrettyWhite2019-09-165-7/+7
|
* tests and docsBrettyWhite2019-09-169-0/+44
|
* add in missing helper constructorsBrettyWhite2019-09-165-1/+32
|
* Merge pull request #1161 from smartdevicelink/bugfix/resume_secondary_transportBilal Alsharifi2019-09-133-10/+57
|\ | | | | Allow Video Service to restart after secondary transport disconnection
| * Merge branch 'develop' into bugfix/resume_secondary_transportbugfix/resume_secondary_transportBilal Alsharifi2019-09-121-6/+5
| |\ | |/ |/|
* | Merge pull request #1165 from ↵Bilal Alsharifi2019-09-121-6/+5
|\ \ | | | | | | | | | | | | smartdevicelink/bugfix/video_stream_isStreaming_fix VSM isStreaming logic fix
| * | fix is paused logicBrettyWhite2019-09-121-6/+5
| | |
| * | fix incorrect method logicbugfix/video_stream_isStreaming_fixBrettyWhite2019-09-051-1/+1
| | |
| | * Merge branch 'develop' into bugfix/resume_secondary_transportBilal Alsharifi2019-09-1287-377/+3583
| | |\ | |_|/ |/| |
* | | Merge pull request #1169 from smartdevicelink/display_layout_fixBilal Alsharifi2019-09-124-68/+66
|\ \ \ | | | | | | | | Remove Deprecation from SetDisplayLayout
| * | | remove deprecation and add javadocdisplay_layout_fixBrettyWhite2019-09-104-68/+66
| | | |
* | | | Merge pull request #1156 from smartdevicelink/feature/cancel_interaction_RPCBilal Alsharifi2019-09-1235-224/+1781
|\ \ \ \ | |/ / / |/| | | Implement SDL-0184 CancelInteraction RPC
| * | | Make ChoiceSetManager operations blocking (#1155)feature/cancel_interaction_RPCBilal Alsharifi2019-09-1210-140/+348
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add blocking operations support * Update AsynchronousOperation.ToString() * Handle some missing onError logic in operations * Update cancel() and isCancelled() to use the current thread * Avoid interrupting thread when canceling operations * Clean up BaseChoiceSetManager * fix NPE from pendingSet * fix failing tests in ChoiceSetManagerTests * Comment out cancel interaction tests temporarily * Avoid using thread interruptions in AsynchronousOperation * Update AsynchronousOperation.toString() * Fixed print statement crashing if no operating thread * Fixed present choice set cancel operation tests * Fixed spacing issues * Added additional assert + fixed doc grammar * Fixed cancel keyboard operation tests * Modified termination duration in test cases
| * | | Removed unused codeNicoleYarroch2019-08-211-5/+0
| | | |
| * | | Refactored Thread.currentThread().isInterrupted()NicoleYarroch2019-08-213-9/+19
| | | |
| * | | Removed uneeded deprecated presentKeyboard()NicoleYarroch2019-08-213-15/+4
| | | |
| * | | dismissKeyboard() now takes a nonnull IntegerNicoleYarroch2019-08-212-2/+2
| | | |
| * | | Merge branch 'feature/issue_840_cancel_interaction_RPC' of ↵NicoleYarroch2019-08-212-4/+4
| |\ \ \ | | | | | | | | | | | | | | | https://github.com/NicoleYarroch/sdl_android into feature/issue_840_cancel_interaction_RPC
| | * | | Update ↵NicoleYarroch2019-08-211-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | base/src/main/java/com/smartdevicelink/managers/screen/choiceset/BaseChoiceSetManager.java Co-Authored-By: Bilal Alsharifi <599206+bilal-alsharifi@users.noreply.github.com>
| | * | | Update ↵NicoleYarroch2019-08-211-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | base/src/main/java/com/smartdevicelink/managers/screen/choiceset/BaseChoiceSetManager.java Co-Authored-By: Bilal Alsharifi <599206+bilal-alsharifi@users.noreply.github.com>
| | * | | Update ↵NicoleYarroch2019-08-211-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | base/src/main/java/com/smartdevicelink/managers/screen/choiceset/BaseChoiceSetManager.java Co-Authored-By: Bilal Alsharifi <599206+bilal-alsharifi@users.noreply.github.com>
| | * | | Update base/src/main/java/com/smartdevicelink/proxy/rpc/ScrollableMessage.javaNicoleYarroch2019-08-211-1/+1
| | | | | | | | | | | | | | | Co-Authored-By: Bilal Alsharifi <599206+bilal-alsharifi@users.noreply.github.com>
| * | | | Attempting to fix spacing issue in testsNicoleYarroch2019-08-212-2/+2
| | | | |
| * | | | Fixed documentationNicoleYarroch2019-08-211-1/+1
| |/ / /
| * | | Added constructor to Cancel Interaction ResponseNicoleYarroch2019-08-211-0/+14
| | | |
| * | | Refactored true/false checks in test casesNicoleYarroch2019-08-143-52/+23
| | | |
| * | | `presentKeyboard` no longer deprecatedNicoleYarroch2019-08-141-12/+1
| | | |
| * | | Added nullable to `presentKeyboard()` return valueNicoleYarroch2019-08-143-3/+3
| | | |
| * | | Fixed spacingNicoleYarroch2019-08-141-0/+1
| | | |
| * | | Removed unused importsNicoleYarroch2019-08-141-4/+0
| | | |
| * | | Added check for canceled threads.NicoleYarroch2019-08-146-34/+109
| | | |
| * | | Keyboard now cancels with `cancelID`NicoleYarroch2019-08-136-69/+160
| | | | | | | | | | | | | | | | Test cases fixed
| * | | Refactored cancelID, added spec version checkNicoleYarroch2019-08-126-17/+60
| | | |
| * | | Refactored the dismiss keyboard methodsNicoleYarroch2019-08-122-17/+28
| | | |
| * | | Test cases added for dismissing keyboard w managerNicoleYarroch2019-08-122-3/+21
| | | |
| * | | Added cancel id documentation to modal viewsNicoleYarroch2019-08-084-4/+11
| | | |
| * | | Added cancel interaction to SdlProxyBaseNicoleYarroch2019-08-081-0/+16
| | | |
| * | | Fix for SdlProxyBaseNicoleYarroch2019-08-081-8354/+8354
| | | |
| * | | Fixing SdlProxyBase merge conflictNicoleYarroch2019-08-081-1553/+1537
| | | |
| * | | Renamed cancel keyboard methodNicoleYarroch2019-08-074-9/+7
| | | |
| * | | Removed unused imports from testNicoleYarroch2019-08-073-3/+1
| | | |
| * | | Merge branch 'develop' into feature/issue_840_cancel_interaction_RPCNicoleYarroch2019-08-0729-8550/+9308
| |\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | # Conflicts: # android/sdl_android/src/main/java/com/smartdevicelink/managers/ProxyBridge.java # android/sdl_android/src/main/java/com/smartdevicelink/proxy/SdlProxyBase.java # base/src/main/java/com/smartdevicelink/proxy/interfaces/IProxyListenerBase.java
| * | | | Added logic to dismiss keyboardNicoleYarroch2019-08-021-16/+8
| | | | |
| * | | | Fixed order of finishing for operationsNicoleYarroch2019-08-025-49/+28
| | | | |
| * | | | Fixed functionID for cancel interaction RPCNicoleYarroch2019-08-011-1/+1
| | | | |
| * | | | Added logic and test cases for dismissing keyboardNicoleYarroch2019-07-314-10/+175
| | | | |
| * | | | Removed “stop” thread commandNicoleYarroch2019-07-301-1/+0
| | | | |
| * | | | Fixed logging orderNicoleYarroch2019-07-301-1/+1
| | | | |
| * | | | Added test cases for canceling a choice setNicoleYarroch2019-07-301-3/+128
| | | | |
| * | | | Added NPE checks for listenerNicoleYarroch2019-07-301-12/+19
| | | | |