diff --git a/README.md b/README.md
index 181e941..320c1ea 100644
--- a/README.md
+++ b/README.md
@@ -1,9 +1,6 @@
-# AdInfo for Defold
+# Advertising info for Defold
-This is a Defold [native extension](https://www.defold.com/manuals/extensions/) which provides access to AD ID and AD tracking status on iOS and Android devices.
+Defold [native extension](https://www.defold.com/manuals/extensions/) which provides access to AD ID and AD tracking status on iOS and Android devices.
-To learn more please visit the [documentation page](https://defold.github.io/extension-adinfo/) for this extension.
-
----
-
-If you have any issues, questions or suggestions please [create an issue](https://github.com/defold/extension-adinfo/issues).
+## API and installation
+[API and setup instructions](https://defold.github.io/extension-adinfo).
diff --git a/docs/Gemfile b/docs/Gemfile
deleted file mode 100644
index 37f5eaa..0000000
--- a/docs/Gemfile
+++ /dev/null
@@ -1,2 +0,0 @@
-source 'https://rubygems.org'
-gem 'github-pages', group: :jekyll_plugins
diff --git a/docs/_includes/api_ref.md b/docs/_includes/api_ref.md
new file mode 100644
index 0000000..dcce1ff
--- /dev/null
+++ b/docs/_includes/api_ref.md
@@ -0,0 +1,112 @@
+## Modules
+{% for item in site.data.api %}
+### {{ item.name }}
+{{ item.desc }}
+{% endfor %}
+
+## Enums
+
+
+{% for module in site.data.api %}
+ {% for item in module.members %}
+ {% if item.type contains 'number' %}
+
- When submitting, Apple has three checkboxes for their three valid use cases for the IDFA:
-
- 1. Serve ads within the app
- 2. Install attribution from ads
- 3. User action attribution from ads
-
- If you check option 1, the app reviewer will look for ads to show up in the app. If your game does not show ads, the game might get rejected. Using AdInfo you should check option 2 or 3 depends on how you are using AdInfo extension.
-
-
-
-
-
{{ content }}
-
+This extension provides functions for receiving Ad ID and Ad tracking status. Supported on iOS and Android.
-{% for module in site.data.api %}
- {% for function in module.members %}
- {% if function.type contains 'function' %}
-
{% include description.md desc=param.desc %}
- {% if param.type == "function" %}
- {% include type-function.md params=param.parameters %}
- {% endif %}
- {% if param.type == "table" %}
- {% include type-table.md fields=param.members %}
- {% endif %}
-
-
- {% endfor %}
-
-
-{% endif %}
-{% if function.returns %}
-
-
-
-
Return value
-
Type
-
Description
-
-
-
-
Returns
- {% for return in function.returns %}
-
-
{{ return.name }}
-
{{ return.type }}
-
{% include description.md desc=return.desc %}
- {% if return.type == "table" %}
- {% include type-table.md fields=return.members %}
- {% endif %}
-
-
- {% endfor %}
-
-
-{% endif %}
+# Usage
+To use this library in your Defold project, add the following URL to your game.project dependencies:
-{% if function.examples %}
-
Examples
-{% for example in function.examples %}
-{{ example.desc | markdownify }}
-{% endfor %}
-{% endif %}
-
+ https://github.com/defold/extension-adinfo/archive/master.zip
- {% endif %}
- {% endfor %}
-{% endfor %}
+We recommend using a link to a zip file of a [https://github.com/defold/extension-adinfo/releases](specific release).
+
+## Source code
+
+The source code is available on [GitHub](https://github.com/defold/extension-adinfo)
+
+
+# API reference
+
+{% include api_ref.md %}
diff --git a/game.project b/game.project
index b8b9dc3..87fcc5f 100644
--- a/game.project
+++ b/game.project
@@ -13,7 +13,7 @@ input_method = HiddenInputField
[project]
title = extension-adinfo
-dependencies = https://github.com/andsve/dirtylarry/archive/master.zip,https://github.com/defold/extension-gps/archive/master.zip
+dependencies = https://github.com/andsve/dirtylarry/archive/master.zip,https://github.com/defold/android-base-extensions/releases/download/1.0.0/gps-measurement-16.4.0.zip
[library]
include_dirs = extension-adinfo