Fork of the MicroG UnifiedNlp repository with a working standalone app implementation
Go to file
Marvin W 75d87e1d49
Add API docs
2020-06-05 20:51:20 +02:00
.tx Configure Transifex 2017-02-24 03:58:13 +01:00
api Add API 2020-06-05 20:49:40 +02:00
docs/backend-sample Add API docs 2020-06-05 20:51:20 +02:00
gradle/wrapper Update gradle, build tools, deps, fix/suppress warnings 2018-01-01 18:38:36 +01:00
patches Allow location providers also outside of /system 2016-10-28 20:46:25 +02:00
unifiednlp-app Update gradle, build tools, deps, fix/suppress warnings 2018-01-01 18:38:36 +01:00
unifiednlp-base Update gradle, build tools, deps, fix/suppress warnings 2018-01-01 18:38:36 +01:00
unifiednlp-compat Change sdk platform used for build 2018-05-30 10:04:09 +02:00
.gitignore Generate Gradle BuildConfig.java file during AOSP build 2016-03-01 13:57:33 +01:00
.travis.yml Update gradle, build tools, deps, fix/suppress warnings 2018-01-01 18:38:36 +01:00
Android.mk Generate Gradle BuildConfig.java file during AOSP build 2016-03-01 13:57:33 +01:00
LICENSE Update build tools, subrepos and add LICENSE 2016-07-02 17:10:23 +02:00
README.md Add release files description to README.md 2017-08-10 12:55:30 +02:00
build.gradle Update gradle, build tools, deps, fix/suppress warnings 2018-01-01 18:38:36 +01:00
gradlew Update icon, prepare for 1.4.0 release 2015-09-15 19:30:06 +02:00
ic_nlp_marker.svg Update icon, prepare for 1.4.0 release 2015-09-15 19:30:06 +02:00
ic_nlp_settings.svg Update icon 2015-01-13 00:28:08 +01:00
proguard.flags Add missing files 2014-03-10 14:05:56 +01:00
settings.gradle Use microg-ui-tools 2016-01-20 15:41:22 +01:00

README.md

microG Unified Network Location Provider

Build Status

The next generation Network Location Provider, based on plugins. Usually abbreviated as UnifiedNlp.

Available on F-Droid

Installation

Release builds may be found on the release page.

Unified Network Location Provider is provided in 3 variants:

  • NetworkLocation.apk for the usual configuration of Android 4.4+ without GApps
  • LegacyNetworkLocation.apk for the usual configuration of Android 2.3 - 4.3.1 without GApps
  • UnifiedNlp.apk for Android WITH Gapps

Keep in mind that:

  • All three variants are available on F-Droid as well, but they use different apk names (have a look at app description on F-Droid to check which version to use).
  • There is another repo containing the deprecated version of NetworkLocation.apk without the plug-in system.
  • microG GmsCore project already includes the Unified Network Location Provider.

Android 4.4 - 7.1.1 (KitKat / Lollipop / Marshmallow / Nougat)

Most modern ROMs come with support for non-Google geolocation providers. On these systems installation is easy:

  1. Make sure that no Google geolocation tool is installed (it is usually listed as Google Play Services in Apps)
  2. Download and install NetworkLocation.apk as a usual app (you may need to enable "Unknown sources" in Settings->Security)
  3. Reboot and continue at Usage

Some ROMs, especially those not based on AOSP might have problems using this method. However, if your system has root, you can try installing the hard way:

  1. Download NetworkLocation.apk
  2. Mount /system read-write (from your PC, call adb root && adb remount)
  3. Copy NetworkLocation.apk to /system/priv-app (from your PC, call adb push NetworkLocation.apk /system/priv-app/NetworkLocation.apk)
  4. Reboot (from you PC, call adb reboot) and continue at Usage

Note: On Android 7 (or later) an additional patch is needed to make it working, or alternatively, you can install it in /system/priv-app as explained above.

