Open
Conversation
*Total -- 5,371.59kb -> 5,238.70kb (2.47%) /demo/src/main/ic_launcher-web.png -- 32.25kb -> 27.12kb (15.9%) /demo/src/main/res/mipmap-xxxhdpi/ic_launcher.png -- 11.10kb -> 9.80kb (11.75%) /demo/src/main/res/mipmap-xxhdpi/ic_launcher.png -- 8.19kb -> 7.33kb (10.52%) /demo/src/main/res/mipmap-xhdpi/ic_launcher.png -- 5.49kb -> 5.10kb (7.15%) /demo/src/main/res/mipmap-hdpi/ic_launcher.png -- 4.22kb -> 4.01kb (4.86%) /.repo/bk-demo.gif -- 5,288.05kb -> 5,163.44kb (2.36%) /.repo/bk-gh-readme-header.svg -- 10.13kb -> 9.92kb (2%) /.repo/bk-gh-readme-spectrum-button.svg -- 12.17kb -> 11.97kb (1.66%) Signed-off-by: ImgBotApp <ImgBotHelp@gmail.com>
This commit updates the project to use Gradle 8.13 and targets Android SDK version 33. Key changes include: - Updated Android Gradle Plugin to 8.12.0 - Updated `gradle-bintray-plugin` to 1.8.5 - Replaced `jcenter()` with `mavenCentral()`, `gradlePluginPortal()`, and Grails repository - Updated `compileSdkVersion` to 33 in both `blurkit` and `demo` modules - Updated `targetSdkVersion` to 33 in the `demo` module - Added `namespace` to `blurkit` and `demo` modules - Added `android:exported="true"` to `MainActivity` in `demo` module's manifest - Added `jitpack.yml` to specify JDK 17 - Updated Gradle wrapper to use `gradle-8.13-bin.zip` - Replaced `com.github.dcendents.android-maven` with `maven-publish` plugin in `blurkit` module - Removed `buildToolsVersion` and version information from `blurkit` module - Commented out `install` and `publishing` blocks in `blurkit` module
This commit updates the publishing configuration in the `blurkit` module's `build.gradle` file.
Key changes:
- Added a `publishing` block to specify `singleVariant("release")`.
- Replaced the `install` block with an `afterEvaluate` block for publishing.
- Configured a `release` publication using `MavenPublication` with `PUBLISH_GROUP_ID`, `PUBLISH_ARTIFACT_ID`, and `PUBLISH_VERSION`.
- The publication now includes components from `components.release`.
- Removed `apply from : 'deploy.gradle'`.
This commit updates the versions of JUnit, Mockito, and Hamcrest used for testing. Key changes: - `junit` updated from `4.12` to `4.13.2` - `mockito-core` updated from `1.10.19` to `5.18.0` - `hamcrest-library` updated from `1.3` to `3.0`
[ImgBot] Optimize images
|
Can this be approved for my app's playstore compliance? |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR updates the project to be 16 KB page size compliant by upgrading build tooling, bumping SDK dependencies, and improving publishing support.
What Changed
Build Setup
8.12.0and Gradle wrapper to8.13for compatibility with newer Android toolchains.Publishing
maven-publishand local deployment (blurkit/build.gradle), incrementing version to1.1.1.Tests
Why 16 KB Alignment Matters
With Android 15+ requiring 16 KB ELF/page alignment for native libraries, it’s vital to rebuild and package with proper support. This PR ensures:
.sofiles use 16 KB alignment by default since we're on AGP ≥ 8.5.1..soload segments align to2**14or higher.Benefits