-
Notifications
You must be signed in to change notification settings - Fork 0
Installation
Eliminater74 edited this page Jul 20, 2024
·
2 revisions
To build adblib
using Bazel, you can use the following command:
bazel build //:adblib
To use adblib
with Gradle, add the following to your build.gradle.kts
:
dependencies {
implementation("com.android.adblib:adblib:<latest-version>")
}
Then build your project with:
./gradlew build
To use adblib
in your project via JitPack, add the following to your build.gradle.kts
or build.gradle
file:
repositories {
mavenCentral()
maven { url = uri("https://jitpack.io") }
}
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
dependencies {
implementation("com.github.DevOculus-Meta-Quest:AdbLib-Google-PlatformTools:v1.0.0")
}
dependencies {
implementation 'com.github.DevOculus-Meta-Quest:AdbLib-Google-PlatformTools:v1.0.0'
}
Replace v1.0.0
with the latest version tag of the library.
- Home
- Overview
- Features
- Installation
- Usage Examples
- Integrating with Android Studio
- Integrating with Visual Studio
- Metrics
- Contribution
- License
- Why We Created This Repository
- Disclaimer
- Repository
For more information or if you have any questions, please open an issue on our GitHub repository.
© 2024 DevOculus-Meta-Quest. All rights reserved.