GitXplorerGitXplorer
b

opencaching-android

public
1 stars
0 forks
1 issues

Commits

List of commits on branch master.
Verified
a5e8ed5964c226bf1a077db7029f2d32ac20f1ab

bump gradle to 8.7

bbartekpacia committed 8 months ago
Verified
bebdc30feeffe110ba5586c5bcf148a94c9cdb41

Merge pull request #9 from bartekpacia/improve_cache_screen

bbartekpacia committed a year ago
Verified
ec29656834b2f3d476321c19f57c82b1f2d7d2c2

oof, remove leaked OKAPI key

bbartekpacia committed a year ago
Verified
7ba32bcff6ce054d2f0ccc52424e0ee6328f3959

improve SignInScreen

bbartekpacia committed a year ago
Verified
1acf06fa89614edb0202b0eeca617e938cf6ed7d

SignInScreen: add @Preview

bbartekpacia committed a year ago
Verified
780871373cc85de6748b3fe1a07db12daf48db69

use Routes for all navigation destinations

bbartekpacia committed a year ago

README

The README file for this repository.

Opencaching

⚠️ work in progress

An Android app for Geocaching, built with Jetpack Compose.

Supports OpenCaching sites through OKAPI.

Setup

OKAPI

You need to sign up on one of the national Opencaching websites and obtain API credentials.

Once you have the credentials, paste them into local.properties:

okapi.consumerKey=YOUR_CONSUMER_KEY_HERE
okapi.consumerSecret=YOUR_CONSUMER_SECRET_HERE

Android setup

To display the map, a Google Maps API key is needed. It can be obtained on Google Cloud Console. Once you have the key, paste it into androidApp/src/main/res/values/google_maps_api_key.xml:

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <string name="google_maps_api_key" translatable="false">YOUR_API_KEY_HERE</string>
</resources>