Skip to content

Commit d6bab3c

Browse files
authored
Lower minSDK version for android (#9)
* Lower android minSDK version to 21 * Fix android build setup * Bump version
1 parent 13ad828 commit d6bab3c

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

.github/workflows/android.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Setup
2828
run: |
2929
rustup toolchain install nightly-2024-05-18-x86_64-unknown-linux-gnu
30-
rustup component add rust-src --toolchain nightly-2024-05-18-unknown-linux-gnu
30+
rustup component add rust-src --toolchain nightly-2024-05-18-x86_64-unknown-linux-gnu
3131
rustup target add \
3232
aarch64-linux-android \
3333
armv7-linux-androideabi \

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ inherits = "release"
2525
lto = false
2626

2727
[workspace.package]
28-
version = "0.1.6"
28+
version = "0.1.7"
2929
edition = "2021"
3030
authors = ["JourneyApps"]
3131
keywords = ["sqlite", "powersync"]

android/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77
}
88

99
group = "co.powersync"
10-
version = "0.1.6"
10+
version = "0.1.7"
1111
description = "PowerSync Core SQLite Extension"
1212

1313
repositories {
@@ -44,7 +44,7 @@ android {
4444
namespace = "co.powersync.sqlitecore"
4545

4646
defaultConfig {
47-
minSdk = 24
47+
minSdk = 21
4848
}
4949

5050
sourceSets {

build-pod.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ function createXcframework() {
2828
<key>MinimumOSVersion</key>
2929
<string>11.0</string>
3030
<key>CFBundleVersion</key>
31-
<string>0.1.6</string>
31+
<string>0.1.7</string>
3232
<key>CFBundleShortVersionString</key>
33-
<string>0.1.6</string>
33+
<string>0.1.7</string>
3434
</dict>
3535
</plist>
3636
EOF

powersync-sqlite-core.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'powersync-sqlite-core'
3-
s.version = '0.1.6'
3+
s.version = '0.1.7'
44
s.summary = 'PowerSync SQLite Extension'
55
s.description = <<-DESC
66
PowerSync extension for SQLite.

0 commit comments

Comments
 (0)