settings_mobile.go 197 B

123456789101112
  1. //go:build android || ios || mobile
  2. // +build android ios mobile
  3. package app
  4. func (s *settings) watchSettings() {
  5. // no-op on mobile
  6. }
  7. func (s *settings) stopWatching() {
  8. // no-op on mobile
  9. }