-
Notifications
You must be signed in to change notification settings - Fork 0
Installation
ZorT edited this page Apr 16, 2023
·
10 revisions
This guide requires you to have at least basic knowledge about what Build Tools are. Please read either Gradle or Maven guide first.
After you have the library installed, please visit Quick Start.
Add this project to your build path using Gradle with JitPack as represented below. Download the sources from jitpack.
Code
repositories {
maven { url = 'https://jitpack.io' }
}
dependencies {
implementation 'com.github.ZorTik:AdvancedSQLClient:Tag'
}
You can also use Maven with JitPack as seen below. Download the sources from jitpack.
Code
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
<dependency>
<groupId>com.github.ZorTik</groupId>
<artifactId>AdvancedSQLClient</artifactId>
<version>Version</version>
</dependency>
Now, please head to Quick Start.