diff --git a/docs/CROWDIN/cs/WearOS/WearOsSmartwatch.md b/docs/CROWDIN/cs/WearOS/WearOsSmartwatch.md index c6226fe67cd0..60de383aa43d 100644 --- a/docs/CROWDIN/cs/WearOS/WearOsSmartwatch.md +++ b/docs/CROWDIN/cs/WearOS/WearOsSmartwatch.md @@ -98,49 +98,49 @@ Alternatively, but not for Wear OS 5, you can: ### Use Easy Fire tools to side-load the **AAPS** wear on the watch -1) Download _Easy Fire Tools_ from playstore onto phone +1) Download _[Easy Fire Tools](https://play.google.com/store/apps/details?id=de.agondev.easyfiretools&hl=en)_ from the Play Store onto phone -![image](../images/81ceb8f3-dfa6-468b-b9d0-c31b885bc104.png) +![image](../images/wearos/easyfire01.png) 2) Make yourself a developer in the watch (once set up and connected to phone): -Go to settings >about watch (bottom option) >- software info > software version. +Go to settings >about watch (bottom option) -> software info -> software version. -Rapidly tap on “ software version” until a notification appears that the watch is now in "developer mode". Return to the top of settings menu, scroll to the bottom and see “developer options” below “about watch”. +![image](../images/wearos/easyfire02.png) -In “developer options”, turn on “ADB debugging” and “wireless debugging”. The latter option then reveals the IP address of the watch, the final two digits of which changes each time the watch is paired with a new phone. It will be something like: **167.177.0.20.** 5555 (ignore the last 4 digits). Note that the last two digits (here, “20”) of this address will change every time you change to a new phone handset for AAPS. +Rapidly tap on “ software version” until a notification appears that the watch is now in "developer mode". -![24-10-23, watch ADB debug pic](../images/643f4e8b-09f3-4a8d-8277-76b1839a5c3a.png) +![image](../images/wearos/easyfire03.png) -STEP 3) Enter IP address _e.g._ **167.177.0.20** into Easy Fire tools on the phone (go into the left hamburger, settings and enter the IP address). Then click the plug socket icon on the top right. +Return to the top of settings menu, scroll to the bottom and see “developer options” below “about watch”. -![image](../images/b927041f-cc53-4cde-9f77-11cd517c9be0.png) +In “developer options”, turn on “ADB debugging” and “wireless debugging”. The latter option then reveals the IP address of the watch, the final two digits of which changes each time the watch is paired with a new phone. It will be something like: **192.168.1.214**.5555 (ignore the last 4 digits). Note that the last two digits (here, “20”) of this address will change every time you change to a new phone handset for AAPS. +![image](../images/wearos/easyfire04.png) -![image](../images/00b2fb8b-5996-4b71-894e-516d63469e1b.png) +STEP 3) Enter IP address _e.g._ **192.168.1.214** into Easy Fire tools on the phone (go into the left hamburger, settings and enter the IP address). +![image](../images/wearos/easyfire05.png) -STEP 4) Follow the instructions [here](https://wearablestouse.com/blog/2022/01/04/install-apps-apk-samsung-galaxy-watch-4/?utm_content=cmp-true) to side-load (i.e. transfer) Wear.apk onto the smartwatch using Easy Fire tools +Then click the plug socket icon on the top right. It will turn green when connected. -Click side "plug-in" socket in the app, in order to upload Wear OS.apk onto the smartwatch: +![image](../images/wearos/easyfire06.png) -![image](../images/d1bc4c9d-d5ef-4402-a9a2-a51ed242eff3.png) +STEP 4) Follow the instructions [here](https://wearablestouse.com/blog/2022/01/04/install-apps-apk-samsung-galaxy-watch-4/?utm_content=cmp-true) to side-load (i.e. transfer) aaps-wear.apk onto the smartwatch using Easy Fire tools - Next step > accept the authorisation request on the smartwatch - -![image](../images/2c398a34-b865-4aa1-9c53-d83dfef052a7.png) +![image](../images/wearos/easyfire07.png) (BuildingAapsWearOs-WearOS5-TShoot)= ### Using the terminal -Connect your smartwatch and computer to the same wifi network. +Connect your smartwatch and computer to the same Wi-Fi network. - To install ADB download it from: https://developer.android.com/tools/releases/platform-tools - Open a terminal. -- After installation of ADB for windows set the path to the folder where ADB is located: `setx PATH "%PATH%;C:\platform-tools"` +- For Windows, create a new folder named `adb` under your disk `C:`. Open the `platform-tools-latest-windows.zip` file you downloaded above. Copy all files inside `platform-tools` to `C:\adb` and open this folder with a command prompt (right click and Open in Terminal). Type the command below to set the path to the folder where ADB is located: `setx PATH "%PATH%;C:\adb"` - For Mac instead of installing manually you can use homebrew: `brew install android-platform-tools` On the watch: @@ -149,12 +149,12 @@ On the watch: - Go to Settings → Developer options. Enable **ADB debugging** - Go to Settings → Developer options → Wireless debugging → **Pair new device** -You will see a wifi pariing code and ipaddress and port appearing: -Screenshot 2025-12-21 at 17 46 42 -- In the terminal: `adb pair ipaddress:port` E.g. `adb pair 10.10.1.125:36443` +You will see a Wi-Fi paring code and IP address and port appearing: ![image](../images/wearos/ADB03.png) + +- In the terminal: `adb pair ipaddress:port` E.g. `adb pair 10.10.1.125:36299` - You will be asked for the pairing code. Enter it. -- You will see a response:
`Successfully paired to 10.10.1.125:36443 [guid=adb-RXXXW20LMKJY-eh5zBj]`
-- In the terminal type:
`adb devices`.
You should see something like:
`List of devices attached`
`10.10.1.125:45559 offline`
`adb-RFAW20LMKJY-eh5zBj._adb-tls-connect._tcp device`
+- You will see a response:
`Successfully paired to 10.10.1.125:36299 [guid=adb-RXXXW20LMKJY-eh5zBj]`
+- In the terminal type:
`adb devices`.
You should see something like:
`List of devices attached`
`10.10.1.125:36299 offline`
`adb-RFAW20LMKJY-eh5zBj._adb-tls-connect._tcp device`
- Now go to the folder on your computer where the Wear apk is and type
`adb install wear-full.apk`
with wear.apk replaced by the name of your apk file. - You will see:
`Performing Streamed Install`
`Success` @@ -165,7 +165,7 @@ You will see a wifi pariing code and ipaddress and port appearing: - Do not use Wi-Fi Tethering. That won't work. - You do not need to enable adb debugging on the phone (only on the watch). Disable adb debugging on the Phone. - Make sure you are connecting to your local network where phone and watch can see each other (do not use your Wi-Fi guest network to connect). -- For GW7 you need to install using Wear Installer as it gives you the option to select the AAPS(Custom) watchface on installation. +- For GW7 you need to install using Wear Installer 2 as it gives you the option to select the AAPS (Custom) watchface on installation. - Make sure both watch and phone are on the same network and Wi-Fi device. Especially Wi-Fi repeaters or access points may create problems. - Make sure to be near your main router, then restart both phone and watch. diff --git a/docs/CROWDIN/cs/images/wearos/ADB03.png b/docs/CROWDIN/cs/images/wearos/ADB03.png new file mode 100644 index 000000000000..63fb435b2f0e Binary files /dev/null and b/docs/CROWDIN/cs/images/wearos/ADB03.png differ diff --git a/docs/CROWDIN/cs/images/wearos/easyfire02.png b/docs/CROWDIN/cs/images/wearos/easyfire02.png new file mode 100644 index 000000000000..e0050e5fc5d8 Binary files /dev/null and b/docs/CROWDIN/cs/images/wearos/easyfire02.png differ diff --git a/docs/CROWDIN/cs/images/wearos/easyfire03.png b/docs/CROWDIN/cs/images/wearos/easyfire03.png new file mode 100644 index 000000000000..c1309b7ab89a Binary files /dev/null and b/docs/CROWDIN/cs/images/wearos/easyfire03.png differ diff --git a/docs/CROWDIN/cs/images/wearos/easyfire04.png b/docs/CROWDIN/cs/images/wearos/easyfire04.png new file mode 100644 index 000000000000..a771738aa067 Binary files /dev/null and b/docs/CROWDIN/cs/images/wearos/easyfire04.png differ diff --git a/docs/CROWDIN/cs/images/wearos/easyfire05.png b/docs/CROWDIN/cs/images/wearos/easyfire05.png new file mode 100644 index 000000000000..0d8136765a9f Binary files /dev/null and b/docs/CROWDIN/cs/images/wearos/easyfire05.png differ diff --git a/docs/CROWDIN/cs/images/wearos/easyfire06.png b/docs/CROWDIN/cs/images/wearos/easyfire06.png new file mode 100644 index 000000000000..d048886e188d Binary files /dev/null and b/docs/CROWDIN/cs/images/wearos/easyfire06.png differ diff --git a/docs/CROWDIN/cs/images/wearos/easyfire07.png b/docs/CROWDIN/cs/images/wearos/easyfire07.png new file mode 100644 index 000000000000..70bcf2f53a91 Binary files /dev/null and b/docs/CROWDIN/cs/images/wearos/easyfire07.png differ diff --git a/docs/CROWDIN/de/WearOS/WearOsSmartwatch.md b/docs/CROWDIN/de/WearOS/WearOsSmartwatch.md index 9eb125a204d5..ae24d727a4da 100644 --- a/docs/CROWDIN/de/WearOS/WearOsSmartwatch.md +++ b/docs/CROWDIN/de/WearOS/WearOsSmartwatch.md @@ -98,49 +98,49 @@ Alternativ, allerdings nicht für Wear OS 5, kannst Du: ### Use Easy Fire tools to side-load the **AAPS** wear on the watch -1) Download _Easy Fire Tools_ from playstore onto phone +1) Download _[Easy Fire Tools](https://play.google.com/store/apps/details?id=de.agondev.easyfiretools&hl=en)_ from the Play Store onto phone -![grafik](../images/81ceb8f3-dfa6-468b-b9d0-c31b885bc104.png) +![grafik](../images/wearos/easyfire01.png) 2) Make yourself a developer in the watch (once set up and connected to phone): -Go to settings >about watch (bottom option) >- software info > software version. +Go to settings >about watch (bottom option) -> software info -> software version. -Tippe schnell so lange auf "Softwareversion", bis eine Benachrichtigung erscheint, die besagt, dass die Smartwatch nun im "Entwicklermodus" ist. Kehre zum oberen Teil des Einstellungsmenüs zurück, scrolle nach unten zum Punkt „Entwickleroptionen“ unter „Info zur Uhr“. +![grafik](../images/wearos/easyfire02.png) -In den „Entwickleroptionen“ aktiviere das „ADB Debugging“ und „Über Bluetooth debuggen“. Die letzte Option zeigt dann die IP-Adresse der Smartwatch. Die letzten beiden Ziffern ändern sich jedesmal mit dem Koppelungsvorgang zu einem neuen Smartphone. It will be something like: **167.177.0.20.** 5555 (ignore the last 4 digits). Beachte, dass sich die letzten beiden Ziffern (hier, „20“) dieser Adresse mit jedem neuen AAPS Smartphone ändern. +Tippe schnell so lange auf "Softwareversion", bis eine Benachrichtigung erscheint, die besagt, dass die Smartwatch nun im "Entwicklermodus" ist. -![24-10-23, watch ADB debug pic](../images/643f4e8b-09f3-4a8d-8277-76b1839a5c3a.png) +![grafik](../images/wearos/easyfire03.png) -STEP 3) Enter IP address _e.g._ **167.177.0.20** into Easy Fire tools on the phone (go into the left hamburger, settings and enter the IP address). Klicke dann auf das plug socket Icon oben rechts. +Return to the top of settings menu, scroll to the bottom and see “developer options” below “about watch”. -![grafik](../images/b927041f-cc53-4cde-9f77-11cd517c9be0.png) +In den „Entwickleroptionen“ aktiviere das „ADB Debugging“ und „Über Bluetooth debuggen“. Die letzte Option zeigt dann die IP-Adresse der Smartwatch. Die letzten beiden Ziffern ändern sich jedesmal mit dem Koppelungsvorgang zu einem neuen Smartphone. It will be something like: **192.168.1.214**.5555 (ignore the last 4 digits). Beachte, dass sich die letzten beiden Ziffern (hier, „20“) dieser Adresse mit jedem neuen AAPS Smartphone ändern. +![grafik](../images/wearos/easyfire04.png) -![grafik](../images/00b2fb8b-5996-4b71-894e-516d63469e1b.png) +STEP 3) Enter IP address _e.g._ **192.168.1.214** into Easy Fire tools on the phone (go into the left hamburger, settings and enter the IP address). +![grafik](../images/wearos/easyfire05.png) -STEP 4) Follow the instructions [here](https://wearablestouse.com/blog/2022/01/04/install-apps-apk-samsung-galaxy-watch-4/?utm_content=cmp-true) to side-load (i.e. transfer) Wear.apk onto the smartwatch using Easy Fire tools +Klicke dann auf das plug socket Icon oben rechts. It will turn green when connected. -Click side "plug-in" socket in the app, in order to upload Wear OS.apk onto the smartwatch: +![grafik](../images/wearos/easyfire06.png) -![grafik](../images/d1bc4c9d-d5ef-4402-a9a2-a51ed242eff3.png) +STEP 4) Follow the instructions [here](https://wearablestouse.com/blog/2022/01/04/install-apps-apk-samsung-galaxy-watch-4/?utm_content=cmp-true) to side-load (i.e. transfer) aaps-wear.apk onto the smartwatch using Easy Fire tools - Next step > accept the authorisation request on the smartwatch - -![grafik](../images/2c398a34-b865-4aa1-9c53-d83dfef052a7.png) +![grafik](../images/wearos/easyfire07.png) (BuildingAapsWearOs-WearOS5-TShoot)= ### Using the terminal -Connect your smartwatch and computer to the same wifi network. +Connect your smartwatch and computer to the same Wi-Fi network. - To install ADB download it from: https://developer.android.com/tools/releases/platform-tools - Open a terminal. -- After installation of ADB for windows set the path to the folder where ADB is located: `setx PATH "%PATH%;C:\platform-tools"` +- For Windows, create a new folder named `adb` under your disk `C:`. Open the `platform-tools-latest-windows.zip` file you downloaded above. Copy all files inside `platform-tools` to `C:\adb` and open this folder with a command prompt (right click and Open in Terminal). Type the command below to set the path to the folder where ADB is located: `setx PATH "%PATH%;C:\adb"` - For Mac instead of installing manually you can use homebrew: `brew install android-platform-tools` On the watch: @@ -149,12 +149,12 @@ On the watch: - Go to Settings → Developer options. Enable **ADB debugging** - Go to Settings → Developer options → Wireless debugging → **Pair new device** -You will see a wifi pariing code and ipaddress and port appearing: -Screenshot 2025-12-21 at 17 46 42 -- In the terminal: `adb pair ipaddress:port` E.g. `adb pair 10.10.1.125:36443` +You will see a Wi-Fi paring code and IP address and port appearing: ![grafik](../images/wearos/ADB03.png) + +- In the terminal: `adb pair ipaddress:port` E.g. `adb pair 10.10.1.125:36299` - You will be asked for the pairing code. Enter it. -- You will see a response:
`Successfully paired to 10.10.1.125:36443 [guid=adb-RXXXW20LMKJY-eh5zBj]`
-- In the terminal type:
`adb devices`.
You should see something like:
`List of devices attached`
`10.10.1.125:45559 offline`
`adb-RFAW20LMKJY-eh5zBj._adb-tls-connect._tcp device`
+- You will see a response:
`Successfully paired to 10.10.1.125:36299 [guid=adb-RXXXW20LMKJY-eh5zBj]`
+- In the terminal type:
`adb devices`.
You should see something like:
`List of devices attached`
`10.10.1.125:36299 offline`
`adb-RFAW20LMKJY-eh5zBj._adb-tls-connect._tcp device`
- Now go to the folder on your computer where the Wear apk is and type
`adb install wear-full.apk`
with wear.apk replaced by the name of your apk file. - You will see:
`Performing Streamed Install`
`Success` @@ -165,7 +165,7 @@ You will see a wifi pariing code and ipaddress and port appearing: - WLAN Tethering nicht verwenden. Das wird nicht funktionieren. - ADB-Debugging muss nicht auf dem Smartphone aktiviert werden (nur auf der Smartwatch). Deaktiviere das ADB Debugging auf dem Smartphone. - Achte darauf, dass Du Dich mit Deinem lokalen Netzwerk verbindest, in dem sich das Smartphone und die Smartwatch gegenseitig „sehen“ können (verwende nicht Dein WLAN-Gästenetzwerk). -- Für die Galaxy Watch 7 musst Du den Wear Installer verwenden, da dieser Dir die Möglichkeit gibt das „AAPS(Custom)“-Zifferblatt bei der Installation auszuwählen. +- For GW7 you need to install using Wear Installer 2 as it gives you the option to select the AAPS (Custom) watchface on installation. - Achte darauf, dass sowohl die Smartwatch als auch das Smartphone im gleichen Netzwerk und auf dem gleichen WLAN-Gerät sind. Insbesondere WLAN-Repeater oder Access Points können Probleme verursachen. - Achte darauf, dass Du in der Nähe des Haupt-Routers bist, und starte dann Smartphone und Smartwatch neu. diff --git a/docs/CROWDIN/de/images/wearos/ADB03.png b/docs/CROWDIN/de/images/wearos/ADB03.png new file mode 100644 index 000000000000..63fb435b2f0e Binary files /dev/null and b/docs/CROWDIN/de/images/wearos/ADB03.png differ diff --git a/docs/CROWDIN/de/images/wearos/easyfire02.png b/docs/CROWDIN/de/images/wearos/easyfire02.png new file mode 100644 index 000000000000..e0050e5fc5d8 Binary files /dev/null and b/docs/CROWDIN/de/images/wearos/easyfire02.png differ diff --git a/docs/CROWDIN/de/images/wearos/easyfire03.png b/docs/CROWDIN/de/images/wearos/easyfire03.png new file mode 100644 index 000000000000..c1309b7ab89a Binary files /dev/null and b/docs/CROWDIN/de/images/wearos/easyfire03.png differ diff --git a/docs/CROWDIN/de/images/wearos/easyfire04.png b/docs/CROWDIN/de/images/wearos/easyfire04.png new file mode 100644 index 000000000000..a771738aa067 Binary files /dev/null and b/docs/CROWDIN/de/images/wearos/easyfire04.png differ diff --git a/docs/CROWDIN/de/images/wearos/easyfire05.png b/docs/CROWDIN/de/images/wearos/easyfire05.png new file mode 100644 index 000000000000..0d8136765a9f Binary files /dev/null and b/docs/CROWDIN/de/images/wearos/easyfire05.png differ diff --git a/docs/CROWDIN/de/images/wearos/easyfire06.png b/docs/CROWDIN/de/images/wearos/easyfire06.png new file mode 100644 index 000000000000..d048886e188d Binary files /dev/null and b/docs/CROWDIN/de/images/wearos/easyfire06.png differ diff --git a/docs/CROWDIN/de/images/wearos/easyfire07.png b/docs/CROWDIN/de/images/wearos/easyfire07.png new file mode 100644 index 000000000000..70bcf2f53a91 Binary files /dev/null and b/docs/CROWDIN/de/images/wearos/easyfire07.png differ diff --git a/docs/CROWDIN/el/WearOS/WearOsSmartwatch.md b/docs/CROWDIN/el/WearOS/WearOsSmartwatch.md index c6226fe67cd0..60de383aa43d 100644 --- a/docs/CROWDIN/el/WearOS/WearOsSmartwatch.md +++ b/docs/CROWDIN/el/WearOS/WearOsSmartwatch.md @@ -98,49 +98,49 @@ Alternatively, but not for Wear OS 5, you can: ### Use Easy Fire tools to side-load the **AAPS** wear on the watch -1) Download _Easy Fire Tools_ from playstore onto phone +1) Download _[Easy Fire Tools](https://play.google.com/store/apps/details?id=de.agondev.easyfiretools&hl=en)_ from the Play Store onto phone -![image](../images/81ceb8f3-dfa6-468b-b9d0-c31b885bc104.png) +![image](../images/wearos/easyfire01.png) 2) Make yourself a developer in the watch (once set up and connected to phone): -Go to settings >about watch (bottom option) >- software info > software version. +Go to settings >about watch (bottom option) -> software info -> software version. -Rapidly tap on “ software version” until a notification appears that the watch is now in "developer mode". Return to the top of settings menu, scroll to the bottom and see “developer options” below “about watch”. +![image](../images/wearos/easyfire02.png) -In “developer options”, turn on “ADB debugging” and “wireless debugging”. The latter option then reveals the IP address of the watch, the final two digits of which changes each time the watch is paired with a new phone. It will be something like: **167.177.0.20.** 5555 (ignore the last 4 digits). Note that the last two digits (here, “20”) of this address will change every time you change to a new phone handset for AAPS. +Rapidly tap on “ software version” until a notification appears that the watch is now in "developer mode". -![24-10-23, watch ADB debug pic](../images/643f4e8b-09f3-4a8d-8277-76b1839a5c3a.png) +![image](../images/wearos/easyfire03.png) -STEP 3) Enter IP address _e.g._ **167.177.0.20** into Easy Fire tools on the phone (go into the left hamburger, settings and enter the IP address). Then click the plug socket icon on the top right. +Return to the top of settings menu, scroll to the bottom and see “developer options” below “about watch”. -![image](../images/b927041f-cc53-4cde-9f77-11cd517c9be0.png) +In “developer options”, turn on “ADB debugging” and “wireless debugging”. The latter option then reveals the IP address of the watch, the final two digits of which changes each time the watch is paired with a new phone. It will be something like: **192.168.1.214**.5555 (ignore the last 4 digits). Note that the last two digits (here, “20”) of this address will change every time you change to a new phone handset for AAPS. +![image](../images/wearos/easyfire04.png) -![image](../images/00b2fb8b-5996-4b71-894e-516d63469e1b.png) +STEP 3) Enter IP address _e.g._ **192.168.1.214** into Easy Fire tools on the phone (go into the left hamburger, settings and enter the IP address). +![image](../images/wearos/easyfire05.png) -STEP 4) Follow the instructions [here](https://wearablestouse.com/blog/2022/01/04/install-apps-apk-samsung-galaxy-watch-4/?utm_content=cmp-true) to side-load (i.e. transfer) Wear.apk onto the smartwatch using Easy Fire tools +Then click the plug socket icon on the top right. It will turn green when connected. -Click side "plug-in" socket in the app, in order to upload Wear OS.apk onto the smartwatch: +![image](../images/wearos/easyfire06.png) -![image](../images/d1bc4c9d-d5ef-4402-a9a2-a51ed242eff3.png) +STEP 4) Follow the instructions [here](https://wearablestouse.com/blog/2022/01/04/install-apps-apk-samsung-galaxy-watch-4/?utm_content=cmp-true) to side-load (i.e. transfer) aaps-wear.apk onto the smartwatch using Easy Fire tools - Next step > accept the authorisation request on the smartwatch - -![image](../images/2c398a34-b865-4aa1-9c53-d83dfef052a7.png) +![image](../images/wearos/easyfire07.png) (BuildingAapsWearOs-WearOS5-TShoot)= ### Using the terminal -Connect your smartwatch and computer to the same wifi network. +Connect your smartwatch and computer to the same Wi-Fi network. - To install ADB download it from: https://developer.android.com/tools/releases/platform-tools - Open a terminal. -- After installation of ADB for windows set the path to the folder where ADB is located: `setx PATH "%PATH%;C:\platform-tools"` +- For Windows, create a new folder named `adb` under your disk `C:`. Open the `platform-tools-latest-windows.zip` file you downloaded above. Copy all files inside `platform-tools` to `C:\adb` and open this folder with a command prompt (right click and Open in Terminal). Type the command below to set the path to the folder where ADB is located: `setx PATH "%PATH%;C:\adb"` - For Mac instead of installing manually you can use homebrew: `brew install android-platform-tools` On the watch: @@ -149,12 +149,12 @@ On the watch: - Go to Settings → Developer options. Enable **ADB debugging** - Go to Settings → Developer options → Wireless debugging → **Pair new device** -You will see a wifi pariing code and ipaddress and port appearing: -Screenshot 2025-12-21 at 17 46 42 -- In the terminal: `adb pair ipaddress:port` E.g. `adb pair 10.10.1.125:36443` +You will see a Wi-Fi paring code and IP address and port appearing: ![image](../images/wearos/ADB03.png) + +- In the terminal: `adb pair ipaddress:port` E.g. `adb pair 10.10.1.125:36299` - You will be asked for the pairing code. Enter it. -- You will see a response:
`Successfully paired to 10.10.1.125:36443 [guid=adb-RXXXW20LMKJY-eh5zBj]`
-- In the terminal type:
`adb devices`.
You should see something like:
`List of devices attached`
`10.10.1.125:45559 offline`
`adb-RFAW20LMKJY-eh5zBj._adb-tls-connect._tcp device`
+- You will see a response:
`Successfully paired to 10.10.1.125:36299 [guid=adb-RXXXW20LMKJY-eh5zBj]`
+- In the terminal type:
`adb devices`.
You should see something like:
`List of devices attached`
`10.10.1.125:36299 offline`
`adb-RFAW20LMKJY-eh5zBj._adb-tls-connect._tcp device`
- Now go to the folder on your computer where the Wear apk is and type
`adb install wear-full.apk`
with wear.apk replaced by the name of your apk file. - You will see:
`Performing Streamed Install`
`Success` @@ -165,7 +165,7 @@ You will see a wifi pariing code and ipaddress and port appearing: - Do not use Wi-Fi Tethering. That won't work. - You do not need to enable adb debugging on the phone (only on the watch). Disable adb debugging on the Phone. - Make sure you are connecting to your local network where phone and watch can see each other (do not use your Wi-Fi guest network to connect). -- For GW7 you need to install using Wear Installer as it gives you the option to select the AAPS(Custom) watchface on installation. +- For GW7 you need to install using Wear Installer 2 as it gives you the option to select the AAPS (Custom) watchface on installation. - Make sure both watch and phone are on the same network and Wi-Fi device. Especially Wi-Fi repeaters or access points may create problems. - Make sure to be near your main router, then restart both phone and watch. diff --git a/docs/CROWDIN/el/images/wearos/ADB03.png b/docs/CROWDIN/el/images/wearos/ADB03.png new file mode 100644 index 000000000000..63fb435b2f0e Binary files /dev/null and b/docs/CROWDIN/el/images/wearos/ADB03.png differ diff --git a/docs/CROWDIN/el/images/wearos/easyfire02.png b/docs/CROWDIN/el/images/wearos/easyfire02.png new file mode 100644 index 000000000000..e0050e5fc5d8 Binary files /dev/null and b/docs/CROWDIN/el/images/wearos/easyfire02.png differ diff --git a/docs/CROWDIN/el/images/wearos/easyfire03.png b/docs/CROWDIN/el/images/wearos/easyfire03.png new file mode 100644 index 000000000000..c1309b7ab89a Binary files /dev/null and b/docs/CROWDIN/el/images/wearos/easyfire03.png differ diff --git a/docs/CROWDIN/el/images/wearos/easyfire04.png b/docs/CROWDIN/el/images/wearos/easyfire04.png new file mode 100644 index 000000000000..a771738aa067 Binary files /dev/null and b/docs/CROWDIN/el/images/wearos/easyfire04.png differ diff --git a/docs/CROWDIN/el/images/wearos/easyfire05.png b/docs/CROWDIN/el/images/wearos/easyfire05.png new file mode 100644 index 000000000000..0d8136765a9f Binary files /dev/null and b/docs/CROWDIN/el/images/wearos/easyfire05.png differ diff --git a/docs/CROWDIN/el/images/wearos/easyfire06.png b/docs/CROWDIN/el/images/wearos/easyfire06.png new file mode 100644 index 000000000000..d048886e188d Binary files /dev/null and b/docs/CROWDIN/el/images/wearos/easyfire06.png differ diff --git a/docs/CROWDIN/el/images/wearos/easyfire07.png b/docs/CROWDIN/el/images/wearos/easyfire07.png new file mode 100644 index 000000000000..70bcf2f53a91 Binary files /dev/null and b/docs/CROWDIN/el/images/wearos/easyfire07.png differ diff --git a/docs/CROWDIN/es/WearOS/WearOsSmartwatch.md b/docs/CROWDIN/es/WearOS/WearOsSmartwatch.md index 75be00020802..c4c743399659 100644 --- a/docs/CROWDIN/es/WearOS/WearOsSmartwatch.md +++ b/docs/CROWDIN/es/WearOS/WearOsSmartwatch.md @@ -98,49 +98,49 @@ Alternatively, but not for Wear OS 5, you can: ### Use Easy Fire tools to side-load the **AAPS** wear on the watch -1) Download _Easy Fire Tools_ from playstore onto phone +1) Download _[Easy Fire Tools](https://play.google.com/store/apps/details?id=de.agondev.easyfiretools&hl=en)_ from the Play Store onto phone -![imagen](../images/81ceb8f3-dfa6-468b-b9d0-c31b885bc104.png) +![imagen](../images/wearos/easyfire01.png) 2) Make yourself a developer in the watch (once set up and connected to phone): -Go to settings >about watch (bottom option) >- software info > software version. +Go to settings >about watch (bottom option) -> software info -> software version. -Rapidly tap on “ software version” until a notification appears that the watch is now in "developer mode". Return to the top of settings menu, scroll to the bottom and see “developer options” below “about watch”. +![imagen](../images/wearos/easyfire02.png) -In “developer options”, turn on “ADB debugging” and “wireless debugging”. The latter option then reveals the IP address of the watch, the final two digits of which changes each time the watch is paired with a new phone. It will be something like: **167.177.0.20.** 5555 (ignore the last 4 digits). Note that the last two digits (here, “20”) of this address will change every time you change to a new phone handset for AAPS. +Rapidly tap on “ software version” until a notification appears that the watch is now in "developer mode". -![24-10-23, watch ADB debug pic](../images/643f4e8b-09f3-4a8d-8277-76b1839a5c3a.png) +![imagen](../images/wearos/easyfire03.png) -STEP 3) Enter IP address _e.g._ **167.177.0.20** into Easy Fire tools on the phone (go into the left hamburger, settings and enter the IP address). Then click the plug socket icon on the top right. +Return to the top of settings menu, scroll to the bottom and see “developer options” below “about watch”. -![imagen](../images/b927041f-cc53-4cde-9f77-11cd517c9be0.png) +In “developer options”, turn on “ADB debugging” and “wireless debugging”. The latter option then reveals the IP address of the watch, the final two digits of which changes each time the watch is paired with a new phone. It will be something like: **192.168.1.214**.5555 (ignore the last 4 digits). Note that the last two digits (here, “20”) of this address will change every time you change to a new phone handset for AAPS. +![imagen](../images/wearos/easyfire04.png) -![imagen](../images/00b2fb8b-5996-4b71-894e-516d63469e1b.png) +STEP 3) Enter IP address _e.g._ **192.168.1.214** into Easy Fire tools on the phone (go into the left hamburger, settings and enter the IP address). +![imagen](../images/wearos/easyfire05.png) -STEP 4) Follow the instructions [here](https://wearablestouse.com/blog/2022/01/04/install-apps-apk-samsung-galaxy-watch-4/?utm_content=cmp-true) to side-load (i.e. transfer) Wear.apk onto the smartwatch using Easy Fire tools +Then click the plug socket icon on the top right. It will turn green when connected. -Click side "plug-in" socket in the app, in order to upload Wear OS.apk onto the smartwatch: +![imagen](../images/wearos/easyfire06.png) -![imagen](../images/d1bc4c9d-d5ef-4402-a9a2-a51ed242eff3.png) +STEP 4) Follow the instructions [here](https://wearablestouse.com/blog/2022/01/04/install-apps-apk-samsung-galaxy-watch-4/?utm_content=cmp-true) to side-load (i.e. transfer) aaps-wear.apk onto the smartwatch using Easy Fire tools - Next step > accept the authorisation request on the smartwatch - -![imagen](../images/2c398a34-b865-4aa1-9c53-d83dfef052a7.png) +![imagen](../images/wearos/easyfire07.png) (BuildingAapsWearOs-WearOS5-TShoot)= ### Using the terminal -Connect your smartwatch and computer to the same wifi network. +Connect your smartwatch and computer to the same Wi-Fi network. - To install ADB download it from: https://developer.android.com/tools/releases/platform-tools - Open a terminal. -- After installation of ADB for windows set the path to the folder where ADB is located: `setx PATH "%PATH%;C:\platform-tools"` +- For Windows, create a new folder named `adb` under your disk `C:`. Open the `platform-tools-latest-windows.zip` file you downloaded above. Copy all files inside `platform-tools` to `C:\adb` and open this folder with a command prompt (right click and Open in Terminal). Type the command below to set the path to the folder where ADB is located: `setx PATH "%PATH%;C:\adb"` - For Mac instead of installing manually you can use homebrew: `brew install android-platform-tools` On the watch: @@ -149,12 +149,12 @@ On the watch: - Go to Settings → Developer options. Enable **ADB debugging** - Go to Settings → Developer options → Wireless debugging → **Pair new device** -You will see a wifi pariing code and ipaddress and port appearing: -Screenshot 2025-12-21 at 17 46 42 -- In the terminal: `adb pair ipaddress:port` E.g. `adb pair 10.10.1.125:36443` +You will see a Wi-Fi paring code and IP address and port appearing: ![imagen](../images/wearos/ADB03.png) + +- In the terminal: `adb pair ipaddress:port` E.g. `adb pair 10.10.1.125:36299` - You will be asked for the pairing code. Enter it. -- You will see a response:
`Successfully paired to 10.10.1.125:36443 [guid=adb-RXXXW20LMKJY-eh5zBj]`
-- In the terminal type:
`adb devices`.
You should see something like:
`List of devices attached`
`10.10.1.125:45559 offline`
`adb-RFAW20LMKJY-eh5zBj._adb-tls-connect._tcp device`
+- You will see a response:
`Successfully paired to 10.10.1.125:36299 [guid=adb-RXXXW20LMKJY-eh5zBj]`
+- In the terminal type:
`adb devices`.
You should see something like:
`List of devices attached`
`10.10.1.125:36299 offline`
`adb-RFAW20LMKJY-eh5zBj._adb-tls-connect._tcp device`
- Now go to the folder on your computer where the Wear apk is and type
`adb install wear-full.apk`
with wear.apk replaced by the name of your apk file. - You will see:
`Performing Streamed Install`
`Success` @@ -165,7 +165,7 @@ You will see a wifi pariing code and ipaddress and port appearing: - Do not use Wi-Fi Tethering. That won't work. - You do not need to enable adb debugging on the phone (only on the watch). Disable adb debugging on the Phone. - Make sure you are connecting to your local network where phone and watch can see each other (do not use your Wi-Fi guest network to connect). -- For GW7 you need to install using Wear Installer as it gives you the option to select the AAPS(Custom) watchface on installation. +- For GW7 you need to install using Wear Installer 2 as it gives you the option to select the AAPS (Custom) watchface on installation. - Make sure both watch and phone are on the same network and Wi-Fi device. Especially Wi-Fi repeaters or access points may create problems. - Make sure to be near your main router, then restart both phone and watch. diff --git a/docs/CROWDIN/es/images/wearos/ADB03.png b/docs/CROWDIN/es/images/wearos/ADB03.png new file mode 100644 index 000000000000..63fb435b2f0e Binary files /dev/null and b/docs/CROWDIN/es/images/wearos/ADB03.png differ diff --git a/docs/CROWDIN/es/images/wearos/easyfire02.png b/docs/CROWDIN/es/images/wearos/easyfire02.png new file mode 100644 index 000000000000..e0050e5fc5d8 Binary files /dev/null and b/docs/CROWDIN/es/images/wearos/easyfire02.png differ diff --git a/docs/CROWDIN/es/images/wearos/easyfire03.png b/docs/CROWDIN/es/images/wearos/easyfire03.png new file mode 100644 index 000000000000..c1309b7ab89a Binary files /dev/null and b/docs/CROWDIN/es/images/wearos/easyfire03.png differ diff --git a/docs/CROWDIN/es/images/wearos/easyfire04.png b/docs/CROWDIN/es/images/wearos/easyfire04.png new file mode 100644 index 000000000000..a771738aa067 Binary files /dev/null and b/docs/CROWDIN/es/images/wearos/easyfire04.png differ diff --git a/docs/CROWDIN/es/images/wearos/easyfire05.png b/docs/CROWDIN/es/images/wearos/easyfire05.png new file mode 100644 index 000000000000..0d8136765a9f Binary files /dev/null and b/docs/CROWDIN/es/images/wearos/easyfire05.png differ diff --git a/docs/CROWDIN/es/images/wearos/easyfire06.png b/docs/CROWDIN/es/images/wearos/easyfire06.png new file mode 100644 index 000000000000..d048886e188d Binary files /dev/null and b/docs/CROWDIN/es/images/wearos/easyfire06.png differ diff --git a/docs/CROWDIN/es/images/wearos/easyfire07.png b/docs/CROWDIN/es/images/wearos/easyfire07.png new file mode 100644 index 000000000000..70bcf2f53a91 Binary files /dev/null and b/docs/CROWDIN/es/images/wearos/easyfire07.png differ diff --git a/docs/CROWDIN/fr/WearOS/WearOsSmartwatch.md b/docs/CROWDIN/fr/WearOS/WearOsSmartwatch.md index 2e631a334cee..80ac11d9c805 100644 --- a/docs/CROWDIN/fr/WearOS/WearOsSmartwatch.md +++ b/docs/CROWDIN/fr/WearOS/WearOsSmartwatch.md @@ -98,49 +98,49 @@ Alternatively, but not for Wear OS 5, you can: ### Use Easy Fire tools to side-load the **AAPS** wear on the watch -1) Download _Easy Fire Tools_ from playstore onto phone +1) Download _[Easy Fire Tools](https://play.google.com/store/apps/details?id=de.agondev.easyfiretools&hl=en)_ from the Play Store onto phone -![image](../images/81ceb8f3-dfa6-468b-b9d0-c31b885bc104.png) +![image](../images/wearos/easyfire01.png) 2) Make yourself a developer in the watch (once set up and connected to phone): -Go to settings >about watch (bottom option) >- software info > software version. +Go to settings >about watch (bottom option) -> software info -> software version. -Rapidly tap on “ software version” until a notification appears that the watch is now in "developer mode". Return to the top of settings menu, scroll to the bottom and see “developer options” below “about watch”. +![image](../images/wearos/easyfire02.png) -In “developer options”, turn on “ADB debugging” and “wireless debugging”. The latter option then reveals the IP address of the watch, the final two digits of which changes each time the watch is paired with a new phone. It will be something like: **167.177.0.20.** 5555 (ignore the last 4 digits). Note that the last two digits (here, “20”) of this address will change every time you change to a new phone handset for AAPS. +Rapidly tap on “ software version” until a notification appears that the watch is now in "developer mode". -![24-10-23, watch ADB debug pic](../images/643f4e8b-09f3-4a8d-8277-76b1839a5c3a.png) +![image](../images/wearos/easyfire03.png) -STEP 3) Enter IP address _e.g._ **167.177.0.20** into Easy Fire tools on the phone (go into the left hamburger, settings and enter the IP address). Then click the plug socket icon on the top right. +Return to the top of settings menu, scroll to the bottom and see “developer options” below “about watch”. -![image](../images/b927041f-cc53-4cde-9f77-11cd517c9be0.png) +In “developer options”, turn on “ADB debugging” and “wireless debugging”. The latter option then reveals the IP address of the watch, the final two digits of which changes each time the watch is paired with a new phone. It will be something like: **192.168.1.214**.5555 (ignore the last 4 digits). Note that the last two digits (here, “20”) of this address will change every time you change to a new phone handset for AAPS. +![image](../images/wearos/easyfire04.png) -![image](../images/00b2fb8b-5996-4b71-894e-516d63469e1b.png) +STEP 3) Enter IP address _e.g._ **192.168.1.214** into Easy Fire tools on the phone (go into the left hamburger, settings and enter the IP address). +![image](../images/wearos/easyfire05.png) -STEP 4) Follow the instructions [here](https://wearablestouse.com/blog/2022/01/04/install-apps-apk-samsung-galaxy-watch-4/?utm_content=cmp-true) to side-load (i.e. transfer) Wear.apk onto the smartwatch using Easy Fire tools +Then click the plug socket icon on the top right. It will turn green when connected. -Click side "plug-in" socket in the app, in order to upload Wear OS.apk onto the smartwatch: +![image](../images/wearos/easyfire06.png) -![image](../images/d1bc4c9d-d5ef-4402-a9a2-a51ed242eff3.png) +STEP 4) Follow the instructions [here](https://wearablestouse.com/blog/2022/01/04/install-apps-apk-samsung-galaxy-watch-4/?utm_content=cmp-true) to side-load (i.e. transfer) aaps-wear.apk onto the smartwatch using Easy Fire tools - Next step > accept the authorisation request on the smartwatch - -![image](../images/2c398a34-b865-4aa1-9c53-d83dfef052a7.png) +![image](../images/wearos/easyfire07.png) (BuildingAapsWearOs-WearOS5-TShoot)= ### Using the terminal -Connect your smartwatch and computer to the same wifi network. +Connect your smartwatch and computer to the same Wi-Fi network. - To install ADB download it from: https://developer.android.com/tools/releases/platform-tools - Open a terminal. -- After installation of ADB for windows set the path to the folder where ADB is located: `setx PATH "%PATH%;C:\platform-tools"` +- For Windows, create a new folder named `adb` under your disk `C:`. Open the `platform-tools-latest-windows.zip` file you downloaded above. Copy all files inside `platform-tools` to `C:\adb` and open this folder with a command prompt (right click and Open in Terminal). Type the command below to set the path to the folder where ADB is located: `setx PATH "%PATH%;C:\adb"` - For Mac instead of installing manually you can use homebrew: `brew install android-platform-tools` On the watch: @@ -149,12 +149,12 @@ On the watch: - Go to Settings → Developer options. Enable **ADB debugging** - Go to Settings → Developer options → Wireless debugging → **Pair new device** -You will see a wifi pariing code and ipaddress and port appearing: -Screenshot 2025-12-21 at 17 46 42 -- In the terminal: `adb pair ipaddress:port` E.g. `adb pair 10.10.1.125:36443` +You will see a Wi-Fi paring code and IP address and port appearing: ![image](../images/wearos/ADB03.png) + +- In the terminal: `adb pair ipaddress:port` E.g. `adb pair 10.10.1.125:36299` - You will be asked for the pairing code. Enter it. -- You will see a response:
`Successfully paired to 10.10.1.125:36443 [guid=adb-RXXXW20LMKJY-eh5zBj]`
-- In the terminal type:
`adb devices`.
You should see something like:
`List of devices attached`
`10.10.1.125:45559 offline`
`adb-RFAW20LMKJY-eh5zBj._adb-tls-connect._tcp device`
+- You will see a response:
`Successfully paired to 10.10.1.125:36299 [guid=adb-RXXXW20LMKJY-eh5zBj]`
+- In the terminal type:
`adb devices`.
You should see something like:
`List of devices attached`
`10.10.1.125:36299 offline`
`adb-RFAW20LMKJY-eh5zBj._adb-tls-connect._tcp device`
- Now go to the folder on your computer where the Wear apk is and type
`adb install wear-full.apk`
with wear.apk replaced by the name of your apk file. - You will see:
`Performing Streamed Install`
`Success` @@ -165,7 +165,7 @@ You will see a wifi pariing code and ipaddress and port appearing: - Do not use Wi-Fi Tethering. That won't work. - You do not need to enable adb debugging on the phone (only on the watch). Disable adb debugging on the Phone. - Make sure you are connecting to your local network where phone and watch can see each other (do not use your Wi-Fi guest network to connect). -- For GW7 you need to install using Wear Installer as it gives you the option to select the AAPS(Custom) watchface on installation. +- For GW7 you need to install using Wear Installer 2 as it gives you the option to select the AAPS (Custom) watchface on installation. - Make sure both watch and phone are on the same network and Wi-Fi device. Especially Wi-Fi repeaters or access points may create problems. - Make sure to be near your main router, then restart both phone and watch. diff --git a/docs/CROWDIN/fr/images/wearos/ADB03.png b/docs/CROWDIN/fr/images/wearos/ADB03.png new file mode 100644 index 000000000000..63fb435b2f0e Binary files /dev/null and b/docs/CROWDIN/fr/images/wearos/ADB03.png differ diff --git a/docs/CROWDIN/fr/images/wearos/easyfire02.png b/docs/CROWDIN/fr/images/wearos/easyfire02.png new file mode 100644 index 000000000000..e0050e5fc5d8 Binary files /dev/null and b/docs/CROWDIN/fr/images/wearos/easyfire02.png differ diff --git a/docs/CROWDIN/fr/images/wearos/easyfire03.png b/docs/CROWDIN/fr/images/wearos/easyfire03.png new file mode 100644 index 000000000000..c1309b7ab89a Binary files /dev/null and b/docs/CROWDIN/fr/images/wearos/easyfire03.png differ diff --git a/docs/CROWDIN/fr/images/wearos/easyfire04.png b/docs/CROWDIN/fr/images/wearos/easyfire04.png new file mode 100644 index 000000000000..a771738aa067 Binary files /dev/null and b/docs/CROWDIN/fr/images/wearos/easyfire04.png differ diff --git a/docs/CROWDIN/fr/images/wearos/easyfire05.png b/docs/CROWDIN/fr/images/wearos/easyfire05.png new file mode 100644 index 000000000000..0d8136765a9f Binary files /dev/null and b/docs/CROWDIN/fr/images/wearos/easyfire05.png differ diff --git a/docs/CROWDIN/fr/images/wearos/easyfire06.png b/docs/CROWDIN/fr/images/wearos/easyfire06.png new file mode 100644 index 000000000000..d048886e188d Binary files /dev/null and b/docs/CROWDIN/fr/images/wearos/easyfire06.png differ diff --git a/docs/CROWDIN/fr/images/wearos/easyfire07.png b/docs/CROWDIN/fr/images/wearos/easyfire07.png new file mode 100644 index 000000000000..70bcf2f53a91 Binary files /dev/null and b/docs/CROWDIN/fr/images/wearos/easyfire07.png differ diff --git a/docs/CROWDIN/he/WearOS/WearOsSmartwatch.md b/docs/CROWDIN/he/WearOS/WearOsSmartwatch.md index c6226fe67cd0..60de383aa43d 100644 --- a/docs/CROWDIN/he/WearOS/WearOsSmartwatch.md +++ b/docs/CROWDIN/he/WearOS/WearOsSmartwatch.md @@ -98,49 +98,49 @@ Alternatively, but not for Wear OS 5, you can: ### Use Easy Fire tools to side-load the **AAPS** wear on the watch -1) Download _Easy Fire Tools_ from playstore onto phone +1) Download _[Easy Fire Tools](https://play.google.com/store/apps/details?id=de.agondev.easyfiretools&hl=en)_ from the Play Store onto phone -![image](../images/81ceb8f3-dfa6-468b-b9d0-c31b885bc104.png) +![image](../images/wearos/easyfire01.png) 2) Make yourself a developer in the watch (once set up and connected to phone): -Go to settings >about watch (bottom option) >- software info > software version. +Go to settings >about watch (bottom option) -> software info -> software version. -Rapidly tap on “ software version” until a notification appears that the watch is now in "developer mode". Return to the top of settings menu, scroll to the bottom and see “developer options” below “about watch”. +![image](../images/wearos/easyfire02.png) -In “developer options”, turn on “ADB debugging” and “wireless debugging”. The latter option then reveals the IP address of the watch, the final two digits of which changes each time the watch is paired with a new phone. It will be something like: **167.177.0.20.** 5555 (ignore the last 4 digits). Note that the last two digits (here, “20”) of this address will change every time you change to a new phone handset for AAPS. +Rapidly tap on “ software version” until a notification appears that the watch is now in "developer mode". -![24-10-23, watch ADB debug pic](../images/643f4e8b-09f3-4a8d-8277-76b1839a5c3a.png) +![image](../images/wearos/easyfire03.png) -STEP 3) Enter IP address _e.g._ **167.177.0.20** into Easy Fire tools on the phone (go into the left hamburger, settings and enter the IP address). Then click the plug socket icon on the top right. +Return to the top of settings menu, scroll to the bottom and see “developer options” below “about watch”. -![image](../images/b927041f-cc53-4cde-9f77-11cd517c9be0.png) +In “developer options”, turn on “ADB debugging” and “wireless debugging”. The latter option then reveals the IP address of the watch, the final two digits of which changes each time the watch is paired with a new phone. It will be something like: **192.168.1.214**.5555 (ignore the last 4 digits). Note that the last two digits (here, “20”) of this address will change every time you change to a new phone handset for AAPS. +![image](../images/wearos/easyfire04.png) -![image](../images/00b2fb8b-5996-4b71-894e-516d63469e1b.png) +STEP 3) Enter IP address _e.g._ **192.168.1.214** into Easy Fire tools on the phone (go into the left hamburger, settings and enter the IP address). +![image](../images/wearos/easyfire05.png) -STEP 4) Follow the instructions [here](https://wearablestouse.com/blog/2022/01/04/install-apps-apk-samsung-galaxy-watch-4/?utm_content=cmp-true) to side-load (i.e. transfer) Wear.apk onto the smartwatch using Easy Fire tools +Then click the plug socket icon on the top right. It will turn green when connected. -Click side "plug-in" socket in the app, in order to upload Wear OS.apk onto the smartwatch: +![image](../images/wearos/easyfire06.png) -![image](../images/d1bc4c9d-d5ef-4402-a9a2-a51ed242eff3.png) +STEP 4) Follow the instructions [here](https://wearablestouse.com/blog/2022/01/04/install-apps-apk-samsung-galaxy-watch-4/?utm_content=cmp-true) to side-load (i.e. transfer) aaps-wear.apk onto the smartwatch using Easy Fire tools - Next step > accept the authorisation request on the smartwatch - -![image](../images/2c398a34-b865-4aa1-9c53-d83dfef052a7.png) +![image](../images/wearos/easyfire07.png) (BuildingAapsWearOs-WearOS5-TShoot)= ### Using the terminal -Connect your smartwatch and computer to the same wifi network. +Connect your smartwatch and computer to the same Wi-Fi network. - To install ADB download it from: https://developer.android.com/tools/releases/platform-tools - Open a terminal. -- After installation of ADB for windows set the path to the folder where ADB is located: `setx PATH "%PATH%;C:\platform-tools"` +- For Windows, create a new folder named `adb` under your disk `C:`. Open the `platform-tools-latest-windows.zip` file you downloaded above. Copy all files inside `platform-tools` to `C:\adb` and open this folder with a command prompt (right click and Open in Terminal). Type the command below to set the path to the folder where ADB is located: `setx PATH "%PATH%;C:\adb"` - For Mac instead of installing manually you can use homebrew: `brew install android-platform-tools` On the watch: @@ -149,12 +149,12 @@ On the watch: - Go to Settings → Developer options. Enable **ADB debugging** - Go to Settings → Developer options → Wireless debugging → **Pair new device** -You will see a wifi pariing code and ipaddress and port appearing: -Screenshot 2025-12-21 at 17 46 42 -- In the terminal: `adb pair ipaddress:port` E.g. `adb pair 10.10.1.125:36443` +You will see a Wi-Fi paring code and IP address and port appearing: ![image](../images/wearos/ADB03.png) + +- In the terminal: `adb pair ipaddress:port` E.g. `adb pair 10.10.1.125:36299` - You will be asked for the pairing code. Enter it. -- You will see a response:
`Successfully paired to 10.10.1.125:36443 [guid=adb-RXXXW20LMKJY-eh5zBj]`
-- In the terminal type:
`adb devices`.
You should see something like:
`List of devices attached`
`10.10.1.125:45559 offline`
`adb-RFAW20LMKJY-eh5zBj._adb-tls-connect._tcp device`
+- You will see a response:
`Successfully paired to 10.10.1.125:36299 [guid=adb-RXXXW20LMKJY-eh5zBj]`
+- In the terminal type:
`adb devices`.
You should see something like:
`List of devices attached`
`10.10.1.125:36299 offline`
`adb-RFAW20LMKJY-eh5zBj._adb-tls-connect._tcp device`
- Now go to the folder on your computer where the Wear apk is and type
`adb install wear-full.apk`
with wear.apk replaced by the name of your apk file. - You will see:
`Performing Streamed Install`
`Success` @@ -165,7 +165,7 @@ You will see a wifi pariing code and ipaddress and port appearing: - Do not use Wi-Fi Tethering. That won't work. - You do not need to enable adb debugging on the phone (only on the watch). Disable adb debugging on the Phone. - Make sure you are connecting to your local network where phone and watch can see each other (do not use your Wi-Fi guest network to connect). -- For GW7 you need to install using Wear Installer as it gives you the option to select the AAPS(Custom) watchface on installation. +- For GW7 you need to install using Wear Installer 2 as it gives you the option to select the AAPS (Custom) watchface on installation. - Make sure both watch and phone are on the same network and Wi-Fi device. Especially Wi-Fi repeaters or access points may create problems. - Make sure to be near your main router, then restart both phone and watch. diff --git a/docs/CROWDIN/he/images/wearos/ADB03.png b/docs/CROWDIN/he/images/wearos/ADB03.png new file mode 100644 index 000000000000..63fb435b2f0e Binary files /dev/null and b/docs/CROWDIN/he/images/wearos/ADB03.png differ diff --git a/docs/CROWDIN/he/images/wearos/easyfire02.png b/docs/CROWDIN/he/images/wearos/easyfire02.png new file mode 100644 index 000000000000..e0050e5fc5d8 Binary files /dev/null and b/docs/CROWDIN/he/images/wearos/easyfire02.png differ diff --git a/docs/CROWDIN/he/images/wearos/easyfire03.png b/docs/CROWDIN/he/images/wearos/easyfire03.png new file mode 100644 index 000000000000..c1309b7ab89a Binary files /dev/null and b/docs/CROWDIN/he/images/wearos/easyfire03.png differ diff --git a/docs/CROWDIN/he/images/wearos/easyfire04.png b/docs/CROWDIN/he/images/wearos/easyfire04.png new file mode 100644 index 000000000000..a771738aa067 Binary files /dev/null and b/docs/CROWDIN/he/images/wearos/easyfire04.png differ diff --git a/docs/CROWDIN/he/images/wearos/easyfire05.png b/docs/CROWDIN/he/images/wearos/easyfire05.png new file mode 100644 index 000000000000..0d8136765a9f Binary files /dev/null and b/docs/CROWDIN/he/images/wearos/easyfire05.png differ diff --git a/docs/CROWDIN/he/images/wearos/easyfire06.png b/docs/CROWDIN/he/images/wearos/easyfire06.png new file mode 100644 index 000000000000..d048886e188d Binary files /dev/null and b/docs/CROWDIN/he/images/wearos/easyfire06.png differ diff --git a/docs/CROWDIN/he/images/wearos/easyfire07.png b/docs/CROWDIN/he/images/wearos/easyfire07.png new file mode 100644 index 000000000000..70bcf2f53a91 Binary files /dev/null and b/docs/CROWDIN/he/images/wearos/easyfire07.png differ diff --git a/docs/CROWDIN/ko/WearOS/WearOsSmartwatch.md b/docs/CROWDIN/ko/WearOS/WearOsSmartwatch.md index c6226fe67cd0..60de383aa43d 100644 --- a/docs/CROWDIN/ko/WearOS/WearOsSmartwatch.md +++ b/docs/CROWDIN/ko/WearOS/WearOsSmartwatch.md @@ -98,49 +98,49 @@ Alternatively, but not for Wear OS 5, you can: ### Use Easy Fire tools to side-load the **AAPS** wear on the watch -1) Download _Easy Fire Tools_ from playstore onto phone +1) Download _[Easy Fire Tools](https://play.google.com/store/apps/details?id=de.agondev.easyfiretools&hl=en)_ from the Play Store onto phone -![image](../images/81ceb8f3-dfa6-468b-b9d0-c31b885bc104.png) +![image](../images/wearos/easyfire01.png) 2) Make yourself a developer in the watch (once set up and connected to phone): -Go to settings >about watch (bottom option) >- software info > software version. +Go to settings >about watch (bottom option) -> software info -> software version. -Rapidly tap on “ software version” until a notification appears that the watch is now in "developer mode". Return to the top of settings menu, scroll to the bottom and see “developer options” below “about watch”. +![image](../images/wearos/easyfire02.png) -In “developer options”, turn on “ADB debugging” and “wireless debugging”. The latter option then reveals the IP address of the watch, the final two digits of which changes each time the watch is paired with a new phone. It will be something like: **167.177.0.20.** 5555 (ignore the last 4 digits). Note that the last two digits (here, “20”) of this address will change every time you change to a new phone handset for AAPS. +Rapidly tap on “ software version” until a notification appears that the watch is now in "developer mode". -![24-10-23, watch ADB debug pic](../images/643f4e8b-09f3-4a8d-8277-76b1839a5c3a.png) +![image](../images/wearos/easyfire03.png) -STEP 3) Enter IP address _e.g._ **167.177.0.20** into Easy Fire tools on the phone (go into the left hamburger, settings and enter the IP address). Then click the plug socket icon on the top right. +Return to the top of settings menu, scroll to the bottom and see “developer options” below “about watch”. -![image](../images/b927041f-cc53-4cde-9f77-11cd517c9be0.png) +In “developer options”, turn on “ADB debugging” and “wireless debugging”. The latter option then reveals the IP address of the watch, the final two digits of which changes each time the watch is paired with a new phone. It will be something like: **192.168.1.214**.5555 (ignore the last 4 digits). Note that the last two digits (here, “20”) of this address will change every time you change to a new phone handset for AAPS. +![image](../images/wearos/easyfire04.png) -![image](../images/00b2fb8b-5996-4b71-894e-516d63469e1b.png) +STEP 3) Enter IP address _e.g._ **192.168.1.214** into Easy Fire tools on the phone (go into the left hamburger, settings and enter the IP address). +![image](../images/wearos/easyfire05.png) -STEP 4) Follow the instructions [here](https://wearablestouse.com/blog/2022/01/04/install-apps-apk-samsung-galaxy-watch-4/?utm_content=cmp-true) to side-load (i.e. transfer) Wear.apk onto the smartwatch using Easy Fire tools +Then click the plug socket icon on the top right. It will turn green when connected. -Click side "plug-in" socket in the app, in order to upload Wear OS.apk onto the smartwatch: +![image](../images/wearos/easyfire06.png) -![image](../images/d1bc4c9d-d5ef-4402-a9a2-a51ed242eff3.png) +STEP 4) Follow the instructions [here](https://wearablestouse.com/blog/2022/01/04/install-apps-apk-samsung-galaxy-watch-4/?utm_content=cmp-true) to side-load (i.e. transfer) aaps-wear.apk onto the smartwatch using Easy Fire tools - Next step > accept the authorisation request on the smartwatch - -![image](../images/2c398a34-b865-4aa1-9c53-d83dfef052a7.png) +![image](../images/wearos/easyfire07.png) (BuildingAapsWearOs-WearOS5-TShoot)= ### Using the terminal -Connect your smartwatch and computer to the same wifi network. +Connect your smartwatch and computer to the same Wi-Fi network. - To install ADB download it from: https://developer.android.com/tools/releases/platform-tools - Open a terminal. -- After installation of ADB for windows set the path to the folder where ADB is located: `setx PATH "%PATH%;C:\platform-tools"` +- For Windows, create a new folder named `adb` under your disk `C:`. Open the `platform-tools-latest-windows.zip` file you downloaded above. Copy all files inside `platform-tools` to `C:\adb` and open this folder with a command prompt (right click and Open in Terminal). Type the command below to set the path to the folder where ADB is located: `setx PATH "%PATH%;C:\adb"` - For Mac instead of installing manually you can use homebrew: `brew install android-platform-tools` On the watch: @@ -149,12 +149,12 @@ On the watch: - Go to Settings → Developer options. Enable **ADB debugging** - Go to Settings → Developer options → Wireless debugging → **Pair new device** -You will see a wifi pariing code and ipaddress and port appearing: -Screenshot 2025-12-21 at 17 46 42 -- In the terminal: `adb pair ipaddress:port` E.g. `adb pair 10.10.1.125:36443` +You will see a Wi-Fi paring code and IP address and port appearing: ![image](../images/wearos/ADB03.png) + +- In the terminal: `adb pair ipaddress:port` E.g. `adb pair 10.10.1.125:36299` - You will be asked for the pairing code. Enter it. -- You will see a response:
`Successfully paired to 10.10.1.125:36443 [guid=adb-RXXXW20LMKJY-eh5zBj]`
-- In the terminal type:
`adb devices`.
You should see something like:
`List of devices attached`
`10.10.1.125:45559 offline`
`adb-RFAW20LMKJY-eh5zBj._adb-tls-connect._tcp device`
+- You will see a response:
`Successfully paired to 10.10.1.125:36299 [guid=adb-RXXXW20LMKJY-eh5zBj]`
+- In the terminal type:
`adb devices`.
You should see something like:
`List of devices attached`
`10.10.1.125:36299 offline`
`adb-RFAW20LMKJY-eh5zBj._adb-tls-connect._tcp device`
- Now go to the folder on your computer where the Wear apk is and type
`adb install wear-full.apk`
with wear.apk replaced by the name of your apk file. - You will see:
`Performing Streamed Install`
`Success` @@ -165,7 +165,7 @@ You will see a wifi pariing code and ipaddress and port appearing: - Do not use Wi-Fi Tethering. That won't work. - You do not need to enable adb debugging on the phone (only on the watch). Disable adb debugging on the Phone. - Make sure you are connecting to your local network where phone and watch can see each other (do not use your Wi-Fi guest network to connect). -- For GW7 you need to install using Wear Installer as it gives you the option to select the AAPS(Custom) watchface on installation. +- For GW7 you need to install using Wear Installer 2 as it gives you the option to select the AAPS (Custom) watchface on installation. - Make sure both watch and phone are on the same network and Wi-Fi device. Especially Wi-Fi repeaters or access points may create problems. - Make sure to be near your main router, then restart both phone and watch. diff --git a/docs/CROWDIN/ko/images/wearos/ADB03.png b/docs/CROWDIN/ko/images/wearos/ADB03.png new file mode 100644 index 000000000000..63fb435b2f0e Binary files /dev/null and b/docs/CROWDIN/ko/images/wearos/ADB03.png differ diff --git a/docs/CROWDIN/ko/images/wearos/easyfire02.png b/docs/CROWDIN/ko/images/wearos/easyfire02.png new file mode 100644 index 000000000000..e0050e5fc5d8 Binary files /dev/null and b/docs/CROWDIN/ko/images/wearos/easyfire02.png differ diff --git a/docs/CROWDIN/ko/images/wearos/easyfire03.png b/docs/CROWDIN/ko/images/wearos/easyfire03.png new file mode 100644 index 000000000000..c1309b7ab89a Binary files /dev/null and b/docs/CROWDIN/ko/images/wearos/easyfire03.png differ diff --git a/docs/CROWDIN/ko/images/wearos/easyfire04.png b/docs/CROWDIN/ko/images/wearos/easyfire04.png new file mode 100644 index 000000000000..a771738aa067 Binary files /dev/null and b/docs/CROWDIN/ko/images/wearos/easyfire04.png differ diff --git a/docs/CROWDIN/ko/images/wearos/easyfire05.png b/docs/CROWDIN/ko/images/wearos/easyfire05.png new file mode 100644 index 000000000000..0d8136765a9f Binary files /dev/null and b/docs/CROWDIN/ko/images/wearos/easyfire05.png differ diff --git a/docs/CROWDIN/ko/images/wearos/easyfire06.png b/docs/CROWDIN/ko/images/wearos/easyfire06.png new file mode 100644 index 000000000000..d048886e188d Binary files /dev/null and b/docs/CROWDIN/ko/images/wearos/easyfire06.png differ diff --git a/docs/CROWDIN/ko/images/wearos/easyfire07.png b/docs/CROWDIN/ko/images/wearos/easyfire07.png new file mode 100644 index 000000000000..70bcf2f53a91 Binary files /dev/null and b/docs/CROWDIN/ko/images/wearos/easyfire07.png differ diff --git a/docs/CROWDIN/lt/WearOS/WearOsSmartwatch.md b/docs/CROWDIN/lt/WearOS/WearOsSmartwatch.md index c6226fe67cd0..60de383aa43d 100644 --- a/docs/CROWDIN/lt/WearOS/WearOsSmartwatch.md +++ b/docs/CROWDIN/lt/WearOS/WearOsSmartwatch.md @@ -98,49 +98,49 @@ Alternatively, but not for Wear OS 5, you can: ### Use Easy Fire tools to side-load the **AAPS** wear on the watch -1) Download _Easy Fire Tools_ from playstore onto phone +1) Download _[Easy Fire Tools](https://play.google.com/store/apps/details?id=de.agondev.easyfiretools&hl=en)_ from the Play Store onto phone -![image](../images/81ceb8f3-dfa6-468b-b9d0-c31b885bc104.png) +![image](../images/wearos/easyfire01.png) 2) Make yourself a developer in the watch (once set up and connected to phone): -Go to settings >about watch (bottom option) >- software info > software version. +Go to settings >about watch (bottom option) -> software info -> software version. -Rapidly tap on “ software version” until a notification appears that the watch is now in "developer mode". Return to the top of settings menu, scroll to the bottom and see “developer options” below “about watch”. +![image](../images/wearos/easyfire02.png) -In “developer options”, turn on “ADB debugging” and “wireless debugging”. The latter option then reveals the IP address of the watch, the final two digits of which changes each time the watch is paired with a new phone. It will be something like: **167.177.0.20.** 5555 (ignore the last 4 digits). Note that the last two digits (here, “20”) of this address will change every time you change to a new phone handset for AAPS. +Rapidly tap on “ software version” until a notification appears that the watch is now in "developer mode". -![24-10-23, watch ADB debug pic](../images/643f4e8b-09f3-4a8d-8277-76b1839a5c3a.png) +![image](../images/wearos/easyfire03.png) -STEP 3) Enter IP address _e.g._ **167.177.0.20** into Easy Fire tools on the phone (go into the left hamburger, settings and enter the IP address). Then click the plug socket icon on the top right. +Return to the top of settings menu, scroll to the bottom and see “developer options” below “about watch”. -![image](../images/b927041f-cc53-4cde-9f77-11cd517c9be0.png) +In “developer options”, turn on “ADB debugging” and “wireless debugging”. The latter option then reveals the IP address of the watch, the final two digits of which changes each time the watch is paired with a new phone. It will be something like: **192.168.1.214**.5555 (ignore the last 4 digits). Note that the last two digits (here, “20”) of this address will change every time you change to a new phone handset for AAPS. +![image](../images/wearos/easyfire04.png) -![image](../images/00b2fb8b-5996-4b71-894e-516d63469e1b.png) +STEP 3) Enter IP address _e.g._ **192.168.1.214** into Easy Fire tools on the phone (go into the left hamburger, settings and enter the IP address). +![image](../images/wearos/easyfire05.png) -STEP 4) Follow the instructions [here](https://wearablestouse.com/blog/2022/01/04/install-apps-apk-samsung-galaxy-watch-4/?utm_content=cmp-true) to side-load (i.e. transfer) Wear.apk onto the smartwatch using Easy Fire tools +Then click the plug socket icon on the top right. It will turn green when connected. -Click side "plug-in" socket in the app, in order to upload Wear OS.apk onto the smartwatch: +![image](../images/wearos/easyfire06.png) -![image](../images/d1bc4c9d-d5ef-4402-a9a2-a51ed242eff3.png) +STEP 4) Follow the instructions [here](https://wearablestouse.com/blog/2022/01/04/install-apps-apk-samsung-galaxy-watch-4/?utm_content=cmp-true) to side-load (i.e. transfer) aaps-wear.apk onto the smartwatch using Easy Fire tools - Next step > accept the authorisation request on the smartwatch - -![image](../images/2c398a34-b865-4aa1-9c53-d83dfef052a7.png) +![image](../images/wearos/easyfire07.png) (BuildingAapsWearOs-WearOS5-TShoot)= ### Using the terminal -Connect your smartwatch and computer to the same wifi network. +Connect your smartwatch and computer to the same Wi-Fi network. - To install ADB download it from: https://developer.android.com/tools/releases/platform-tools - Open a terminal. -- After installation of ADB for windows set the path to the folder where ADB is located: `setx PATH "%PATH%;C:\platform-tools"` +- For Windows, create a new folder named `adb` under your disk `C:`. Open the `platform-tools-latest-windows.zip` file you downloaded above. Copy all files inside `platform-tools` to `C:\adb` and open this folder with a command prompt (right click and Open in Terminal). Type the command below to set the path to the folder where ADB is located: `setx PATH "%PATH%;C:\adb"` - For Mac instead of installing manually you can use homebrew: `brew install android-platform-tools` On the watch: @@ -149,12 +149,12 @@ On the watch: - Go to Settings → Developer options. Enable **ADB debugging** - Go to Settings → Developer options → Wireless debugging → **Pair new device** -You will see a wifi pariing code and ipaddress and port appearing: -Screenshot 2025-12-21 at 17 46 42 -- In the terminal: `adb pair ipaddress:port` E.g. `adb pair 10.10.1.125:36443` +You will see a Wi-Fi paring code and IP address and port appearing: ![image](../images/wearos/ADB03.png) + +- In the terminal: `adb pair ipaddress:port` E.g. `adb pair 10.10.1.125:36299` - You will be asked for the pairing code. Enter it. -- You will see a response:
`Successfully paired to 10.10.1.125:36443 [guid=adb-RXXXW20LMKJY-eh5zBj]`
-- In the terminal type:
`adb devices`.
You should see something like:
`List of devices attached`
`10.10.1.125:45559 offline`
`adb-RFAW20LMKJY-eh5zBj._adb-tls-connect._tcp device`
+- You will see a response:
`Successfully paired to 10.10.1.125:36299 [guid=adb-RXXXW20LMKJY-eh5zBj]`
+- In the terminal type:
`adb devices`.
You should see something like:
`List of devices attached`
`10.10.1.125:36299 offline`
`adb-RFAW20LMKJY-eh5zBj._adb-tls-connect._tcp device`
- Now go to the folder on your computer where the Wear apk is and type
`adb install wear-full.apk`
with wear.apk replaced by the name of your apk file. - You will see:
`Performing Streamed Install`
`Success` @@ -165,7 +165,7 @@ You will see a wifi pariing code and ipaddress and port appearing: - Do not use Wi-Fi Tethering. That won't work. - You do not need to enable adb debugging on the phone (only on the watch). Disable adb debugging on the Phone. - Make sure you are connecting to your local network where phone and watch can see each other (do not use your Wi-Fi guest network to connect). -- For GW7 you need to install using Wear Installer as it gives you the option to select the AAPS(Custom) watchface on installation. +- For GW7 you need to install using Wear Installer 2 as it gives you the option to select the AAPS (Custom) watchface on installation. - Make sure both watch and phone are on the same network and Wi-Fi device. Especially Wi-Fi repeaters or access points may create problems. - Make sure to be near your main router, then restart both phone and watch. diff --git a/docs/CROWDIN/lt/images/wearos/ADB03.png b/docs/CROWDIN/lt/images/wearos/ADB03.png new file mode 100644 index 000000000000..63fb435b2f0e Binary files /dev/null and b/docs/CROWDIN/lt/images/wearos/ADB03.png differ diff --git a/docs/CROWDIN/lt/images/wearos/easyfire02.png b/docs/CROWDIN/lt/images/wearos/easyfire02.png new file mode 100644 index 000000000000..e0050e5fc5d8 Binary files /dev/null and b/docs/CROWDIN/lt/images/wearos/easyfire02.png differ diff --git a/docs/CROWDIN/lt/images/wearos/easyfire03.png b/docs/CROWDIN/lt/images/wearos/easyfire03.png new file mode 100644 index 000000000000..c1309b7ab89a Binary files /dev/null and b/docs/CROWDIN/lt/images/wearos/easyfire03.png differ diff --git a/docs/CROWDIN/lt/images/wearos/easyfire04.png b/docs/CROWDIN/lt/images/wearos/easyfire04.png new file mode 100644 index 000000000000..a771738aa067 Binary files /dev/null and b/docs/CROWDIN/lt/images/wearos/easyfire04.png differ diff --git a/docs/CROWDIN/lt/images/wearos/easyfire05.png b/docs/CROWDIN/lt/images/wearos/easyfire05.png new file mode 100644 index 000000000000..0d8136765a9f Binary files /dev/null and b/docs/CROWDIN/lt/images/wearos/easyfire05.png differ diff --git a/docs/CROWDIN/lt/images/wearos/easyfire06.png b/docs/CROWDIN/lt/images/wearos/easyfire06.png new file mode 100644 index 000000000000..d048886e188d Binary files /dev/null and b/docs/CROWDIN/lt/images/wearos/easyfire06.png differ diff --git a/docs/CROWDIN/lt/images/wearos/easyfire07.png b/docs/CROWDIN/lt/images/wearos/easyfire07.png new file mode 100644 index 000000000000..70bcf2f53a91 Binary files /dev/null and b/docs/CROWDIN/lt/images/wearos/easyfire07.png differ diff --git a/docs/CROWDIN/nl/WearOS/WearOsSmartwatch.md b/docs/CROWDIN/nl/WearOS/WearOsSmartwatch.md index c6226fe67cd0..60de383aa43d 100644 --- a/docs/CROWDIN/nl/WearOS/WearOsSmartwatch.md +++ b/docs/CROWDIN/nl/WearOS/WearOsSmartwatch.md @@ -98,49 +98,49 @@ Alternatively, but not for Wear OS 5, you can: ### Use Easy Fire tools to side-load the **AAPS** wear on the watch -1) Download _Easy Fire Tools_ from playstore onto phone +1) Download _[Easy Fire Tools](https://play.google.com/store/apps/details?id=de.agondev.easyfiretools&hl=en)_ from the Play Store onto phone -![image](../images/81ceb8f3-dfa6-468b-b9d0-c31b885bc104.png) +![image](../images/wearos/easyfire01.png) 2) Make yourself a developer in the watch (once set up and connected to phone): -Go to settings >about watch (bottom option) >- software info > software version. +Go to settings >about watch (bottom option) -> software info -> software version. -Rapidly tap on “ software version” until a notification appears that the watch is now in "developer mode". Return to the top of settings menu, scroll to the bottom and see “developer options” below “about watch”. +![image](../images/wearos/easyfire02.png) -In “developer options”, turn on “ADB debugging” and “wireless debugging”. The latter option then reveals the IP address of the watch, the final two digits of which changes each time the watch is paired with a new phone. It will be something like: **167.177.0.20.** 5555 (ignore the last 4 digits). Note that the last two digits (here, “20”) of this address will change every time you change to a new phone handset for AAPS. +Rapidly tap on “ software version” until a notification appears that the watch is now in "developer mode". -![24-10-23, watch ADB debug pic](../images/643f4e8b-09f3-4a8d-8277-76b1839a5c3a.png) +![image](../images/wearos/easyfire03.png) -STEP 3) Enter IP address _e.g._ **167.177.0.20** into Easy Fire tools on the phone (go into the left hamburger, settings and enter the IP address). Then click the plug socket icon on the top right. +Return to the top of settings menu, scroll to the bottom and see “developer options” below “about watch”. -![image](../images/b927041f-cc53-4cde-9f77-11cd517c9be0.png) +In “developer options”, turn on “ADB debugging” and “wireless debugging”. The latter option then reveals the IP address of the watch, the final two digits of which changes each time the watch is paired with a new phone. It will be something like: **192.168.1.214**.5555 (ignore the last 4 digits). Note that the last two digits (here, “20”) of this address will change every time you change to a new phone handset for AAPS. +![image](../images/wearos/easyfire04.png) -![image](../images/00b2fb8b-5996-4b71-894e-516d63469e1b.png) +STEP 3) Enter IP address _e.g._ **192.168.1.214** into Easy Fire tools on the phone (go into the left hamburger, settings and enter the IP address). +![image](../images/wearos/easyfire05.png) -STEP 4) Follow the instructions [here](https://wearablestouse.com/blog/2022/01/04/install-apps-apk-samsung-galaxy-watch-4/?utm_content=cmp-true) to side-load (i.e. transfer) Wear.apk onto the smartwatch using Easy Fire tools +Then click the plug socket icon on the top right. It will turn green when connected. -Click side "plug-in" socket in the app, in order to upload Wear OS.apk onto the smartwatch: +![image](../images/wearos/easyfire06.png) -![image](../images/d1bc4c9d-d5ef-4402-a9a2-a51ed242eff3.png) +STEP 4) Follow the instructions [here](https://wearablestouse.com/blog/2022/01/04/install-apps-apk-samsung-galaxy-watch-4/?utm_content=cmp-true) to side-load (i.e. transfer) aaps-wear.apk onto the smartwatch using Easy Fire tools - Next step > accept the authorisation request on the smartwatch - -![image](../images/2c398a34-b865-4aa1-9c53-d83dfef052a7.png) +![image](../images/wearos/easyfire07.png) (BuildingAapsWearOs-WearOS5-TShoot)= ### Using the terminal -Connect your smartwatch and computer to the same wifi network. +Connect your smartwatch and computer to the same Wi-Fi network. - To install ADB download it from: https://developer.android.com/tools/releases/platform-tools - Open a terminal. -- After installation of ADB for windows set the path to the folder where ADB is located: `setx PATH "%PATH%;C:\platform-tools"` +- For Windows, create a new folder named `adb` under your disk `C:`. Open the `platform-tools-latest-windows.zip` file you downloaded above. Copy all files inside `platform-tools` to `C:\adb` and open this folder with a command prompt (right click and Open in Terminal). Type the command below to set the path to the folder where ADB is located: `setx PATH "%PATH%;C:\adb"` - For Mac instead of installing manually you can use homebrew: `brew install android-platform-tools` On the watch: @@ -149,12 +149,12 @@ On the watch: - Go to Settings → Developer options. Enable **ADB debugging** - Go to Settings → Developer options → Wireless debugging → **Pair new device** -You will see a wifi pariing code and ipaddress and port appearing: -Screenshot 2025-12-21 at 17 46 42 -- In the terminal: `adb pair ipaddress:port` E.g. `adb pair 10.10.1.125:36443` +You will see a Wi-Fi paring code and IP address and port appearing: ![image](../images/wearos/ADB03.png) + +- In the terminal: `adb pair ipaddress:port` E.g. `adb pair 10.10.1.125:36299` - You will be asked for the pairing code. Enter it. -- You will see a response:
`Successfully paired to 10.10.1.125:36443 [guid=adb-RXXXW20LMKJY-eh5zBj]`
-- In the terminal type:
`adb devices`.
You should see something like:
`List of devices attached`
`10.10.1.125:45559 offline`
`adb-RFAW20LMKJY-eh5zBj._adb-tls-connect._tcp device`
+- You will see a response:
`Successfully paired to 10.10.1.125:36299 [guid=adb-RXXXW20LMKJY-eh5zBj]`
+- In the terminal type:
`adb devices`.
You should see something like:
`List of devices attached`
`10.10.1.125:36299 offline`
`adb-RFAW20LMKJY-eh5zBj._adb-tls-connect._tcp device`
- Now go to the folder on your computer where the Wear apk is and type
`adb install wear-full.apk`
with wear.apk replaced by the name of your apk file. - You will see:
`Performing Streamed Install`
`Success` @@ -165,7 +165,7 @@ You will see a wifi pariing code and ipaddress and port appearing: - Do not use Wi-Fi Tethering. That won't work. - You do not need to enable adb debugging on the phone (only on the watch). Disable adb debugging on the Phone. - Make sure you are connecting to your local network where phone and watch can see each other (do not use your Wi-Fi guest network to connect). -- For GW7 you need to install using Wear Installer as it gives you the option to select the AAPS(Custom) watchface on installation. +- For GW7 you need to install using Wear Installer 2 as it gives you the option to select the AAPS (Custom) watchface on installation. - Make sure both watch and phone are on the same network and Wi-Fi device. Especially Wi-Fi repeaters or access points may create problems. - Make sure to be near your main router, then restart both phone and watch. diff --git a/docs/CROWDIN/nl/images/wearos/ADB03.png b/docs/CROWDIN/nl/images/wearos/ADB03.png new file mode 100644 index 000000000000..63fb435b2f0e Binary files /dev/null and b/docs/CROWDIN/nl/images/wearos/ADB03.png differ diff --git a/docs/CROWDIN/nl/images/wearos/easyfire02.png b/docs/CROWDIN/nl/images/wearos/easyfire02.png new file mode 100644 index 000000000000..e0050e5fc5d8 Binary files /dev/null and b/docs/CROWDIN/nl/images/wearos/easyfire02.png differ diff --git a/docs/CROWDIN/nl/images/wearos/easyfire03.png b/docs/CROWDIN/nl/images/wearos/easyfire03.png new file mode 100644 index 000000000000..c1309b7ab89a Binary files /dev/null and b/docs/CROWDIN/nl/images/wearos/easyfire03.png differ diff --git a/docs/CROWDIN/nl/images/wearos/easyfire04.png b/docs/CROWDIN/nl/images/wearos/easyfire04.png new file mode 100644 index 000000000000..a771738aa067 Binary files /dev/null and b/docs/CROWDIN/nl/images/wearos/easyfire04.png differ diff --git a/docs/CROWDIN/nl/images/wearos/easyfire05.png b/docs/CROWDIN/nl/images/wearos/easyfire05.png new file mode 100644 index 000000000000..0d8136765a9f Binary files /dev/null and b/docs/CROWDIN/nl/images/wearos/easyfire05.png differ diff --git a/docs/CROWDIN/nl/images/wearos/easyfire06.png b/docs/CROWDIN/nl/images/wearos/easyfire06.png new file mode 100644 index 000000000000..d048886e188d Binary files /dev/null and b/docs/CROWDIN/nl/images/wearos/easyfire06.png differ diff --git a/docs/CROWDIN/nl/images/wearos/easyfire07.png b/docs/CROWDIN/nl/images/wearos/easyfire07.png new file mode 100644 index 000000000000..70bcf2f53a91 Binary files /dev/null and b/docs/CROWDIN/nl/images/wearos/easyfire07.png differ diff --git a/docs/CROWDIN/pb/WearOS/WearOsSmartwatch.md b/docs/CROWDIN/pb/WearOS/WearOsSmartwatch.md index c6226fe67cd0..60de383aa43d 100644 --- a/docs/CROWDIN/pb/WearOS/WearOsSmartwatch.md +++ b/docs/CROWDIN/pb/WearOS/WearOsSmartwatch.md @@ -98,49 +98,49 @@ Alternatively, but not for Wear OS 5, you can: ### Use Easy Fire tools to side-load the **AAPS** wear on the watch -1) Download _Easy Fire Tools_ from playstore onto phone +1) Download _[Easy Fire Tools](https://play.google.com/store/apps/details?id=de.agondev.easyfiretools&hl=en)_ from the Play Store onto phone -![image](../images/81ceb8f3-dfa6-468b-b9d0-c31b885bc104.png) +![image](../images/wearos/easyfire01.png) 2) Make yourself a developer in the watch (once set up and connected to phone): -Go to settings >about watch (bottom option) >- software info > software version. +Go to settings >about watch (bottom option) -> software info -> software version. -Rapidly tap on “ software version” until a notification appears that the watch is now in "developer mode". Return to the top of settings menu, scroll to the bottom and see “developer options” below “about watch”. +![image](../images/wearos/easyfire02.png) -In “developer options”, turn on “ADB debugging” and “wireless debugging”. The latter option then reveals the IP address of the watch, the final two digits of which changes each time the watch is paired with a new phone. It will be something like: **167.177.0.20.** 5555 (ignore the last 4 digits). Note that the last two digits (here, “20”) of this address will change every time you change to a new phone handset for AAPS. +Rapidly tap on “ software version” until a notification appears that the watch is now in "developer mode". -![24-10-23, watch ADB debug pic](../images/643f4e8b-09f3-4a8d-8277-76b1839a5c3a.png) +![image](../images/wearos/easyfire03.png) -STEP 3) Enter IP address _e.g._ **167.177.0.20** into Easy Fire tools on the phone (go into the left hamburger, settings and enter the IP address). Then click the plug socket icon on the top right. +Return to the top of settings menu, scroll to the bottom and see “developer options” below “about watch”. -![image](../images/b927041f-cc53-4cde-9f77-11cd517c9be0.png) +In “developer options”, turn on “ADB debugging” and “wireless debugging”. The latter option then reveals the IP address of the watch, the final two digits of which changes each time the watch is paired with a new phone. It will be something like: **192.168.1.214**.5555 (ignore the last 4 digits). Note that the last two digits (here, “20”) of this address will change every time you change to a new phone handset for AAPS. +![image](../images/wearos/easyfire04.png) -![image](../images/00b2fb8b-5996-4b71-894e-516d63469e1b.png) +STEP 3) Enter IP address _e.g._ **192.168.1.214** into Easy Fire tools on the phone (go into the left hamburger, settings and enter the IP address). +![image](../images/wearos/easyfire05.png) -STEP 4) Follow the instructions [here](https://wearablestouse.com/blog/2022/01/04/install-apps-apk-samsung-galaxy-watch-4/?utm_content=cmp-true) to side-load (i.e. transfer) Wear.apk onto the smartwatch using Easy Fire tools +Then click the plug socket icon on the top right. It will turn green when connected. -Click side "plug-in" socket in the app, in order to upload Wear OS.apk onto the smartwatch: +![image](../images/wearos/easyfire06.png) -![image](../images/d1bc4c9d-d5ef-4402-a9a2-a51ed242eff3.png) +STEP 4) Follow the instructions [here](https://wearablestouse.com/blog/2022/01/04/install-apps-apk-samsung-galaxy-watch-4/?utm_content=cmp-true) to side-load (i.e. transfer) aaps-wear.apk onto the smartwatch using Easy Fire tools - Next step > accept the authorisation request on the smartwatch - -![image](../images/2c398a34-b865-4aa1-9c53-d83dfef052a7.png) +![image](../images/wearos/easyfire07.png) (BuildingAapsWearOs-WearOS5-TShoot)= ### Using the terminal -Connect your smartwatch and computer to the same wifi network. +Connect your smartwatch and computer to the same Wi-Fi network. - To install ADB download it from: https://developer.android.com/tools/releases/platform-tools - Open a terminal. -- After installation of ADB for windows set the path to the folder where ADB is located: `setx PATH "%PATH%;C:\platform-tools"` +- For Windows, create a new folder named `adb` under your disk `C:`. Open the `platform-tools-latest-windows.zip` file you downloaded above. Copy all files inside `platform-tools` to `C:\adb` and open this folder with a command prompt (right click and Open in Terminal). Type the command below to set the path to the folder where ADB is located: `setx PATH "%PATH%;C:\adb"` - For Mac instead of installing manually you can use homebrew: `brew install android-platform-tools` On the watch: @@ -149,12 +149,12 @@ On the watch: - Go to Settings → Developer options. Enable **ADB debugging** - Go to Settings → Developer options → Wireless debugging → **Pair new device** -You will see a wifi pariing code and ipaddress and port appearing: -Screenshot 2025-12-21 at 17 46 42 -- In the terminal: `adb pair ipaddress:port` E.g. `adb pair 10.10.1.125:36443` +You will see a Wi-Fi paring code and IP address and port appearing: ![image](../images/wearos/ADB03.png) + +- In the terminal: `adb pair ipaddress:port` E.g. `adb pair 10.10.1.125:36299` - You will be asked for the pairing code. Enter it. -- You will see a response:
`Successfully paired to 10.10.1.125:36443 [guid=adb-RXXXW20LMKJY-eh5zBj]`
-- In the terminal type:
`adb devices`.
You should see something like:
`List of devices attached`
`10.10.1.125:45559 offline`
`adb-RFAW20LMKJY-eh5zBj._adb-tls-connect._tcp device`
+- You will see a response:
`Successfully paired to 10.10.1.125:36299 [guid=adb-RXXXW20LMKJY-eh5zBj]`
+- In the terminal type:
`adb devices`.
You should see something like:
`List of devices attached`
`10.10.1.125:36299 offline`
`adb-RFAW20LMKJY-eh5zBj._adb-tls-connect._tcp device`
- Now go to the folder on your computer where the Wear apk is and type
`adb install wear-full.apk`
with wear.apk replaced by the name of your apk file. - You will see:
`Performing Streamed Install`
`Success` @@ -165,7 +165,7 @@ You will see a wifi pariing code and ipaddress and port appearing: - Do not use Wi-Fi Tethering. That won't work. - You do not need to enable adb debugging on the phone (only on the watch). Disable adb debugging on the Phone. - Make sure you are connecting to your local network where phone and watch can see each other (do not use your Wi-Fi guest network to connect). -- For GW7 you need to install using Wear Installer as it gives you the option to select the AAPS(Custom) watchface on installation. +- For GW7 you need to install using Wear Installer 2 as it gives you the option to select the AAPS (Custom) watchface on installation. - Make sure both watch and phone are on the same network and Wi-Fi device. Especially Wi-Fi repeaters or access points may create problems. - Make sure to be near your main router, then restart both phone and watch. diff --git a/docs/CROWDIN/pb/images/wearos/ADB03.png b/docs/CROWDIN/pb/images/wearos/ADB03.png new file mode 100644 index 000000000000..63fb435b2f0e Binary files /dev/null and b/docs/CROWDIN/pb/images/wearos/ADB03.png differ diff --git a/docs/CROWDIN/pb/images/wearos/easyfire02.png b/docs/CROWDIN/pb/images/wearos/easyfire02.png new file mode 100644 index 000000000000..e0050e5fc5d8 Binary files /dev/null and b/docs/CROWDIN/pb/images/wearos/easyfire02.png differ diff --git a/docs/CROWDIN/pb/images/wearos/easyfire03.png b/docs/CROWDIN/pb/images/wearos/easyfire03.png new file mode 100644 index 000000000000..c1309b7ab89a Binary files /dev/null and b/docs/CROWDIN/pb/images/wearos/easyfire03.png differ diff --git a/docs/CROWDIN/pb/images/wearos/easyfire04.png b/docs/CROWDIN/pb/images/wearos/easyfire04.png new file mode 100644 index 000000000000..a771738aa067 Binary files /dev/null and b/docs/CROWDIN/pb/images/wearos/easyfire04.png differ diff --git a/docs/CROWDIN/pb/images/wearos/easyfire05.png b/docs/CROWDIN/pb/images/wearos/easyfire05.png new file mode 100644 index 000000000000..0d8136765a9f Binary files /dev/null and b/docs/CROWDIN/pb/images/wearos/easyfire05.png differ diff --git a/docs/CROWDIN/pb/images/wearos/easyfire06.png b/docs/CROWDIN/pb/images/wearos/easyfire06.png new file mode 100644 index 000000000000..d048886e188d Binary files /dev/null and b/docs/CROWDIN/pb/images/wearos/easyfire06.png differ diff --git a/docs/CROWDIN/pb/images/wearos/easyfire07.png b/docs/CROWDIN/pb/images/wearos/easyfire07.png new file mode 100644 index 000000000000..70bcf2f53a91 Binary files /dev/null and b/docs/CROWDIN/pb/images/wearos/easyfire07.png differ diff --git a/docs/CROWDIN/pl/WearOS/WearOsSmartwatch.md b/docs/CROWDIN/pl/WearOS/WearOsSmartwatch.md index c6226fe67cd0..60de383aa43d 100644 --- a/docs/CROWDIN/pl/WearOS/WearOsSmartwatch.md +++ b/docs/CROWDIN/pl/WearOS/WearOsSmartwatch.md @@ -98,49 +98,49 @@ Alternatively, but not for Wear OS 5, you can: ### Use Easy Fire tools to side-load the **AAPS** wear on the watch -1) Download _Easy Fire Tools_ from playstore onto phone +1) Download _[Easy Fire Tools](https://play.google.com/store/apps/details?id=de.agondev.easyfiretools&hl=en)_ from the Play Store onto phone -![image](../images/81ceb8f3-dfa6-468b-b9d0-c31b885bc104.png) +![image](../images/wearos/easyfire01.png) 2) Make yourself a developer in the watch (once set up and connected to phone): -Go to settings >about watch (bottom option) >- software info > software version. +Go to settings >about watch (bottom option) -> software info -> software version. -Rapidly tap on “ software version” until a notification appears that the watch is now in "developer mode". Return to the top of settings menu, scroll to the bottom and see “developer options” below “about watch”. +![image](../images/wearos/easyfire02.png) -In “developer options”, turn on “ADB debugging” and “wireless debugging”. The latter option then reveals the IP address of the watch, the final two digits of which changes each time the watch is paired with a new phone. It will be something like: **167.177.0.20.** 5555 (ignore the last 4 digits). Note that the last two digits (here, “20”) of this address will change every time you change to a new phone handset for AAPS. +Rapidly tap on “ software version” until a notification appears that the watch is now in "developer mode". -![24-10-23, watch ADB debug pic](../images/643f4e8b-09f3-4a8d-8277-76b1839a5c3a.png) +![image](../images/wearos/easyfire03.png) -STEP 3) Enter IP address _e.g._ **167.177.0.20** into Easy Fire tools on the phone (go into the left hamburger, settings and enter the IP address). Then click the plug socket icon on the top right. +Return to the top of settings menu, scroll to the bottom and see “developer options” below “about watch”. -![image](../images/b927041f-cc53-4cde-9f77-11cd517c9be0.png) +In “developer options”, turn on “ADB debugging” and “wireless debugging”. The latter option then reveals the IP address of the watch, the final two digits of which changes each time the watch is paired with a new phone. It will be something like: **192.168.1.214**.5555 (ignore the last 4 digits). Note that the last two digits (here, “20”) of this address will change every time you change to a new phone handset for AAPS. +![image](../images/wearos/easyfire04.png) -![image](../images/00b2fb8b-5996-4b71-894e-516d63469e1b.png) +STEP 3) Enter IP address _e.g._ **192.168.1.214** into Easy Fire tools on the phone (go into the left hamburger, settings and enter the IP address). +![image](../images/wearos/easyfire05.png) -STEP 4) Follow the instructions [here](https://wearablestouse.com/blog/2022/01/04/install-apps-apk-samsung-galaxy-watch-4/?utm_content=cmp-true) to side-load (i.e. transfer) Wear.apk onto the smartwatch using Easy Fire tools +Then click the plug socket icon on the top right. It will turn green when connected. -Click side "plug-in" socket in the app, in order to upload Wear OS.apk onto the smartwatch: +![image](../images/wearos/easyfire06.png) -![image](../images/d1bc4c9d-d5ef-4402-a9a2-a51ed242eff3.png) +STEP 4) Follow the instructions [here](https://wearablestouse.com/blog/2022/01/04/install-apps-apk-samsung-galaxy-watch-4/?utm_content=cmp-true) to side-load (i.e. transfer) aaps-wear.apk onto the smartwatch using Easy Fire tools - Next step > accept the authorisation request on the smartwatch - -![image](../images/2c398a34-b865-4aa1-9c53-d83dfef052a7.png) +![image](../images/wearos/easyfire07.png) (BuildingAapsWearOs-WearOS5-TShoot)= ### Using the terminal -Connect your smartwatch and computer to the same wifi network. +Connect your smartwatch and computer to the same Wi-Fi network. - To install ADB download it from: https://developer.android.com/tools/releases/platform-tools - Open a terminal. -- After installation of ADB for windows set the path to the folder where ADB is located: `setx PATH "%PATH%;C:\platform-tools"` +- For Windows, create a new folder named `adb` under your disk `C:`. Open the `platform-tools-latest-windows.zip` file you downloaded above. Copy all files inside `platform-tools` to `C:\adb` and open this folder with a command prompt (right click and Open in Terminal). Type the command below to set the path to the folder where ADB is located: `setx PATH "%PATH%;C:\adb"` - For Mac instead of installing manually you can use homebrew: `brew install android-platform-tools` On the watch: @@ -149,12 +149,12 @@ On the watch: - Go to Settings → Developer options. Enable **ADB debugging** - Go to Settings → Developer options → Wireless debugging → **Pair new device** -You will see a wifi pariing code and ipaddress and port appearing: -Screenshot 2025-12-21 at 17 46 42 -- In the terminal: `adb pair ipaddress:port` E.g. `adb pair 10.10.1.125:36443` +You will see a Wi-Fi paring code and IP address and port appearing: ![image](../images/wearos/ADB03.png) + +- In the terminal: `adb pair ipaddress:port` E.g. `adb pair 10.10.1.125:36299` - You will be asked for the pairing code. Enter it. -- You will see a response:
`Successfully paired to 10.10.1.125:36443 [guid=adb-RXXXW20LMKJY-eh5zBj]`
-- In the terminal type:
`adb devices`.
You should see something like:
`List of devices attached`
`10.10.1.125:45559 offline`
`adb-RFAW20LMKJY-eh5zBj._adb-tls-connect._tcp device`
+- You will see a response:
`Successfully paired to 10.10.1.125:36299 [guid=adb-RXXXW20LMKJY-eh5zBj]`
+- In the terminal type:
`adb devices`.
You should see something like:
`List of devices attached`
`10.10.1.125:36299 offline`
`adb-RFAW20LMKJY-eh5zBj._adb-tls-connect._tcp device`
- Now go to the folder on your computer where the Wear apk is and type
`adb install wear-full.apk`
with wear.apk replaced by the name of your apk file. - You will see:
`Performing Streamed Install`
`Success` @@ -165,7 +165,7 @@ You will see a wifi pariing code and ipaddress and port appearing: - Do not use Wi-Fi Tethering. That won't work. - You do not need to enable adb debugging on the phone (only on the watch). Disable adb debugging on the Phone. - Make sure you are connecting to your local network where phone and watch can see each other (do not use your Wi-Fi guest network to connect). -- For GW7 you need to install using Wear Installer as it gives you the option to select the AAPS(Custom) watchface on installation. +- For GW7 you need to install using Wear Installer 2 as it gives you the option to select the AAPS (Custom) watchface on installation. - Make sure both watch and phone are on the same network and Wi-Fi device. Especially Wi-Fi repeaters or access points may create problems. - Make sure to be near your main router, then restart both phone and watch. diff --git a/docs/CROWDIN/pl/images/wearos/ADB03.png b/docs/CROWDIN/pl/images/wearos/ADB03.png new file mode 100644 index 000000000000..63fb435b2f0e Binary files /dev/null and b/docs/CROWDIN/pl/images/wearos/ADB03.png differ diff --git a/docs/CROWDIN/pl/images/wearos/easyfire02.png b/docs/CROWDIN/pl/images/wearos/easyfire02.png new file mode 100644 index 000000000000..e0050e5fc5d8 Binary files /dev/null and b/docs/CROWDIN/pl/images/wearos/easyfire02.png differ diff --git a/docs/CROWDIN/pl/images/wearos/easyfire03.png b/docs/CROWDIN/pl/images/wearos/easyfire03.png new file mode 100644 index 000000000000..c1309b7ab89a Binary files /dev/null and b/docs/CROWDIN/pl/images/wearos/easyfire03.png differ diff --git a/docs/CROWDIN/pl/images/wearos/easyfire04.png b/docs/CROWDIN/pl/images/wearos/easyfire04.png new file mode 100644 index 000000000000..a771738aa067 Binary files /dev/null and b/docs/CROWDIN/pl/images/wearos/easyfire04.png differ diff --git a/docs/CROWDIN/pl/images/wearos/easyfire05.png b/docs/CROWDIN/pl/images/wearos/easyfire05.png new file mode 100644 index 000000000000..0d8136765a9f Binary files /dev/null and b/docs/CROWDIN/pl/images/wearos/easyfire05.png differ diff --git a/docs/CROWDIN/pl/images/wearos/easyfire06.png b/docs/CROWDIN/pl/images/wearos/easyfire06.png new file mode 100644 index 000000000000..d048886e188d Binary files /dev/null and b/docs/CROWDIN/pl/images/wearos/easyfire06.png differ diff --git a/docs/CROWDIN/pl/images/wearos/easyfire07.png b/docs/CROWDIN/pl/images/wearos/easyfire07.png new file mode 100644 index 000000000000..70bcf2f53a91 Binary files /dev/null and b/docs/CROWDIN/pl/images/wearos/easyfire07.png differ diff --git a/docs/CROWDIN/pt/WearOS/WearOsSmartwatch.md b/docs/CROWDIN/pt/WearOS/WearOsSmartwatch.md index c6226fe67cd0..60de383aa43d 100644 --- a/docs/CROWDIN/pt/WearOS/WearOsSmartwatch.md +++ b/docs/CROWDIN/pt/WearOS/WearOsSmartwatch.md @@ -98,49 +98,49 @@ Alternatively, but not for Wear OS 5, you can: ### Use Easy Fire tools to side-load the **AAPS** wear on the watch -1) Download _Easy Fire Tools_ from playstore onto phone +1) Download _[Easy Fire Tools](https://play.google.com/store/apps/details?id=de.agondev.easyfiretools&hl=en)_ from the Play Store onto phone -![image](../images/81ceb8f3-dfa6-468b-b9d0-c31b885bc104.png) +![image](../images/wearos/easyfire01.png) 2) Make yourself a developer in the watch (once set up and connected to phone): -Go to settings >about watch (bottom option) >- software info > software version. +Go to settings >about watch (bottom option) -> software info -> software version. -Rapidly tap on “ software version” until a notification appears that the watch is now in "developer mode". Return to the top of settings menu, scroll to the bottom and see “developer options” below “about watch”. +![image](../images/wearos/easyfire02.png) -In “developer options”, turn on “ADB debugging” and “wireless debugging”. The latter option then reveals the IP address of the watch, the final two digits of which changes each time the watch is paired with a new phone. It will be something like: **167.177.0.20.** 5555 (ignore the last 4 digits). Note that the last two digits (here, “20”) of this address will change every time you change to a new phone handset for AAPS. +Rapidly tap on “ software version” until a notification appears that the watch is now in "developer mode". -![24-10-23, watch ADB debug pic](../images/643f4e8b-09f3-4a8d-8277-76b1839a5c3a.png) +![image](../images/wearos/easyfire03.png) -STEP 3) Enter IP address _e.g._ **167.177.0.20** into Easy Fire tools on the phone (go into the left hamburger, settings and enter the IP address). Then click the plug socket icon on the top right. +Return to the top of settings menu, scroll to the bottom and see “developer options” below “about watch”. -![image](../images/b927041f-cc53-4cde-9f77-11cd517c9be0.png) +In “developer options”, turn on “ADB debugging” and “wireless debugging”. The latter option then reveals the IP address of the watch, the final two digits of which changes each time the watch is paired with a new phone. It will be something like: **192.168.1.214**.5555 (ignore the last 4 digits). Note that the last two digits (here, “20”) of this address will change every time you change to a new phone handset for AAPS. +![image](../images/wearos/easyfire04.png) -![image](../images/00b2fb8b-5996-4b71-894e-516d63469e1b.png) +STEP 3) Enter IP address _e.g._ **192.168.1.214** into Easy Fire tools on the phone (go into the left hamburger, settings and enter the IP address). +![image](../images/wearos/easyfire05.png) -STEP 4) Follow the instructions [here](https://wearablestouse.com/blog/2022/01/04/install-apps-apk-samsung-galaxy-watch-4/?utm_content=cmp-true) to side-load (i.e. transfer) Wear.apk onto the smartwatch using Easy Fire tools +Then click the plug socket icon on the top right. It will turn green when connected. -Click side "plug-in" socket in the app, in order to upload Wear OS.apk onto the smartwatch: +![image](../images/wearos/easyfire06.png) -![image](../images/d1bc4c9d-d5ef-4402-a9a2-a51ed242eff3.png) +STEP 4) Follow the instructions [here](https://wearablestouse.com/blog/2022/01/04/install-apps-apk-samsung-galaxy-watch-4/?utm_content=cmp-true) to side-load (i.e. transfer) aaps-wear.apk onto the smartwatch using Easy Fire tools - Next step > accept the authorisation request on the smartwatch - -![image](../images/2c398a34-b865-4aa1-9c53-d83dfef052a7.png) +![image](../images/wearos/easyfire07.png) (BuildingAapsWearOs-WearOS5-TShoot)= ### Using the terminal -Connect your smartwatch and computer to the same wifi network. +Connect your smartwatch and computer to the same Wi-Fi network. - To install ADB download it from: https://developer.android.com/tools/releases/platform-tools - Open a terminal. -- After installation of ADB for windows set the path to the folder where ADB is located: `setx PATH "%PATH%;C:\platform-tools"` +- For Windows, create a new folder named `adb` under your disk `C:`. Open the `platform-tools-latest-windows.zip` file you downloaded above. Copy all files inside `platform-tools` to `C:\adb` and open this folder with a command prompt (right click and Open in Terminal). Type the command below to set the path to the folder where ADB is located: `setx PATH "%PATH%;C:\adb"` - For Mac instead of installing manually you can use homebrew: `brew install android-platform-tools` On the watch: @@ -149,12 +149,12 @@ On the watch: - Go to Settings → Developer options. Enable **ADB debugging** - Go to Settings → Developer options → Wireless debugging → **Pair new device** -You will see a wifi pariing code and ipaddress and port appearing: -Screenshot 2025-12-21 at 17 46 42 -- In the terminal: `adb pair ipaddress:port` E.g. `adb pair 10.10.1.125:36443` +You will see a Wi-Fi paring code and IP address and port appearing: ![image](../images/wearos/ADB03.png) + +- In the terminal: `adb pair ipaddress:port` E.g. `adb pair 10.10.1.125:36299` - You will be asked for the pairing code. Enter it. -- You will see a response:
`Successfully paired to 10.10.1.125:36443 [guid=adb-RXXXW20LMKJY-eh5zBj]`
-- In the terminal type:
`adb devices`.
You should see something like:
`List of devices attached`
`10.10.1.125:45559 offline`
`adb-RFAW20LMKJY-eh5zBj._adb-tls-connect._tcp device`
+- You will see a response:
`Successfully paired to 10.10.1.125:36299 [guid=adb-RXXXW20LMKJY-eh5zBj]`
+- In the terminal type:
`adb devices`.
You should see something like:
`List of devices attached`
`10.10.1.125:36299 offline`
`adb-RFAW20LMKJY-eh5zBj._adb-tls-connect._tcp device`
- Now go to the folder on your computer where the Wear apk is and type
`adb install wear-full.apk`
with wear.apk replaced by the name of your apk file. - You will see:
`Performing Streamed Install`
`Success` @@ -165,7 +165,7 @@ You will see a wifi pariing code and ipaddress and port appearing: - Do not use Wi-Fi Tethering. That won't work. - You do not need to enable adb debugging on the phone (only on the watch). Disable adb debugging on the Phone. - Make sure you are connecting to your local network where phone and watch can see each other (do not use your Wi-Fi guest network to connect). -- For GW7 you need to install using Wear Installer as it gives you the option to select the AAPS(Custom) watchface on installation. +- For GW7 you need to install using Wear Installer 2 as it gives you the option to select the AAPS (Custom) watchface on installation. - Make sure both watch and phone are on the same network and Wi-Fi device. Especially Wi-Fi repeaters or access points may create problems. - Make sure to be near your main router, then restart both phone and watch. diff --git a/docs/CROWDIN/pt/images/wearos/ADB03.png b/docs/CROWDIN/pt/images/wearos/ADB03.png new file mode 100644 index 000000000000..63fb435b2f0e Binary files /dev/null and b/docs/CROWDIN/pt/images/wearos/ADB03.png differ diff --git a/docs/CROWDIN/pt/images/wearos/easyfire02.png b/docs/CROWDIN/pt/images/wearos/easyfire02.png new file mode 100644 index 000000000000..e0050e5fc5d8 Binary files /dev/null and b/docs/CROWDIN/pt/images/wearos/easyfire02.png differ diff --git a/docs/CROWDIN/pt/images/wearos/easyfire03.png b/docs/CROWDIN/pt/images/wearos/easyfire03.png new file mode 100644 index 000000000000..c1309b7ab89a Binary files /dev/null and b/docs/CROWDIN/pt/images/wearos/easyfire03.png differ diff --git a/docs/CROWDIN/pt/images/wearos/easyfire04.png b/docs/CROWDIN/pt/images/wearos/easyfire04.png new file mode 100644 index 000000000000..a771738aa067 Binary files /dev/null and b/docs/CROWDIN/pt/images/wearos/easyfire04.png differ diff --git a/docs/CROWDIN/pt/images/wearos/easyfire05.png b/docs/CROWDIN/pt/images/wearos/easyfire05.png new file mode 100644 index 000000000000..0d8136765a9f Binary files /dev/null and b/docs/CROWDIN/pt/images/wearos/easyfire05.png differ diff --git a/docs/CROWDIN/pt/images/wearos/easyfire06.png b/docs/CROWDIN/pt/images/wearos/easyfire06.png new file mode 100644 index 000000000000..d048886e188d Binary files /dev/null and b/docs/CROWDIN/pt/images/wearos/easyfire06.png differ diff --git a/docs/CROWDIN/pt/images/wearos/easyfire07.png b/docs/CROWDIN/pt/images/wearos/easyfire07.png new file mode 100644 index 000000000000..70bcf2f53a91 Binary files /dev/null and b/docs/CROWDIN/pt/images/wearos/easyfire07.png differ diff --git a/docs/CROWDIN/ro/WearOS/WearOsSmartwatch.md b/docs/CROWDIN/ro/WearOS/WearOsSmartwatch.md index c6226fe67cd0..60de383aa43d 100644 --- a/docs/CROWDIN/ro/WearOS/WearOsSmartwatch.md +++ b/docs/CROWDIN/ro/WearOS/WearOsSmartwatch.md @@ -98,49 +98,49 @@ Alternatively, but not for Wear OS 5, you can: ### Use Easy Fire tools to side-load the **AAPS** wear on the watch -1) Download _Easy Fire Tools_ from playstore onto phone +1) Download _[Easy Fire Tools](https://play.google.com/store/apps/details?id=de.agondev.easyfiretools&hl=en)_ from the Play Store onto phone -![image](../images/81ceb8f3-dfa6-468b-b9d0-c31b885bc104.png) +![image](../images/wearos/easyfire01.png) 2) Make yourself a developer in the watch (once set up and connected to phone): -Go to settings >about watch (bottom option) >- software info > software version. +Go to settings >about watch (bottom option) -> software info -> software version. -Rapidly tap on “ software version” until a notification appears that the watch is now in "developer mode". Return to the top of settings menu, scroll to the bottom and see “developer options” below “about watch”. +![image](../images/wearos/easyfire02.png) -In “developer options”, turn on “ADB debugging” and “wireless debugging”. The latter option then reveals the IP address of the watch, the final two digits of which changes each time the watch is paired with a new phone. It will be something like: **167.177.0.20.** 5555 (ignore the last 4 digits). Note that the last two digits (here, “20”) of this address will change every time you change to a new phone handset for AAPS. +Rapidly tap on “ software version” until a notification appears that the watch is now in "developer mode". -![24-10-23, watch ADB debug pic](../images/643f4e8b-09f3-4a8d-8277-76b1839a5c3a.png) +![image](../images/wearos/easyfire03.png) -STEP 3) Enter IP address _e.g._ **167.177.0.20** into Easy Fire tools on the phone (go into the left hamburger, settings and enter the IP address). Then click the plug socket icon on the top right. +Return to the top of settings menu, scroll to the bottom and see “developer options” below “about watch”. -![image](../images/b927041f-cc53-4cde-9f77-11cd517c9be0.png) +In “developer options”, turn on “ADB debugging” and “wireless debugging”. The latter option then reveals the IP address of the watch, the final two digits of which changes each time the watch is paired with a new phone. It will be something like: **192.168.1.214**.5555 (ignore the last 4 digits). Note that the last two digits (here, “20”) of this address will change every time you change to a new phone handset for AAPS. +![image](../images/wearos/easyfire04.png) -![image](../images/00b2fb8b-5996-4b71-894e-516d63469e1b.png) +STEP 3) Enter IP address _e.g._ **192.168.1.214** into Easy Fire tools on the phone (go into the left hamburger, settings and enter the IP address). +![image](../images/wearos/easyfire05.png) -STEP 4) Follow the instructions [here](https://wearablestouse.com/blog/2022/01/04/install-apps-apk-samsung-galaxy-watch-4/?utm_content=cmp-true) to side-load (i.e. transfer) Wear.apk onto the smartwatch using Easy Fire tools +Then click the plug socket icon on the top right. It will turn green when connected. -Click side "plug-in" socket in the app, in order to upload Wear OS.apk onto the smartwatch: +![image](../images/wearos/easyfire06.png) -![image](../images/d1bc4c9d-d5ef-4402-a9a2-a51ed242eff3.png) +STEP 4) Follow the instructions [here](https://wearablestouse.com/blog/2022/01/04/install-apps-apk-samsung-galaxy-watch-4/?utm_content=cmp-true) to side-load (i.e. transfer) aaps-wear.apk onto the smartwatch using Easy Fire tools - Next step > accept the authorisation request on the smartwatch - -![image](../images/2c398a34-b865-4aa1-9c53-d83dfef052a7.png) +![image](../images/wearos/easyfire07.png) (BuildingAapsWearOs-WearOS5-TShoot)= ### Using the terminal -Connect your smartwatch and computer to the same wifi network. +Connect your smartwatch and computer to the same Wi-Fi network. - To install ADB download it from: https://developer.android.com/tools/releases/platform-tools - Open a terminal. -- After installation of ADB for windows set the path to the folder where ADB is located: `setx PATH "%PATH%;C:\platform-tools"` +- For Windows, create a new folder named `adb` under your disk `C:`. Open the `platform-tools-latest-windows.zip` file you downloaded above. Copy all files inside `platform-tools` to `C:\adb` and open this folder with a command prompt (right click and Open in Terminal). Type the command below to set the path to the folder where ADB is located: `setx PATH "%PATH%;C:\adb"` - For Mac instead of installing manually you can use homebrew: `brew install android-platform-tools` On the watch: @@ -149,12 +149,12 @@ On the watch: - Go to Settings → Developer options. Enable **ADB debugging** - Go to Settings → Developer options → Wireless debugging → **Pair new device** -You will see a wifi pariing code and ipaddress and port appearing: -Screenshot 2025-12-21 at 17 46 42 -- In the terminal: `adb pair ipaddress:port` E.g. `adb pair 10.10.1.125:36443` +You will see a Wi-Fi paring code and IP address and port appearing: ![image](../images/wearos/ADB03.png) + +- In the terminal: `adb pair ipaddress:port` E.g. `adb pair 10.10.1.125:36299` - You will be asked for the pairing code. Enter it. -- You will see a response:
`Successfully paired to 10.10.1.125:36443 [guid=adb-RXXXW20LMKJY-eh5zBj]`
-- In the terminal type:
`adb devices`.
You should see something like:
`List of devices attached`
`10.10.1.125:45559 offline`
`adb-RFAW20LMKJY-eh5zBj._adb-tls-connect._tcp device`
+- You will see a response:
`Successfully paired to 10.10.1.125:36299 [guid=adb-RXXXW20LMKJY-eh5zBj]`
+- In the terminal type:
`adb devices`.
You should see something like:
`List of devices attached`
`10.10.1.125:36299 offline`
`adb-RFAW20LMKJY-eh5zBj._adb-tls-connect._tcp device`
- Now go to the folder on your computer where the Wear apk is and type
`adb install wear-full.apk`
with wear.apk replaced by the name of your apk file. - You will see:
`Performing Streamed Install`
`Success` @@ -165,7 +165,7 @@ You will see a wifi pariing code and ipaddress and port appearing: - Do not use Wi-Fi Tethering. That won't work. - You do not need to enable adb debugging on the phone (only on the watch). Disable adb debugging on the Phone. - Make sure you are connecting to your local network where phone and watch can see each other (do not use your Wi-Fi guest network to connect). -- For GW7 you need to install using Wear Installer as it gives you the option to select the AAPS(Custom) watchface on installation. +- For GW7 you need to install using Wear Installer 2 as it gives you the option to select the AAPS (Custom) watchface on installation. - Make sure both watch and phone are on the same network and Wi-Fi device. Especially Wi-Fi repeaters or access points may create problems. - Make sure to be near your main router, then restart both phone and watch. diff --git a/docs/CROWDIN/ro/images/wearos/ADB03.png b/docs/CROWDIN/ro/images/wearos/ADB03.png new file mode 100644 index 000000000000..63fb435b2f0e Binary files /dev/null and b/docs/CROWDIN/ro/images/wearos/ADB03.png differ diff --git a/docs/CROWDIN/ro/images/wearos/easyfire02.png b/docs/CROWDIN/ro/images/wearos/easyfire02.png new file mode 100644 index 000000000000..e0050e5fc5d8 Binary files /dev/null and b/docs/CROWDIN/ro/images/wearos/easyfire02.png differ diff --git a/docs/CROWDIN/ro/images/wearos/easyfire03.png b/docs/CROWDIN/ro/images/wearos/easyfire03.png new file mode 100644 index 000000000000..c1309b7ab89a Binary files /dev/null and b/docs/CROWDIN/ro/images/wearos/easyfire03.png differ diff --git a/docs/CROWDIN/ro/images/wearos/easyfire04.png b/docs/CROWDIN/ro/images/wearos/easyfire04.png new file mode 100644 index 000000000000..a771738aa067 Binary files /dev/null and b/docs/CROWDIN/ro/images/wearos/easyfire04.png differ diff --git a/docs/CROWDIN/ro/images/wearos/easyfire05.png b/docs/CROWDIN/ro/images/wearos/easyfire05.png new file mode 100644 index 000000000000..0d8136765a9f Binary files /dev/null and b/docs/CROWDIN/ro/images/wearos/easyfire05.png differ diff --git a/docs/CROWDIN/ro/images/wearos/easyfire06.png b/docs/CROWDIN/ro/images/wearos/easyfire06.png new file mode 100644 index 000000000000..d048886e188d Binary files /dev/null and b/docs/CROWDIN/ro/images/wearos/easyfire06.png differ diff --git a/docs/CROWDIN/ro/images/wearos/easyfire07.png b/docs/CROWDIN/ro/images/wearos/easyfire07.png new file mode 100644 index 000000000000..70bcf2f53a91 Binary files /dev/null and b/docs/CROWDIN/ro/images/wearos/easyfire07.png differ diff --git a/docs/CROWDIN/ru/WearOS/WearOsSmartwatch.md b/docs/CROWDIN/ru/WearOS/WearOsSmartwatch.md index a50d945a1219..778b02ef7e5d 100644 --- a/docs/CROWDIN/ru/WearOS/WearOsSmartwatch.md +++ b/docs/CROWDIN/ru/WearOS/WearOsSmartwatch.md @@ -98,49 +98,49 @@ Alternatively, but not for Wear OS 5, you can: ### Use Easy Fire tools to side-load the **AAPS** wear on the watch -1) Download _Easy Fire Tools_ from playstore onto phone +1) Download _[Easy Fire Tools](https://play.google.com/store/apps/details?id=de.agondev.easyfiretools&hl=en)_ from the Play Store onto phone -![изображение](../images/81ceb8f3-dfa6-468b-b9d0-c31b885bc104.png) +![изображение](../images/wearos/easyfire01.png) 2) Make yourself a developer in the watch (once set up and connected to phone): -Go to settings >about watch (bottom option) >- software info > software version. +Go to settings >about watch (bottom option) -> software info -> software version. -Rapidly tap on “ software version” until a notification appears that the watch is now in "developer mode". Return to the top of settings menu, scroll to the bottom and see “developer options” below “about watch”. +![изображение](../images/wearos/easyfire02.png) -In “developer options”, turn on “ADB debugging” and “wireless debugging”. The latter option then reveals the IP address of the watch, the final two digits of which changes each time the watch is paired with a new phone. It will be something like: **167.177.0.20.** 5555 (ignore the last 4 digits). Note that the last two digits (here, “20”) of this address will change every time you change to a new phone handset for AAPS. +Rapidly tap on “ software version” until a notification appears that the watch is now in "developer mode". -![24-10-23, watch ADB debug pic](../images/643f4e8b-09f3-4a8d-8277-76b1839a5c3a.png) +![изображение](../images/wearos/easyfire03.png) -STEP 3) Enter IP address _e.g._ **167.177.0.20** into Easy Fire tools on the phone (go into the left hamburger, settings and enter the IP address). Then click the plug socket icon on the top right. +Return to the top of settings menu, scroll to the bottom and see “developer options” below “about watch”. -![изображение](../images/b927041f-cc53-4cde-9f77-11cd517c9be0.png) +In “developer options”, turn on “ADB debugging” and “wireless debugging”. The latter option then reveals the IP address of the watch, the final two digits of which changes each time the watch is paired with a new phone. It will be something like: **192.168.1.214**.5555 (ignore the last 4 digits). Note that the last two digits (here, “20”) of this address will change every time you change to a new phone handset for AAPS. +![изображение](../images/wearos/easyfire04.png) -![изображение](../images/00b2fb8b-5996-4b71-894e-516d63469e1b.png) +STEP 3) Enter IP address _e.g._ **192.168.1.214** into Easy Fire tools on the phone (go into the left hamburger, settings and enter the IP address). +![изображение](../images/wearos/easyfire05.png) -STEP 4) Follow the instructions [here](https://wearablestouse.com/blog/2022/01/04/install-apps-apk-samsung-galaxy-watch-4/?utm_content=cmp-true) to side-load (i.e. transfer) Wear.apk onto the smartwatch using Easy Fire tools +Then click the plug socket icon on the top right. It will turn green when connected. -Click side "plug-in" socket in the app, in order to upload Wear OS.apk onto the smartwatch: +![изображение](../images/wearos/easyfire06.png) -![изображение](../images/d1bc4c9d-d5ef-4402-a9a2-a51ed242eff3.png) +STEP 4) Follow the instructions [here](https://wearablestouse.com/blog/2022/01/04/install-apps-apk-samsung-galaxy-watch-4/?utm_content=cmp-true) to side-load (i.e. transfer) aaps-wear.apk onto the smartwatch using Easy Fire tools - Next step > accept the authorisation request on the smartwatch - -![изображение](../images/2c398a34-b865-4aa1-9c53-d83dfef052a7.png) +![изображение](../images/wearos/easyfire07.png) (BuildingAapsWearOs-WearOS5-TShoot)= ### Using the terminal -Connect your smartwatch and computer to the same wifi network. +Connect your smartwatch and computer to the same Wi-Fi network. - To install ADB download it from: https://developer.android.com/tools/releases/platform-tools - Open a terminal. -- After installation of ADB for windows set the path to the folder where ADB is located: `setx PATH "%PATH%;C:\platform-tools"` +- For Windows, create a new folder named `adb` under your disk `C:`. Open the `platform-tools-latest-windows.zip` file you downloaded above. Copy all files inside `platform-tools` to `C:\adb` and open this folder with a command prompt (right click and Open in Terminal). Type the command below to set the path to the folder where ADB is located: `setx PATH "%PATH%;C:\adb"` - For Mac instead of installing manually you can use homebrew: `brew install android-platform-tools` On the watch: @@ -149,12 +149,12 @@ On the watch: - Go to Settings → Developer options. Enable **ADB debugging** - Go to Settings → Developer options → Wireless debugging → **Pair new device** -You will see a wifi pariing code and ipaddress and port appearing: -Screenshot 2025-12-21 at 17 46 42 -- In the terminal: `adb pair ipaddress:port` E.g. `adb pair 10.10.1.125:36443` +You will see a Wi-Fi paring code and IP address and port appearing: ![изображение](../images/wearos/ADB03.png) + +- In the terminal: `adb pair ipaddress:port` E.g. `adb pair 10.10.1.125:36299` - You will be asked for the pairing code. Enter it. -- You will see a response:
`Successfully paired to 10.10.1.125:36443 [guid=adb-RXXXW20LMKJY-eh5zBj]`
-- In the terminal type:
`adb devices`.
You should see something like:
`List of devices attached`
`10.10.1.125:45559 offline`
`adb-RFAW20LMKJY-eh5zBj._adb-tls-connect._tcp device`
+- You will see a response:
`Successfully paired to 10.10.1.125:36299 [guid=adb-RXXXW20LMKJY-eh5zBj]`
+- In the terminal type:
`adb devices`.
You should see something like:
`List of devices attached`
`10.10.1.125:36299 offline`
`adb-RFAW20LMKJY-eh5zBj._adb-tls-connect._tcp device`
- Now go to the folder on your computer where the Wear apk is and type
`adb install wear-full.apk`
with wear.apk replaced by the name of your apk file. - You will see:
`Performing Streamed Install`
`Success` @@ -165,7 +165,7 @@ You will see a wifi pariing code and ipaddress and port appearing: - Do not use Wi-Fi Tethering. That won't work. - You do not need to enable adb debugging on the phone (only on the watch). Disable adb debugging on the Phone. - Make sure you are connecting to your local network where phone and watch can see each other (do not use your Wi-Fi guest network to connect). -- For GW7 you need to install using Wear Installer as it gives you the option to select the AAPS(Custom) watchface on installation. +- For GW7 you need to install using Wear Installer 2 as it gives you the option to select the AAPS (Custom) watchface on installation. - Make sure both watch and phone are on the same network and Wi-Fi device. Especially Wi-Fi repeaters or access points may create problems. - Make sure to be near your main router, then restart both phone and watch. diff --git a/docs/CROWDIN/ru/images/wearos/ADB03.png b/docs/CROWDIN/ru/images/wearos/ADB03.png new file mode 100644 index 000000000000..63fb435b2f0e Binary files /dev/null and b/docs/CROWDIN/ru/images/wearos/ADB03.png differ diff --git a/docs/CROWDIN/ru/images/wearos/easyfire02.png b/docs/CROWDIN/ru/images/wearos/easyfire02.png new file mode 100644 index 000000000000..e0050e5fc5d8 Binary files /dev/null and b/docs/CROWDIN/ru/images/wearos/easyfire02.png differ diff --git a/docs/CROWDIN/ru/images/wearos/easyfire03.png b/docs/CROWDIN/ru/images/wearos/easyfire03.png new file mode 100644 index 000000000000..c1309b7ab89a Binary files /dev/null and b/docs/CROWDIN/ru/images/wearos/easyfire03.png differ diff --git a/docs/CROWDIN/ru/images/wearos/easyfire04.png b/docs/CROWDIN/ru/images/wearos/easyfire04.png new file mode 100644 index 000000000000..a771738aa067 Binary files /dev/null and b/docs/CROWDIN/ru/images/wearos/easyfire04.png differ diff --git a/docs/CROWDIN/ru/images/wearos/easyfire05.png b/docs/CROWDIN/ru/images/wearos/easyfire05.png new file mode 100644 index 000000000000..0d8136765a9f Binary files /dev/null and b/docs/CROWDIN/ru/images/wearos/easyfire05.png differ diff --git a/docs/CROWDIN/ru/images/wearos/easyfire06.png b/docs/CROWDIN/ru/images/wearos/easyfire06.png new file mode 100644 index 000000000000..d048886e188d Binary files /dev/null and b/docs/CROWDIN/ru/images/wearos/easyfire06.png differ diff --git a/docs/CROWDIN/ru/images/wearos/easyfire07.png b/docs/CROWDIN/ru/images/wearos/easyfire07.png new file mode 100644 index 000000000000..70bcf2f53a91 Binary files /dev/null and b/docs/CROWDIN/ru/images/wearos/easyfire07.png differ diff --git a/docs/CROWDIN/sk/WearOS/WearOsSmartwatch.md b/docs/CROWDIN/sk/WearOS/WearOsSmartwatch.md index c6226fe67cd0..60de383aa43d 100644 --- a/docs/CROWDIN/sk/WearOS/WearOsSmartwatch.md +++ b/docs/CROWDIN/sk/WearOS/WearOsSmartwatch.md @@ -98,49 +98,49 @@ Alternatively, but not for Wear OS 5, you can: ### Use Easy Fire tools to side-load the **AAPS** wear on the watch -1) Download _Easy Fire Tools_ from playstore onto phone +1) Download _[Easy Fire Tools](https://play.google.com/store/apps/details?id=de.agondev.easyfiretools&hl=en)_ from the Play Store onto phone -![image](../images/81ceb8f3-dfa6-468b-b9d0-c31b885bc104.png) +![image](../images/wearos/easyfire01.png) 2) Make yourself a developer in the watch (once set up and connected to phone): -Go to settings >about watch (bottom option) >- software info > software version. +Go to settings >about watch (bottom option) -> software info -> software version. -Rapidly tap on “ software version” until a notification appears that the watch is now in "developer mode". Return to the top of settings menu, scroll to the bottom and see “developer options” below “about watch”. +![image](../images/wearos/easyfire02.png) -In “developer options”, turn on “ADB debugging” and “wireless debugging”. The latter option then reveals the IP address of the watch, the final two digits of which changes each time the watch is paired with a new phone. It will be something like: **167.177.0.20.** 5555 (ignore the last 4 digits). Note that the last two digits (here, “20”) of this address will change every time you change to a new phone handset for AAPS. +Rapidly tap on “ software version” until a notification appears that the watch is now in "developer mode". -![24-10-23, watch ADB debug pic](../images/643f4e8b-09f3-4a8d-8277-76b1839a5c3a.png) +![image](../images/wearos/easyfire03.png) -STEP 3) Enter IP address _e.g._ **167.177.0.20** into Easy Fire tools on the phone (go into the left hamburger, settings and enter the IP address). Then click the plug socket icon on the top right. +Return to the top of settings menu, scroll to the bottom and see “developer options” below “about watch”. -![image](../images/b927041f-cc53-4cde-9f77-11cd517c9be0.png) +In “developer options”, turn on “ADB debugging” and “wireless debugging”. The latter option then reveals the IP address of the watch, the final two digits of which changes each time the watch is paired with a new phone. It will be something like: **192.168.1.214**.5555 (ignore the last 4 digits). Note that the last two digits (here, “20”) of this address will change every time you change to a new phone handset for AAPS. +![image](../images/wearos/easyfire04.png) -![image](../images/00b2fb8b-5996-4b71-894e-516d63469e1b.png) +STEP 3) Enter IP address _e.g._ **192.168.1.214** into Easy Fire tools on the phone (go into the left hamburger, settings and enter the IP address). +![image](../images/wearos/easyfire05.png) -STEP 4) Follow the instructions [here](https://wearablestouse.com/blog/2022/01/04/install-apps-apk-samsung-galaxy-watch-4/?utm_content=cmp-true) to side-load (i.e. transfer) Wear.apk onto the smartwatch using Easy Fire tools +Then click the plug socket icon on the top right. It will turn green when connected. -Click side "plug-in" socket in the app, in order to upload Wear OS.apk onto the smartwatch: +![image](../images/wearos/easyfire06.png) -![image](../images/d1bc4c9d-d5ef-4402-a9a2-a51ed242eff3.png) +STEP 4) Follow the instructions [here](https://wearablestouse.com/blog/2022/01/04/install-apps-apk-samsung-galaxy-watch-4/?utm_content=cmp-true) to side-load (i.e. transfer) aaps-wear.apk onto the smartwatch using Easy Fire tools - Next step > accept the authorisation request on the smartwatch - -![image](../images/2c398a34-b865-4aa1-9c53-d83dfef052a7.png) +![image](../images/wearos/easyfire07.png) (BuildingAapsWearOs-WearOS5-TShoot)= ### Using the terminal -Connect your smartwatch and computer to the same wifi network. +Connect your smartwatch and computer to the same Wi-Fi network. - To install ADB download it from: https://developer.android.com/tools/releases/platform-tools - Open a terminal. -- After installation of ADB for windows set the path to the folder where ADB is located: `setx PATH "%PATH%;C:\platform-tools"` +- For Windows, create a new folder named `adb` under your disk `C:`. Open the `platform-tools-latest-windows.zip` file you downloaded above. Copy all files inside `platform-tools` to `C:\adb` and open this folder with a command prompt (right click and Open in Terminal). Type the command below to set the path to the folder where ADB is located: `setx PATH "%PATH%;C:\adb"` - For Mac instead of installing manually you can use homebrew: `brew install android-platform-tools` On the watch: @@ -149,12 +149,12 @@ On the watch: - Go to Settings → Developer options. Enable **ADB debugging** - Go to Settings → Developer options → Wireless debugging → **Pair new device** -You will see a wifi pariing code and ipaddress and port appearing: -Screenshot 2025-12-21 at 17 46 42 -- In the terminal: `adb pair ipaddress:port` E.g. `adb pair 10.10.1.125:36443` +You will see a Wi-Fi paring code and IP address and port appearing: ![image](../images/wearos/ADB03.png) + +- In the terminal: `adb pair ipaddress:port` E.g. `adb pair 10.10.1.125:36299` - You will be asked for the pairing code. Enter it. -- You will see a response:
`Successfully paired to 10.10.1.125:36443 [guid=adb-RXXXW20LMKJY-eh5zBj]`
-- In the terminal type:
`adb devices`.
You should see something like:
`List of devices attached`
`10.10.1.125:45559 offline`
`adb-RFAW20LMKJY-eh5zBj._adb-tls-connect._tcp device`
+- You will see a response:
`Successfully paired to 10.10.1.125:36299 [guid=adb-RXXXW20LMKJY-eh5zBj]`
+- In the terminal type:
`adb devices`.
You should see something like:
`List of devices attached`
`10.10.1.125:36299 offline`
`adb-RFAW20LMKJY-eh5zBj._adb-tls-connect._tcp device`
- Now go to the folder on your computer where the Wear apk is and type
`adb install wear-full.apk`
with wear.apk replaced by the name of your apk file. - You will see:
`Performing Streamed Install`
`Success` @@ -165,7 +165,7 @@ You will see a wifi pariing code and ipaddress and port appearing: - Do not use Wi-Fi Tethering. That won't work. - You do not need to enable adb debugging on the phone (only on the watch). Disable adb debugging on the Phone. - Make sure you are connecting to your local network where phone and watch can see each other (do not use your Wi-Fi guest network to connect). -- For GW7 you need to install using Wear Installer as it gives you the option to select the AAPS(Custom) watchface on installation. +- For GW7 you need to install using Wear Installer 2 as it gives you the option to select the AAPS (Custom) watchface on installation. - Make sure both watch and phone are on the same network and Wi-Fi device. Especially Wi-Fi repeaters or access points may create problems. - Make sure to be near your main router, then restart both phone and watch. diff --git a/docs/CROWDIN/sk/images/wearos/ADB03.png b/docs/CROWDIN/sk/images/wearos/ADB03.png new file mode 100644 index 000000000000..63fb435b2f0e Binary files /dev/null and b/docs/CROWDIN/sk/images/wearos/ADB03.png differ diff --git a/docs/CROWDIN/sk/images/wearos/easyfire02.png b/docs/CROWDIN/sk/images/wearos/easyfire02.png new file mode 100644 index 000000000000..e0050e5fc5d8 Binary files /dev/null and b/docs/CROWDIN/sk/images/wearos/easyfire02.png differ diff --git a/docs/CROWDIN/sk/images/wearos/easyfire03.png b/docs/CROWDIN/sk/images/wearos/easyfire03.png new file mode 100644 index 000000000000..c1309b7ab89a Binary files /dev/null and b/docs/CROWDIN/sk/images/wearos/easyfire03.png differ diff --git a/docs/CROWDIN/sk/images/wearos/easyfire04.png b/docs/CROWDIN/sk/images/wearos/easyfire04.png new file mode 100644 index 000000000000..a771738aa067 Binary files /dev/null and b/docs/CROWDIN/sk/images/wearos/easyfire04.png differ diff --git a/docs/CROWDIN/sk/images/wearos/easyfire05.png b/docs/CROWDIN/sk/images/wearos/easyfire05.png new file mode 100644 index 000000000000..0d8136765a9f Binary files /dev/null and b/docs/CROWDIN/sk/images/wearos/easyfire05.png differ diff --git a/docs/CROWDIN/sk/images/wearos/easyfire06.png b/docs/CROWDIN/sk/images/wearos/easyfire06.png new file mode 100644 index 000000000000..d048886e188d Binary files /dev/null and b/docs/CROWDIN/sk/images/wearos/easyfire06.png differ diff --git a/docs/CROWDIN/sk/images/wearos/easyfire07.png b/docs/CROWDIN/sk/images/wearos/easyfire07.png new file mode 100644 index 000000000000..70bcf2f53a91 Binary files /dev/null and b/docs/CROWDIN/sk/images/wearos/easyfire07.png differ diff --git a/docs/CROWDIN/tr/WearOS/WearOsSmartwatch.md b/docs/CROWDIN/tr/WearOS/WearOsSmartwatch.md index c6226fe67cd0..60de383aa43d 100644 --- a/docs/CROWDIN/tr/WearOS/WearOsSmartwatch.md +++ b/docs/CROWDIN/tr/WearOS/WearOsSmartwatch.md @@ -98,49 +98,49 @@ Alternatively, but not for Wear OS 5, you can: ### Use Easy Fire tools to side-load the **AAPS** wear on the watch -1) Download _Easy Fire Tools_ from playstore onto phone +1) Download _[Easy Fire Tools](https://play.google.com/store/apps/details?id=de.agondev.easyfiretools&hl=en)_ from the Play Store onto phone -![image](../images/81ceb8f3-dfa6-468b-b9d0-c31b885bc104.png) +![image](../images/wearos/easyfire01.png) 2) Make yourself a developer in the watch (once set up and connected to phone): -Go to settings >about watch (bottom option) >- software info > software version. +Go to settings >about watch (bottom option) -> software info -> software version. -Rapidly tap on “ software version” until a notification appears that the watch is now in "developer mode". Return to the top of settings menu, scroll to the bottom and see “developer options” below “about watch”. +![image](../images/wearos/easyfire02.png) -In “developer options”, turn on “ADB debugging” and “wireless debugging”. The latter option then reveals the IP address of the watch, the final two digits of which changes each time the watch is paired with a new phone. It will be something like: **167.177.0.20.** 5555 (ignore the last 4 digits). Note that the last two digits (here, “20”) of this address will change every time you change to a new phone handset for AAPS. +Rapidly tap on “ software version” until a notification appears that the watch is now in "developer mode". -![24-10-23, watch ADB debug pic](../images/643f4e8b-09f3-4a8d-8277-76b1839a5c3a.png) +![image](../images/wearos/easyfire03.png) -STEP 3) Enter IP address _e.g._ **167.177.0.20** into Easy Fire tools on the phone (go into the left hamburger, settings and enter the IP address). Then click the plug socket icon on the top right. +Return to the top of settings menu, scroll to the bottom and see “developer options” below “about watch”. -![image](../images/b927041f-cc53-4cde-9f77-11cd517c9be0.png) +In “developer options”, turn on “ADB debugging” and “wireless debugging”. The latter option then reveals the IP address of the watch, the final two digits of which changes each time the watch is paired with a new phone. It will be something like: **192.168.1.214**.5555 (ignore the last 4 digits). Note that the last two digits (here, “20”) of this address will change every time you change to a new phone handset for AAPS. +![image](../images/wearos/easyfire04.png) -![image](../images/00b2fb8b-5996-4b71-894e-516d63469e1b.png) +STEP 3) Enter IP address _e.g._ **192.168.1.214** into Easy Fire tools on the phone (go into the left hamburger, settings and enter the IP address). +![image](../images/wearos/easyfire05.png) -STEP 4) Follow the instructions [here](https://wearablestouse.com/blog/2022/01/04/install-apps-apk-samsung-galaxy-watch-4/?utm_content=cmp-true) to side-load (i.e. transfer) Wear.apk onto the smartwatch using Easy Fire tools +Then click the plug socket icon on the top right. It will turn green when connected. -Click side "plug-in" socket in the app, in order to upload Wear OS.apk onto the smartwatch: +![image](../images/wearos/easyfire06.png) -![image](../images/d1bc4c9d-d5ef-4402-a9a2-a51ed242eff3.png) +STEP 4) Follow the instructions [here](https://wearablestouse.com/blog/2022/01/04/install-apps-apk-samsung-galaxy-watch-4/?utm_content=cmp-true) to side-load (i.e. transfer) aaps-wear.apk onto the smartwatch using Easy Fire tools - Next step > accept the authorisation request on the smartwatch - -![image](../images/2c398a34-b865-4aa1-9c53-d83dfef052a7.png) +![image](../images/wearos/easyfire07.png) (BuildingAapsWearOs-WearOS5-TShoot)= ### Using the terminal -Connect your smartwatch and computer to the same wifi network. +Connect your smartwatch and computer to the same Wi-Fi network. - To install ADB download it from: https://developer.android.com/tools/releases/platform-tools - Open a terminal. -- After installation of ADB for windows set the path to the folder where ADB is located: `setx PATH "%PATH%;C:\platform-tools"` +- For Windows, create a new folder named `adb` under your disk `C:`. Open the `platform-tools-latest-windows.zip` file you downloaded above. Copy all files inside `platform-tools` to `C:\adb` and open this folder with a command prompt (right click and Open in Terminal). Type the command below to set the path to the folder where ADB is located: `setx PATH "%PATH%;C:\adb"` - For Mac instead of installing manually you can use homebrew: `brew install android-platform-tools` On the watch: @@ -149,12 +149,12 @@ On the watch: - Go to Settings → Developer options. Enable **ADB debugging** - Go to Settings → Developer options → Wireless debugging → **Pair new device** -You will see a wifi pariing code and ipaddress and port appearing: -Screenshot 2025-12-21 at 17 46 42 -- In the terminal: `adb pair ipaddress:port` E.g. `adb pair 10.10.1.125:36443` +You will see a Wi-Fi paring code and IP address and port appearing: ![image](../images/wearos/ADB03.png) + +- In the terminal: `adb pair ipaddress:port` E.g. `adb pair 10.10.1.125:36299` - You will be asked for the pairing code. Enter it. -- You will see a response:
`Successfully paired to 10.10.1.125:36443 [guid=adb-RXXXW20LMKJY-eh5zBj]`
-- In the terminal type:
`adb devices`.
You should see something like:
`List of devices attached`
`10.10.1.125:45559 offline`
`adb-RFAW20LMKJY-eh5zBj._adb-tls-connect._tcp device`
+- You will see a response:
`Successfully paired to 10.10.1.125:36299 [guid=adb-RXXXW20LMKJY-eh5zBj]`
+- In the terminal type:
`adb devices`.
You should see something like:
`List of devices attached`
`10.10.1.125:36299 offline`
`adb-RFAW20LMKJY-eh5zBj._adb-tls-connect._tcp device`
- Now go to the folder on your computer where the Wear apk is and type
`adb install wear-full.apk`
with wear.apk replaced by the name of your apk file. - You will see:
`Performing Streamed Install`
`Success` @@ -165,7 +165,7 @@ You will see a wifi pariing code and ipaddress and port appearing: - Do not use Wi-Fi Tethering. That won't work. - You do not need to enable adb debugging on the phone (only on the watch). Disable adb debugging on the Phone. - Make sure you are connecting to your local network where phone and watch can see each other (do not use your Wi-Fi guest network to connect). -- For GW7 you need to install using Wear Installer as it gives you the option to select the AAPS(Custom) watchface on installation. +- For GW7 you need to install using Wear Installer 2 as it gives you the option to select the AAPS (Custom) watchface on installation. - Make sure both watch and phone are on the same network and Wi-Fi device. Especially Wi-Fi repeaters or access points may create problems. - Make sure to be near your main router, then restart both phone and watch. diff --git a/docs/CROWDIN/tr/images/wearos/ADB03.png b/docs/CROWDIN/tr/images/wearos/ADB03.png new file mode 100644 index 000000000000..63fb435b2f0e Binary files /dev/null and b/docs/CROWDIN/tr/images/wearos/ADB03.png differ diff --git a/docs/CROWDIN/tr/images/wearos/easyfire02.png b/docs/CROWDIN/tr/images/wearos/easyfire02.png new file mode 100644 index 000000000000..e0050e5fc5d8 Binary files /dev/null and b/docs/CROWDIN/tr/images/wearos/easyfire02.png differ diff --git a/docs/CROWDIN/tr/images/wearos/easyfire03.png b/docs/CROWDIN/tr/images/wearos/easyfire03.png new file mode 100644 index 000000000000..c1309b7ab89a Binary files /dev/null and b/docs/CROWDIN/tr/images/wearos/easyfire03.png differ diff --git a/docs/CROWDIN/tr/images/wearos/easyfire04.png b/docs/CROWDIN/tr/images/wearos/easyfire04.png new file mode 100644 index 000000000000..a771738aa067 Binary files /dev/null and b/docs/CROWDIN/tr/images/wearos/easyfire04.png differ diff --git a/docs/CROWDIN/tr/images/wearos/easyfire05.png b/docs/CROWDIN/tr/images/wearos/easyfire05.png new file mode 100644 index 000000000000..0d8136765a9f Binary files /dev/null and b/docs/CROWDIN/tr/images/wearos/easyfire05.png differ diff --git a/docs/CROWDIN/tr/images/wearos/easyfire06.png b/docs/CROWDIN/tr/images/wearos/easyfire06.png new file mode 100644 index 000000000000..d048886e188d Binary files /dev/null and b/docs/CROWDIN/tr/images/wearos/easyfire06.png differ diff --git a/docs/CROWDIN/tr/images/wearos/easyfire07.png b/docs/CROWDIN/tr/images/wearos/easyfire07.png new file mode 100644 index 000000000000..70bcf2f53a91 Binary files /dev/null and b/docs/CROWDIN/tr/images/wearos/easyfire07.png differ diff --git a/docs/CROWDIN/zh_CN/WearOS/WearOsSmartwatch.md b/docs/CROWDIN/zh_CN/WearOS/WearOsSmartwatch.md index e2af826f68df..f87dcb7ccf81 100644 --- a/docs/CROWDIN/zh_CN/WearOS/WearOsSmartwatch.md +++ b/docs/CROWDIN/zh_CN/WearOS/WearOsSmartwatch.md @@ -97,49 +97,49 @@ Wear OS 5以下设备可选方案: ### Use Easy Fire tools to side-load the **AAPS** wear on the watch -1) Download _Easy Fire Tools_ from playstore onto phone +1) Download _[Easy Fire Tools](https://play.google.com/store/apps/details?id=de.agondev.easyfiretools&hl=en)_ from the Play Store onto phone -![image](../images/81ceb8f3-dfa6-468b-b9d0-c31b885bc104.png) +![image](../images/wearos/easyfire01.png) 2) Make yourself a developer in the watch (once set up and connected to phone): -Go to settings >about watch (bottom option) >- software info > software version. +Go to settings >about watch (bottom option) -> software info -> software version. -快速点击“软件版本”,直到出现通知,表明手表现在处于“开发者模式”。 返回到设置菜单的顶部,滚动到底部, 并在“关于手表”下方看到“开发者选项”。 +![image](../images/wearos/easyfire02.png) -在“开发者选项”中,打开“ADB调试”和“无线调试”。 后者选项将显示手表的IP地址,该地址的最后两位数字每次手表与新手机配对时都会更改。 It will be something like: **167.177.0.20.** 5555 (ignore the last 4 digits). 请注意,此地址的最后两位数字(此处为“20”)在每次您为AAPS更换新手机时都会更改。 +快速点击“软件版本”,直到出现通知,表明手表现在处于“开发者模式”。 -![24-10-23, watch ADB debug pic](../images/643f4e8b-09f3-4a8d-8277-76b1839a5c3a.png) +![image](../images/wearos/easyfire03.png) -STEP 3) Enter IP address _e.g._ **167.177.0.20** into Easy Fire tools on the phone (go into the left hamburger, settings and enter the IP address). 然后点击右上角的插头插座图标。 +Return to the top of settings menu, scroll to the bottom and see “developer options” below “about watch”. -![image](../images/b927041f-cc53-4cde-9f77-11cd517c9be0.png) +在“开发者选项”中,打开“ADB调试”和“无线调试”。 后者选项将显示手表的IP地址,该地址的最后两位数字每次手表与新手机配对时都会更改。 It will be something like: **192.168.1.214**.5555 (ignore the last 4 digits). 请注意,此地址的最后两位数字(此处为“20”)在每次您为AAPS更换新手机时都会更改。 +![image](../images/wearos/easyfire04.png) -![image](../images/00b2fb8b-5996-4b71-894e-516d63469e1b.png) +STEP 3) Enter IP address _e.g._ **192.168.1.214** into Easy Fire tools on the phone (go into the left hamburger, settings and enter the IP address). +![image](../images/wearos/easyfire05.png) -STEP 4) Follow the instructions [here](https://wearablestouse.com/blog/2022/01/04/install-apps-apk-samsung-galaxy-watch-4/?utm_content=cmp-true) to side-load (i.e. transfer) Wear.apk onto the smartwatch using Easy Fire tools +然后点击右上角的插头插座图标。 It will turn green when connected. -Click side "plug-in" socket in the app, in order to upload Wear OS.apk onto the smartwatch: +![image](../images/wearos/easyfire06.png) -![image](../images/d1bc4c9d-d5ef-4402-a9a2-a51ed242eff3.png) +STEP 4) Follow the instructions [here](https://wearablestouse.com/blog/2022/01/04/install-apps-apk-samsung-galaxy-watch-4/?utm_content=cmp-true) to side-load (i.e. transfer) aaps-wear.apk onto the smartwatch using Easy Fire tools - Next step > accept the authorisation request on the smartwatch - -![image](../images/2c398a34-b865-4aa1-9c53-d83dfef052a7.png) +![image](../images/wearos/easyfire07.png) (BuildingAapsWearOs-WearOS5-TShoot)= ### Using the terminal -Connect your smartwatch and computer to the same wifi network. +Connect your smartwatch and computer to the same Wi-Fi network. - To install ADB download it from: https://developer.android.com/tools/releases/platform-tools - Open a terminal. -- After installation of ADB for windows set the path to the folder where ADB is located: `setx PATH "%PATH%;C:\platform-tools"` +- For Windows, create a new folder named `adb` under your disk `C:`. Open the `platform-tools-latest-windows.zip` file you downloaded above. Copy all files inside `platform-tools` to `C:\adb` and open this folder with a command prompt (right click and Open in Terminal). Type the command below to set the path to the folder where ADB is located: `setx PATH "%PATH%;C:\adb"` - For Mac instead of installing manually you can use homebrew: `brew install android-platform-tools` On the watch: @@ -148,12 +148,12 @@ On the watch: - Go to Settings → Developer options. Enable **ADB debugging** - Go to Settings → Developer options → Wireless debugging → **Pair new device** -You will see a wifi pariing code and ipaddress and port appearing: -Screenshot 2025-12-21 at 17 46 42 -- In the terminal: `adb pair ipaddress:port` E.g. `adb pair 10.10.1.125:36443` +You will see a Wi-Fi paring code and IP address and port appearing: ![image](../images/wearos/ADB03.png) + +- In the terminal: `adb pair ipaddress:port` E.g. `adb pair 10.10.1.125:36299` - You will be asked for the pairing code. Enter it. -- You will see a response:
`Successfully paired to 10.10.1.125:36443 [guid=adb-RXXXW20LMKJY-eh5zBj]`
-- In the terminal type:
`adb devices`.
You should see something like:
`List of devices attached`
`10.10.1.125:45559 offline`
`adb-RFAW20LMKJY-eh5zBj._adb-tls-connect._tcp device`
+- You will see a response:
`Successfully paired to 10.10.1.125:36299 [guid=adb-RXXXW20LMKJY-eh5zBj]`
+- In the terminal type:
`adb devices`.
You should see something like:
`List of devices attached`
`10.10.1.125:36299 offline`
`adb-RFAW20LMKJY-eh5zBj._adb-tls-connect._tcp device`
- Now go to the folder on your computer where the Wear apk is and type
`adb install wear-full.apk`
with wear.apk replaced by the name of your apk file. - You will see:
`Performing Streamed Install`
`Success` @@ -164,7 +164,7 @@ You will see a wifi pariing code and ipaddress and port appearing: - 请勿使用Wi-Fi热点共享。 该方式无法使用。 - 无需在手机上启用ADB调试(仅需在手表端开启)。 请在手机设置中关闭ADB调试功能。 - 确保设备处于同一局域网(避免使用访客网络) -- Galaxy Watch 7需通过Wear Installer选择"AAPS(自定义)"表盘安装。 +- For GW7 you need to install using Wear Installer 2 as it gives you the option to select the AAPS (Custom) watchface on installation. - 请确保手表和手机处于同一Wi-Fi网络下, 特别注意使用Wi-Fi中继器或接入点可能引发连接问题。 - 确保设备靠近主路由器,必要时重启设备。 diff --git a/docs/CROWDIN/zh_CN/images/wearos/ADB03.png b/docs/CROWDIN/zh_CN/images/wearos/ADB03.png new file mode 100644 index 000000000000..63fb435b2f0e Binary files /dev/null and b/docs/CROWDIN/zh_CN/images/wearos/ADB03.png differ diff --git a/docs/CROWDIN/zh_CN/images/wearos/easyfire02.png b/docs/CROWDIN/zh_CN/images/wearos/easyfire02.png new file mode 100644 index 000000000000..e0050e5fc5d8 Binary files /dev/null and b/docs/CROWDIN/zh_CN/images/wearos/easyfire02.png differ diff --git a/docs/CROWDIN/zh_CN/images/wearos/easyfire03.png b/docs/CROWDIN/zh_CN/images/wearos/easyfire03.png new file mode 100644 index 000000000000..c1309b7ab89a Binary files /dev/null and b/docs/CROWDIN/zh_CN/images/wearos/easyfire03.png differ diff --git a/docs/CROWDIN/zh_CN/images/wearos/easyfire04.png b/docs/CROWDIN/zh_CN/images/wearos/easyfire04.png new file mode 100644 index 000000000000..a771738aa067 Binary files /dev/null and b/docs/CROWDIN/zh_CN/images/wearos/easyfire04.png differ diff --git a/docs/CROWDIN/zh_CN/images/wearos/easyfire05.png b/docs/CROWDIN/zh_CN/images/wearos/easyfire05.png new file mode 100644 index 000000000000..0d8136765a9f Binary files /dev/null and b/docs/CROWDIN/zh_CN/images/wearos/easyfire05.png differ diff --git a/docs/CROWDIN/zh_CN/images/wearos/easyfire06.png b/docs/CROWDIN/zh_CN/images/wearos/easyfire06.png new file mode 100644 index 000000000000..d048886e188d Binary files /dev/null and b/docs/CROWDIN/zh_CN/images/wearos/easyfire06.png differ diff --git a/docs/CROWDIN/zh_CN/images/wearos/easyfire07.png b/docs/CROWDIN/zh_CN/images/wearos/easyfire07.png new file mode 100644 index 000000000000..70bcf2f53a91 Binary files /dev/null and b/docs/CROWDIN/zh_CN/images/wearos/easyfire07.png differ diff --git a/docs/CROWDIN/zh_TW/WearOS/WearOsSmartwatch.md b/docs/CROWDIN/zh_TW/WearOS/WearOsSmartwatch.md index 69b5b3b85131..5d7a5958bb48 100644 --- a/docs/CROWDIN/zh_TW/WearOS/WearOsSmartwatch.md +++ b/docs/CROWDIN/zh_TW/WearOS/WearOsSmartwatch.md @@ -97,49 +97,49 @@ Wear Installer 2 由 [Malcolm Bryant](https://www.youtube.com/@Freepoc) 開發 ### Use Easy Fire tools to side-load the **AAPS** wear on the watch -1) Download _Easy Fire Tools_ from playstore onto phone +1) Download _[Easy Fire Tools](https://play.google.com/store/apps/details?id=de.agondev.easyfiretools&hl=en)_ from the Play Store onto phone -![圖像](../images/81ceb8f3-dfa6-468b-b9d0-c31b885bc104.png) +![圖像](../images/wearos/easyfire01.png) 2) Make yourself a developer in the watch (once set up and connected to phone): -Go to settings >about watch (bottom option) >- software info > software version. +Go to settings >about watch (bottom option) -> software info -> software version. -快速點擊“軟體版本”,直到出現通知,告知手錶現在處於“開發者模式”。 返回設置選單頂部,向下滾動,並在“關於手錶”下方看到“開發者選項”。 +![圖像](../images/wearos/easyfire02.png) -在“開發者選項”中,打開“ADB 調試”和“無線調試”。 後者將顯示手錶的 IP 地址,其最後兩位數字每次與新手機配對時都會改變。 It will be something like: **167.177.0.20.** 5555 (ignore the last 4 digits). 請注意,每次將 AAPS 切換到新手機時,這個地址的最後兩位數字(這裡為“20”)將發生變化。 +快速點擊“軟體版本”,直到出現通知,告知手錶現在處於“開發者模式”。 -![24-10-23, watch ADB debug pic](../images/643f4e8b-09f3-4a8d-8277-76b1839a5c3a.png) +![圖像](../images/wearos/easyfire03.png) -STEP 3) Enter IP address _e.g._ **167.177.0.20** into Easy Fire tools on the phone (go into the left hamburger, settings and enter the IP address). 然後點擊右上角的插頭圖示。 +Return to the top of settings menu, scroll to the bottom and see “developer options” below “about watch”. -![圖像](../images/b927041f-cc53-4cde-9f77-11cd517c9be0.png) +在“開發者選項”中,打開“ADB 調試”和“無線調試”。 後者將顯示手錶的 IP 地址,其最後兩位數字每次與新手機配對時都會改變。 It will be something like: **192.168.1.214**.5555 (ignore the last 4 digits). 請注意,每次將 AAPS 切換到新手機時,這個地址的最後兩位數字(這裡為“20”)將發生變化。 +![圖像](../images/wearos/easyfire04.png) -![圖像](../images/00b2fb8b-5996-4b71-894e-516d63469e1b.png) +STEP 3) Enter IP address _e.g._ **192.168.1.214** into Easy Fire tools on the phone (go into the left hamburger, settings and enter the IP address). +![圖像](../images/wearos/easyfire05.png) -STEP 4) Follow the instructions [here](https://wearablestouse.com/blog/2022/01/04/install-apps-apk-samsung-galaxy-watch-4/?utm_content=cmp-true) to side-load (i.e. transfer) Wear.apk onto the smartwatch using Easy Fire tools +然後點擊右上角的插頭圖示。 It will turn green when connected. -Click side "plug-in" socket in the app, in order to upload Wear OS.apk onto the smartwatch: +![圖像](../images/wearos/easyfire06.png) -![圖像](../images/d1bc4c9d-d5ef-4402-a9a2-a51ed242eff3.png) +STEP 4) Follow the instructions [here](https://wearablestouse.com/blog/2022/01/04/install-apps-apk-samsung-galaxy-watch-4/?utm_content=cmp-true) to side-load (i.e. transfer) aaps-wear.apk onto the smartwatch using Easy Fire tools - Next step > accept the authorisation request on the smartwatch - -![圖像](../images/2c398a34-b865-4aa1-9c53-d83dfef052a7.png) +![圖像](../images/wearos/easyfire07.png) (BuildingAapsWearOs-WearOS5-TShoot)= ### Using the terminal -Connect your smartwatch and computer to the same wifi network. +Connect your smartwatch and computer to the same Wi-Fi network. - To install ADB download it from: https://developer.android.com/tools/releases/platform-tools - Open a terminal. -- After installation of ADB for windows set the path to the folder where ADB is located: `setx PATH "%PATH%;C:\platform-tools"` +- For Windows, create a new folder named `adb` under your disk `C:`. Open the `platform-tools-latest-windows.zip` file you downloaded above. Copy all files inside `platform-tools` to `C:\adb` and open this folder with a command prompt (right click and Open in Terminal). Type the command below to set the path to the folder where ADB is located: `setx PATH "%PATH%;C:\adb"` - For Mac instead of installing manually you can use homebrew: `brew install android-platform-tools` On the watch: @@ -148,12 +148,12 @@ On the watch: - Go to Settings → Developer options. Enable **ADB debugging** - Go to Settings → Developer options → Wireless debugging → **Pair new device** -You will see a wifi pariing code and ipaddress and port appearing: -Screenshot 2025-12-21 at 17 46 42 -- In the terminal: `adb pair ipaddress:port` E.g. `adb pair 10.10.1.125:36443` +You will see a Wi-Fi paring code and IP address and port appearing: ![圖像](../images/wearos/ADB03.png) + +- In the terminal: `adb pair ipaddress:port` E.g. `adb pair 10.10.1.125:36299` - You will be asked for the pairing code. Enter it. -- You will see a response:
`Successfully paired to 10.10.1.125:36443 [guid=adb-RXXXW20LMKJY-eh5zBj]`
-- In the terminal type:
`adb devices`.
You should see something like:
`List of devices attached`
`10.10.1.125:45559 offline`
`adb-RFAW20LMKJY-eh5zBj._adb-tls-connect._tcp device`
+- You will see a response:
`Successfully paired to 10.10.1.125:36299 [guid=adb-RXXXW20LMKJY-eh5zBj]`
+- In the terminal type:
`adb devices`.
You should see something like:
`List of devices attached`
`10.10.1.125:36299 offline`
`adb-RFAW20LMKJY-eh5zBj._adb-tls-connect._tcp device`
- Now go to the folder on your computer where the Wear apk is and type
`adb install wear-full.apk`
with wear.apk replaced by the name of your apk file. - You will see:
`Performing Streamed Install`
`Success` @@ -164,7 +164,7 @@ You will see a wifi pariing code and ipaddress and port appearing: - 請勿使用 Wi-Fi 分享。 這樣做是行不通的。 - 不需要在手機上啟用 ADB 調試(僅在手錶上)。 在手機上停用 ADB 調試。 - 確保你連接到手機和手錶可以彼此看到的本地網路(不要使用 Wi-Fi 客用網路連接)。 -- 對於 GW7,需使用 Wear Installer安裝,因為它在安裝時提供選擇**AAPS(自訂)**錶面的選項。 +- For GW7 you need to install using Wear Installer 2 as it gives you the option to select the AAPS (Custom) watchface on installation. - 確保手錶和手機在同一網路和 Wi-Fi 設備上。 特別是 Wi-Fi 重複器或接取點可能會產生問題。 - 確保靠近你的主要路由器,然後重啟手機和手錶。 diff --git a/docs/CROWDIN/zh_TW/images/wearos/ADB03.png b/docs/CROWDIN/zh_TW/images/wearos/ADB03.png new file mode 100644 index 000000000000..63fb435b2f0e Binary files /dev/null and b/docs/CROWDIN/zh_TW/images/wearos/ADB03.png differ diff --git a/docs/CROWDIN/zh_TW/images/wearos/easyfire02.png b/docs/CROWDIN/zh_TW/images/wearos/easyfire02.png new file mode 100644 index 000000000000..e0050e5fc5d8 Binary files /dev/null and b/docs/CROWDIN/zh_TW/images/wearos/easyfire02.png differ diff --git a/docs/CROWDIN/zh_TW/images/wearos/easyfire03.png b/docs/CROWDIN/zh_TW/images/wearos/easyfire03.png new file mode 100644 index 000000000000..c1309b7ab89a Binary files /dev/null and b/docs/CROWDIN/zh_TW/images/wearos/easyfire03.png differ diff --git a/docs/CROWDIN/zh_TW/images/wearos/easyfire04.png b/docs/CROWDIN/zh_TW/images/wearos/easyfire04.png new file mode 100644 index 000000000000..a771738aa067 Binary files /dev/null and b/docs/CROWDIN/zh_TW/images/wearos/easyfire04.png differ diff --git a/docs/CROWDIN/zh_TW/images/wearos/easyfire05.png b/docs/CROWDIN/zh_TW/images/wearos/easyfire05.png new file mode 100644 index 000000000000..0d8136765a9f Binary files /dev/null and b/docs/CROWDIN/zh_TW/images/wearos/easyfire05.png differ diff --git a/docs/CROWDIN/zh_TW/images/wearos/easyfire06.png b/docs/CROWDIN/zh_TW/images/wearos/easyfire06.png new file mode 100644 index 000000000000..d048886e188d Binary files /dev/null and b/docs/CROWDIN/zh_TW/images/wearos/easyfire06.png differ diff --git a/docs/CROWDIN/zh_TW/images/wearos/easyfire07.png b/docs/CROWDIN/zh_TW/images/wearos/easyfire07.png new file mode 100644 index 000000000000..70bcf2f53a91 Binary files /dev/null and b/docs/CROWDIN/zh_TW/images/wearos/easyfire07.png differ