diff --git a/app-ios/App/Assets.xcassets/AppIcon.appiconset/Contents.json b/app-ios/App/Assets.xcassets/AppIcon.appiconset/Contents.json index 7a53451ac..b4b7d8b93 100644 --- a/app-ios/App/Assets.xcassets/AppIcon.appiconset/Contents.json +++ b/app-ios/App/Assets.xcassets/AppIcon.appiconset/Contents.json @@ -29,6 +29,76 @@ "idiom" : "universal", "platform" : "ios", "size" : "1024x1024" + }, + { + "idiom" : "iphone", + "scale" : "2x", + "size" : "20x20" + }, + { + "idiom" : "iphone", + "scale" : "3x", + "size" : "20x20" + }, + { + "idiom" : "iphone", + "scale" : "2x", + "size" : "29x29" + }, + { + "idiom" : "iphone", + "scale" : "3x", + "size" : "29x29" + }, + { + "idiom" : "iphone", + "scale" : "2x", + "size" : "40x40" + }, + { + "idiom" : "iphone", + "scale" : "3x", + "size" : "40x40" + }, + { + "idiom" : "iphone", + "scale" : "2x", + "size" : "60x60" + }, + { + "idiom" : "iphone", + "scale" : "3x", + "size" : "60x60" + }, + { + "idiom" : "ipad", + "scale" : "2x", + "size" : "20x20" + }, + { + "idiom" : "ipad", + "scale" : "2x", + "size" : "29x29" + }, + { + "idiom" : "ipad", + "scale" : "2x", + "size" : "40x40" + }, + { + "idiom" : "ipad", + "scale" : "2x", + "size" : "76x76" + }, + { + "idiom" : "ipad", + "scale" : "2x", + "size" : "83.5x83.5" + }, + { + "idiom" : "ios-marketing", + "scale" : "1x", + "size" : "1024x1024" } ], "info" : { diff --git a/app-ios/Core/Sources/Presentation/ContributorProvider.swift b/app-ios/Core/Sources/Presentation/ContributorProvider.swift index a74decd33..d6a0a663c 100644 --- a/app-ios/Core/Sources/Presentation/ContributorProvider.swift +++ b/app-ios/Core/Sources/Presentation/ContributorProvider.swift @@ -17,10 +17,9 @@ public final class ContributorProvider { public func loadContributors() async { isLoading = true - defer { isLoading = false } - for await contributorsList in contributorsUseCase.load() { contributors = contributorsList + isLoading = false } } } diff --git a/app-shared/build.gradle.kts b/app-shared/build.gradle.kts index f48b1a2c8..ad02bd56e 100644 --- a/app-shared/build.gradle.kts +++ b/app-shared/build.gradle.kts @@ -18,6 +18,7 @@ plugins { id("droidkaigi.primitive.spotless") } +version = "1.0" compose.resources.nameOfResClass = "AppSharedRes" kotlin {