Skip to content

Commit de1348b

Browse files
Remove support of Android 5 (#463)
1 parent 3b9486d commit de1348b

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ https://crowdin.com/project/exodus-android-app
6464
**If you would like to improve app code and have development skills, you are most welcome.**
6565
- You can find work in [issues](https://github.com/Exodus-Privacy/exodus-android-app/issues).
6666
- Before submitting pull requests please, execute Kotlin Liner and instrumented tests.
67-
- Change needs to work on all devices between Android 5 and Android 14.
67+
- Change needs to work on all devices between Android 6 and Android 14.
6868
- UI changes need to work in light mode, dark mode, and RTL.
6969
- Do not create pull requests to update dependencies, we have [dependabot](https://github.com/Exodus-Privacy/exodus-android-app/blob/master/.github/dependabot.yml).
7070

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

92+
### How to use app on Android 5
93+
94+
- 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)
95+
9296
### Links
9397

9498
- [Exodus app reports](https://reports.exodus-privacy.eu.org/fr/reports/org.eu.exodus_privacy.exodusprivacy/latest/)

app/build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ android {
1919

2020
defaultConfig {
2121
applicationId = "org.eu.exodus_privacy.exodusprivacy"
22-
minSdk = 21
22+
minSdk = 23
2323
targetSdk = 34
24-
versionCode = 21
25-
versionName = "3.3.0"
24+
versionCode = 22
25+
versionName = "3.3.1"
2626
testInstrumentationRunner = "org.eu.exodus_privacy.exodusprivacy.ExodusTestRunner"
2727
val API_KEY = System.getenv("EXODUS_API_KEY")
2828
buildConfigField("String", "EXODUS_API_KEY", "\"$API_KEY\"")
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
- Drop support of Android 5
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
- Suppression du support d'Android 5

0 commit comments

Comments
 (0)