Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Verified Commit 0ef42c32 authored by Marvin W.'s avatar Marvin W. 🐿️
Browse files

Update UnifiedNlp

parent 4a8f94d3
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -5,7 +5,7 @@

buildscript {
    ext.cronetVersion = '102.5005.125'
    ext.nlpVersion = '2.0-alpha9'
    ext.nlpVersion = '2.0-alpha10'
    ext.safeParcelVersion = '1.7.0'
    ext.wearableVersion = '0.1.1'

@@ -39,7 +39,7 @@ buildscript {
    ext.androidCompileSdk = 31

    repositories {
        jcenter()
        mavenCentral()
        google()
    }

@@ -82,7 +82,7 @@ allprojects {

subprojects {
    repositories {
        jcenter()
        mavenCentral()
        google()
    }
}
+1 −1
Original line number Diff line number Diff line
@@ -115,7 +115,7 @@ public class LocationRequestHelper {
     */
    public boolean report(Location location) {
        if (!isActive()) return false;
        if (location == null) return true;
        if (location == null || !Double.isFinite(location.getLatitude()) || !Double.isFinite(location.getLongitude())) return true;
        if (lastReport != null) {
            if (location.equals(lastReport)) {
                return true;