From 7f5d73538c6978860014ef496fd55267dda5501d Mon Sep 17 00:00:00 2001 From: Ashita Prasad Date: Tue, 14 Jan 2025 09:44:23 +0530 Subject: [PATCH] Update platform_specific_instructions.md --- doc/dev_guide/platform_specific_instructions.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/doc/dev_guide/platform_specific_instructions.md b/doc/dev_guide/platform_specific_instructions.md index 4616b7cc..7752933c 100644 --- a/doc/dev_guide/platform_specific_instructions.md +++ b/doc/dev_guide/platform_specific_instructions.md @@ -38,8 +38,6 @@ android { } } ``` -### Why is this necessary? -Android apps can encounter a **65k method limit** if you have many dependencies or a large app. Enabling `multiDex` allows your app to split into multiple DEX files, ensuring it can load and execute all required methods without any runtime errors. For more information on multidex support, you can refer to the Android developer guide on [Configuring Multidex](https://developer.android.com/studio/build/multidex).