You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
87 lines
2.7 KiB
87 lines
2.7 KiB
apply plugin: 'com.android.application'
|
|
apply plugin: 'kotlin-android'
|
|
apply plugin: 'kotlin-android-extensions'
|
|
apply plugin: 'kotlin-kapt'
|
|
|
|
androidExtensions {
|
|
experimental = true
|
|
}
|
|
|
|
android {
|
|
compileSdkVersion 28
|
|
defaultConfig {
|
|
applicationId "io.legado.app"
|
|
minSdkVersion 21
|
|
targetSdkVersion 28
|
|
versionCode 1
|
|
versionName "1.0"
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility = '1.8'
|
|
targetCompatibility = '1.8'
|
|
}
|
|
|
|
}
|
|
|
|
|
|
kapt {
|
|
arguments {
|
|
arg("room.schemaLocation", "$projectDir/schemas")
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
|
|
|
implementation 'androidx.core:core-ktx:1.0.2'
|
|
implementation 'androidx.appcompat:appcompat:1.0.2'
|
|
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
|
|
|
|
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
|
|
implementation 'androidx.recyclerview:recyclerview:1.0.0'
|
|
implementation 'androidx.cardview:cardview:1.0.0'
|
|
implementation 'com.google.android.material:material:1.0.0'
|
|
|
|
implementation 'androidx.lifecycle:lifecycle-extensions:2.0.0'
|
|
kapt 'androidx.lifecycle:lifecycle-compiler:2.0.0'
|
|
|
|
implementation 'androidx.room:room-runtime:2.0.0'
|
|
kapt 'androidx.room:room-compiler:2.0.0'
|
|
|
|
implementation 'androidx.paging:paging-runtime:2.1.0'
|
|
|
|
//anko
|
|
def anko_version = '0.10.8'
|
|
implementation "org.jetbrains.anko:anko-sdk27:$anko_version"
|
|
implementation "org.jetbrains.anko:anko-sdk27-listeners:$anko_version"
|
|
//协程
|
|
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.2.1'
|
|
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.2.1'
|
|
//规则相关
|
|
implementation 'com.google.code.gson:gson:2.8.5'
|
|
implementation 'org.jsoup:jsoup:1.12.1'
|
|
// implementation 'org.apache.commons:commons-text:1.6'
|
|
// Default json parser for jsonpath
|
|
implementation 'net.minidev:json-smart:2.3'
|
|
// implementation 'com.jayway.jsonpath:json-path:2.4.0'
|
|
|
|
//Retrofit
|
|
implementation 'com.squareup.okhttp3:logging-interceptor:3.14.0'//
|
|
implementation 'com.squareup.retrofit2:retrofit:2.5.0'
|
|
|
|
//Glide
|
|
implementation 'com.github.bumptech.glide:glide:4.8.0'
|
|
|
|
testImplementation 'junit:junit:4.12'
|
|
androidTestImplementation 'androidx.test:runner:1.2.0'
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
|
|
}
|
|
|