飞书用户7286File/Directory | Can it be deleted | Reasons and Explanations | Processing Method |
AndroidManifest.xml | Absolutely not | The core configuration file of the AAR, used to declare components, permissions, etc. Deleting it will cause the AAR to fail to work properly. | exclude 'AndroidManifest.xml' |
R.txt | Technically possible, but strongly discouraged | Used to resolve resources during compilation of other modules. Deletion may cause compilation failures of downstream dependent libraries. | exclude 'R.txt' |
META-INF/ | cannot | Contains important information such as signatures, licenses, obfuscation rules, etc. Manual deletion may lead to signature invalidation or compliance issues. Conflicts should be resolved using packagingOptions in the main project. | exclude 'META-INF/**' |