Version 0.0.10 and version fix for gradle

This commit is contained in:
estevez 2018-09-21 00:57:30 +03:00
parent 8eac41b633
commit 47ef27258c
3 changed files with 5 additions and 5 deletions

View File

@ -39,8 +39,8 @@ android {
applicationId "com.keyboardcrumbs.haclient" applicationId "com.keyboardcrumbs.haclient"
minSdkVersion 16 minSdkVersion 16
targetSdkVersion 27 targetSdkVersion 27
versionCode flutterVersionCode.toInteger() versionCode 15
versionName flutterVersionName versionName "0.0.10-alpha1"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
} }

View File

@ -13,7 +13,7 @@ part 'data_model.dart';
EventBus eventBus = new EventBus(); EventBus eventBus = new EventBus();
const String appName = "HA Client"; const String appName = "HA Client";
const appVersion = "0.0.8"; const appVersion = "0.0.10-alpha1";
void main() => runApp(new HassClientApp()); void main() => runApp(new HassClientApp());
@ -330,7 +330,7 @@ class _MainPageState extends State<MainPage> with WidgetsBindingObserver {
new AboutListTile( new AboutListTile(
applicationName: appName, applicationName: appName,
applicationVersion: appVersion, applicationVersion: appVersion,
applicationLegalese: "Keyboard Crumbs", applicationLegalese: "Keyboard Crumbs | www.keyboardcrumbs.io",
) )
], ],
), ),

View File

@ -1,7 +1,7 @@
name: hass_client name: hass_client
description: Home Assistant Android Client description: Home Assistant Android Client
version: 0.0.8 version: 0.0.10-alpha1
environment: environment:
sdk: ">=2.0.0-dev.68.0 <3.0.0" sdk: ">=2.0.0-dev.68.0 <3.0.0"