A Kotlin/Android demo project that uses the How Long To Beat API to scan Game Boy carts.
Go to file
Wouter Groeneveld 1eef5a6f56 fix howlongtobeat POST imitator: add Referer header 2022-05-31 08:45:35 +02:00
app fix howlongtobeat POST imitator: add Referer header 2022-05-31 08:45:35 +02:00
gradle/wrapper howlongtobeat integrated example 2021-08-17 09:50:06 +02:00
.gitignore re-add gradle.properties, introduce apikeys.properties 2021-08-19 10:31:48 +02:00
README.md extra demo project explanation 2021-08-20 11:14:23 +02:00
build.gradle.kts howlongtobeat integrated example 2021-08-17 09:50:06 +02:00
gradle.properties re-add gradle.properties, introduce apikeys.properties 2021-08-19 10:31:48 +02:00
gradlew howlongtobeat integrated example 2021-08-17 09:50:06 +02:00
gradlew.bat howlongtobeat integrated example 2021-08-17 09:50:06 +02:00
settings.gradle.kts howlongtobeat integrated example 2021-08-17 09:50:06 +02:00

README.md

How Long To Beat Demo App

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.

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.