This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // see code files below |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import android.content.ComponentName; | |
| import android.content.Context; | |
| import android.content.Intent; | |
| import android.content.ServiceConnection; | |
| import android.os.IBinder; | |
| import io.reactivex.SingleEmitter; | |
| import io.reactivex.SingleOnSubscribe; | |
| import io.reactivex.annotations.NonNull; | |
| import io.reactivex.disposables.Disposable; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import android.util.Pair; | |
| import com.google.gson.Gson; | |
| import com.google.gson.GsonBuilder; | |
| import org.reactivestreams.Publisher; | |
| import java.io.File; | |
| import java.util.Arrays; | |
| import java.util.List; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import com.google.gson.JsonElement; | |
| import java.math.BigDecimal; | |
| import java.util.ArrayList; | |
| import java.util.List; | |
| public class JsonUtils { | |
| public static final int MARKERS_COUNT_MAX = 2; |