Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Apollo: Release source code for 52.6 #161

Merged
merged 1 commit into from
Jan 20, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions android/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,29 @@ follow [https://changelog.md/](https://changelog.md/) guidelines.

## [Unreleased]

## [52.6] - 2025-01-14

### ADDED

- Background notification processing reliability improvements
- Support h for hardened children in BIP32 derivation paths

### FIXED

- Visual bug regarding welcomeToMuun dialog width in foldables and tablets.

### CHANGED

- Upgraded Gradle to 8.10
- Upgraded Android Gradle Plugin (AGP) to 8.5.2
- Upgraded Timber to 5.0.1 with related api changes
- Upgraded google-api-client-android:2.7.0 with related api changes
- Upgraded google-http-client-gson:1.45.0
- Updated linter baseline.xml
- Enhanced errors and email error reports with app exit reasons and lowRam and background restricted
metadata.


## [52.5] - 2024-12-02

### ADDED
Expand Down Expand Up @@ -97,6 +120,8 @@ errors and crashes
### CHANGED

- Upgraded compiledSdkVersion and targetSdkVersion to 34
- Upgraded Gradle to 7.5.1
- Upgraded Android Gradle Plugin (AGP) to 7.4.2
- Upgraded go version to 1.21.11
- Enhanced password input for change password flow (consistency with rest of the app)
- Enhanced error metadata for strange secure storage errors
Expand Down
23 changes: 16 additions & 7 deletions android/apollo/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ android {

compileSdk 34

buildFeatures {
buildConfig true
}

defaultConfig {
minSdk 19
targetSdk 34
Expand All @@ -34,17 +38,17 @@ android {

buildTypes {
minified {
minifyEnabled true
minifyEnabled false
}
}

compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}

kotlinOptions {
jvmTarget = JavaVersion.VERSION_1_8.toString()
jvmTarget = JavaVersion.VERSION_17.toString()
}

lint {
Expand Down Expand Up @@ -76,6 +80,11 @@ ext {
version_mockk = '1.13.7' // Latest version targeting kotlin 1.8.20
}

configurations {
all {
exclude group: 'org.apache.httpcomponents', module: 'httpclient'
}
}

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

// Logging:
api 'com.jakewharton.timber:timber:4.5.1'
api 'com.jakewharton.timber:timber:5.0.1'

// Money:
api 'org.javamoney:moneta-bp:1.0'
Expand Down Expand Up @@ -137,9 +146,9 @@ dependencies {

// Google APIs
implementation 'com.google.android.gms:play-services-auth:20.6.0'
implementation 'com.google.api-client:google-api-client-android:1.26.0'
implementation('com.google.api-client:google-api-client-android:2.7.0')
implementation 'com.google.apis:google-api-services-drive:v3-rev136-1.25.0'
implementation 'com.google.http-client:google-http-client-gson:1.26.0'
implementation 'com.google.http-client:google-http-client-gson:1.45.0'

// Kotlin:
// Kotlin serialization runtime library. Note that while the plugin has version the same as
Expand Down
Loading