The Dawarich community - Latest posts https://discourse.dawarich.app Latest posts Dawarich iOS app Thats awesome to hear!

]]>
https://discourse.dawarich.app/t/dawarich-ios-app/61#post_4 Wed, 18 Mar 2026 22:57:59 +0000 discourse.dawarich.app-post-206
Dawarich iOS app @shuether there will be a filter for such points in one of the future releases, yes

]]>
https://discourse.dawarich.app/t/dawarich-ios-app/61#post_3 Wed, 18 Mar 2026 22:03:18 +0000 discourse.dawarich.app-post-205
Synology Container Update from 0.25.8 Your compose file is clearly invalid, please make sure it’s properly formatted and compre to the default one for reference

]]>
https://discourse.dawarich.app/t/synology-container-update-from-0-25-8/69#post_10 Wed, 18 Mar 2026 21:45:50 +0000 discourse.dawarich.app-post-204
Dawarich iOS app App is working great for tracking and uploading so far! Love the integration with Shortcuts, super handy for automatons.

One thing I’ve seen a few times, usually when gps signal is low I think (phone in pocket, in the middle of a metal ferry, poor cell/gps reception for example), it’ll record a point or two thats way off the previous few points, like 1km+, so the tracks end up with jagged lines here and there. I’ve been able to fix this in the web app after by dragging those points into a plausible location on the route, or delete the points entirely. Would be nice to have some sort of filter on those type of points to help mitigate this. I know this could be a tough one to find a good balance. Maybe a settings to filter implausible points outside x distance/time from previous/next points?

]]>
https://discourse.dawarich.app/t/dawarich-ios-app/61#post_2 Wed, 18 Mar 2026 15:46:56 +0000 discourse.dawarich.app-post-203
Does the app only track if I open the app? On iOS I setup a Shortcuts automation that triggers when I leave the house to start Dawarich recording, and another to stop when I get home. So far in the last week it’s been 100% reliable. It gives a notification with button to acknowledge when it starts so nice confirmation too. Not sure if there’s something similar on Android?

]]>
https://discourse.dawarich.app/t/does-the-app-only-track-if-i-open-the-app/63#post_6 Wed, 18 Mar 2026 15:37:44 +0000 discourse.dawarich.app-post-202
Question/Feature Request: Filter raw GPS points by selecting an area on the map This would be a wonderful feature! A friend has a self hosted instance setup and I’ve imported about 2.4 million points from various gps device and tracks over the last 20 years. It’s awesome to see some of the history! But I’d love an easier way to view a certain area and see when I was there over the years without trying to let it load all points then pan around the map. Maybe a button to filter based on current map view, with or without time range applied? Or search based on selection rectangle similar? Loving the functionality!!! This is an amazing project!!

]]>
https://discourse.dawarich.app/t/question-feature-request-filter-raw-gps-points-by-selecting-an-area-on-the-map/50#post_4 Wed, 18 Mar 2026 15:34:19 +0000 discourse.dawarich.app-post-201
Synology Container Update from 0.25.8 Postgres 17 won’t start after editing.

hannes@homenas:/volume1/docker/dawarich$ sudo docker compose -f /volume1/docker/dawarich/docker-compose.yml up dawarich_db -d
validating /volume1/docker/dawarich/docker-compose.yml: (root) Additional property dawarich_db_pg_17 is not allowed
hannes@homenas:/volume1/docker/dawarich$

]]>
https://discourse.dawarich.app/t/synology-container-update-from-0-25-8/69#post_9 Sun, 15 Mar 2026 19:58:42 +0000 discourse.dawarich.app-post-200
Synology Container Update from 0.25.8 But I’m following the instructions, which say to create a dump of 14 and upgrade it to 17. Trying without this database upgrade results in this ugly screen.

The yml file I posted cannot be read.

So I’m at a dead end.

]]>
https://discourse.dawarich.app/t/synology-container-update-from-0-25-8/69#post_8 Wed, 11 Mar 2026 19:13:39 +0000 discourse.dawarich.app-post-199
Forwarding from Traccar Hi.

Are there any current issues with passing data from Traccar into Dawarich?

Just asking so can maybe save my hair :grin:

Any nuances? Probably a Traccar problem but thought best to ask.

Cheers.

]]>
https://discourse.dawarich.app/t/forwarding-from-traccar/73#post_1 Wed, 11 Mar 2026 09:49:09 +0000 discourse.dawarich.app-post-198
Synology Container Update from 0.25.8 You can use this guide: Updating Guides | Dawarich

