From 1f52435dafe07f9e88dd7913c04e0d36cbf65de3 Mon Sep 17 00:00:00 2001 From: Reza Amuzadeh Date: Sat, 5 Nov 2022 14:25:18 +0330 Subject: [PATCH] update build gradles --- .idea/$CACHE_FILE$ | 95 ------------------------ .idea/compiler.xml | 6 -- .idea/misc.xml | 59 --------------- .idea/vcs.xml | 6 -- app/build.gradle | 4 +- build.gradle | 6 +- gradle/wrapper/gradle-wrapper.properties | 2 +- library/build.gradle | 8 +- 8 files changed, 8 insertions(+), 178 deletions(-) delete mode 100644 .idea/$CACHE_FILE$ delete mode 100644 .idea/compiler.xml delete mode 100644 .idea/misc.xml delete mode 100644 .idea/vcs.xml diff --git a/.idea/$CACHE_FILE$ b/.idea/$CACHE_FILE$ deleted file mode 100644 index 906b336..0000000 --- a/.idea/$CACHE_FILE$ +++ /dev/null @@ -1,95 +0,0 @@ - - - - - - - - - AccessibilityLintAndroid - - - Android - - - Application SizePerformanceLintAndroid - - - Chrome OSCorrectnessLintAndroid - - - ComplianceLintAndroid - - - Concurrency annotation issuesJava - - - CorrectnessLintAndroid - - - Data flowJava - - - Groovy - - - IconsUsabilityLintAndroid - - - InitializationJava - - - InternationalizationLintAndroid - - - InteroperabilityLintAndroid - - - JSON and JSON5 - - - Java - - - Kotlin InteroperabilityInteroperabilityLintAndroid - - - LintAndroid - - - MessagesCorrectnessLintAndroid - - - PerformanceLintAndroid - - - SecurityLintAndroid - - - Serialization issuesJava - - - Shell Script - - - Threading issuesGroovy - - - Threading issuesJava - - - TypographyUsabilityLintAndroid - - - UsabilityLintAndroid - - - - - Android - - - - - - \ No newline at end of file diff --git a/.idea/compiler.xml b/.idea/compiler.xml deleted file mode 100644 index fb7f4a8..0000000 --- a/.idea/compiler.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml deleted file mode 100644 index 6f16cd7..0000000 --- a/.idea/misc.xml +++ /dev/null @@ -1,59 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml deleted file mode 100644 index 35eb1dd..0000000 --- a/.idea/vcs.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/app/build.gradle b/app/build.gradle index 0ccb537..7b3ad34 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -38,9 +38,9 @@ dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) implementation 'androidx.core:core-ktx:1.8.0' implementation 'androidx.appcompat:appcompat:1.5.1' - implementation 'com.google.android.material:material:1.6.1' + implementation 'com.google.android.material:material:1.7.0' implementation 'androidx.constraintlayout:constraintlayout:2.1.4' - implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version" + implementation "org.jetbrains.kotlin:kotlin-stdlib:1.7.10" testImplementation 'junit:junit:4.13.2' androidTestImplementation 'androidx.test:runner:1.4.0' diff --git a/build.gradle b/build.gradle index 6be83e4..c06c38d 100644 --- a/build.gradle +++ b/build.gradle @@ -2,8 +2,6 @@ buildscript { - ext.kotlin_version = '1.7.10' - repositories { google() mavenCentral() @@ -11,9 +9,9 @@ buildscript { } dependencies { - classpath 'com.android.tools.build:gradle:7.0.4' + classpath 'com.android.tools.build:gradle:7.2.1' classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1' - classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" + classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.10" // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index f299cc3..5a82142 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ #Tue Nov 02 15:35:49 IRST 2021 distributionBase=GRADLE_USER_HOME -distributionUrl=https\://services.gradle.org/distributions/gradle-7.0.2-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip distributionPath=wrapper/dists zipStorePath=wrapper/dists zipStoreBase=GRADLE_USER_HOME diff --git a/library/build.gradle b/library/build.gradle index 52b9c33..cf74ac7 100644 --- a/library/build.gradle +++ b/library/build.gradle @@ -11,8 +11,6 @@ android { defaultConfig { minSdkVersion 16 targetSdkVersion 32 - versionCode 37 - versionName "3.0.7" vectorDrawables.useSupportLibrary = true multiDexEnabled true @@ -47,9 +45,9 @@ dependencies { // Global implementation 'androidx.core:core-ktx:1.8.0' implementation 'androidx.appcompat:appcompat:1.5.1' - implementation 'com.google.android.material:material:1.6.1' + implementation 'com.google.android.material:material:1.7.0' implementation 'androidx.constraintlayout:constraintlayout:2.1.4' - implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" + implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.7.10' // ViewModel and LiveData implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0' @@ -73,7 +71,7 @@ afterEvaluate { groupId = 'com.github.hamidrezaamz' artifactId = 'MagicalExoPlayer' - version = '3.0.5' + version = '3.0.8' } } }