From ebe277c50bc97effe963201183a1a1021c1c2324 Mon Sep 17 00:00:00 2001 From: Dylan Vann Date: Sun, 20 Oct 2019 16:09:03 -0400 Subject: [PATCH] chore: Add docs for changing versions of things. --- docs/other-android-versions.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 docs/other-android-versions.md diff --git a/docs/other-android-versions.md b/docs/other-android-versions.md new file mode 100644 index 0000000..4f6dc90 --- /dev/null +++ b/docs/other-android-versions.md @@ -0,0 +1,25 @@ +# Other Android Versions + +If you are not on a clean React Native install you may need to change the versions of some things this library uses. + +If you've defined +_[project-wide-properties](https://developer.android.com/studio/build/gradle-tips.html)_(**recommended**) +in your root `build.gradle`, this library will detect the presence of the following properties: + +```groovy +buildscript {...} +allprojects {...} + +/** + + Project-wide Gradle configuration properties + */ +ext { + // You can use any of these to change project wide versions: + // compileSdkVersion = 26 + // targetSdkVersion = 26 + // minSdkVersion = 16 + // buildToolsVersion = "26.0.3" + // supportLibVersion = "27.1.1" + // glideVersion = "4.7.1" +} +```