Skip to content
KennHuang edited this page Jan 26, 2022 · 12 revisions

Welcome to the OverRobotLib wiki!

OverRobotLib JavaDocs: https://team6083.github.io/OverRobotLibDocs/index.html

Add this library to your project

目前最新版本 https://github.com/Team6083/OverRobotLib/packages/1217719

使用 GradleRIO

加入以下幾行到 build.gradlerepositories

maven {
        url = uri("https://maven.pkg.github.com/team6083/overrobotlib")
}

如果沒有 repositories 的話,就在 dependencies 區塊的前面自行加上 Example.

repositories {
    maven {
        url = uri("https://maven.pkg.github.com/team6083/overrobotlib")
    }
}

另外,在 dependencies 加入以下( <version> 是版本名稱)

compile 'com.github.team6083.overrobotlib:<version>'

這樣就可以使用 OverRobotLib

Clone this wiki locally