Places Autocomplete: Android

Posted on Leave a commentPosted in Android

Places Autocomplete: Android Steps 1: Create Android API Browser API key on google console. 2: Http Get Request on following link: https://maps.googleapis.com/maps/api/place/autocomplete/json?input=ban&key=API_KEY 3: Define output format : json/xml 4: On autocomplete text  change , call following method . PlaceAPI.getPlace(String inputType,  String latitude,String longitude) Ex. PlaceAPI.getPlace(“bank”,”18.643702″,”73.00000″)   5: Set Adapter to autocomplete view.   PlaceAPI Code: import org.json.JSONArray; import […]

XML Parsing using NSXMLParser in Swift

Posted on Leave a commentPosted in iOS

For your reference, you can download the complete Xcode project from GitHub. Steps: (1) Create Swift Project (2) Declare Variables in ViewController.swift file : Now, declare some variables which we want to parse from XML file or Used in our Project. For variable declare in Swift Programming write below code : (3) Implement NSXMLParser Delegate […]

App Verification from website

Posted on 1 CommentPosted in Android

We can share the app using website link and now we also check the app installed from same link. In addition to using intent filters to declare an association between your app and a website, your manifest must also include an additional declaration for requesting automatic verification. When this declaration is present, the Android system attempts to […]