Skip to content

Commit

Permalink
Release 0.15.5 android (#1053)
Browse files Browse the repository at this point in the history
* prepare Android release 0.15.5

* update android example dependency to 0.15.5
  • Loading branch information
radetsky committed Aug 21, 2024
1 parent 11e4ba6 commit 024f194
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 3 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,18 @@

Changes that are currently in development and have not been released yet.


## [0.15.5](https://github.com/cossacklabs/themis/releases/tag/0.15.5), Aug 20 2024

### Android wrapper
- Add support for Android devices that are configured to use a page size of 16 KB (Android 15+)

### Android example
- Remove second launcher
- Added extractNativeLibs="true" to the manifest
- Made example compatible with Android 15+ (API 35)


## [0.15.4](https://github.com/cossacklabs/themis/releases/tag/0.15.4), May 23 2024

### Experimental VisionOS support
Expand Down
2 changes: 1 addition & 1 deletion docs/examples/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ dependencies {
implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
testImplementation 'junit:junit:4.12'
implementation 'com.cossacklabs.com:themis:0.15.2'
implementation 'com.cossacklabs.com:themis:0.15.5'
implementation "androidx.core:core-ktx:1.3.2"
//noinspection GradleDependency: we use slightly outdated "kotlin_version" on purpose
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
org.gradle.configureondemand=true

# Versions of AndroidThemis and JavaThemis packages.
androidThemisVersion=0.15.2
androidThemisVersion=0.15.5
javaThemisVersion=0.15.2

# Android Studio insists that this is set to use JUnit test runner.
Expand Down
2 changes: 1 addition & 1 deletion src/wrappers/themis/android/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<?xml version="1.0" encoding="UTF-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.cossacklabs.themis" android:versionCode="1" android:versionName="0.15.2">
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.cossacklabs.themis" android:versionCode="1" android:versionName="0.15.5">
</manifest>

0 comments on commit 024f194

Please sign in to comment.