Make a note that multidex is now automatically enabled
PiperOrigin-RevId: 646177571
Change-Id: Iaed823a6813997f38cb46801cc492ba52a06506a
diff --git a/docs/onboarding.md b/docs/onboarding.md
index 4ce677b..6355b24 100644
--- a/docs/onboarding.md
+++ b/docs/onboarding.md
@@ -1054,18 +1054,4 @@
### How do I enable MultiDex for my library?
-Go to your project/app level build.gradle file, and add
-
-```
-android {
- defaultConfig {
- multiDexEnabled = true
- }
-}
-```
-
-as well as `androidTestImplementation(libs.multidex)` to the dependenices block.
-
-If you want it enabled for the application and not test APK, add
-`implementation(libs.multidex)` to the dependencies block instead. Any prior
-failures may not re-occur now that the software is multi-dexed. Rerun the build.
+It is enabled automatically as androidx minSdkVersion is API >=21.