Compare commits

...

2 Commits

Author SHA1 Message Date
021e030ded fix: Package import 2026-02-12 08:35:49 +01:00
bb0b31e84d chore: Bump version 2026-02-10 19:07:22 +01:00
6 changed files with 7 additions and 5 deletions

2
Cargo.lock generated
View File

@@ -357,7 +357,7 @@ checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
[[package]]
name = "jecna_supl_client"
version = "0.2.2"
version = "0.2.3"
dependencies = [
"minreq",
"serde",

View File

@@ -1,6 +1,6 @@
[package]
name = "jecna_supl_client"
version = "0.2.2"
version = "0.2.3"
edition = "2024"
[dependencies]

View File

@@ -6,7 +6,7 @@ plugins {
}
group = "cz.jzitnik"
version = "0.2.2"
version = "0.2.3"
repositories {
mavenCentral()

View File

@@ -6,7 +6,7 @@
<groupId>cz.jzitnik</groupId>
<artifactId>jecna-supl-client</artifactId>
<version>0.2.2</version>
<version>0.2.3</version>
<name>Jecna Supl Client</name>
<description>Kotlin bindings for the Jecna Supl Rust library</description>
<url>https://gitea.jzitnik.dev/jzitnik/jecna-supl-client</url>

View File

@@ -1,7 +1,8 @@
#!/bin/bash
set -e
export ANDROID_NDK_HOME=/home/kuba/.Android/Sdk/ndk/29.0.14206865/
#export ANDROID_NDK_HOME=/home/kuba/.Android/Sdk/ndk/29.0.14206865/
export ANDROID_NDK_HOME=/home/kuba/.Android/Sdk/ndk/27.0.12077973/
# Configuration
PROJECT_NAME="jecna_supl_client"

View File

@@ -8,6 +8,7 @@ mod report;
use std::sync::RwLock;
pub use models::*;
pub use report::ReportLocation;
use crate::report::{report_impl, ReportLocation};