Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -243,6 +243,35 @@ Event Data
|---|---|---|---|
|`id`|string|Required|The ID of the upload.|

# Customizing Android Build Properties
You may want to customize the `compileSdk, buildToolsVersion, and targetSdkVersion` versions used by this package. For that, add this to `android/build.gradle`:

```
ext {
targetSdkVersion = 23
compileSdkVersion = 23
buildToolsVersion = '23.0.2'
}
```

Add it above `allProjects` and you're good. Your `android/build.gradle` might then resemble:
```
buildscript {
repositories {
jcenter()
}
}

ext {
targetSdkVersion = 27
compileSdkVersion = 27
buildToolsVersion = '23.0.2'
}

allprojects {

```

# FAQs

Is there an example/sandbox app to test out this package?
Expand Down