Skip to content

Commit

Permalink
Remove support of Android 5 (#463)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jean-BaptisteC committed May 19, 2024
1 parent 3b9486d commit de1348b
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ https://crowdin.com/project/exodus-android-app
**If you would like to improve app code and have development skills, you are most welcome.**
- You can find work in [issues](https://github.com/Exodus-Privacy/exodus-android-app/issues).
- Before submitting pull requests please, execute Kotlin Liner and instrumented tests.
- Change needs to work on all devices between Android 5 and Android 14.
- Change needs to work on all devices between Android 6 and Android 14.
- UI changes need to work in light mode, dark mode, and RTL.
- Do not create pull requests to update dependencies, we have [dependabot](https://github.com/Exodus-Privacy/exodus-android-app/blob/master/.github/dependabot.yml).

Expand All @@ -89,6 +89,10 @@ https://crowdin.com/project/exodus-android-app
- To execute tests move [network_security_config.xml](/doc/network_security_config.xml) to [/app/src/main/res/xml](/app/src/main/res/xml)
- Add ```android:networkSecurityConfig="@xml/network_security_config"``` in [AndroidManifest.xml](/app/src/main/AndroidManifest.xml)

### How to use app on Android 5

- We have recently drop the support of Android 5, but 3.3.0 version continue to be available [here](https://github.com/Exodus-Privacy/exodus-android-app/releases/tag/release-v3.3.0)

### Links

- [Exodus app reports](https://reports.exodus-privacy.eu.org/fr/reports/org.eu.exodus_privacy.exodusprivacy/latest/)
Expand Down
6 changes: 3 additions & 3 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ android {

defaultConfig {
applicationId = "org.eu.exodus_privacy.exodusprivacy"
minSdk = 21
minSdk = 23
targetSdk = 34
versionCode = 21
versionName = "3.3.0"
versionCode = 22
versionName = "3.3.1"
testInstrumentationRunner = "org.eu.exodus_privacy.exodusprivacy.ExodusTestRunner"
val API_KEY = System.getenv("EXODUS_API_KEY")
buildConfigField("String", "EXODUS_API_KEY", "\"$API_KEY\"")
Expand Down
1 change: 1 addition & 0 deletions fastlane/metadata/android/en-US/changelogs/22.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- Drop support of Android 5
1 change: 1 addition & 0 deletions fastlane/metadata/android/fr-FR/changelogs/22.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- Suppression du support d'Android 5

0 comments on commit de1348b

Please sign in to comment.