aboutsummaryrefslogtreecommitdiff
path: root/src/main/AndroidManifest.xml
AgeCommit message (Collapse)Author
2020-12-16Revert c5093aad6df3096498cb396da299793d8b13db56 due to import ↵tprotopopov-dev
incompatibility (#136)
2020-11-02Add snippet for UI hierarchy dump. (#132)Syaoran Kuo
2019-08-21Create BluetoothHearingAidSnippet.java (#119)chuanhsiao
2019-06-12Handle Wi-Fi permission requirements in Q. (#112)Ang Li
* Adopt shell permission in Wi-Fi snippet when it's Q. * Fix ClassNotFound error caused by androidx Tested locally and confirmed that the change works.
2019-02-12Add api to remove account. (#108)Ang Li
2019-01-28Remove an unused inner class. (#106)Ang Li
* Remove an unused inner class. * Restore the correct application path.
2019-01-11Migrate to androidx packages (#105)Ang Li
2019-01-08Adding APIs to get the External Storage Directory. (#104)Adam Van Hine
2018-09-06Use multidex (#100)David T.H. Kao
foo
2017-10-05Fix version warnings for gradle builds (#87)Keith Dart
* Add a `presubmit` target to run formatter and lint. * Add dev process to README * Gradle config improvements * Changes made by linter
2017-10-04Revert "Make linter happy. (#81)" (#85)Ang Li
This reverts commit 37402446cd74da1a346469c03e09900d99673b8a.
2017-10-02Make linter happy. (#81)Keith Dart
* Add `presubmit` action to run formatter and lint.
2017-09-28Add Rpcs needed to download files via HTTP. (#80)Keith Dart
* Add an Rpc to perform an HTTP download using DownloadManager. * Add file operation Rpcs.
2017-09-14Add a networking snippet module. (#78)Keith Dart
Has one method for now, Connectable, that implicitly checks TCP connectivity to a host and port.
2017-07-24Add SMS snippet (#69)arammelk
* add sms snippet * Remove unnecessary sleep * Add missing copyright to IncomingSmsBroadcastReceiver * Add sent confirmation for sendSms, this makes it an AsyncRpc. - Added OutboundSmsReceiver to post events when SMS are send action is done. Posts error back if action is not successful. Also wait for all parts of a multipart message to be sent before posting event. Example usage now: event = s.sendSms('+15555678912', 'message message message').waitAndGet('SentSms') - Renamed IncomingSmsBroardcastReceiver to SmsReceiver and make it a private class of SmsSnippet. Converted sendSms to AsyncRpc so it will post event back when message is sent * Add sent confirmation for sendSms, this makes it an AsyncRpc. - Added OutboundSmsReceiver to post events when SMS are send action is done. Posts error back if action is not successful. Also wait for all parts of a multipart message to be sent before posting event. Example usage now: event = s.sendSms('+15555678912', 'message message message').waitAndGet('SentSms') - Renamed IncomingSmsBroardcastReceiver to SmsReceiver and make it a private class of SmsSnippet. Converted sendSms to AsyncRpc so it will post event back when message is sent * Cleanup naming * Align event key names with Java object property names. * Use EventCache + built in mobly SnippetEvents to wait for SMS sent confirmation. This shares code with EventSnippet in Mobly Snippet Lib. I'm not sure what the accepted practice is for sharing code across github projects? Should I refactor some of the event code in Mobly Bundle Lib into EventUtils, then use that in Mobly Bundled Snippets to avoid duplicating this? I still want to check this is in as is, to have a working version earlier. * Return data from event instead of fulll SnippetEvent. This way it works like so: >>> result = s.sendSms("15551234567", "Hello world") >>> pprint.pprint(result) {u'sent': True} >>> * throw exception on error instead and some javadocs. * cleanup
2017-06-20Initial audio playback functionality (#62)David T.H. Kao
* Initial audio playback functionality * cleanup descriptions * whitespace cleanup
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-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-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-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-03-05Adding content sync controls to AccountSnippet. (#25)David T.H. Kao
* Adding content sync controls to AccountSnippet.
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