Skip to content

Commit

Permalink
Merge branch 'fix_oh_mode_setup_regression'
Browse files Browse the repository at this point in the history
  • Loading branch information
simonpoole committed Nov 25, 2024
2 parents cb172c7 + b204eab commit 23e33eb
Show file tree
Hide file tree
Showing 6 changed files with 161 additions and 143 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: Test output
path: /Users/runner/work/OpeningHoursFragment/OpeningHoursFragment/lib/build/reports/androidTests/connected/flavors/debugAndroidTest
path: /Users/runner/work/OpeningHoursFragment/OpeningHoursFragment/lib/build/reports/androidTests/connected
- name: Generate coverage report
run: ./gradlew jacocoTestReport
- name: SonarCloud Scan
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,6 @@ repositories {

``` groovy
dependencies {
compile "ch.poole:OpeningHoursFragment:0.13.5"
compile "ch.poole:OpeningHoursFragment:0.14.1"
}
```
1 change: 1 addition & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ buildscript {
mavenCentral()
maven { url "https://maven.google.com" }
google()
mavenLocal()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.0.2'
Expand Down
2 changes: 1 addition & 1 deletion lib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ apply plugin: 'signing'
apply plugin: "jacoco"
apply plugin: "com.github.breadmoirai.github-release"

version = '0.14.0'
version = '0.14.1'
def libName = "OpeningHoursFragment"

task updateTranslations(type: Exec) {
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
package ch.poole.openinghoursfragment;

import android.text.TextWatcher;

abstract class DefaultTextWatcher implements TextWatcher {
@Override
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
// empty
}

@Override
public void onTextChanged(CharSequence s, int start, int before, int count) {
// empty
}
}
Loading

0 comments on commit 23e33eb

Please sign in to comment.