-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- [TripKitUI] update FetchTripGoLocationsImpl to pass modeIdentifiers on SkedgoResultLocationAdapter - [TripKit] update GCSkedGoResultInterface and GCSkedgoResult to add handling for modeIdentifiers field - [TripKit] update MultiSourceGeocodingAggregator to add logic for increasing score range if candidate has modeIdentifiers - [TripKitUI] update SkedgoResultLocationAdapter to add handling for modeIdentifiers
- Loading branch information
1 parent
7fa56f3
commit 6edcefe
Showing
3 changed files
with
35 additions
and
70 deletions.
There are no files selected for viewing
This file contains 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
6 changes: 6 additions & 0 deletions
6
TripKitAndroid/src/main/java/com/skedgo/geocoding/agregator/GCSkedGoResultInterface.java
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,16 @@ | ||
package com.skedgo.geocoding.agregator; | ||
|
||
import androidx.annotation.Nullable; | ||
|
||
import java.util.List; | ||
|
||
public interface GCSkedGoResultInterface extends GCResultInterface { | ||
|
||
// skedgo result class (class json field) | ||
String getResultClass(); | ||
// skedgo result popularity (popularity json field) | ||
int getPopularity(); | ||
|
||
@Nullable | ||
List<String> getModeIdentifiers(); | ||
} |
This file contains 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