diff --git a/.vscode/launch.json b/.vscode/launch.json
deleted file mode 100644
index 5c7247b..0000000
--- a/.vscode/launch.json
+++ /dev/null
@@ -1,7 +0,0 @@
-{
- // Use IntelliSense to learn about possible attributes.
- // Hover to view descriptions of existing attributes.
- // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
- "version": "0.2.0",
- "configurations": []
-}
\ No newline at end of file
diff --git a/.vscode/settings.json b/.vscode/settings.json
new file mode 100644
index 0000000..e0f15db
--- /dev/null
+++ b/.vscode/settings.json
@@ -0,0 +1,3 @@
+{
+ "java.configuration.updateBuildConfiguration": "automatic"
+}
\ No newline at end of file
diff --git a/README.md b/README.md
index a66112d..4a86347 100644
--- a/README.md
+++ b/README.md
@@ -1,10 +1,64 @@
# flutter_sms
-A Flutter plugin for Sending SMS on Android and iOS.
+
-## Getting Started
+## Description
-For help getting started with Flutter, view our online
-[documentation](https://flutter.io/).
+Flutter Plugin for sending SMS and MMS on Android and iOS. If you send to more than one person it will send as MMS. On the iOS if the number is an iPhone and iMessage is enabled it will send as an iMessage.
-For help on editing plugin code, view the [documentation](https://flutter.io/developing-packages/#edit-plugin-package).
+## How To Use
+
+You can send multiple ways:
+
+1. Message and No People
+2. People and No Message
+3. Message and People
+
+This will prefil the correct fields.
+
+## Setup
+
+### Android
+
+Add this to your AndroidManifest.xml
+
+``` xml
+
+```
+
+### iOS
+
+Good to go!
+
+## Example
+
+Make sure to Install and Import the Package.
+
+``` dart
+import 'package:flutter_sms/flutter_sms.dart';
+```
+
+Create a function for sending messages.
+
+``` dart
+String _message = "";
+
+void _sendSMS(String message, List recipents) async {
+ String _result =
+ await FlutterSms.sendSMS(message: message, recipients: recipents);
+ setState(() => _message = _result);
+}
+```
+
+You can quickly send the message with this function.
+
+``` dart
+_sendSMS("Here is a test Message", ["5555543454", "78467477788"])
+```
+
+## Screenshots
+
+
+
+
+You can find other [screenshots here](repo/blob/screenshots).
\ No newline at end of file
diff --git a/android/.classpath b/android/.classpath
new file mode 100644
index 0000000..eb19361
--- /dev/null
+++ b/android/.classpath
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/android/.idea/.name b/android/.idea/.name
new file mode 100644
index 0000000..f44ac10
--- /dev/null
+++ b/android/.idea/.name
@@ -0,0 +1 @@
+flutter_sms
\ No newline at end of file
diff --git a/android/.idea/caches/build_file_checksums.ser b/android/.idea/caches/build_file_checksums.ser
new file mode 100644
index 0000000..1e5713d
Binary files /dev/null and b/android/.idea/caches/build_file_checksums.ser differ
diff --git a/android/.idea/codeStyles/Project.xml b/android/.idea/codeStyles/Project.xml
new file mode 100644
index 0000000..30aa626
--- /dev/null
+++ b/android/.idea/codeStyles/Project.xml
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/.idea/gradle.xml b/android/.idea/gradle.xml
new file mode 100644
index 0000000..47bd81f
--- /dev/null
+++ b/android/.idea/gradle.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/.idea/misc.xml b/android/.idea/misc.xml
new file mode 100644
index 0000000..b031b27
--- /dev/null
+++ b/android/.idea/misc.xml
@@ -0,0 +1,31 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/.idea/modules.xml b/android/.idea/modules.xml
new file mode 100644
index 0000000..3a99f9f
--- /dev/null
+++ b/android/.idea/modules.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/.idea/runConfigurations.xml b/android/.idea/runConfigurations.xml
new file mode 100644
index 0000000..7f68460
--- /dev/null
+++ b/android/.idea/runConfigurations.xml
@@ -0,0 +1,12 @@
+
+
+
+