Skip to content

Commit

Permalink
refactor: move core extensions to separate package.
Browse files Browse the repository at this point in the history
  • Loading branch information
arriolac committed Mar 25, 2020
1 parent 207033a commit e695304
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*
*/

package com.google.maps.android.ktx.utils.core
package com.google.maps.android.ktx

import com.google.android.gms.maps.model.PolygonOptions

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*
*/

package com.google.maps.android.ktx.utils.core
package com.google.maps.android.ktx

import com.google.android.gms.maps.GoogleMap
import com.google.android.gms.maps.SupportMapFragment
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*
*/

package com.google.maps.android.ktx.utils.core
package com.google.maps.android.ktx

import android.graphics.Color
import com.google.android.gms.maps.model.LatLng
Expand All @@ -26,7 +26,7 @@ class PolygonOptionsTest {
@Test
fun testBuilder() {
val polygonOptions =
buildPolygonOptions {
com.google.maps.android.ktx.buildPolygonOptions {
strokeWidth(1.0f)
strokeColor(Color.BLACK)
add(LatLng(0.0, 0.0))
Expand Down
1 change: 0 additions & 1 deletion maps-utils-ktx/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ dependencies {
api deps.kotlin
api deps.androidMapsUtils
implementation deps.playServicesMaps
implementation deps.kotlinxCoroutines

// Tests
testImplementation deps.androidx.test
Expand Down

0 comments on commit e695304

Please sign in to comment.