-
Notifications
You must be signed in to change notification settings - Fork 8
1. Getting Started
Zardozz edited this page Jan 19, 2022
·
2 revisions
To use this library in your Android project:-
In your Project build.gradle
add Maven Central Repo e.g.
allprojects {
repositories {
google()
mavenCentral()
}
}
In your App build.gradle
and the following dependency and optional config
// To support Android API lower than 26
compileOptions {
sourceCompatibility = '1.8'
targetCompatibility = '1.8'
}
dependencies {
implementation 'com.github.Zardozz:fixedheadertablelayout:0.0.0.5'
}