mirror of
https://github.com/NiciDieNase/chaosflix
synced 2024-11-23 04:43:07 +00:00
110 lines
3.5 KiB
Groovy
110 lines
3.5 KiB
Groovy
plugins {
|
|
id 'com.android.library'
|
|
id 'kotlin-android'
|
|
id 'kotlin-kapt'
|
|
id 'kotlin-android-extensions'
|
|
id "androidx.navigation.safeargs.kotlin"
|
|
}
|
|
|
|
android {
|
|
|
|
compileSdkVersion rootProject.ext.compileSdkVersion
|
|
buildToolsVersion rootProject.ext.buildToolsVersion
|
|
|
|
defaultConfig {
|
|
minSdkVersion rootProject.ext.minSDK
|
|
targetSdkVersion rootProject.ext.targetSDK
|
|
}
|
|
|
|
buildTypes {
|
|
debug {
|
|
minifyEnabled false
|
|
}
|
|
release {
|
|
minifyEnabled true
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'),
|
|
'proguard-rules.pro'
|
|
}
|
|
}
|
|
|
|
packagingOptions {
|
|
exclude 'META-INF/ASL2.0'
|
|
exclude 'META-INF/LICENSE'
|
|
exclude 'META-INF/license.txt'
|
|
exclude 'META-INF/NOTICE'
|
|
exclude 'META-INF/notice.txt'
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
defaultConfig.testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
|
lintOptions.abortOnError false
|
|
|
|
buildFeatures {
|
|
dataBinding = true
|
|
viewBinding = true
|
|
}
|
|
|
|
testOptions.unitTests.includeAndroidResources = true
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
kotlinOptions {
|
|
jvmTarget = "1.8"
|
|
}
|
|
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':common')
|
|
|
|
implementation('com.mikepenz:aboutlibraries:6.1.1@aar') {
|
|
transitive = true
|
|
}
|
|
def nav_version = "2.2.2"
|
|
implementation "androidx.navigation:navigation-fragment-ktx:$nav_version"
|
|
implementation "androidx.navigation:navigation-ui-ktx:$nav_version"
|
|
|
|
implementation 'com.github.medyo:android-about-page:1.2.2'
|
|
|
|
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
|
|
implementation 'androidx.cardview:cardview:1.0.0'
|
|
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
|
|
implementation 'androidx.navigation:navigation-fragment-ktx:2.2.2'
|
|
implementation 'androidx.navigation:navigation-ui-ktx:2.2.2'
|
|
implementation 'androidx.legacy:legacy-preference-v14:1.0.0'
|
|
implementation 'androidx.mediarouter:mediarouter:1.1.0'
|
|
implementation 'com.google.android.material:material:1.3.0-alpha01'
|
|
|
|
implementation "androidx.browser:browser:1.2.0"
|
|
|
|
implementation 'com.fasterxml.jackson.module:jackson-module-kotlin:2.9.0'
|
|
implementation('com.mikepenz:aboutlibraries:6.1.1@aar') {
|
|
transitive = true
|
|
}
|
|
implementation 'com.github.medyo:android-about-page:1.2.2'
|
|
|
|
implementation 'net.opacapp:multiline-collapsingtoolbar:27.1.1'
|
|
implementation 'net.rdrei.android.dirchooser:library:3.2@aar'
|
|
implementation 'com.github.guardian:Option:-SNAPSHOT'
|
|
|
|
testImplementation 'junit:junit:4.12'
|
|
testImplementation 'org.mockito:mockito-core:2.11.0'
|
|
testImplementation 'org.robolectric:robolectric:4.1'
|
|
androidTestImplementation('androidx.test:rules:1.2.0') {
|
|
exclude module: 'support-annotations'
|
|
}
|
|
androidTestImplementation('androidx.test.ext:junit:1.1.1') {
|
|
exclude module: 'support-annotations'
|
|
}
|
|
androidTestImplementation 'androidx.test.uiautomator:uiautomator:2.2.0'
|
|
androidTestImplementation 'org.hamcrest:hamcrest-library:1.3'
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0', {
|
|
exclude group: 'com.android.support', module: 'support-annotations'
|
|
}
|
|
}
|