Skip to content

Commit

Permalink
Merge pull request #104 from SchibstedSpain/version341
Browse files Browse the repository at this point in the history
[HOTFIX] New version 3.4.1.
  • Loading branch information
ferranpons authored Jul 13, 2017
2 parents 508355d + 0db82fd commit db80ae4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ Include the dependency in your app `build.gradle`:

```groovy
dependencies {
compile 'com.schibstedspain.android:leku:3.4.0'
compile 'com.schibstedspain.android:leku:3.4.1'
}
```

Expand Down
4 changes: 2 additions & 2 deletions leku/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ apply plugin: 'com.novoda.bintray-release'
apply from: '../quality.gradle'

group = 'com.schibstedspain.android'
version = '3.4.0'
version = '3.4.1'

android {
compileSdkVersion 25
Expand Down Expand Up @@ -69,7 +69,7 @@ publish {
userOrg = 'schibstedspain'
groupId = 'com.schibstedspain.android'
artifactId = 'leku'
publishVersion = '3.4.0'
publishVersion = '3.4.1'
desc = 'Location picker component for Android. It returns a latitude,longitude and an address based on the location picked in the LocationPickerActivity provided.'
website = 'https://github.com/SchibstedSpain/leku'
}
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@ public class LocationPickerActivity extends AppCompatActivity
GoogleApiClient.OnConnectionFailedListener, LocationListener, GoogleMap.OnMapLongClickListener,
GeocoderViewInterface, GoogleMap.OnMapClickListener {

public static final String LATITUDE = "locationLatitude";
public static final String LONGITUDE = "locationLongitude";
public static final String LATITUDE = "latitude";
public static final String LONGITUDE = "longitude";
public static final String ZIPCODE = "zipcode";
public static final String ADDRESS = "address";
public static final String LOCATION_ADDRESS = "location_address";
Expand Down

0 comments on commit db80ae4

Please sign in to comment.