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
Mike 65fb5fa30e Update Symbols 2025-12-22 00:07:10 +01:00
PacketDroid@4df3e4a955
androidTest/java/org/aprsdroid/app Added testing framework for local unit tests and instrumented unit tests 2020-08-30 15:44:38 -07:00
asset-graphics SVG and PNG for CC0 crosshair icon by SVG Repo 2021-10-14 09:40:20 +02:00
doc
gradle/wrapper Scala build: use new scalaAndroid plugin, bump gradle and deps 2025-12-21 21:07:35 +01:00
img
libs jsoundmodem 52ab15e (2025-02-07): digipeat support, tnx @na7q 2025-02-07 18:08:38 +01:00
res Update Symbols 2025-12-22 00:07:10 +01:00
src Android 14: use location/microphone in foreground service 2025-12-21 23:31:48 +01:00
test/java/org/aprsdroid/app Added testing framework for local unit tests and instrumented unit tests 2020-08-30 15:44:38 -07:00
translations translation import 2021-10-20 2021-10-20 10:33:50 +02:00
.gitignore Added a Gradle wrapper for building APRSdroid 2020-08-29 21:30:17 -07:00
.gitmodules
.travis.yml Xvfb is not needed with this version of the emulator 2020-08-30 23:19:53 -07:00
AndroidManifest.xml Android 14: use location/microphone in foreground service 2025-12-21 23:31:48 +01:00
ChangeLog version 1.6.2 2021-10-20 10:33:50 +02:00
LICENSE
README.md Added README 2021-10-20 09:46:37 +02:00
activities.md
build.gradle Android 15: bump SDK 2025-12-21 23:54:30 +01:00
gradle.properties Scala build: use new scalaAndroid plugin, bump gradle and deps 2025-12-21 21:07:35 +01:00
gradlew Added a Gradle wrapper for building APRSdroid 2020-08-29 21:30:17 -07:00
gradlew.bat Added a Gradle wrapper for building APRSdroid 2020-08-29 21:30:17 -07:00
jni
proguard.cfg proguard: fix extends/implements warning 2023-10-08 19:19:12 +02:00
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.

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