Skip to content

Commit

Permalink
[readme] add minimum sdk note (#45)
Browse files Browse the repository at this point in the history
  • Loading branch information
ashconnell authored and DanielZlotin committed Jun 24, 2018
1 parent c724e2c commit fd68310
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,18 @@ dependencies {
compile fileTree(dir: "libs", include: ["*.jar"])
```

4. You're done, rebuild your app and enjoy updated version of JSC on android!
4. Make sure your app's `build.gradle` uses a minimum sdk version of 21

```diff
defaultConfig {
applicationId "com.myApp"
- minSdkVersion 16
+ minSdkVersion 21
targetSdkVersion 22
versionCode 1
```

5. You're done, rebuild your app and enjoy updated version of JSC on android!

## Testing

Expand Down

0 comments on commit fd68310

Please sign in to comment.