From 7fa7c2752100a64f2646516c18936d94372c58a2 Mon Sep 17 00:00:00 2001 From: Marco Date: Fri, 10 Apr 2026 11:09:43 -0700 Subject: [PATCH] Fix spelling errors for 'shrink' in troubleshooting documentation Corrected spelling errors in ProGuard section. 'shink' => 'shrink' --- docs/main/android/troubleshooting.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/main/android/troubleshooting.md b/docs/main/android/troubleshooting.md index d67f2d124..eceb0374d 100644 --- a/docs/main/android/troubleshooting.md +++ b/docs/main/android/troubleshooting.md @@ -122,7 +122,7 @@ If still getting the "Plugin not implemented" error, make sure you are not using ## Using Proguard -ProGuard is a tool used to shrink, obfuscate, and reduce the size of your app. It is enabled by setting the `minifyEnabled` option in `build.gradle` to `true`. This process can sometimes lead to issues in Capacitor when using a plugin or some custom native code that relies on its code being being readable at run time, such as code reflection. ProGuard scans code to try and optimize and shink the size of an app and sometimes this process can remove classes or methods that are important for the functionality of a plugin. +ProGuard is a tool used to shrink, obfuscate, and reduce the size of your app. It is enabled by setting the `minifyEnabled` option in `build.gradle` to `true`. This process can sometimes lead to issues in Capacitor when using a plugin or some custom native code that relies on its code being being readable at run time, such as code reflection. ProGuard scans code to try and optimize and shrink the size of an app and sometimes this process can remove classes or methods that are important for the functionality of a plugin. As of Capacitor v3.2.3 there are ProGuard rules included in Capacitor that cover the core functionality of Capacitor plugins, permissions, and activity results. If you are using an earlier version of Capacitor than v3.2.3, add [the following rules](https://github.com/ionic-team/capacitor/blob/main/android/capacitor/proguard-rules.pro) to your Android project's `proguard-rules.pro` file. Those rules should resolve problems with any of the core Capacitor features and core plugins.