Skip to content

Commit

Permalink
new version
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonIT committed Dec 3, 2019
1 parent 5d29816 commit 5c6d3d7
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 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 9
versionCode 10
versionName flutterVersionName
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down
1 change: 1 addition & 0 deletions android/app/proguard-rules.pro
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@
-keep class io.flutter.view.** { *; }
-keep class io.flutter.** { *; }
-keep class io.flutter.plugins.** { *; }
-dontwarn io.flutter.embedding.**
5 changes: 4 additions & 1 deletion lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -666,7 +666,10 @@ class _TimeTrackerState extends State<TimeTracker> {
Padding(
padding: const EdgeInsets.all(8.0),
child: CupertinoButton.filled(
child: Text("Dokument hochladen"),
child: Text(
"Dokument hochladen \n (Experimentell)",
textAlign: TextAlign.center,
),
onPressed: () {
FilePicker.getMultiFile().then((List<File> files) {
if (files != null) {
Expand Down
2 changes: 1 addition & 1 deletion pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ packages:
name: in_app_purchase
url: "https://pub.dartlang.org"
source: hosted
version: "0.2.2+2"
version: "0.2.2+3"
intl:
dependency: "direct main"
description:
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.1
version: 1.5.0

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

0 comments on commit 5c6d3d7

Please sign in to comment.