Skip to content
This repository has been archived by the owner on Aug 23, 2023. It is now read-only.

Fixed Issue# 195 and other errors that were causing initial build issues after cloning repo #198

Open
wants to merge 3 commits into
base: main
Choose a base branch
from

Commits on Jun 29, 2019

  1. Changed compileSdkVersion from 'android-Q' to 29.

    Changed targetSdkVersion from 'Q' to 29.
    syedahmedjamil committed Jun 29, 2019
    Configuration menu
    Copy the full SHA
    e23bb69 View commit details
    Browse the repository at this point in the history
  2. Fixed ERROR: Smart cast to 'Location' is impossible, because 'task.re…

    …sult' is a property that has open or custom getter on line 91.
    
    Assigend the value of task.result to a new variable 'mLastLocation' before the if condition and and used 'mLastLocation' instead of task.result to avoid smart cast error.
    syedahmedjamil committed Jun 29, 2019
    Configuration menu
    Copy the full SHA
    098e5db View commit details
    Browse the repository at this point in the history
  3. Fixed WARNING: Type mismatch: inferred type is String? but String was…

    … expected on line 160.
    
    Changed private var addressOutput = ""   to   private var addressOutput : String? = "" on line 91.
    syedahmedjamil committed Jun 29, 2019
    Configuration menu
    Copy the full SHA
    33d3080 View commit details
    Browse the repository at this point in the history