Skip to content

Commit

Permalink
fix regex
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonIT committed Nov 7, 2019
1 parent ba36050 commit 4f30870
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ android {
applicationId "com.papierkram.timetracker"
minSdkVersion 18
targetSdkVersion 29
versionCode 8
versionCode 9
versionName flutterVersionName
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down
2 changes: 1 addition & 1 deletion lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ const BoxDecoration rowHeading = const BoxDecoration(
final DateFormat hoursSeconds = DateFormat("HH:mm");
final DateFormat dayMonthYear = DateFormat("dd.MM.yyyy");
final DateFormat dayMonth = DateFormat("dd.MM.");
final RegExp iapAppNameFilter = RegExp("(?> \(.+?\))\$", caseSensitive: false);
final RegExp iapAppNameFilter = RegExp(r'( \(.+?\))$', caseSensitive: false);

void main() => runApp(App());

Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: timetracker
description: Papierkram.de - TimeTracker as flutter app

version: 1.4.0
version: 1.4.1

environment:
sdk: ">=2.2.2 <3.0.0"
Expand Down

0 comments on commit 4f30870

Please sign in to comment.