From 47ef27258c82fc5e8376088f850b39d58d9d2fd6 Mon Sep 17 00:00:00 2001 From: estevez Date: Fri, 21 Sep 2018 00:57:30 +0300 Subject: [PATCH] Version 0.0.10 and version fix for gradle --- android/app/build.gradle | 4 ++-- lib/main.dart | 4 ++-- pubspec.yaml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/android/app/build.gradle b/android/app/build.gradle index 288d41b..dcfe7db 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -39,8 +39,8 @@ android { applicationId "com.keyboardcrumbs.haclient" minSdkVersion 16 targetSdkVersion 27 - versionCode flutterVersionCode.toInteger() - versionName flutterVersionName + versionCode 15 + versionName "0.0.10-alpha1" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" } diff --git a/lib/main.dart b/lib/main.dart index 172cd25..eed2b09 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -13,7 +13,7 @@ part 'data_model.dart'; EventBus eventBus = new EventBus(); const String appName = "HA Client"; -const appVersion = "0.0.8"; +const appVersion = "0.0.10-alpha1"; void main() => runApp(new HassClientApp()); @@ -330,7 +330,7 @@ class _MainPageState extends State with WidgetsBindingObserver { new AboutListTile( applicationName: appName, applicationVersion: appVersion, - applicationLegalese: "Keyboard Crumbs", + applicationLegalese: "Keyboard Crumbs | www.keyboardcrumbs.io", ) ], ), diff --git a/pubspec.yaml b/pubspec.yaml index b11cb62..074c52a 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: hass_client description: Home Assistant Android Client -version: 0.0.8 +version: 0.0.10-alpha1 environment: sdk: ">=2.0.0-dev.68.0 <3.0.0"