Android 2.3 - 4.3.1 (Gingerbread / Honeycomb / Ice Cream Sandwich / Jelly Bean)

Older Android versions are no longer officially supported. However I still provide a legacy build, that should be compatible with those systems. It is required to have a rooted system to install on Jelly Bean and older.

  1. Download LegacyNetworkLocation.apk
  2. Mount /system read-write (from your PC, call adb root && adb remount)
  3. Copy LegacyNetworkLocation.apk to /system/app (from your PC, call adb push LegacyNetworkLocation.apk /system/app/LegacyNetworkLocation.apk)
  4. Reboot (from you PC, call adb reboot) and continue at Usage

Usage

UnifiedNlp alone does not provide any features, but acts as a middleware for multiple backends. Most of them can be downloaded and updated using F-Droid. Here is a list of backends known to me.

List of backends for geolocation:

  • AppleWifiNlpBackend - Uses Apple's service to resolve Wi-Fi locations. It has excellent coverage but the database is proprietary.
  • OpenWlanMapNlpBackend - Uses OpenWlanMap.org to resolve user location but the NLP backend did not reach release-quality, yet. Users interested in a freely licensed and downloadable database for offline use should stick with openBmap for now - Last updated in 2015
  • OpenBmapNlpBackend - Uses openBmap to resolve user location. Community-created, freely licensed database that can optionally be downloaded for offline operation. The coverage varies from country to country (it's best in central Europe).
  • MozillaNlpBackend - Uses the Mozilla Location Service to resolve user location. The coverage is OK. Only the cell tower database is free.
  • LocalWifiNlpBackend - Local location provider for Wi-Fi APs using on-phone generated database.
  • LocalGSMLocationProvider - Local opencellid based location provider backend. Has been surpassed by LocalGSMBackend which also has an OpenCellID option - Last update in 2014
  • LocalGSMBackend - Local location provider for GSM cells. It works offline by downloading freely licensed database files from Mozilla, OpenCellID, or lacells.db.

List of backends for (reverse) geocoding:

(...) Create issue or pull request to extend either list :)

After installing a backend, you can use UnifiedNlp by activating network-based geolocation in Settings->Location. Since KitKat, you need to select any mode but "device only", on older Android version this setting is called "Wi-Fi & mobile network location" (ignore any misleading texts saying this is for Google's location service, you don't have Google's service installed but UnifiedNlp 😄)

Backend development

The API is available here. Documentation may be found in the README provided with the API.

You might also take a look into existing backends, to see how they work out.

Building

UnifiedNlp can be built using Gradle. Current builds are done using Gradle 2.2, but other versions might work as well.

To build with Gradle, first download git submodules:

git submodule update --init

AOSP Build system integration

UnifiedNlp can be build as part of Android when building an Android ROM from source. Add this repo to your (local) manifest.xml, as well as the UnifiedNlpApi and extend the PRODUCT_PACKAGES variable with NetworkLocation for KitKat and LegacyNetworkLocation for Jelly Bean.

You can also directly invoke the compilation of UnifiedNlp by calling make UnifiedNlp or make NetworkLocation (respectively make LegacyNetworkLocation) from the build system root. Note that you need to add UnifiedNlpApi and MicroGUiTools to the build system for UnifiedNlp to compile:

  <project name="microg/android_packages_apps_UnifiedNlp" path="packages/apps/UnifiedNlp" remote="github" revision="master"/>
  <project name="microg/android_external_UnifiedNlpApi" path="external/UnifiedNlpApi" remote="github" revision="master"/>
  <project name="microg/android_external_MicroGUiTools" path="external/MicroGUiTools" remote="github" revision="master"/>

Attribution

Some components: Copyright (C) 2013 The Android Open Source Project

compat-folder is extracted from different AOSP versions for cross-version compatibility

License

Copyright (C) 2013-2016 microG Project Team

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.