25 lines
686 B
Groovy
25 lines
686 B
Groovy
apply plugin: 'com.android.library'
|
|
apply plugin: 'kotlin-android'
|
|
|
|
android {
|
|
defaultConfig {
|
|
consumerProguardFiles 'proguard-rules.pro'
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
api fileTree(include: '*.jar', dir: 'libs')
|
|
implementation "com.facebook.fresco:fresco:${fresco}"
|
|
implementation "androidx.appcompat:appcompat:${appCompat}"
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
|
implementation "androidx.localbroadcastmanager:localbroadcastmanager:$localbroadcastmanager"
|
|
}
|
|
repositories {
|
|
mavenCentral()
|
|
}
|