Simple KML file – draw line according to position and add two pins START/STOP

Here is simple sample: <?xml version="1.0" encoding="UTF-8"?> <kml xmlns="http://www.opengis.net/kml/2.2" xmlns:gx="http://www.google.com/kml/ext/2.2" xmlns:kml="http://www.opengis.net/kml/2.2" xmlns:atom="http://www.w3.org/2005/Atom"> <Document> <name>PathDemo2.kml</name> <Style id="draw_line_style"> <LineStyle> <color>7f00ff00</color> <width>3</width> </LineStyle> </Style> <Placemark> <name>RoadDemo</name> <styleUrl>#draw_line_style</styleUrl> <LineString> <coordinates> 20.82081882275383,52.16265118965216,0 20.82080165456582,52.1626334883289,0 ...more here…

Could not find com.android.tools.build:gradle:2.2.0 -here is the solution

In case You had problem with: Error:Could not find com.android.tools.build:gradle:2.2.0. Searched in the following locations: https://repo1.maven.org/maven2/com/android/tools/build/gradle/2.2.0/gradle-2.2.0.pom https://repo1.maven.org/maven2/com/android/tools/build/gradle/2.2.0/gradle-2.2.0.jar Required by: :YOUR_PROJECT:unspecified Don't forget modify root build.gradle and add jcenter() It would…