You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+12Lines changed: 12 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,6 +19,18 @@
19
19
20
20
* Update QSS flag to QSS_ALLOWED and reconfigure enabled setting/checking [#2912](https://github.com/TryQuiet/quiet/issues/2912)
21
21
22
+
## [6.2.0]
23
+
24
+
### Fixes
25
+
26
+
* Fix newline formatting in messages on mobile
27
+
* Fix issue with keyboard hiding message input on Android
28
+
* Fix issue with message send button not displaying correctly on mobile
29
+
30
+
### Chores
31
+
32
+
* Bump Android SDK to 35, NDK to 28.2.13676358, and Gradle plugin to 8.5.1 [see Google Play deadline](https://developer.android.com/google/play/requirements/target-sdk)
Copy file name to clipboardExpand all lines: packages/desktop/CHANGELOG.md
+12Lines changed: 12 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,17 @@
1
1
# Changelog
2
2
3
+
## [6.2.0]
4
+
5
+
### Fixes
6
+
7
+
* Fix newline formatting in messages on mobile
8
+
* Fix issue with keyboard hiding message input on Android
9
+
* Fix issue with message send button not displaying correctly on mobile
10
+
11
+
### Chores
12
+
13
+
* Bump Android SDK to 35, NDK to 28.2.13676358, and Gradle plugin to 8.5.1 [see Google Play deadline](https://developer.android.com/google/play/requirements/target-sdk)
Copy file name to clipboardExpand all lines: packages/desktop/README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,10 +11,10 @@ Here are the steps:
11
11
12
12
4. In `quiet/` (project's root) install monorepo's dependencies and bootstrap the project with lerna. It will take care of the package's dependencies/submodules and trigger a prepublish script which builds them.
Copy file name to clipboardExpand all lines: packages/mobile/CHANGELOG.md
+12Lines changed: 12 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,17 @@
1
1
# Changelog
2
2
3
+
## [6.2.0]
4
+
5
+
### Fixes
6
+
7
+
* Fix newline formatting in messages on mobile
8
+
* Fix issue with keyboard hiding message input on Android
9
+
* Fix issue with message send button not displaying correctly on mobile
10
+
11
+
### Chores
12
+
13
+
* Bump Android SDK to 35, NDK to 28.2.13676358, and Gradle plugin to 8.5.1 [see Google Play deadline](https://developer.android.com/google/play/requirements/target-sdk)
Alternatively, the easiest way to install The Temurin 17 JDK on Mac and Linux systems is to use [`SDKMAn`](https://sdkman.io/). This program is similar to `nvm` but for JDKs and allows you to easily install and switch between multiple JDKs on a single system.
1. Install [Android Studio](https://developer.android.com/studio), ensuring that all of the following items in the installation wizard are checked
22
33
- Android SDK
23
34
- Android SDK Platform
@@ -36,7 +47,7 @@ Quiet Mobile is a React Native app for Android and iOS that shares a Node.js [ba
36
47
export PATH=$PATH:$ANDROID_HOME/platform-tools
37
48
```
38
49
39
-
1. Confirm that the "Android 15 (VanillaIceCream)" SDK required by React Native has been installed (confusingly, it is also called "android-35")
50
+
1. Confirm that the "Android 15 (VanillaIceCream)" SDK required by React Native has been installed (confusingly, it is also called "android-35" or [API level 35](https://apilevels.com/))
40
51
41
52
```bash
42
53
ls $ANDROID_HOME/platforms
@@ -79,11 +90,12 @@ It may be convenient to run the app from Android studio, for example if you are
79
90
80
91
1. Open Android Studio
81
92
82
-
If using nvm to manage node versions, you may need to open Android studio from a terminal which has the correct node version set. This is because Android Studio may not be able to find the correct node version if it is not set in the terminal.
83
-
```
93
+
If using `nvm` to manage `node` versions, you may need relink the `node` installed by `nvm`in order to open Quiet in Android Studio.
94
+
95
+
```bash
84
96
nvm install 18.20.4
85
97
nvm use 18.20.4
86
-
open -a "Android Studio"
98
+
sudo ln -s "$(which node)" /usr/local/bin/node
87
99
```
88
100
1. Open the `android` directory in Android Studio.
89
101
1. If necessary, sync the Gradle files by hitting the "Sync Project with Gradle Files" button in the top right corner.
@@ -109,7 +121,7 @@ _See the `node-common` README for a more detailed description of file logging in
109
121
110
122
Metro requires additional step for locally linking packages. After running standard `npm link` commands, update `metro.config.js` as follows
0 commit comments