Merge "[AWARE] Integrate into test tracking" into pi-dev
diff --git a/acts/framework/acts/test_utils/bt/bt_coc_test_utils.py b/acts/framework/acts/test_utils/bt/bt_coc_test_utils.py
index db2aed6..3dbf60c 100644
--- a/acts/framework/acts/test_utils/bt/bt_coc_test_utils.py
+++ b/acts/framework/acts/test_utils/bt/bt_coc_test_utils.py
@@ -189,7 +189,7 @@
         maxInterval = le_connection_interval / le_connection_interval_time_step
         return_status = client_ad.droid.gattClientRequestLeConnectionParameters(
             bluetooth_gatt_1, minInterval, maxInterval, 0,
-            le_default_supervision_timeout)
+            le_default_supervision_timeout, 0, 0)
         if not return_status:
             client_ad.log.error(
                 "gattClientRequestLeConnectionParameters returns failure")
diff --git a/acts/framework/setup.py b/acts/framework/setup.py
index 37fdcb8..66e7052 100755
--- a/acts/framework/setup.py
+++ b/acts/framework/setup.py
@@ -87,7 +87,7 @@
 
         for package in required_packages:
             self.announce('Installing %s...' % package, log.INFO)
-            pip.main(['install', package])
+            pip.main(['install', '-v', '--no-cache-dir', package])
 
         self.announce('Dependencies installed.')