This site has been retired. For up to date information, see handbook.gnome.org or gitlab.gnome.org.


[Home] [TitleIndex] [WordIndex

GeoclueShare

GeoclueShare is an Android application that lets you share your Android GPS location with a GNOME Desktop located on the same WiFi network. You can disable or enable location sharing service in GeoclueShare as per your needs.

It has been introduced to GNOME as a GSoC 2015 Project.

You can install it directly from the Google Play Store.

Requirements for development

Where can I try the application?

You download the app releases from the GitHub repository.

Getting in touch

Development Resources

Translation guide

Android translations are fairly simple. Android has a special folder called res located in app/src/main/. This folder contains all the resources used by the application, including the strings. The strings are stored in res/values/strings.xml.

Steps:

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <string name="title">My Application</string>
    <string name="hello_world">Hello World!</string>
</resources>

This is what a strings.xml might look like.

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <string name="title">Mon Application</string>
    <string name="hello_world">Bonjour le monde !</string>
</resources>

This is what res/values-fr/strings.xml for the corresponding res/values/strings.xml might look like.

Additionally if you want to add a language on the basis of country too like English UK or Canadian French, you can create values folder (in first step) as values-<language_code>-<COUNTRY_CODE>. For example values-fr-CA and values-en-GB for Canadian French and English UK respectively. Country codes can be found here


CategoryUtility


2024-10-23 10:58