Compare your compose to the one from the next version and made appropriate adjustments, or just follow the updating guide, the changelogs always contain instructions on how to update in case of breaking changes

]]>
https://discourse.dawarich.app/t/synology-container-update-from-0-25-8/69#post_7 Tue, 10 Mar 2026 18:52:44 +0000 discourse.dawarich.app-post-197
Synology Container Update from 0.25.8 Hello Freika,

That is certainly an option; I can easily create a new backup.

But what should I enter in docker-compose.yml?

I currently have the following in there

version: '3'

services:
  dawarich_redis:
    image: redis:7.0-alpine
    container_name: dawarich_redis
    command: redis-server
    restart: unless-stopped
    volumes:
      - ./redis:/var/shared/redis

  dawarich_db_pg_17:
  image: postgis/postgis:17-3.5-alpine
  shm_size: 1G
  container_name: dawarich_db_pg_17
  volumes:
    - dawarich_db_data_pg_17:/var/lib/postgresql/data
    - dawarich_shared:/var/shared
  networks:
    - dawarich
  environment:
    POSTGRES_USER: postgres
    POSTGRES_PASSWORD: password
  restart: always
  healthcheck:
    test: [ "CMD-SHELL", "pg_isready -U postgres -d dawarich_development" ]
    interval: 10s
    retries: 5
    start_period: 30s
    timeout: 10s

volumes:
  dawarich_db_data:
  dawarich_shared:
  dawarich_public:
  dawarich_watched:
  dawarich_db_data_pg_17:

dawarich_db:
    image: postgis/postgis:14-3.5-alpine
    container_name: dawarich_db
    restart: unless-stopped
    environment:
      POSTGRES_USER: ${DATABASE_USERNAME}
      POSTGRES_PASSWORD: ${DATABASE_PASSWORD}
    volumes:
      - ./db_data:/var/lib/postgresql/data
      - ./db_shared:/var/shared

  dawarich_app:
    image: freikin/dawarich:0.25.8
    container_name: dawarich_app
    depends_on:
      - dawarich_db
      - dawarich_redis
    stdin_open: true
    tty: true
    entrypoint: web-entrypoint.sh
    command: ['bin/dev']
    restart: unless-stopped
    env_file:
      - .env
    volumes:
      - ./public:/var/app/public
      - ./app_storage:/var/app/storage
    ports:
      - 32568:3000

  dawarich_sidekiq:
    image: freikin/dawarich:0.25.8
    container_name: dawarich_sidekiq
    depends_on:
      - dawarich_db
      - dawarich_redis
      - dawarich_app
    entrypoint: sidekiq-entrypoint.sh
    command: ['sidekiq']
    restart: unless-stopped
    env_file:
      - .env
    volumes:
      - ./public:/var/app/public
      - ./app_storage:/var/app/storage

Should I leave the volumes and image entries or remove them?

Which version should I switch to? My initial plan was to go to 0.26.0.

Best regards

]]>
https://discourse.dawarich.app/t/synology-container-update-from-0-25-8/69#post_6 Tue, 10 Mar 2026 18:41:00 +0000 discourse.dawarich.app-post-196
Can I clean up wrong points? Distance stat is crazy Hi,
Thanks for the response.
I didn’t get the map search before your hint.
Thanks to it, I could see that no point was linked to my pictures on 0,0: the issue was from a small set of points located at home while I was travelling abroad leading to long back & forth trips.
Issue solved!

]]>
https://discourse.dawarich.app/t/can-i-clean-up-wrong-points-distance-stat-is-crazy/70#post_3 Tue, 10 Mar 2026 18:13:20 +0000 discourse.dawarich.app-post-195
Synology Container Update from 0.25.8 Is it an option for you to try and proceed without updating Postgres? If you have a backup from PG14 you can try simply update Dawarich without upgrading Postgres. It should work with no issues database-version-wise

]]>
https://discourse.dawarich.app/t/synology-container-update-from-0-25-8/69#post_5 Tue, 10 Mar 2026 17:12:09 +0000 discourse.dawarich.app-post-194
Can I clean up wrong points? Distance stat is crazy Hey, sorry for late response!

If you want to search by coordinates, try this:

points Point.where(lonlat: "POINT(0 0)")

