Skip to content

Latest commit

 

History

History
47 lines (32 loc) · 2.12 KB

README.md

File metadata and controls

47 lines (32 loc) · 2.12 KB

Email - Kill attachment limits

This Xposed module removes the default 5MB attachment limit ("Can't attach file over 5MB.") of the AOSP/Play Store email application. It will not override attachment limits set by email server administrator, only the default artificial limits set by the email application are changed.

Compatibility

  • Xposed v54 or later
  • Currently only a recent version of the email application is supported
    • The version must be based on the UnifiedEmail package and contain this commit. Thus the minSdkVersion is set to 19.
    • Contributions for other versions are welcome
    • To see if your version is supported, just install the module and see the log of Xposed Installer for any errors

Install

  • Install Xposed
  • Install this module
  • Activate the module in Xposed
  • Reboot

Binaries

Links

Compiling

Debug version

  • Run the assembleDebug task using gradle assembleDebug

Release version

  • Create file gradle/signing-release.gradle with following contents:
storeFile file('android.keystore')
storePassword 'password'
keyAlias 'xposed-email'
keyPassword 'password'
  • Run the assembleRelease task using gradle assembleRelease