aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2017-07-11Remove bt snoop log APIs. (#66)Ang Li
The official story is that only Settings running as system UID can call them.
2017-07-07Add an rpc to check if wifi is enabled. (#65)Ang Li
2017-06-20Initial audio playback functionality (#62)David T.H. Kao
* Initial audio playback functionality * cleanup descriptions * whitespace cleanup
2017-06-16Added support for Unknown BT device type (#63)chok
2017-06-13Minor bug fix to btUnpairedDevice() (#61)chok
* Fixed btUnpairDevice() bug where an exception is thrown even in the success case
2017-06-13Add method to clear configured networks (#55)David T.H. Kao
* Add method to clear configured networks * throw after trying to clear all with list of failed ssids * weird spacing * config not ssid * remove a log * missing diamond * address the NPE that can happen when wifi is disabled and document issues with permissions * fix log
2017-06-12Add MODIFY_AUDIO_SETTINGS for setMicrophoneMute (#57)David T.H. Kao
2017-06-12Add basic Bluetooth pairing and A2DP connection features. (#54)Ang Li
* Add support for pairing/unpairing a device. * Add support for connecting with A2DP profile. * Reorganize Bluetooth related snippets for future expansion of profile support. * Use Bundle instead of JSONObject for BluetoothDevice serialization.
2017-06-05Add Rpcs for basic Android logging. (#52)Ang Li
2017-06-02Microphone mute RPCs (#53)David T.H. Kao
* Add microphone muting to AudioManager controls * Fix return types
2017-05-23Add basic Bluetooth LE advertising and scan support. (#47)Ang Li
* Add basic Bluetooth LE advertising and scan support. * Introduce `RpcEnum`, a standard way to handle String-int enum conversion.
2017-05-16Adding BT RPC getAddress (#50)chok
2017-05-15Increasing bt discovery timeout from 1 to 2 minutes for ↵chok
btDiscoverAndGetResults() (#49)
2017-05-03Added Rpc to enable/disable wifi-verbose logging on API 21+ (#46)whutchin5
2017-05-02Simplify API required to call methods by reflection. (#45)Alexander Dorokhine
* Implement a cleaner way to call methods by reflection. * Port all callers to the new reflection API.
2017-05-02Fix issues related to WifiManagerSnippet. (#44)Alexander Dorokhine
* Removed version code check; it was incorrect and doesn't seem to be necessary. * Missing permission needed to be able to call setWifiApEnabled.
2017-05-01Add Bluetooth Rpcs needed to support making the device discoverable. (#41)Ang Li
* Add Bluetooth Rpcs needed to support making the device discoverable. * Fix a bug in serializer; fix a typo in an Rpc name. Related to #8
2017-05-01Throw exceptions in case of failure to enable or disable HCI snoop log. (#42)Alexander Dorokhine
Returning boolean is not consistent with our style and is not done for any other method in MBS.
2017-04-27Fixes in `serializeBluetoothDevice`. (#34)Ang Li
2017-04-26Add Wi-Fi soft ap related Rpc methods. (#35)Ang Li
* Add Wi-Fi soft ap related Rpc methods. * Change wait util to accomodate lambda functions that throw exceptions, which interrupt the wait.
2017-04-25Add Rpcs for enabling/disabling bt snoop log. (#39)Ang Li
* Add Rpcs for enabling/disabling bt snoop log.
2017-04-19Squash "serializable class has no definition of serialVersionUID" warnings. ↵Alexander Dorokhine
(#37) Fixes #36.
2017-04-07adding methords for BluetoothAdapterSnippet with serializer (#26)ygw11223
* Add methods for bt discovery and listing bt devices * Update JsonSerializer.java
2017-03-14Remove unused var mIsScanning from WifiManagerSnippet (#32)David T.H. Kao
2017-03-14Allow calling wifiConnect with the connected network. (#28)Ang Li
2017-03-14Run googleJavaFormat. (#30)Alexander Dorokhine
Fixes invalid formatting in AccountSnippet.
2017-03-05Adding content sync controls to AccountSnippet. (#25)David T.H. Kao
* Adding content sync controls to AccountSnippet.
2017-02-23remove unused imports in AudioSnippet (#23)David T.H. Kao
2017-02-22Get the number of streams for muting through reflection. (#22)David T.H. Kao
* Get the number of streams for muting through reflection.
2017-02-15Add some simple telephony and audio controls to MBS. (#14)David T.H. Kao
* Add some simple telephony and audio controls to MBS.
2017-02-14Minor fixes to Mobly Bundled Snippets. (#19)Alexander Dorokhine
* Remove unused imports * Explicitly add the INTERNET permission, which is required for snippet to run (it came in implicitly through manfiest merge with mobly-snippet-lib but it's goot to be explicit).
2017-02-13Support adding and listing Google accounts. (#16)Alexander Dorokhine
2017-02-09Add makeToast.Ang Li
2017-01-30Utilities, conventions, serialize/deserialize mechanism, and basic Wi-Fi APIsAng Li
* Add basic Wi-Fi API support. * Make bluetooth snippet style consistent with Wi-Fi. * Add the mechanism to serialize and deserialize data types. * Create a util for waiting on asynch operations. * Enable Java8 for the project. * Add formatter for the project. Fixes #1.
2017-01-12Basic bundled snippet to control bluetooth.Alexander Dorokhine