15 lines
295 B
Groovy
15 lines
295 B
Groovy
apply plugin: 'com.android.library'
|
|
|
|
android {
|
|
compileSdk 35
|
|
namespace 'it.niedermann.android.crosstabdnd'
|
|
|
|
defaultConfig {
|
|
minSdkVersion 22
|
|
targetSdk 35
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation "com.google.android.material:material:$rootProject.materialVersion"
|
|
}
|