Skip to content

Commit 183be23

Browse files
committed
v1.1.1
1 parent dcae18f commit 183be23

File tree

6 files changed

+34
-5
lines changed

6 files changed

+34
-5
lines changed

android/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ if (flutterVersionCode == null) {
1818

1919
def flutterVersionName = localProperties.getProperty('flutter.versionName')
2020
if (flutterVersionName == null) {
21-
flutterVersionName = '1.1.0'
21+
flutterVersionName = '1.1.1'
2222
}
2323

2424
apply plugin: 'com.android.application'

lib/screens/Home/Home.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ class _HomeScreenState extends State<HomeScreen> {
264264
),
265265
width: double.infinity,
266266
child: Text(
267-
"VERSION 1.1.0",
267+
"VERSION 1.1.1",
268268
textAlign: TextAlign.center,
269269
style: TextStyle(
270270
fontWeight: FontWeight.w700,

linux/flutter/generated_plugins.mk

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Plugins to include in the build.
2+
GENERATED_PLUGINS=\
3+
4+
GENERATED_PLUGINS_DIR=flutter/ephemeral/.plugin_symlinks
5+
# A plugin library name plugin name with _plugin appended.
6+
GENERATED_PLUGIN_LIB_NAMES=$(foreach plugin,$(GENERATED_PLUGINS),$(plugin)_plugin)
7+
8+
# Variables for use in the enclosing Makefile. Changes to these names are
9+
# breaking changes.
10+
PLUGIN_TARGETS=$(GENERATED_PLUGINS)
11+
PLUGIN_LIBRARIES=$(foreach plugin,$(GENERATED_PLUGIN_LIB_NAMES),\
12+
$(OUT_DIR)/lib$(plugin).so)
13+
PLUGIN_LDFLAGS=$(patsubst %,-l%,$(GENERATED_PLUGIN_LIB_NAMES))
14+
PLUGIN_CPPFLAGS=$(foreach plugin,$(GENERATED_PLUGINS),\
15+
-I$(GENERATED_PLUGINS_DIR)/$(plugin)/linux)
16+
17+
# Targets
18+
19+
# Implicit rules don't match phony targets, so list plugin builds explicitly.
20+
21+
.PHONY: $(GENERATED_PLUGINS)
22+
$(GENERATED_PLUGINS):
23+
make -C $(GENERATED_PLUGINS_DIR)/$@/linux \
24+
OUT_DIR=$(OUT_DIR) \
25+
FLUTTER_EPHEMERAL_DIR="$(abspath flutter/ephemeral)"

pubspec.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ packages:
3535
name: collection
3636
url: "https://pub.dartlang.org"
3737
source: hosted
38-
version: "1.14.11"
38+
version: "1.14.12"
3939
color:
4040
dependency: "direct main"
4141
description:

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ description: A new Flutter project.
1111
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
1212
# Read more about iOS versioning at
1313
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
14-
version: 1.1.0
14+
version: 1.1.1
1515

1616
environment:
1717
sdk: '>=2.2.2 <3.0.0'

windows/Runner.sln

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Runner", "Runner.vcxproj",
1010
EndProject
1111
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Flutter Build", "FlutterBuild.vcxproj", "{6419BF13-6ECD-4CD2-9E85-E566A1F03F8F}"
1212
EndProject
13+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Flutter Plugins", "Flutter Plugins", "{5C2E738A-1DD3-445A-AAC8-EEB9648DD07C}"
14+
EndProject
1315
Global
1416
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1517
Debug|x64 = Debug|x64
@@ -31,4 +33,6 @@ Global
3133
GlobalSection(ExtensibilityGlobals) = postSolution
3234
SolutionGuid = {B8A69CB0-A974-4774-9EBD-1E5EECACD186}
3335
EndGlobalSection
34-
EndGlobal
36+
GlobalSection(NestedProjects) = preSolution
37+
EndGlobalSection
38+
EndGlobal

0 commit comments

Comments
 (0)