diff --git a/CHANGELOG.md b/CHANGELOG.md
index 27d13f1..8d03e42 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,9 @@
+## 2.0.2
+
+- Update to androidX for example android project
+- Fix ios example app and params
+- Fix web library, example, and docs
+
## 2.0.1
- Remove `generated_plugin_registrant.dart` from library
diff --git a/README.md b/README.md
index 78ceea4..46ee23e 100644
--- a/README.md
+++ b/README.md
@@ -119,18 +119,17 @@ Remember that the application lifecycle events won't have any special context se
```html
-
- [...]
-
-
-
-
-
+
+
+ example
+
+
+
+
+
```
diff --git a/android/build.gradle b/android/build.gradle
index 399eeef..0c3fc44 100644
--- a/android/build.gradle
+++ b/android/build.gradle
@@ -26,7 +26,7 @@ android {
defaultConfig {
minSdkVersion 16
- testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
+ testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
}
lintOptions {
disable 'InvalidPackage'
diff --git a/example/android/app/build.gradle b/example/android/app/build.gradle
index 3b066a8..76ab5f3 100644
--- a/example/android/app/build.gradle
+++ b/example/android/app/build.gradle
@@ -38,7 +38,7 @@ android {
targetSdkVersion 28
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
- testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
+ testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
}
buildTypes {
@@ -56,6 +56,6 @@ flutter {
dependencies {
testImplementation 'junit:junit:4.12'
- androidTestImplementation 'com.android.support.test:runner:1.0.2'
- androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
+ androidTestImplementation 'androidx.test.ext:junit:1.1.1'
+ androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0'
}
diff --git a/example/android/app/src/main/AndroidManifest.xml b/example/android/app/src/main/AndroidManifest.xml
index 077ae1b..7db637d 100644
--- a/example/android/app/src/main/AndroidManifest.xml
+++ b/example/android/app/src/main/AndroidManifest.xml
@@ -36,7 +36,7 @@
on if you wish the library to take care of it for you.
Remember that the application lifecycle events won't have any
special context set for you by the time it is initialized. -->
-
+