Skip to content

Commit

Permalink
v1.7.2 (62)
Browse files Browse the repository at this point in the history
  • Loading branch information
cvzi committed Sep 18, 2024
1 parent 5ca6186 commit 4135fed
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .idea/kotlinc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## 1.7.2
* Fix crash on OS with [16k page size](https://developer.android.com/guide/practices/page-sizes) and software rendering

## 1.7.1
* Remove thumbnail from wallpaper to avoid a bug with the "Recent apps"-screen [#185](https://github.com/cvzi/darkmodewallpaper/issues/185)

Expand Down
9 changes: 6 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,17 @@ android {
}
namespace 'com.github.cvzi.darkmodewallpaper'
defaultConfig {
versionName '1.7.1'
versionCode 61
versionName '1.7.2'
versionCode 62
applicationId 'com.github.cvzi.darkmodewallpaper'
minSdk libs.versions.sdk.min.get().toInteger()
compileSdk libs.versions.sdk.compile.get().toInteger()
targetSdk libs.versions.sdk.target.get().toInteger()
ndkVersion libs.versions.ndk.get()
externalNativeBuild.cmake.cppFlags '-std=c++17'
externalNativeBuild.cmake {
cppFlags '-std=c++17'
arguments '-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON'
}
}
buildTypes {
release {
Expand Down
1 change: 1 addition & 0 deletions fastlane/metadata/android/en-US/changelogs/62.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* Fix crash on 16 KB page size OS
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
sdk-target= "35"
sdk-compile = "35"
sdk-min = "29"
ndk = "27.0.12077973"
ndk = "27.1.12297006"
jvm = "17"

agp = "8.6.1"
Expand Down

0 comments on commit 4135fed

Please sign in to comment.