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.
legado/app/build.gradle

48 lines
1.6 KiB

6 years ago
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
6 years ago
apply plugin: 'kotlin-kapt'
6 years ago
android {
compileSdkVersion 28
defaultConfig {
6 years ago
applicationId "io.legado.app"
6 years ago
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'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
6 years ago
implementation"org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
6 years ago
implementation 'androidx.core:core-ktx:1.0.2'
6 years ago
implementation 'androidx.appcompat:appcompat:1.0.2'
6 years ago
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
6 years ago
6 years ago
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
6 years ago
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.paging:paging-runtime:2.1.0'
def anko_version = '0.10.8'
implementation "org.jetbrains.anko:anko-sdk27:$anko_version"
implementation "org.jetbrains.anko:anko-sdk27-listeners:$anko_version"
6 years ago
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test:runner:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
6 years ago
}