Flip --use_workers_with_dexbuilder default value to true

Removing the TODO on `use_workers_with_dexbuilder` and flipped the flag back to true.

Related issue https://github.com/bazelbuild/bazel/issues/10241

Closes #15320.

PiperOrigin-RevId: 450513994
diff --git a/src/main/java/com/google/devtools/build/lib/rules/android/AndroidConfiguration.java b/src/main/java/com/google/devtools/build/lib/rules/android/AndroidConfiguration.java
index 4e61531..99d1be0 100644
--- a/src/main/java/com/google/devtools/build/lib/rules/android/AndroidConfiguration.java
+++ b/src/main/java/com/google/devtools/build/lib/rules/android/AndroidConfiguration.java
@@ -531,9 +531,7 @@
 
     @Option(
         name = "use_workers_with_dexbuilder",
-        // TODO(b/226226799): Set this back to true once
-        // https://github.com/bazelbuild/bazel/issues/10241 is addressed
-        defaultValue = "false",
+        defaultValue = "true",
         documentationCategory = OptionDocumentationCategory.UNDOCUMENTED,
         effectTags = {OptionEffectTag.EXECUTION},
         help = "Whether dexbuilder supports being run in local worker mode.")