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.
- 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 to19
. - 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
- The version must be based on the UnifiedEmail package and contain this commit. Thus the
- Install Xposed
- Install this module
- Activate the module in Xposed
- Reboot
- Download binaries from the Xposed Module Repository
- Install the Android SDK and version
20.0.0
of the build tools - Install Xposed as an addon to the Android SDK
- Install Gradle
- Run the
assembleDebug
task usinggradle assembleDebug
- Create file
gradle/signing-release.gradle
with following contents:
storeFile file('android.keystore')
storePassword 'password'
keyAlias 'xposed-email'
keyPassword 'password'
- Run the
assembleRelease
task usinggradle assembleRelease