35 lines
716 B
Groovy
35 lines
716 B
Groovy
apply plugin: 'com.android.library'
|
|
|
|
android {
|
|
compileSdkVersion versions.compileSdk
|
|
|
|
defaultConfig {
|
|
minSdkVersion 16
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation "androidx.annotation:annotation"
|
|
|
|
implementation "com.crashlytics.sdk.android:crashlytics"
|
|
|
|
constraints {
|
|
implementation("androidx.annotation:annotation") {
|
|
version {
|
|
require '1.0.0'
|
|
}
|
|
}
|
|
|
|
implementation("com.crashlytics.sdk.android:crashlytics") {
|
|
version {
|
|
require '2.5.0'
|
|
}
|
|
}
|
|
}
|
|
}
|