Skip to content

Commit

Permalink
updating sponsors list and version from 2023 to 2024
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinSchildhorn committed Oct 25, 2024
1 parent e600d9c commit 3b5b964
Show file tree
Hide file tree
Showing 6 changed files with 739 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class MainApp : Application() {
single<Context> { this@MainApp }
single<Class<out Activity>> { MainActivity::class.java }
single<SharedPreferences> {
get<Context>().getSharedPreferences("DROIDCON_SETTINGS_2023", Context.MODE_PRIVATE)
get<Context>().getSharedPreferences("DROIDCON_SETTINGS_2024", Context.MODE_PRIVATE)
}
single<ObservableSettings> { SharedPreferencesSettings(delegate = get()) }

Expand Down
2 changes: 1 addition & 1 deletion android/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
<string name="notification_feedback_title">Feedback Time!</string>
<string name="notification_feedback_body">Your Feedback is Requested.</string>

<string name="droidcon_title">Droidcon London 2023</string>
<string name="droidcon_title">Droidcon London 2024</string>

</resources>
2 changes: 1 addition & 1 deletion ios/Droidcon/Droidcon/Koin.swift
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import Foundation
import DroidconKit

func startKoin() {
let userDefaults = UserDefaults(suiteName: "DROIDCON2023_SETTINGS")!
let userDefaults = UserDefaults(suiteName: "DROIDCON2024_SETTINGS")!

let koinApplication = DependencyInjectionKt.doInitKoinIos(userDefaults: userDefaults, analyticsService: IOSAnalyticsService())
_koin = koinApplication.koin
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ actual class SqlDelightDriverFactory(
private val context: Context,
) {
actual fun createDriver(): SqlDriver {
return AndroidSqliteDriver(DroidconDatabase.Schema, context, "new-droidcon2023.db")
return AndroidSqliteDriver(DroidconDatabase.Schema, context, "new-droidcon2024.db")
}
}
Loading

0 comments on commit 3b5b964

Please sign in to comment.