howlongtobeat-android/README.md

21 lines
625 B
Markdown
Raw Normal View History

# How Long To Beat Demo App
2021-08-20 11:14:23 +02:00
## What's this?
See https://kuleuven-diepenbeek.github.io/appdev-course/extra/demo/
## Building
### Create apikeys.properties
Add the following to a new file called `apikeys.properties` (in the root folder):
```
GoogleVisionApiKey="yourkey"
```
Your Google Vision API Key can be fetched through [console.cloud.google.com](https://console.cloud.google.com).
2021-08-20 11:14:23 +02:00
The key `GoogleVisionApiKey` is used in `build.gradle.kts` of the app and auto-generates the correct string in the class `BuildConfig`, ready to be used in the Kotlin/Java code. See The app Gradle build file for more information.