34 lines
821 B
Groovy
Executable File
34 lines
821 B
Groovy
Executable File
apply plugin: 'com.android.library'
|
|
|
|
android {
|
|
namespace 'me.everything'
|
|
compileSdkVersion 33
|
|
|
|
defaultConfig {
|
|
minSdkVersion 14
|
|
targetSdkVersion 33
|
|
versionCode 1
|
|
versionName '1.0'
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'androidx.recyclerview:recyclerview:1.2.0'
|
|
implementation 'androidx.viewpager:viewpager:1.0.0'
|
|
|
|
testImplementation 'junit:junit:4.13.2'
|
|
testImplementation 'org.mockito:mockito-core:3.1.0'
|
|
testImplementation 'org.robolectric:robolectric:4.3.1'
|
|
}
|
|
|
|
// Enable publishing
|
|
if (rootProject.hasProperty('_isOverscrollDecor')) {
|
|
apply from: './publishing.gradle'
|
|
}
|