**Sample Expo App:** Experience the ITG Library in Action.
This guide explains how to:
You already have:
In your root build.gradle or settings.gradle (depending on Gradle setup), make sure the JitPack repository is present:
allprojects {
repositories {
google()
mavenCentral()
maven {
url = uri(
"<https://androidrepo.internal.inthegame.io/repository/android/>"
)
}
}
}
If you use the new dependencyResolutionManagement block in settings.gradle, add it there instead.
In your app module’s Gradle file (usually app/build.gradle):