diff --git a/README.md b/README.md
index 507b7ec..6ec789e 100644
--- a/README.md
+++ b/README.md
@@ -1,5 +1,12 @@
+/*
+ * Copyright 2019-2023 Hugo Pointcheval
+ *
+ * Use of this source code is governed by an MIT-style
+ * license that can be found in the LICENSE file or at
+ * https://opensource.org/licenses/MIT.
+ */
-
+
Fast and powerful cryptographic functions for Flutter.
@@ -130,4 +137,22 @@ Then, you can decrypt your message.
```dart
Uint8List message = await cipher.decrypt(wrapper);
-```
\ No newline at end of file
+```
+
+## Development
+
+### Android
+
+> https://docs.flutter.dev/development/packages-and-plugins/developing-packages#step-2b-add-android-platform-code-ktjava
+
+* Launch Android Studio.
+* Select Open an existing Android Studio Project in the Welcome to Android Studio dialog, or select File > Open from the menu, and select the `packages/native_crypto/example/android/build.gradle` file.
+* In the Gradle Sync dialog, select OK.
+* In the Android Gradle Plugin Update dialog, select Don’t remind me again for this project.
+
+### iOS
+
+> https://docs.flutter.dev/development/packages-and-plugins/developing-packages#step-2c-add-ios-platform-code-swifthm
+
+* Launch Xcode.
+* Select File > Open, and select the `packages/native_crypto/example/ios/Runner.xcworkspace` file.