Add strict_mode: false

As strict mode is in place, the default strict_mode is now set to true. We are encourage teams to write tests in strict_mode to make tests Bivalent (able to run on device and devicelessly)
For more info on strict mode: go/roboStrictMode

Test: atest MyRoboTests && atest MyRoboStrictTests
Bug: 334089788
Change-Id: Ic901ff23043c7f74b80fc8669fb5a2a3cd3cbd3d
Merged-In: I843d9cdd982732dda51f8c3f33d80e5c1231163a
diff --git a/robolab/roboStandaloneProj/tests/Android.bp b/robolab/roboStandaloneProj/tests/Android.bp
index ac7f481..c782722 100644
--- a/robolab/roboStandaloneProj/tests/Android.bp
+++ b/robolab/roboStandaloneProj/tests/Android.bp
@@ -41,6 +41,8 @@
     instrumentation_for: "MyRoboApplication",
 
     upstream: true,
+
+    strict_mode: false,
 }
 
 android_robolectric_test {
@@ -63,6 +65,4 @@
     instrumentation_for: "MyRoboApplication",
 
     upstream: true,
-
-    strict_mode: true,
 }