tachiyomi/j2k-preference/build.gradle
Jay 2681ff3c9a Added Local fork of the preferences controller
Because it didnt work correctly and I dont wanna upload the changes to git
2019-11-02 01:45:12 -07:00

30 lines
650 B
Groovy

apply plugin: 'com.android.library'
android {
compileSdkVersion 29
buildToolsVersion '29.0.2'
defaultConfig {
minSdkVersion 16
targetSdkVersion 29
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
compileOptions {
encoding = 'UTF-8'
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
dependencies {
implementation 'androidx.preference:preference:1.1.0'
compileOnly 'com.bluelinelabs:conductor:2.1.5'
}