Skip to content

Commit 15694ba

Browse files
committed
Upgrade gradle
1 parent d17541e commit 15694ba

File tree

6 files changed

+24
-26
lines changed

6 files changed

+24
-26
lines changed

PasswordValidationView/build.gradle

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,11 @@ plugins {
55
}
66

77
android {
8-
compileSdk 31
8+
compileSdk 33
99

1010
defaultConfig {
1111
minSdk 24
12-
targetSdk 31
13-
versionCode 1
14-
versionName "1.0"
12+
targetSdk 33
1513

1614
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1715
consumerProguardFiles "consumer-rules.pro"
@@ -33,14 +31,15 @@ android {
3331
buildFeatures{
3432
viewBinding true
3533
}
34+
namespace 'com.mcdev.passwordvalidationview'
3635
}
3736

3837
dependencies {
3938

40-
implementation 'androidx.core:core-ktx:1.6.0'
41-
implementation 'androidx.appcompat:appcompat:1.3.1'
42-
implementation 'com.google.android.material:material:1.4.0'
43-
implementation 'androidx.constraintlayout:constraintlayout:2.1.1'
39+
implementation 'androidx.core:core-ktx:1.9.0'
40+
implementation 'androidx.appcompat:appcompat:1.6.1'
41+
implementation 'com.google.android.material:material:1.8.0'
42+
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
4443

4544
/*android view animations*/
4645
implementation 'com.daimajia.androidanimations:library:2.4@aar'
@@ -59,7 +58,7 @@ afterEvaluate {
5958
// You can then customize attributes of the publication as shown below.
6059
groupId = 'com.mcdev.kojofosu'
6160
artifactId = 'PasswordValidationView'
62-
version = '1.0'
61+
version = '1.1'
6362
}
6463
// Creates a Maven publication called “debug”.
6564
debug(MavenPublication) {
@@ -68,7 +67,7 @@ afterEvaluate {
6867

6968
groupId = 'com.mcdev.kojofosu'
7069
artifactId = 'PasswordValidationView'
71-
version = '1.0'
70+
version = '1.1'
7271
}
7372
}
7473
}
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<manifest
3-
package="com.mcdev.passwordvalidationview">
2+
<manifest>
43

54
</manifest>

app/build.gradle

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

66
android {
7-
compileSdk 31
7+
compileSdk 33
88

99
defaultConfig {
1010
applicationId "com.mcdev.passvalidationview"
1111
minSdk 24
12-
targetSdk 31
12+
targetSdk 33
1313
versionCode 1
1414
versionName "1.0"
1515

@@ -29,17 +29,18 @@ android {
2929
kotlinOptions {
3030
jvmTarget = '1.8'
3131
}
32+
namespace 'com.mcdev.passvalidationview'
3233
}
3334

3435
dependencies {
3536

36-
implementation 'androidx.core:core-ktx:1.6.0'
37-
implementation 'androidx.appcompat:appcompat:1.3.1'
38-
implementation 'com.google.android.material:material:1.4.0'
39-
implementation 'androidx.constraintlayout:constraintlayout:2.1.1'
40-
testImplementation 'junit:junit:4.+'
41-
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
42-
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
37+
implementation 'androidx.core:core-ktx:1.9.0'
38+
implementation 'androidx.appcompat:appcompat:1.6.1'
39+
implementation 'com.google.android.material:material:1.8.0'
40+
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
41+
testImplementation 'junit:junit:'
42+
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
43+
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
4344

4445
implementation project(":PasswordValidationView")
4546
}

app/src/main/AndroidManifest.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3-
package="com.mcdev.passvalidationview">
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
43

54
<application
65
android:allowBackup="true"

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ buildscript {
55
mavenCentral()
66
}
77
dependencies {
8-
classpath "com.android.tools.build:gradle:7.0.3"
9-
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.31"
8+
classpath 'com.android.tools.build:gradle:7.4.1'
9+
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.21'
1010

1111
// NOTE: Do not place your application dependencies here; they belong
1212
// in the individual module build.gradle files
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#Mon Oct 18 22:36:57 GMT 2021
22
distributionBase=GRADLE_USER_HOME
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0.2-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-bin.zip
44
distributionPath=wrapper/dists
55
zipStorePath=wrapper/dists
66
zipStoreBase=GRADLE_USER_HOME

0 commit comments

Comments
 (0)