Skip to content

Commit f88d942

Browse files
Release 3.1.0 (#295)
* Move network_config * Bump version
1 parent d02a346 commit f88d942

File tree

7 files changed

+23
-11
lines changed

7 files changed

+23
-11
lines changed

.github/workflows/main.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,6 @@ jobs:
1919
steps:
2020
- name: Checkout the code
2121
uses: actions/checkout@v3
22-
- name: Remove network security config
23-
run: |
24-
rm ./app/src/main/res/xml/network_security_config.xml
2522
- name: Setup Java JDK
2623
uses: actions/setup-java@v1
2724
with:

.github/workflows/release.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,6 @@ jobs:
2222
steps:
2323
- name: Checkout the code
2424
uses: actions/checkout@v3
25-
- name: Remove network security config
26-
run: |
27-
rm ./app/src/main/res/xml/network_security_config.xml
2825
- name: Setup Java JDK
2926
uses: actions/setup-java@v1
3027
with:

README.md

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,7 @@ It helps you to take your privacy back!
4646

4747
If you want to help us improve this application, you can:
4848
- [Translate app](https://github.com/Exodus-Privacy/exodus-android-app#translation)
49-
- Use [the issues](https://github.com/Exodus-Privacy/exodus-android-app/issues) to report bugs
50-
- Open [discussions](https://github.com/Exodus-Privacy/exodus-android-app/discussions) to propose ideas or feature requests
49+
- Use [the issues](https://github.com/Exodus-Privacy/exodus-android-app/issues) to report bugs and propose ideas or feature requests
5150
- Join us on our [IRC channel #exodus-android-app on Libera.chat](https://web.libera.chat/?nick=webguest?#exodus-android-app) (also bridged on [Matrix channel #exodus-android-app:matrix.org](https://matrix.to/#/#exodus-android-app:matrix.org))
5251

5352

@@ -57,7 +56,7 @@ Do you want to help translate the application? Contribute here:
5756

5857
https://crowdin.com/project/exodus-android-app
5958

60-
- Exodus is fully translated into 2 languages and 35 languages can be translated in Crowdin.
59+
- Exodus is fully translated into 2 languages and 36 languages can be translated in Crowdin.
6160
- You can translate app on Github but remember to insert a backslash `\` before any apostrophe `'`.
6261

6362
### Development
@@ -85,6 +84,15 @@ https://crowdin.com/project/exodus-android-app
8584
./gradlew test
8685
```
8786

87+
**Execute instrumented tests**
88+
89+
```
90+
./gradlew connectedAndroidTest
91+
```
92+
93+
- To execute test move [network_security_config.xml](/doc/network_security_config.xml) in [/app/src/main/res/xml](/app/src/main/res/xml)
94+
- Add ```android:networkSecurityConfig="@xml/network_security_config"``` in [AndroidManifest.xml](/app/src/main/AndroidManifest.xml)
95+
8896
### Links
8997

9098
- [Privacy-Policy](https://exodus-privacy.eu.org/en/page/privacy-policy/)

app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ android {
1414
defaultConfig {
1515
minSdk 21
1616
targetSdk 33
17-
versionCode 14
18-
versionName "3.0.1"
17+
versionCode 15
18+
versionName "3.1.0"
1919
testInstrumentationRunner 'org.eu.exodus_privacy.exodusprivacy.ExodusTestRunner'
2020
buildConfigField "String", "EXODUS_API_KEY", "\"$System.env.EXODUS_API_KEY\""
2121
javaCompileOptions {
File renamed without changes.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
- Fix crashs and bugs
2+
- Bump dependencies
3+
- Add support to Android 13
4+
- Add themed icon for Android 13
5+
- Add button to refresh reports
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
- Corrections des plantages et bogues
2+
- Mise à jour des dépendances
3+
- Ajout du support d'Android 13
4+
- Ajout de l'icône adaptative sur Android 13
5+
- Ajout d'un button pour actualiser les rapports

0 commit comments

Comments
 (0)