Skip to content

Commit a3cd1a8

Browse files
committed
1.4.4
1 parent 92eead5 commit a3cd1a8

4 files changed

Lines changed: 39 additions & 7 deletions

File tree

app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ dependencies {
3232
implementation fileTree(dir: 'libs', include: ['*.jar'])
3333
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
3434
implementation 'androidx.core:core-ktx:1.9.0'
35-
implementation 'androidx.appcompat:appcompat:1.5.1'
35+
implementation 'androidx.appcompat:appcompat:1.6.0'
3636
implementation 'androidx.recyclerview:recyclerview:1.2.1'
3737
implementation project(path: ':recyclerarrayadapter')
38-
implementation 'androidx.constraintlayout:constraintlayout:2.1.3'
38+
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
3939
testImplementation 'junit:junit:4.13.2'
4040
}

build.gradle

Lines changed: 33 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,25 @@ buildscript {
55
repositories {
66
google()
77
jcenter()
8+
mavenCentral()
9+
maven {
10+
url "https://jitpack.io"
11+
}
12+
maven {
13+
url 'https://maven.aliyun.com/repository/releases'
14+
}
15+
maven {
16+
url 'https://maven.aliyun.com/repository/public/'
17+
}
18+
maven { url 'https://s01.oss.sonatype.org/content/groups/public/' }
19+
maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' }
20+
maven { url 'https://repo1.maven.org/maven2/' }
21+
maven {
22+
url "https://plugins.gradle.org/m2/"
23+
}
824
}
925
dependencies {
10-
classpath "com.android.tools.build:gradle:7.3.0"
26+
classpath "com.android.tools.build:gradle:7.1.2"
1127
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
1228
// classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
1329
// classpath 'com.novoda:bintray-release:0.9.2'
@@ -21,6 +37,22 @@ allprojects {
2137
repositories {
2238
google()
2339
jcenter()
40+
mavenCentral()
41+
maven {
42+
url "https://jitpack.io"
43+
}
44+
maven {
45+
url 'https://maven.aliyun.com/repository/releases'
46+
}
47+
maven {
48+
url 'https://maven.aliyun.com/repository/public/'
49+
}
50+
maven { url 'https://s01.oss.sonatype.org/content/groups/public/' }
51+
maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' }
52+
maven { url 'https://repo1.maven.org/maven2/' }
53+
maven {
54+
url "https://plugins.gradle.org/m2/"
55+
}
2456
}
2557
}
2658

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#Thu Jan 14 12:10:13 CST 2021
22
distributionBase=GRADLE_USER_HOME
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-bin.zip
44
distributionPath=wrapper/dists
55
zipStorePath=wrapper/dists
66
zipStoreBase=GRADLE_USER_HOME

recyclerarrayadapter/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ android {
1313
defaultConfig {
1414
minSdkVersion 15
1515
targetSdkVersion 33
16-
versionCode 23
17-
versionName "1.4.3"
16+
versionCode 24
17+
versionName "1.4.4"
1818

1919
}
2020
compileOptions {
@@ -43,7 +43,7 @@ dependencies {
4343
implementation fileTree(dir: 'libs', include: ['*.jar'])
4444
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
4545
implementation 'androidx.core:core-ktx:1.9.0'
46-
implementation 'androidx.appcompat:appcompat:1.5.1'
46+
implementation 'androidx.appcompat:appcompat:1.6.0'
4747
implementation 'androidx.recyclerview:recyclerview:1.2.1'
4848

4949

0 commit comments

Comments
 (0)