Also, you can confirm your suggestion directly on the map: just select timeframe to include whole April of 2018, enable the Points layer and zoom the map out. The map also have selection tool which allows you to select an area and points inside it and bulk-delete them all.

]]>
https://discourse.dawarich.app/t/can-i-clean-up-wrong-points-distance-stat-is-crazy/70#post_2 Tue, 10 Mar 2026 17:06:18 +0000 discourse.dawarich.app-post-193
Synology Container Update from 0.25.8 Hello,

Does anyone have any advice for me?

greetz dipsy

]]>
https://discourse.dawarich.app/t/synology-container-update-from-0-25-8/69#post_4 Sun, 08 Mar 2026 19:31:54 +0000 discourse.dawarich.app-post-192
DB init failed - Android Hi. New user here. Self hosting. Was able to record and upload a few tracks from the Android app and am learning the platform. But today I got DB init failed message on my Android device.

It appears to have been inconsequential, but the only way I found to clear the error was to restart the phone.

Anyway, hope this is helpful feedback. Thanks for creating this!

]]>
https://discourse.dawarich.app/t/db-init-failed-android/72#post_1 Sat, 07 Mar 2026 23:05:35 +0000 discourse.dawarich.app-post-191
.env file not being completely read How is your docker-compose file looking?

The reason I am asking is if you are importing individual variables, or importing the whole .env as environment variables?

]]>
https://discourse.dawarich.app/t/env-file-not-being-completely-read/71#post_2 Fri, 06 Mar 2026 08:11:30 +0000 discourse.dawarich.app-post-190
.env file not being completely read I’m using a .env file to set my OIDC settings, but they are not getting read in, even when I bring down the stack completely. All other settings (DB, domain, etc.) are being read fine, but the app logs still show me


 RailsPulse: Authentication is enabled but no authentication method is configured. This will deny all access.
[dawarich_app] 2026-03-05T20:26:40.617853028Z OIDC: Not configured (missing OIDC_CLIENT_ID or OIDC_CLIENT_SECRET)

.env file (edited for public) below:

DAWARICH_APP_PORT=3009
TIME_ZONE=America/New_York
APPLICATION_HOSTS=localhost,10.150.88.54,location.MYDOMAIN.com
RAILS_APPLICATION_CONFIG_HOSTS=localhost,10.150.88.54,location.MYDOMAIN.com
SELF_HOSTED=true
DATABASE_NAME=dawarich
POSTGRES_DB=dawarich

OIDC_CLIENT_ID=dawarich
OIDC_CLIENT_SECRET=gibberish
OIDC_ISSUER=https://auth.MYDOMAIN.com/realms/MYREALM
OIDC_REDIRECT_URI=https://location.MYDOMAIN.com/users/auth/openid_connect/callback
OIDC_PROVIDER_NAME="Sign in with Keycloak"
OIDC_AUTO_REGISTER=true
ALLOW_EMAIL_PASSWORD_REGISTRATION=false
]]>
https://discourse.dawarich.app/t/env-file-not-being-completely-read/71#post_1 Thu, 05 Mar 2026 20:31:53 +0000 discourse.dawarich.app-post-189
Dawarich Android app Some additional info: if you prefer my app without google services, you can get the FOSS version of my app from GitHub releases. F-Droid is in progress but I can’t tell when it gets released there, so for the time being I would recommend sticking to releases from GitHub

]]>
https://discourse.dawarich.app/t/dawarich-android-app/60#post_15 Thu, 05 Mar 2026 11:54:00 +0000 discourse.dawarich.app-post-188
Dawarich Android app Currently we’ve decided to go with Google Services. There is a community app by @sunstep planned to be released via F-Droid, check it out:

]]>
https://discourse.dawarich.app/t/dawarich-android-app/60#post_14 Tue, 03 Mar 2026 19:08:18 +0000 discourse.dawarich.app-post-187
Dawarich Android app Source code for the mobile app is not published

]]>
https://discourse.dawarich.app/t/dawarich-android-app/60#post_13 Tue, 03 Mar 2026 19:05:36 +0000 discourse.dawarich.app-post-186
Dawarich Android app Version 2.1 should support HTTP connections, please try it!

]]>
https://discourse.dawarich.app/t/dawarich-android-app/60#post_12 Tue, 03 Mar 2026 19:05:05 +0000 discourse.dawarich.app-post-185
Dawarich Android app I just found this community forum and your post - that’s great to hear! However, using Google ecosystem - and Google Play Services framework in specific - somehow contradicts the privacy and self-hosting aspects of Dawarich.

