Skip to content

Commit

Permalink
Update dependencies, and work around min-sdk version for releases (due
Browse files Browse the repository at this point in the history
to GooglePlay!)
  • Loading branch information
CDrummond committed Jul 5, 2022
1 parent 68f57e4 commit 3a8e6ab
Showing 1 changed file with 13 additions and 8 deletions.
21 changes: 13 additions & 8 deletions lms-material/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 30
lintOptions {
// Disable lint for release builds as otherwise build fails because GooglePlay now
// requires targetSdkVersion 30 - but this app will not be on GooglePlay!
checkReleaseBuilds false
}
compileSdkVersion 32
buildToolsVersion "30.0.3"
defaultConfig {
applicationId "com.craigd.lmsmaterial.app"
Expand All @@ -22,12 +27,12 @@ android {

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation 'androidx.preference:preference:1.1.1'
implementation 'androidx.media:media:1.1.0'
implementation 'com.android.volley:volley:1.1.0'
implementation 'androidx.appcompat:appcompat:1.4.2'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation 'androidx.preference:preference:1.2.0'
implementation 'androidx.media:media:1.6.0'
implementation 'com.android.volley:volley:1.2.1'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
}

0 comments on commit 3a8e6ab

Please sign in to comment.