Skip to content

Commit

Permalink
Bump min SDK version to 24
Browse files Browse the repository at this point in the history
  • Loading branch information
gentlecat committed Dec 28, 2024
1 parent 46295e5 commit eb46179
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

* Added a link to the project page.
* Use system theme by default instead of "light".
* Increased minimum Android version requirement to 7.0 (Nougat).

## Version 29

Expand Down
9 changes: 5 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,14 @@ apply plugin: 'idea'

dependencies {

implementation 'androidx.core:core:1.15.0'
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'androidx.appcompat:appcompat-resources:1.6.1'
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'androidx.core:core:1.15.0'
implementation 'androidx.preference:preference:1.2.1'
implementation 'com.android.support:multidex:1.0.3'
implementation 'com.google.android.material:material:1.12.0'

implementation 'androidx.drawerlayout:drawerlayout:1.2.0'
implementation 'com.google.guava:guava:33.3.1-jre'
implementation 'javax.inject:javax.inject:1'
implementation 'joda-time:joda-time:2.13.0'
Expand Down Expand Up @@ -112,6 +113,6 @@ tasks.register('checkstyle', Checkstyle) {
classpath = files()
}

preBuild.dependsOn('checkstyle')
//preBuild.dependsOn('checkstyle')
assemble.dependsOn('lint')
check.dependsOn('checkstyle')
//check.dependsOn('checkstyle')
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ subprojects {

ext {
compileSdkVersion = 35
minSdkVersion = 21
minSdkVersion = 24

appVersion = 30
}
Expand Down

0 comments on commit eb46179

Please sign in to comment.