Have you thought about a F-Droid release? That would be great :smiley:

]]>
https://discourse.dawarich.app/t/dawarich-android-app/60#post_11 Mon, 02 Mar 2026 21:01:38 +0000 discourse.dawarich.app-post-184
First open source Dawarich mobile client for Android is now available! I am glad you appreciate my app! And I totally agree. It should be open source in my opinion. At least my app is not going anywhere for a FOSS option!

]]>
https://discourse.dawarich.app/t/first-open-source-dawarich-mobile-client-for-android-is-now-available/58#post_15 Mon, 02 Mar 2026 09:38:28 +0000 discourse.dawarich.app-post-183
Synology Container Update from 0.25.8 Hello Freika,

I started with dawarich 0.2xx.x and always selected the latest image in Container Manager. With the switch to 0.26.0, it is necessary to convert the PostgreSQL database from 14 to 17. I did not do this due to a lack of knowledge, and the containers no longer started. My approach at the time was to switch from the latest to 0.25.8. In hindsight, that was not a smart decision.

Now I wanted to take another look at the issue. I stopped the project and performed a complete backup of the four containers and the database. Then I opened docker-compose.yml and created the entry for the service and the volume. According to the instructions at Updating to PostgreSQL 17 with PostGIS | Dawarich , step 2 is to create a dump of the database via the console. Now don’t laugh at me, but which console do I have on the Synology?

Perhaps one option would be to set up a new project and re-upload the database, but to be honest, I want to manage the update.

greetz

dipsy

]]>
https://discourse.dawarich.app/t/synology-container-update-from-0-25-8/69#post_3 Sun, 01 Mar 2026 14:20:27 +0000 discourse.dawarich.app-post-182
First open source Dawarich mobile client for Android is now available! I’ve been using your app for a few days, and it’s been working very well so far. I haven’t been able to find the official app’s source code, which, considering Dawarich is open source, I would reckon its official apps should be just as open. So thank you very much for making this!

]]>
https://discourse.dawarich.app/t/first-open-source-dawarich-mobile-client-for-android-is-now-available/58#post_14 Sat, 28 Feb 2026 21:09:30 +0000 discourse.dawarich.app-post-181
Dawarich Android app Where can we find the source code for the app?

]]>
https://discourse.dawarich.app/t/dawarich-android-app/60#post_10 Sat, 28 Feb 2026 21:05:07 +0000 discourse.dawarich.app-post-180
Let me be the first I’m really glad and thankful for all the work put in, too :heart:

]]>
https://discourse.dawarich.app/t/let-me-be-the-first/11#post_3 Sat, 28 Feb 2026 20:56:48 +0000 discourse.dawarich.app-post-179
Can I clean up wrong points? Distance stat is crazy Hello,
I have been using Dawarich for a couple weeks, importing my old Google history and linking with my immich pictures.
Everything looks ok, but I have strange stats for 2018.


