Skip to content

Commit 11fe975

Browse files
committed
Update dependencies
1 parent 4e3fd84 commit 11fe975

8 files changed

Lines changed: 31 additions & 30 deletions

File tree

.idea/codeStyles/Project.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/codeStyles/codeStyleConfig.xml

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/gradle.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/runConfigurations.xml

Lines changed: 0 additions & 13 deletions
This file was deleted.

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ buildscript {
66
mavenCentral()
77
}
88
dependencies {
9-
classpath "com.android.tools.build:gradle:4.1.3"
9+
classpath 'com.android.tools.build:gradle:7.1.1'
1010

1111
// Required plugins added to classpath to facilitate pushing to maven
1212
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
13-
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.21"
13+
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.10"
1414

1515
// NOTE: Do not place your application dependencies here; they belong
1616
// in the individual module build.gradle files

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-6.5.1-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-all.zip

simpledialogfragments/build.gradle

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
apply plugin: 'com.android.library'
22

33
android {
4-
compileSdkVersion 29
5-
buildToolsVersion '29.0.3'
4+
compileSdkVersion 31
65

76
defaultConfig {
87
minSdkVersion 14
9-
targetSdkVersion 29
8+
targetSdkVersion 31
109
versionCode rootProject.ext['VERSION_NR']
1110
versionName rootProject.ext['VERSION']
1211
}
@@ -28,10 +27,10 @@ dependencies {
2827
lintChecks project(':lintchecks')
2928
lintPublish project(':lintchecks')
3029

31-
testImplementation 'junit:junit:4.12'
32-
implementation 'androidx.appcompat:appcompat:1.2.0'
33-
implementation 'com.google.android.material:material:1.2.1'
34-
implementation 'androidx.constraintlayout:constraintlayout:2.0.2'
30+
testImplementation 'junit:junit:4.13.2'
31+
implementation 'androidx.appcompat:appcompat:1.4.1'
32+
implementation 'com.google.android.material:material:1.5.0'
33+
implementation 'androidx.constraintlayout:constraintlayout:2.1.3'
3534
implementation 'com.alimuzaffar.lib:pinentryedittext:2.0.6'
3635
}
3736

testApp/build.gradle

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,12 @@ plugins {
44
}
55

66
android {
7-
compileSdkVersion 29
8-
buildToolsVersion '29.0.3'
7+
compileSdkVersion 31
98

109
defaultConfig {
1110
applicationId 'eltos.simpledialogfragments.test'
1211
minSdkVersion 14
13-
targetSdkVersion 29
12+
targetSdkVersion 31
1413
versionCode rootProject.ext['VERSION_NR']
1514
versionName rootProject.ext['VERSION']
1615
}
@@ -29,10 +28,15 @@ android {
2928
}
3029
}
3130

31+
repositories {
32+
//mavenLocal()
33+
//maven { url 'https://jitpack.io' }
34+
}
35+
3236
dependencies {
33-
testImplementation 'junit:junit:4.12'
34-
implementation 'androidx.appcompat:appcompat:1.2.0'
35-
implementation 'com.google.android.material:material:1.2.1'
37+
testImplementation 'junit:junit:4.13.2'
38+
implementation 'androidx.appcompat:appcompat:1.4.1'
39+
implementation 'com.google.android.material:material:1.5.0'
3640
implementation 'com.google.android.flexbox:flexbox:3.0.0'
3741
implementation 'com.google.zxing:core:3.3.3'
3842

0 commit comments

Comments
 (0)