APRSdroid is an Android application for Amateur Radio operators. It allows reporting your position to the APRS (Automatic Packet Reporting System) network, displaying of nearby amateur radio stations and the exchange of APRS messages.
 
 
 
Go to file
Loren M. Lang 7cb942880d Make the README CI badge only show the status of pushes to master 2022-01-31 23:52:19 -08:00
.github/workflows Enable SD card needed for profile tests 2022-01-30 21:14:41 -08:00
PacketDroid@4df3e4a955
androidTest/java/org/aprsdroid/app
asset-graphics SVG and PNG for CC0 crosshair icon by SVG Repo 2021-10-14 09:40:20 +02:00
doc
gradle/wrapper
img
libs AX.25: fix empty digi path 2021-11-19 15:35:53 +01:00
res translation import 2021-10-20 2021-10-20 10:33:50 +02:00
src Longitude values were backwards and removed reduntant negative sign 2022-01-05 03:54:32 -08:00
test/java/org/aprsdroid/app
translations translation import 2021-10-20 2021-10-20 10:33:50 +02:00
.gitignore
.gitmodules
.travis.yml
AndroidManifest.xml
ChangeLog version 1.6.2 2021-10-20 10:33:50 +02:00
LICENSE
README.md Make the README CI badge only show the status of pushes to master 2022-01-31 23:52:19 -08:00
activities.md
build.gradle
gradle.properties
gradlew
gradlew.bat
jni
proguard.cfg
project.properties
xml2po.sh

README.md

APRSdroid

APRSdroid is an Android application for Amateur Radio operators. It allows reporting your position to the APRS (Automatic Packet Reporting System) network, displaying of nearby amateur radio stations and the exchange of APRS messages.

APRSdroid is Open Source Software written in Scala and licensed under the GPLv2.

master: Android CI

Quick links:

Compilation

APRSdroid is written in Scala and uses gradle-android-scala-plugin to compile the source. It mostly works, but takes roughly three minutes for a full build, and often produces non-working APKs on incremental builds.

Google Maps: you need to obtain a Maps API key for your signing key, or the map view will remain blank.

Having the Maps API key, do the following to compile and install an APK:

git clone https://github.com/ge0rg/aprsdroid/
cd aprsdroid
git submodule update --init --recursive
# replace AI... with your API key:
echo "mapsApiKey=AI..." > local.properties
# for a debug build:
./gradlew installDebug
# for a release build:
./gradlew installRelease