Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/stefan-niedermann/nextcloud-deck.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTacoTheDank <SkytkRSfan3895@gmail.com>2021-01-07 06:54:44 +0300
committerTacoTheDank <SkytkRSfan3895@gmail.com>2021-01-07 06:54:44 +0300
commit2afd6218a20bc7f205009fbe882c756d805ed7d5 (patch)
tree4405c66bf8d4f31d5c2ba1148de693801218f519 /cross-tab-drag-and-drop
parentad63934d5f5fee61c9aac9e19d23767a7dcd0226 (diff)
Reorganize and clean up build gradles
Diffstat (limited to 'cross-tab-drag-and-drop')
-rw-r--r--cross-tab-drag-and-drop/build.gradle28
1 files changed, 3 insertions, 25 deletions
diff --git a/cross-tab-drag-and-drop/build.gradle b/cross-tab-drag-and-drop/build.gradle
index 44e77dbd6..4e8be54c5 100644
--- a/cross-tab-drag-and-drop/build.gradle
+++ b/cross-tab-drag-and-drop/build.gradle
@@ -2,25 +2,11 @@ apply plugin: 'com.android.library'
android {
compileSdkVersion 30
- buildToolsVersion "29.0.3"
-
+ buildToolsVersion "30.0.3"
defaultConfig {
- minSdkVersion 14
+ minSdkVersion 19
targetSdkVersion 30
- versionCode 1
- versionName "1.0"
-
- testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
- consumerProguardFiles 'consumer-rules.pro'
- }
-
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
- }
}
-
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
@@ -28,13 +14,5 @@ android {
}
dependencies {
- implementation fileTree(dir: 'libs', include: ['*.jar'])
-
- implementation 'com.google.android.material:material:1.2.0'
- implementation 'androidx.appcompat:appcompat:1.2.0'
- implementation "androidx.viewpager2:viewpager2:1.0.0"
-
- testImplementation 'junit:junit:4.13.1'
- androidTestImplementation 'androidx.test.ext:junit:1.1.2'
- androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
+ implementation "com.google.android.material:material:$rootProject.materialVersion"
}