summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Fix ScreenManager unit test issuefeature/screen_manager_startBilal Alsharifi2018-12-041-0/+1
|
* Start ScreenManager’s submanagers in start() methodBilal Alsharifi2018-12-041-2/+2
|
* Merge pull request #927 from smartdevicelink/hotfix/4.7.2Joey Grover2018-11-197-115/+113
|\ | | | | Hotfix 4.7.2
| * Merge pull request #914 from smartdevicelink/hotfix/issue_template4.7.2hotfix/4.7.2Joey Grover2018-11-191-1/+1
| |\ | | | | | | add best practice link to issue_template.md
| | * add best practice link to issue_template.mdhotfix/issue_templatetheresalech2018-10-261-1/+1
| |/ |/|
| * Merge pull request #915 from smartdevicelink/hotfix/pull_request_templateJoey Grover2018-11-191-2/+2
| |\ | | | | | | add best practices link and review info to PR template
| | * add best practices link and review info to PR templatehotfix/pull_request_templatetheresalech2018-10-261-2/+2
| |/ |/|
| * Update changelogJoey Grover2018-11-191-80/+7
| |
| * Added comments explaining SdlParcket Parcel bugJoey Grover2018-11-192-11/+39
| | | | | | | | Add comments to explain how 24 extra bytes appear when parsing the SdlPacket. This is going to have ot be an known issue to support legacy router services.
| * Handle extra data from parcelJoey Grover2018-11-161-3/+3
| | | | | | | | *Needs additional verification* The Android binder attatches 24 extra bytes onto the parcel when attempting to read it in.
| * Add a transport record for legacy RSJoey Grover2018-11-161-1/+9
| |
| * Fix #925Joey Grover2018-11-162-18/+53
|/ | | | Also update the gradle file to next hotfix version
* Merge pull request #911 from smartdevicelink/hotfix/remove_sdlexception_throw4.7.1Joey Grover2018-10-243-41/+38
|\ | | | | Remove incorrect SdlException throw in SdlManager
| * Revert behavior for manager disposal if SdlException being thrownhotfix/remove_sdlexception_throwJoey Grover2018-10-231-17/+4
| |
| * Update tests and hello_sdl for no exception throwJoey Grover2018-10-232-32/+11
| |
| * Remove incorrect SdlException throw in SdlManagerJoey Grover2018-10-231-9/+40
| |
* | Merge pull request #909 from smartdevicelink/hotfix/fix_service_nullhotfix/4.7.1Joey Grover2018-10-231-20/+11
|\ \ | | | | | | Fix null issue in getService()
| * | Wrap getService in try catchhotfix/fix_service_nullBilal Alsharifi2018-10-231-23/+11
| | |
| * | Fix null issue in getService()Bilal Alsharifi2018-10-231-0/+3
| |/
* | Update gradle to hotfix versionJoey Grover2018-10-231-2/+2
|/
* Update README with new proguard ruleJoey Grover2018-10-191-0/+2
|
* Merge branch 'release/4.7.0-rc1'4.7.0Joey Grover2018-10-19343-3544/+34677
|\
| * Correctly name versionJoey Grover2018-10-191-1/+1
| |
| * add try/catch to usb fd retrievalJoey Grover2018-10-191-6/+10
| |
| * Update release notesrelease/4.7.0-rc1Joey Grover2018-10-171-24/+82
| |
| * Optimize null check for video stremaing capsJoey Grover2018-10-172-11/+13
| | | | | | | | Also added to video streaming manager
| * Optimize SdlAppInfo null checks and log errorJoey Grover2018-10-171-5/+9
| |
| * Revert changes for NPE in SdlProtocol and fix method insteadJoey Grover2018-10-172-5/+9
| |
| * Merge branch 'bugfix/possible_npe' of https://github.com/XevoInc/sdl_android ↵Joey Grover2018-10-174-8/+18
| |\ | | | | | | | | | into release/4.7.0-rc1
| | * Found a couple of NPEs while doing Video and Audio streaming with USB ↵Shinichi Watanabe2018-10-164-8/+18
| | | | | | | | | | | | | | | | | | connected/disconnected. Also found a NPE while performing AudioPassThough. This commit will address them.
| * | Merge pull request #905 from ↵Brett2018-10-161-6/+0
| |\ \ | | | | | | | | | | | | | | | | smartdevicelink/remove_screenmanager_setdisplaylayout Remove ScreenManager setDisplayLayout
| | * | Remove setDisplayLayout from ScreenManagerBilal Alsharifi2018-10-161-6/+0
| |/ /
| * | Merge pull request #902 from smartdevicelink/update_rpc_specs_fileBrett2018-10-164-590/+1554
| |\ \ | | |/ | |/| Update rpc specs file
| | * Ignore history tags in MOBILE_API.xmlupdate_rpc_specs_fileBilal Alsharifi2018-10-123-3/+4
| | |
| | * Update MOBILE_API file to reflect RPC 5.0Bilal Alsharifi2018-10-122-587/+1550
| |/
| * Merge pull request #900 from XevoInc/fix/tcp_transport_wifi_binding_3Joey Grover2018-10-124-3/+457
| |\ | | | | | | Fix: make sure `MultiplexTcpTransport` creates a TCP socket over Wi-Fi network
| | * Disable one of the unit tests that modifies static final valueSho Amano2018-10-121-0/+2
| | | | | | | | | | | | | | | Since the code doesn't work on Android 5.x and it blocks Travis CI (which uses an AVD 5.1.1 image for testing.)
| | * Add unit tests for WiFiSocketFactorySho Amano2018-10-121-0/+352
| | |
| | * Reflect review commentsSho Amano2018-10-121-15/+49
| | | | | | | | | | | | | | | | | | | | | - Check ACCESS_NETWORK_STATE permission to avoid crash - Create a normal Socket when Wi-Fi network isn't available or the permission isn't available - Add null checkings
| | * fix: support Android system returning more than 1 Wi-Fi NetworksSho Amano2018-10-101-7/+13
| | | | | | | | | | | | | | | | | | | | | | | | I found that Samsung Galaxy S9 (with Android 8) provides two `Network` instances with Wi-Fi capability, and only the second one is good to create a Socket instance. The code is updated to iterate over all `Network` instances until we can build a valid Socket.
| | * fix: MultiplexTcpTransport may open socket via mobile networkSho Amano2018-10-103-3/+63
| |/ | | | | | | | | | | | | | | | | On Android 5+, a Socket will be bound to mobile network if the phone is connected to a Wi-Fi network with no Internet connectivity. This "feature" prevents us from making a local TCP connection between Core. This fix makes sure that the TCP transport works with head units that provide no Internet connectivity over their Wi-Fi.
| * Merge pull request #896 from smartdevicelink/bugfix/multi_tcp_lifecycleJoey Grover2018-10-091-9/+37
| |\ | | | | | | Fix logic for TCP connection requests
| | * Fix logic for TCP connection requestsbugfix/multi_tcp_lifecycleJoey Grover2018-10-081-9/+37
| |/
| * Merge pull request #895 from smartdevicelink/bugfix/fix_javadocs_rpc_versionJoey Grover2018-10-0823-52/+64
| |\ | | | | | | Fix javadocs rpc version
| | * Update videostreamingcap javadoc for maxbitrateJoey Grover2018-10-081-0/+12
| | |
| | * Correct sendExplicitBroadcast javaodcJoey Grover2018-10-081-2/+2
| | |
| | * Update all 4.6 refs to 5.0 for RPC spec versionJoey Grover2018-10-0821-50/+50
| |/
| * Increase RC version4.7.0-rc2Joey Grover2018-10-051-1/+1
| |
| * Merge pull request #891 from smartdevicelink/bugfix/legacy_usbJoey Grover2018-10-059-18/+153
| |\ | | | | | | Fix issue with legacy USB connections
| | * Ensure context is set before using itbugfix/legacy_usbJoey Grover2018-10-051-1/+2
| | |