Skip to content

Commit 37cdfe6

Browse files
docs: add minsdk resolution
1 parent e052c99 commit 37cdfe6

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,20 @@ As shown in the demo above, animations are as follows:
106106
'32': 'CircleStrokeSpin',
107107
'33': 'BallDoubleBounce'
108108
```
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+
109123
# Demo
110124
A fully working demo is located at [example folder](./example/src/App.tsx)
111125

0 commit comments

Comments
 (0)