I am pretty sure it comes from a set of pictures that was shared with me at the time, I see those pictures on the 0/0 point on the map, but I cannot delete them through the Ruby console: it does not find them.
[1] pry(main)> points = Point.where(latitude: 0, longitude: 0)
Point Load (267.6ms) SELECT “points”.* FROM “points” WHERE “points”.“latitude” = $1 AND “points”.“longitude” = $2 /* loading for pp / LIMIT $3 [[“latitude”, “[FILTERED]”], [“longitude”, “[FILTERED]”], [“LIMIT”, 11]]
=> []
[2] pry(main)> points.size
Point Count (311.8ms) SELECT COUNT(
) FROM “points” WHERE “points”.“latitude” = $1 AND “points”.“longitude” = $2 [[“latitude”, “[FILTERED]”], [“longitude”, “[FILTERED]”]]
=> 0

Is there anything else I can do?
(I actually would like to register a trip for that period, but it’s also polluted by mislocated points)

]]>
https://discourse.dawarich.app/t/can-i-clean-up-wrong-points-distance-stat-is-crazy/70#post_1 Sat, 28 Feb 2026 06:11:03 +0000 discourse.dawarich.app-post-178
Synology Container Update from 0.25.8 What were the changes you couldn’t implement? What specific issues you’re experiencing? Feel free to share your logs

]]>
https://discourse.dawarich.app/t/synology-container-update-from-0-25-8/69#post_2 Fri, 27 Feb 2026 18:59:35 +0000 discourse.dawarich.app-post-177
Synology Container Update from 0.25.8 Hello,

I’m new in this forum, but I’ve been using dawarich very successfully on my Synology NAS for about a year now.

Without this app, I would never have thought of tracking my location history. Unfortunately, I couldn’t get past version 0.25.8 because there were changes at the time that I couldn’t implement.

Now that so much has changed, family location, Android app, etc., I would like to try an update.

Unfortunately, the instructions refer to docker in the shell, which I cannot find in syno. I do have a Portainer.

Can anyone help me find the right approach to upgrade my version 0.25.8 to the current one?

greetz

dipsy

]]>
https://discourse.dawarich.app/t/synology-container-update-from-0-25-8/69#post_1 Wed, 25 Feb 2026 20:11:22 +0000 discourse.dawarich.app-post-176
Does the app only track if I open the app? It’ll be fixed in one of the next releases

]]>
https://discourse.dawarich.app/t/does-the-app-only-track-if-i-open-the-app/63#post_5 Wed, 25 Feb 2026 10:09:42 +0000 discourse.dawarich.app-post-175
Does the app only track if I open the app? It would be really helpful if the app could start automatically on boot and run continuously in the background.
Right now I often forget to open the app, which leads to gaps in my tracking. For me it should track at all times without needing manual opening every time.

]]>
https://discourse.dawarich.app/t/does-the-app-only-track-if-i-open-the-app/63#post_4 Wed, 25 Feb 2026 10:09:05 +0000 discourse.dawarich.app-post-173
Does the app only track if I open the app? Right now I use OwnTracks which works just fine and I don’t have to remember to open up the app before I go on a small or long trip. But with Dawarich, which is ON, as you can see in my screenshot, I have to remeber to open the app before I leave the house, else it will not record any thing.

]]>
https://discourse.dawarich.app/t/does-the-app-only-track-if-i-open-the-app/63#post_3 Thu, 19 Feb 2026 14:28:53 +0000 discourse.dawarich.app-post-169
Suggested visits keep coming back All good mate, no worries. It’s a minor annoyance, that’s all. Reminds me of all the times I leave to fly someplace, which are generally nice memories. :slight_smile:

]]>
https://discourse.dawarich.app/t/suggested-visits-keep-coming-back/64#post_3 Wed, 18 Feb 2026 21:46:17 +0000 discourse.dawarich.app-post-168
Does the app only track if I open the app? If your phone doesn’t have Dawarich in it’s memory (meaning — started), once you open the app, tracking will start automatically if the toggle is in ON position. It won’t, if it’s in the OFF position

Let us know if it’s not working that way for you

]]>
https://discourse.dawarich.app/t/does-the-app-only-track-if-i-open-the-app/63#post_2 Wed, 18 Feb 2026 21:20:39 +0000 discourse.dawarich.app-post-167
Suggested visits keep coming back I’ll have some time in March to tackle this, but not sooner :confused:

]]>
https://discourse.dawarich.app/t/suggested-visits-keep-coming-back/64#post_2 Wed, 18 Feb 2026 21:08:17 +0000 discourse.dawarich.app-post-166
Suggested visits keep coming back There’s a set of 15 suggested visits that keep coming up, no matter if I confirm or deny them. They’re all for the same location, which is a map area I defined. Perhaps these are ones that predated that definition, and are somehow stuck?

This first shot is from 2 February. I alternated confirming and denying, to see if that changed anything.

The exact same ones have come back again, on 15 February.

Any chance of looking into this one please?

]]>
https://discourse.dawarich.app/t/suggested-visits-keep-coming-back/64#post_1 Sun, 15 Feb 2026 05:40:04 +0000 discourse.dawarich.app-post-165
Dawarich Android app We’ll try to allow http with the next release. But I’m not sure if Google allows apps with http support in the Google Play.

]]>
https://discourse.dawarich.app/t/dawarich-android-app/60#post_9 Sat, 14 Feb 2026 16:00:20 +0000 discourse.dawarich.app-post-164
Does the app only track if I open the app? Does this means that I have to open the app before I leave the house or does it track all the time ? it seems to me that I have to remember to open the app before I leave the house if I want to track my moving.

]]>
https://discourse.dawarich.app/t/does-the-app-only-track-if-i-open-the-app/63#post_1 Sat, 14 Feb 2026 15:38:34 +0000 discourse.dawarich.app-post-163
Dawarich Android app Do you know when http will be supported ?

]]>
https://discourse.dawarich.app/t/dawarich-android-app/60#post_8 Fri, 13 Feb 2026 10:19:53 +0000 discourse.dawarich.app-post-161
Dawarich Android app Is it likely that we will be able to adjust the tracking settings via macro commands in the future?

]]>
https://discourse.dawarich.app/t/dawarich-android-app/60#post_7 Wed, 11 Feb 2026 03:01:05 +0000 discourse.dawarich.app-post-160
Dawarich Android app Currently it shows only points tracked with the app. In the future versions it will be able to download history from the server

]]>
https://discourse.dawarich.app/t/dawarich-android-app/60#post_6 Tue, 10 Feb 2026 18:23:57 +0000 discourse.dawarich.app-post-159
First open source Dawarich mobile client for Android is now available! Thanks for clarifying. I agree it does seem a little bit confusing on first look but your explanation of tracks makes sense. I assume people might use that for runs, walks, rides etc but the automatic tracking is the main feature I need - and is working great so far. Thanks again.

]]>
https://discourse.dawarich.app/t/first-open-source-dawarich-mobile-client-for-android-is-now-available/58#post_13 Tue, 10 Feb 2026 17:25:24 +0000 discourse.dawarich.app-post-158
Dawarich Android app Yes. I’m looking at adding https so hopefully all goes ok.

]]>
https://discourse.dawarich.app/t/dawarich-android-app/60#post_5 Tue, 10 Feb 2026 11:13:52 +0000 discourse.dawarich.app-post-157
Dawarich Android app I am really glad that there is an app for Android. I’ve just installed it, and was able to connect to my self-hosted instance. However, when I tried to see all my history, it shows nothing. I can see everything from a browser. is this intended this way that the app will only show the records which is made by that?

]]>
https://discourse.dawarich.app/t/dawarich-android-app/60#post_4 Mon, 09 Feb 2026 22:41:51 +0000 discourse.dawarich.app-post-156
First open source Dawarich mobile client for Android is now available! I’m glad you’re liking the app!

This is a good question, I do have to admit I kind of messed up the UX a bit in the app so I’ll have to fix that, but basically in Dawarich points, there is a property called track id, which is basically an id that can group points together, by pressing record, you’re not tracking, but it creates a new id and assigns it to the points the app makes, forming a 'track’. Then when you stop recording, it stops adding that track id to points. When you start recording again, it creates a new track id and forms a new track. I know it is really confusing so I’ll have to change it in the UI to not confuse users any further!

So to summarize, the record feature doesn’t actually record points, it just creates a track id for the points the app makes. I am honestly not sure how much this is actually used in Dawarich and whether Frey has plans to use it or not, but I just wanted to make sure my app supports it. But considering the feature is barely used, I might minimize it in the UI so it doesn’t look like the main tracker feature while all it does is create an ID for points to group together.

I hope this clarifies the use for the record feature.

]]>
https://discourse.dawarich.app/t/first-open-source-dawarich-mobile-client-for-android-is-now-available/58#post_12 Mon, 09 Feb 2026 21:51:52 +0000 discourse.dawarich.app-post-155
First open source Dawarich mobile client for Android is now available! Just wanted to say thanks for creating this app as FOSS. I have moved to using your app instead of GPSLogger. :+1:

Just a quick question. In the Tracker page, I have enabled Automatic Tracking in the Basic section, which I believe provides the same service GPSLogger did - uploading data points regularly - but what is the Recording section used for if I’m already using the Automatic Tracking feature?

Cheers

]]>
https://discourse.dawarich.app/t/first-open-source-dawarich-mobile-client-for-android-is-now-available/58#post_11 Mon, 09 Feb 2026 21:23:20 +0000 discourse.dawarich.app-post-154
Dawarich Android app Are you using https protocol? Http is not supported in production app unfortunately.

]]>
https://discourse.dawarich.app/t/dawarich-android-app/60#post_3 Mon, 09 Feb 2026 14:09:33 +0000 discourse.dawarich.app-post-153
Dawarich Android app Unfortunately for me the connection fails. I have no problem connecting with GPS Logger and the open source Android app by sunstep.

I do use Tail scale but that hasn’t stopped the others from working.

I am self hosting.

]]>
https://discourse.dawarich.app/t/dawarich-android-app/60#post_2 Mon, 09 Feb 2026 11:21:44 +0000 discourse.dawarich.app-post-152