Skip to content

Commit a919243

Browse files
chore: Bump Android minSdkVersion to 24 (#424)
1 parent 0475d20 commit a919243

File tree

16 files changed

+2833
-1719
lines changed

16 files changed

+2833
-1719
lines changed

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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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-todolist/android/gradle.properties

+1-1
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/react-native-supabase-todolist/app.config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ const config: ExpoConfig = {
6262
newArchEnabled: true
6363
},
6464
android: {
65-
minSdkVersion: 23,
65+
minSdkVersion: 24,
6666
compileSdkVersion: 34,
6767
targetSdkVersion: 34,
6868
buildToolsVersion: '34.0.0',

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

+1-1
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.3",
13-
"@journeyapps/react-native-quick-sqlite": "^2.1.2",
13+
"@journeyapps/react-native-quick-sqlite": "^2.2.0",
1414
"@powersync/attachments": "workspace:*",
1515
"@powersync/common": "workspace:*",
1616
"@powersync/react": "workspace:*",

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

+1-1
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-web-supabase-todolist/android/gradle.properties

+1-1
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/react-native-web-supabase-todolist/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"@azure/core-asynciterator-polyfill": "^1.0.2",
1414
"@expo/metro-runtime": "^3.2.1",
1515
"@expo/vector-icons": "^14.0.0",
16-
"@journeyapps/react-native-quick-sqlite": "^2.1.2",
16+
"@journeyapps/react-native-quick-sqlite": "^2.2.0",
1717
"@powersync/attachments": "workspace:*",
1818
"@powersync/common": "workspace:*",
1919
"@powersync/react": "workspace:*",

0 commit comments

Comments
 (0)