diff --git a/LICENSE b/LICENSE
new file mode 100644
index 0000000000000000000000000000000000000000..a63040b91a525eb2a44850cb5a28a97db30d2774
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,21 @@
+MIT License
+
+Copyright (c) 2021 Andreas Feichtinger
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
diff --git a/README.md b/README.md
index 739162ff034df8a14e267970457ac1de5a13710d..2dd6c84d1240b74bc897cf1a7a861b90698f454d 100644
--- a/README.md
+++ b/README.md
@@ -18,13 +18,13 @@ git clone https://github.com/anfeichtinger/flutter_production_boilerplate.git
 cd flutter_production_boilerplate
 ```
 
+You can remove the screenshots located in [assets/img/](./assets/img).
+
 Get the dependencies.
 ```sh
 flutter pub get
 ```
 
-You can remove the screenshots located in [assets/img/](./assets/img).
-
 Run the app via command line or through your development environment. (optional)
 ```sh
 flutter run lib/main.dart
@@ -52,6 +52,7 @@ This repository makes use of the following pub packages:
 ## Using this package as a starting point
 
 After following the installation steps you can customize your project. 
+The screens and widgets that are inside the project can be easily replaced or removed. They are supposed to give the user a basic understanding of the relations between widgets and some good practices. The code includes some comments with documentation and examples. The examples can be found by searching for "Example:" inside the project files.
 
 ### Changing the package and app name
 
@@ -125,4 +126,4 @@ Go to [android/app/src/AndroidManifest.xml](./android/app/src/main/AndroidManife
 
 ## License
 
-MIT
\ No newline at end of file
+MIT
diff --git a/lib/main.dart b/lib/main.dart
index 69daa46174bc9702badf38ea365dda4b68f254ea..8382aac6eb41724ea22a40ecae0604c744b15ae9 100644
--- a/lib/main.dart
+++ b/lib/main.dart
@@ -1,3 +1,4 @@
+import 'dart:io';
 import 'package:easy_localization/easy_localization.dart';
 import 'package:flutter/material.dart';
 import 'package:flutter_bloc/flutter_bloc.dart';
@@ -14,7 +15,9 @@ void main() async {
   /// Initialize packages
   WidgetsFlutterBinding.ensureInitialized();
   await EasyLocalization.ensureInitialized();
-  await FlutterDisplayMode.setHighRefreshRate();
+  if (Platform.isAndroid) {
+    await FlutterDisplayMode.setHighRefreshRate();
+  }
   final tmpDir = await getTemporaryDirectory();
   Hive.init(tmpDir.toString());
   HydratedBloc.storage = await HydratedStorage.build(