Skip to content

Commit 23e33eb

Browse files
committed
Merge branch 'fix_oh_mode_setup_regression'
2 parents cb172c7 + b204eab commit 23e33eb

File tree

6 files changed

+161
-143
lines changed

6 files changed

+161
-143
lines changed

.github/workflows/android.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
uses: actions/upload-artifact@v4
4343
with:
4444
name: Test output
45-
path: /Users/runner/work/OpeningHoursFragment/OpeningHoursFragment/lib/build/reports/androidTests/connected/flavors/debugAndroidTest
45+
path: /Users/runner/work/OpeningHoursFragment/OpeningHoursFragment/lib/build/reports/androidTests/connected
4646
- name: Generate coverage report
4747
run: ./gradlew jacocoTestReport
4848
- name: SonarCloud Scan

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,6 @@ repositories {
5050

5151
``` groovy
5252
dependencies {
53-
compile "ch.poole:OpeningHoursFragment:0.13.5"
53+
compile "ch.poole:OpeningHoursFragment:0.14.1"
5454
}
5555
```

build.gradle

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ buildscript {
33
mavenCentral()
44
maven { url "https://maven.google.com" }
55
google()
6+
mavenLocal()
67
}
78
dependencies {
89
classpath 'com.android.tools.build:gradle:7.0.2'

lib/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ apply plugin: 'signing'
2222
apply plugin: "jacoco"
2323
apply plugin: "com.github.breadmoirai.github-release"
2424

25-
version = '0.14.0'
25+
version = '0.14.1'
2626
def libName = "OpeningHoursFragment"
2727

2828
task updateTranslations(type: Exec) {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
package ch.poole.openinghoursfragment;
2+
3+
import android.text.TextWatcher;
4+
5+
abstract class DefaultTextWatcher implements TextWatcher {
6+
@Override
7+
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
8+
// empty
9+
}
10+
11+
@Override
12+
public void onTextChanged(CharSequence s, int start, int before, int count) {
13+
// empty
14+
}
15+
}

0 commit comments

Comments
 (0)