Skip to content

Commit 1cb4be4

Browse files
author
Hein
committed
Merge remote-tracking branch 'origin/main' into feat/add-conditional-attachment-download
2 parents 32f4ddb + 3513514 commit 1cb4be4

File tree

53 files changed

+1831
-602
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+1831
-602
lines changed

.changeset/curly-poets-explode.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

demos/django-react-native-todolist/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
buildscript {
44
ext {
55
buildToolsVersion = findProperty('android.buildToolsVersion') ?: '34.0.0'
6-
minSdkVersion = Integer.parseInt(findProperty('android.minSdkVersion') ?: '23')
6+
minSdkVersion = Integer.parseInt(findProperty('android.minSdkVersion') ?: '24')
77
compileSdkVersion = Integer.parseInt(findProperty('android.compileSdkVersion') ?: '34')
88
targetSdkVersion = Integer.parseInt(findProperty('android.targetSdkVersion') ?: '34')
99
kotlinVersion = findProperty('android.kotlinVersion') ?: '1.9.23'

demos/django-react-native-todolist/android/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ EX_DEV_CLIENT_NETWORK_INSPECTOR=true
5858
# Use legacy packaging to compress native libraries in the resulting APK.
5959
expo.useLegacyPackaging=false
6060

61-
android.minSdkVersion=23
61+
android.minSdkVersion=24
6262
android.compileSdkVersion=34
6363
android.targetSdkVersion=34
6464
android.buildToolsVersion=34.0.0

demos/django-react-native-todolist/app.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
"newArchEnabled": false
3838
},
3939
"android": {
40-
"minSdkVersion": 23,
40+
"minSdkVersion": 24,
4141
"compileSdkVersion": 34,
4242
"targetSdkVersion": 34,
4343
"buildToolsVersion": "34.0.0",

demos/django-react-native-todolist/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"dependencies": {
1111
"@azure/core-asynciterator-polyfill": "^1.0.2",
1212
"@expo/vector-icons": "^14.0.0",
13-
"@journeyapps/react-native-quick-sqlite": "^2.1.2",
13+
"@journeyapps/react-native-quick-sqlite": "^2.2.0",
1414
"@powersync/common": "workspace:*",
1515
"@powersync/react": "workspace:*",
1616
"@powersync/react-native": "workspace:*",

demos/react-native-supabase-group-chat/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
buildscript {
44
ext {
55
buildToolsVersion = findProperty('android.buildToolsVersion') ?: '34.0.0'
6-
minSdkVersion = Integer.parseInt(findProperty('android.minSdkVersion') ?: '23')
6+
minSdkVersion = Integer.parseInt(findProperty('android.minSdkVersion') ?: '24')
77
compileSdkVersion = Integer.parseInt(findProperty('android.compileSdkVersion') ?: '34')
88
targetSdkVersion = Integer.parseInt(findProperty('android.targetSdkVersion') ?: '34')
99
kotlinVersion = findProperty('android.kotlinVersion') ?: '1.9.23'

demos/react-native-supabase-group-chat/android/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ EX_DEV_CLIENT_NETWORK_INSPECTOR=false
5555
# Use legacy packaging to compress native libraries in the resulting APK.
5656
expo.useLegacyPackaging=false
5757

58-
android.minSdkVersion=23
58+
android.minSdkVersion=24
5959
android.compileSdkVersion=34
6060
android.targetSdkVersion=34
6161
android.buildToolsVersion=34.0.0

demos/react-native-supabase-group-chat/app.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ const config: ExpoConfig = {
6060
newArchEnabled: false
6161
},
6262
android: {
63-
minSdkVersion: 23,
63+
minSdkVersion: 24,
6464
compileSdkVersion: 34,
6565
targetSdkVersion: 34,
6666
buildToolsVersion: '34.0.0',

demos/react-native-supabase-group-chat/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"dependencies": {
2222
"@azure/core-asynciterator-polyfill": "^1.0.2",
2323
"@faker-js/faker": "8.3.1",
24-
"@journeyapps/react-native-quick-sqlite": "^2.1.2",
24+
"@journeyapps/react-native-quick-sqlite": "^2.2.0",
2525
"@powersync/common": "workspace:*",
2626
"@powersync/react": "workspace:*",
2727
"@powersync/react-native": "workspace:*",

demos/react-native-supabase-todolist/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
buildscript {
44
ext {
55
buildToolsVersion = findProperty('android.buildToolsVersion') ?: '34.0.0'
6-
minSdkVersion = Integer.parseInt(findProperty('android.minSdkVersion') ?: '23')
6+
minSdkVersion = Integer.parseInt(findProperty('android.minSdkVersion') ?: '24')
77
compileSdkVersion = Integer.parseInt(findProperty('android.compileSdkVersion') ?: '34')
88
targetSdkVersion = Integer.parseInt(findProperty('android.targetSdkVersion') ?: '34')
99
kotlinVersion = findProperty('android.kotlinVersion') ?: '1.9.23'

0 commit comments

Comments
 (0)