This commit is contained in:
2026-03-03 16:30:57 +07:00
parent a13304e40e
commit c253e1a370
7569 changed files with 1324841 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
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'
}