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
class Voila { | |
public: | |
// Voila | |
static const string VOILA = "Voila"; | |
// will not interfere with embedded tags. | |
} |
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
public class DataBaseHelper extends SQLiteOpenHelper{ | |
//The Android's default system path of your application database. | |
//replace com.binarybricks.shippingwithsqllite with you Application package nae | |
//This should be same as which you used package section in your manifest | |
private static String DB_PATH = "/data/data/com.binarybricks.shippingwithsqllite/databases/"; | |
//replace this with name of your db file which you copied into asset folder | |
private static String DB_NAME = "dexterology"; | |
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
rxPermissions.request(Manifest.permission.ACCESS_FINE_LOCATION) | |
.subscribe(new Consumer<Boolean>() { | |
@Override | |
public void accept(@NonNull Boolean locationPermissionGranted) throws Exception { | |
// if location permission is granted query the api | |
if (locationPermissionGranted) { | |
} else { | |
} |
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
query SearchYelp($radius: Float!, $latitude: Float!,$longitude: Float!,$offset:Int!,$term:String!) { | |
search(term: $term,radius: $radius, latitude: $latitude,longitude: $longitude, limit: 20, offset: $offset) { | |
total | |
business { | |
id | |
name | |
rating | |
photos | |
price | |
coordinates { |
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
query BusinessDetails($businessID: String!){ | |
business(id: $businessID) { | |
id | |
name | |
is_claimed | |
is_closed | |
url | |
phone | |
display_phone | |
review_count |