File tree Expand file tree Collapse file tree 4 files changed +19
-2
lines changed
datastore/src/jvmMain/kotlin/dev/johnoreilly/confetti/backend/datastore
service-import/src/jvmMain/kotlin/dev/johnoreilly/confetti/backend/import Expand file tree Collapse file tree 4 files changed +19
-2
lines changed Original file line number Diff line number Diff line change 45
45
restore-keys : |
46
46
${{ runner.os }}-pods-
47
47
48
+ - name : Set Xcode Version 16.4
49
+ shell : bash
50
+ run : |
51
+ xcodes select 16.4
52
+
48
53
- name : Build iOS app
49
- run : xcodebuild -allowProvisioningUpdates -project iosApp/iosApp.xcodeproj -configuration Debug -scheme iosApp -sdk iphoneos -destination name='iPhone 15 '
54
+ run : xcodebuild -allowProvisioningUpdates -project iosApp/iosApp.xcodeproj -configuration Debug -scheme iosApp -sdk iphoneos -destination name='iPhone 16 Pro '
50
55
51
56
- name : Run iOS unit tests
52
- run : xcodebuild -allowProvisioningUpdates -project iosApp/iosApp.xcodeproj -configuration Debug -scheme iosApp -sdk iphoneos -destination name='iPhone 15 ' test -test-timeouts-enabled YES
57
+ run : xcodebuild -allowProvisioningUpdates -project iosApp/iosApp.xcodeproj -configuration Debug -scheme iosApp -sdk iphoneos -destination name='iPhone 16 Pro ' test -test-timeouts-enabled YES
Original file line number Diff line number Diff line change @@ -34,6 +34,7 @@ enum class ConferenceId(val id: String) {
34
34
AndroidMakers2024 (" androidmakers2024" ),
35
35
KotlinConf2024 (" kotlinconf2024" ),
36
36
DroidconBerlin2024 (" droidconberlin2024" ),
37
+ DroidconBerlin2025 (" droidconberlin2025" ),
37
38
DevFestLille2024 (" devfestlille2024" ),
38
39
DroidConLisbon2024 (" droidconlisbon2024" ),
39
40
DroidConLondon2024 (" droidconlondon2024" ),
Original file line number Diff line number Diff line change @@ -136,6 +136,7 @@ private suspend fun update(conf: String?): Int {
136
136
ConferenceId .AndroidMakers2024 -> Sessionize .importAndroidMakers2024()
137
137
ConferenceId .KotlinConf2024 -> Sessionize .importKotlinConf2024()
138
138
ConferenceId .DroidconBerlin2024 -> Sessionize .importDroidconBerlin2024()
139
+ ConferenceId .DroidconBerlin2025 -> Sessionize .importDroidconBerlin2025()
139
140
ConferenceId .DevFestLille2024 -> DevfestLille .import()
140
141
ConferenceId .DroidConLisbon2024 -> importDroidconLisbon2024()
141
142
ConferenceId .DroidConLondon2024 -> importDroidconLondon2024()
Original file line number Diff line number Diff line change @@ -406,6 +406,16 @@ object Sessionize {
406
406
)
407
407
}
408
408
409
+ suspend fun importDroidconBerlin2025 (): Int {
410
+ return importDroidconBerlin(
411
+ ConferenceId .DroidconBerlin2024 .id,
412
+ " droidcon Berlin 2025" ,
413
+ " https://sessionize.com/api/v2/ove96gci/view/All" ,
414
+ " 0xFFFFBE29"
415
+ )
416
+ }
417
+
418
+
409
419
private val businessDesignCenter = DVenue (
410
420
id = " main" ,
411
421
name = " Business Design Center" ,
You can’t perform that action at this time.
0 commit comments