-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Built target for Android 14.0 (UpsideDownCake) or API-34 - Set app minSdk to API-24; diminish support in android libraries for < API-24 - Add new permissions required for API-34 and change UI to support. - Drop com.jakewharton:butterknife-compiler:10.2.3 dependency (jdk-15 max restriction); use android View binding class instead. - Upgrade to OpenPGP-API version 12 - Fix OpenPGP Application Provider availability check in Global Settings | Cryptography (queries settings) - Implement support of cleartextTraffic content loading in XMWebViewClient#shouldInterceptRequest() - Make UpdateServiceImpl() shows both version/code for installed and latest available debug apk. - Fix ContextCompat.registerReceiver flag setting: If this receiver is listening for broadcasts sent from the system or from other apps—even other apps that you own: then use RECEIVER_EXPORTED flag. If instead this receiver is listening only for broadcasts sent by your app, use the RECEIVER_NOT_EXPORTED flag; and broadcaster must setPackage(getPackageName()). * Use RECEIVER_EXPORTED for ActivityListener, UpdateServiceImpl, AttachmentTempFileProvider, and DecryptedFileProvider * Use RECEIVER_NOT_EXPORTED and required to setPackage(getPackageName()) in sendBroadcast for: DeviceIdleManager, UnreadWidgetProvider, XryptoMail, XryptoMailRemoteControl, BootReceiver, CoreReceiver, and MessageListWidgetProvider - Update gradle build environment to with gradle 8.0.0 and above: a. Use Android Studio Koala | 2024.1.1 b. distributionUrl=https://services.gradle.org/distributions/gradle-8.2-bin.zip; not compatible with 8.5. c. classpath 'com.android.tools.build:gradle:8.2.2' d. Add to buildFeatures: dataBinding, viewBinding, and buildConfig to true; aidl true for oepnpgp e. Add namespace to xryptomail and openpgp modules f. Must add: tasks.withType(KotlinCompile.class){ kotlinOptions { jvmTarget = "1.8" } } to resolve compileDebugJavaWithJavac and kaptGenerateStubsDebugKotlin with incompatible Java version. g. Update gradle.properties to include: # Gradle >=8.0.0: Library project resource identifiers are not constant static final ints, just static ints. android.nonFinalResIds=false # Gradle >=8.0.0: Allow transitive resource identifiers use in aTalk. android.nonTransitiveRClass=false
- Loading branch information
Showing
120 changed files
with
1,883 additions
and
1,973 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
Date: ${DATE} | ||
|
||
last_version=${BUILD_VERSION} | ||
last_version_code=${BUILD_VERSION_CODE} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
Date: Wed Jul 17 10:53:07 SGT 2024 | ||
Date: Sat Jul 20 08:47:24 SGT 2024 | ||
|
||
last_version=5.0.5 | ||
last_version_code=19050 | ||
last_version=5.1.0 | ||
last_version_code=19101 |
Oops, something went wrong.