Skip to content

Commit f79f920

Browse files
committed
Apollo: Release source code for 52.6
1 parent 296fd96 commit f79f920

File tree

72 files changed

+3974
-2827
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

72 files changed

+3974
-2827
lines changed

android/CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,29 @@ follow [https://changelog.md/](https://changelog.md/) guidelines.
66

77
## [Unreleased]
88

9+
## [52.6] - 2025-01-14
10+
11+
### ADDED
12+
13+
- Background notification processing reliability improvements
14+
- Support h for hardened children in BIP32 derivation paths
15+
16+
### FIXED
17+
18+
- Visual bug regarding welcomeToMuun dialog width in foldables and tablets.
19+
20+
### CHANGED
21+
22+
- Upgraded Gradle to 8.10
23+
- Upgraded Android Gradle Plugin (AGP) to 8.5.2
24+
- Upgraded Timber to 5.0.1 with related api changes
25+
- Upgraded google-api-client-android:2.7.0 with related api changes
26+
- Upgraded google-http-client-gson:1.45.0
27+
- Updated linter baseline.xml
28+
- Enhanced errors and email error reports with app exit reasons and lowRam and background restricted
29+
metadata.
30+
31+
932
## [52.5] - 2024-12-02
1033

1134
### ADDED
@@ -97,6 +120,8 @@ errors and crashes
97120
### CHANGED
98121

99122
- Upgraded compiledSdkVersion and targetSdkVersion to 34
123+
- Upgraded Gradle to 7.5.1
124+
- Upgraded Android Gradle Plugin (AGP) to 7.4.2
100125
- Upgraded go version to 1.21.11
101126
- Enhanced password input for change password flow (consistency with rest of the app)
102127
- Enhanced error metadata for strange secure storage errors

android/apollo/build.gradle

Lines changed: 16 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,10 @@ android {
2525

2626
compileSdk 34
2727

28+
buildFeatures {
29+
buildConfig true
30+
}
31+
2832
defaultConfig {
2933
minSdk 19
3034
targetSdk 34
@@ -34,17 +38,17 @@ android {
3438

3539
buildTypes {
3640
minified {
37-
minifyEnabled true
41+
minifyEnabled false
3842
}
3943
}
4044

4145
compileOptions {
42-
sourceCompatibility JavaVersion.VERSION_1_8
43-
targetCompatibility JavaVersion.VERSION_1_8
46+
sourceCompatibility JavaVersion.VERSION_17
47+
targetCompatibility JavaVersion.VERSION_17
4448
}
4549

4650
kotlinOptions {
47-
jvmTarget = JavaVersion.VERSION_1_8.toString()
51+
jvmTarget = JavaVersion.VERSION_17.toString()
4852
}
4953

5054
lint {
@@ -76,6 +80,11 @@ ext {
7680
version_mockk = '1.13.7' // Latest version targeting kotlin 1.8.20
7781
}
7882

83+
configurations {
84+
all {
85+
exclude group: 'org.apache.httpcomponents', module: 'httpclient'
86+
}
87+
}
7988

8089
dependencies {
8190
api project(':common')
@@ -100,7 +109,7 @@ dependencies {
100109
compileOnly 'org.glassfish:javax.annotation:10.0-b28'
101110

102111
// Logging:
103-
api 'com.jakewharton.timber:timber:4.5.1'
112+
api 'com.jakewharton.timber:timber:5.0.1'
104113

105114
// Money:
106115
api 'org.javamoney:moneta-bp:1.0'
@@ -137,9 +146,9 @@ dependencies {
137146

138147
// Google APIs
139148
implementation 'com.google.android.gms:play-services-auth:20.6.0'
140-
implementation 'com.google.api-client:google-api-client-android:1.26.0'
149+
implementation('com.google.api-client:google-api-client-android:2.7.0')
141150
implementation 'com.google.apis:google-api-services-drive:v3-rev136-1.25.0'
142-
implementation 'com.google.http-client:google-http-client-gson:1.26.0'
151+
implementation 'com.google.http-client:google-http-client-gson:1.45.0'
143152

144153
// Kotlin:
145154
// Kotlin serialization runtime library. Note that while the plugin has version the same as

0 commit comments

Comments
 (0)