Skip to content

Commit

Permalink
New Release version 7.0.1 that solves edittext focus issue (AdevintaS…
Browse files Browse the repository at this point in the history
  • Loading branch information
ferranpons authored May 25, 2020
1 parent 2f91022 commit 5d965d3
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,14 +83,14 @@ Include the dependency in your app `build.gradle`:

```groovy
dependencies {
implementation 'com.schibstedspain.android:leku:7.0.0'
implementation 'com.schibstedspain.android:leku:7.0.1'
}
```

Alternatively, if you are using a different version of Google Play Services and AndroidX use this instead:

```groovy
implementation ('com.schibstedspain.android:leku:7.0.0') {
implementation ('com.schibstedspain.android:leku:7.0.1') {
exclude group: 'com.google.android.gms'
exclude group: 'androidx.appcompat'
}
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
<string name="launch_legacy_map_picker" translatable="false">LAUNCH LEGACY MAP LOCATION ACTIVITY</string>
<string name="launch_map_picker_with_pois" translatable="false">LAUNCH MAP WITH POIS</string>
<string name="launch_map_picker_with_style" translatable="false">LAUNCH MAP WITH STYLE</string>
<string name="leku_lib_version" translatable="false">version 7.0.0</string>
<string name="leku_lib_version" translatable="false">version 7.0.1</string>
</resources>
4 changes: 2 additions & 2 deletions docs/getting_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ Include the dependency in your app `build.gradle`:

```groovy
dependencies {
implementation 'com.schibstedspain.android:leku:7.0.0'
implementation 'com.schibstedspain.android:leku:7.0.1'
}
```

Alternatively, if you are using a different version of Google Play Services and AndroidX use this instead:

```groovy
implementation ('com.schibstedspain.android:leku:7.0.0') {
implementation ('com.schibstedspain.android:leku:7.0.1') {
exclude group: 'com.google.android.gms'
exclude group: 'androidx.appcompat'
}
Expand Down
2 changes: 1 addition & 1 deletion leku/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ twitterPlugin {
consumerSecret = System.getenv()['TWITTER_API_SECRET']
accessToken = System.getenv()['TWITTER_ACCESS_TOKEN']
accessTokenSecret = System.getenv()['TWITTER_ACCESS_TOKEN_SECRET']
message = "New Leku version ${versionMajor}.${versionMinor}.${versionPatch} available for download. Check out the details at https://github.com/SchibstedSpain/Leku @SchibstedEng #Android #library #AndroidDev"
message = "New Leku version ${versionMajor}.${versionMinor}.${versionPatch} available for download. Check out the details at https://github.com/AdevintaSpain/Leku @AdevintaEng #Android #library #AndroidDev"
}

task sourcesJar(type: Jar) {
Expand Down
3 changes: 3 additions & 0 deletions leku/src/main/res/layout/leku_toolbar_search.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
android:id="@+id/search_frame_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/transparent"
android:animateLayoutChanges="true">

<androidx.recyclerview.widget.RecyclerView
Expand Down Expand Up @@ -60,6 +61,8 @@
android:orientation="horizontal"
android:paddingStart="16dp"
android:paddingEnd="16dp"
android:focusable="true"
android:focusableInTouchMode="true"
app:elevation="12dp">

<EditText
Expand Down
2 changes: 1 addition & 1 deletion version.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
MAJOR=7
MINOR=0
PATCH=0
PATCH=1

0 comments on commit 5d965d3

Please sign in to comment.