We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e052c99 commit 37cdfe6Copy full SHA for 37cdfe6
README.md
@@ -106,6 +106,20 @@ As shown in the demo above, animations are as follows:
106
'32': 'CircleStrokeSpin',
107
'33': 'BallDoubleBounce'
108
```
109
+# Troubleshooting
110
+## uses-sdk:minSdkVersion XX cannot be smaller than version YY
111
+
112
+You can override sdk version to use any version in your `android/build.gradle` > `buildscript` > `ext`
113
+```gradle
114
+buildscript {
115
+ ext {
116
+ LoaderKit_compileSdkVersion = 34
117
+ LoaderKit_minSdkVersion = 26
118
+ LoaderKit_targetSdkVersion = 34
119
+ }
120
+}
121
+```
122
123
# Demo
124
A fully working demo is located at [example folder](./example/src/App.tsx)
125
0 commit comments