Skip to content

Commit

Permalink
library update
Browse files Browse the repository at this point in the history
  • Loading branch information
samwelnyandoro committed May 31, 2024
1 parent 91fc22b commit 7ecf33b
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 16 deletions.
15 changes: 7 additions & 8 deletions SweetAlert/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,11 @@ android {
}

dependencies {

implementation 'androidx.appcompat:appcompat:1.7.0'
implementation 'com.google.android.material:material:1.12.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
testImplementation 'junit:junit:4.13.2'
implementation 'com.github.samwelnyandoro:Material-progress:1.1.0'
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
implementation libs.androidx.appcompat
implementation libs.material
implementation libs.androidx.constraintlayout
testImplementation libs.junit
implementation libs.material.progress
androidTestImplementation libs.androidx.junit
androidTestImplementation libs.androidx.espresso.core
}
13 changes: 6 additions & 7 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,11 @@ android {
}

dependencies {

implementation 'androidx.appcompat:appcompat:1.7.0'
implementation 'com.google.android.material:material:1.12.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
testImplementation 'junit:junit:4.13.2'
implementation libs.androidx.appcompat
implementation libs.material
implementation libs.androidx.constraintlayout
testImplementation libs.junit
implementation project(':SweetAlert')
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
androidTestImplementation libs.androidx.junit
androidTestImplementation libs.androidx.espresso.core
}
1 change: 0 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,4 @@ android.useAndroidX=true
# thereby reducing the size of the R class for that library
android.nonTransitiveRClass=true
android.enableJetifier=true
android.defaults.buildfeatures.buildconfig=true
android.nonFinalResIds=false
19 changes: 19 additions & 0 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
[versions]
appcompat = "1.7.0"
constraintlayout = "2.1.4"
espressoCore = "3.5.1"
junit = "4.13.2"
junitVersion = "1.1.5"
material = "1.12.0"
materialProgress = "1.1.0"

[libraries]
androidx-appcompat = { module = "androidx.appcompat:appcompat", version.ref = "appcompat" }
androidx-constraintlayout = { module = "androidx.constraintlayout:constraintlayout", version.ref = "constraintlayout" }
androidx-espresso-core = { module = "androidx.test.espresso:espresso-core", version.ref = "espressoCore" }
androidx-junit = { module = "androidx.test.ext:junit", version.ref = "junitVersion" }
junit = { module = "junit:junit", version.ref = "junit" }
material = { module = "com.google.android.material:material", version.ref = "material" }
material-progress = { module = "com.github.samwelnyandoro:Material-progress", version.ref = "materialProgress" }

[plugins]

0 comments on commit 7ecf33b

Please sign in to comment.