mirror of https://github.com/readrops/Readrops.git
102 lines
3.4 KiB
Groovy
102 lines
3.4 KiB
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'kotlin-android'
|
|
apply plugin: 'kotlin-android-extensions'
|
|
apply plugin: 'kotlin-kapt'
|
|
|
|
android {
|
|
compileSdkVersion rootProject.ext.compileSdkVersion
|
|
|
|
defaultConfig {
|
|
applicationId "com.readrops.app"
|
|
minSdkVersion rootProject.ext.minSdkVersion
|
|
targetSdkVersion rootProject.ext.targetSdkVersion
|
|
buildToolsVersion rootProject.ext.buildToolsVersion
|
|
|
|
versionCode 11
|
|
versionName "1.2.0"
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
testOptions {
|
|
unitTests.returnDefaultValues = true
|
|
}
|
|
lintOptions {
|
|
abortOnError false
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled true
|
|
shrinkResources true
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
|
|
debug {
|
|
minifyEnabled false
|
|
shrinkResources false
|
|
|
|
applicationIdSuffix ".debug"
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
compileOptions {
|
|
coreLibraryDesugaringEnabled true
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
kotlinOptions {
|
|
jvmTarget = '1.8'
|
|
}
|
|
|
|
buildFeatures {
|
|
viewBinding true
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
implementation project(':api')
|
|
implementation project(':db')
|
|
|
|
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.0.10'
|
|
|
|
testImplementation 'junit:junit:4.13'
|
|
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
|
|
androidTestImplementation 'androidx.test:runner:1.3.0'
|
|
androidTestImplementation 'androidx.test:rules:1.3.0'
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
|
|
|
|
implementation 'com.google.android.material:material:1.2.1'
|
|
implementation 'androidx.cardview:cardview:1.0.0'
|
|
implementation 'androidx.palette:palette:1.0.0'
|
|
implementation 'androidx.recyclerview:recyclerview:1.1.0'
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.0.1'
|
|
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
|
|
implementation 'androidx.preference:preference:1.1.1'
|
|
implementation "androidx.work:work-runtime-ktx:2.4.0"
|
|
implementation "androidx.fragment:fragment-ktx:1.2.5"
|
|
implementation "androidx.browser:browser:1.2.0"
|
|
testImplementation "org.koin:koin-test:2.1.6"
|
|
|
|
implementation 'com.github.bumptech.glide:glide:4.11.0'
|
|
kapt 'com.github.bumptech.glide:compiler:4.11.0'
|
|
implementation 'com.github.bumptech.glide:okhttp3-integration:4.11.0'
|
|
implementation('com.github.bumptech.glide:recyclerview-integration:4.11.0') {
|
|
transitive = false
|
|
}
|
|
|
|
implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0'
|
|
kapt 'androidx.lifecycle:lifecycle-common-java8:2.2.0'
|
|
|
|
implementation 'com.afollestad.material-dialogs:core:0.9.6.0'
|
|
|
|
implementation 'com.mikepenz:fastadapter:3.3.1'
|
|
implementation 'com.mikepenz:fastadapter-commons:3.3.0'
|
|
implementation 'com.mikepenz:materialdrawer:6.1.2'
|
|
implementation "com.mikepenz:aboutlibraries:6.2.3"
|
|
|
|
debugImplementation 'com.facebook.flipper:flipper:0.30.1'
|
|
debugImplementation 'com.facebook.soloader:soloader:0.9.0'
|
|
debugImplementation 'com.facebook.flipper:flipper-network-plugin:0.30.1'
|
|
}
|