Skip to content

Commit e85d461

Browse files
committed
Update compose plugin to 1.8.1
1 parent 4fcd3f6 commit e85d461

File tree

3 files changed

+13
-1
lines changed

3 files changed

+13
-1
lines changed

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ atomicfu = { id = "org.jetbrains.kotlinx.atomicfu", version.ref = "atomicfu" }
3535

3636
# Sample plugins
3737
kotlin-android = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }
38-
jetbrains-compose = { id = "org.jetbrains.compose", version = "1.6.11" }
38+
jetbrains-compose = { id = "org.jetbrains.compose", version = "1.8.1" }
3939
compose-compiler = { id = "org.jetbrains.kotlin.plugin.compose", version.ref = "kotlin" }
4040
android-application = { id = "com.android.application", version.ref = "android" }
4141
nativecoroutines = { id = "com.rickclephas.kmp.nativecoroutines", version.ref = "nativecoroutines" }

sample/iosApp/KMPObservableViewModelSample.xcodeproj/project.pbxproj

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@
5151
1D44EF8E292C066C00465C43 /* KMPObservableViewModelSampleUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = KMPObservableViewModelSampleUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
5252
1D44EF92292C066C00465C43 /* KMPObservableViewModelSampleUITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = KMPObservableViewModelSampleUITests.swift; sourceTree = "<group>"; };
5353
1D44EF94292C066C00465C43 /* KMPObservableViewModelSampleUITestsLaunchTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = KMPObservableViewModelSampleUITestsLaunchTests.swift; sourceTree = "<group>"; };
54+
1D60525F2EBF979B008B7573 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = "<group>"; };
5455
1DC34F692EAE33550063597A /* RootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RootView.swift; sourceTree = "<group>"; };
5556
1DCF89A82933928600A4C54A /* KMP-ObservableViewModel */ = {isa = PBXFileReference; lastKnownFileType = wrapper; name = "KMP-ObservableViewModel"; path = ../..; sourceTree = "<group>"; };
5657
1DDAF21F2935470A0049C114 /* KMPObservableViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = KMPObservableViewModel.swift; sourceTree = "<group>"; };
@@ -110,6 +111,7 @@
110111
1D44EF76292C066B00465C43 /* KMPObservableViewModelSample */ = {
111112
isa = PBXGroup;
112113
children = (
114+
1D60525F2EBF979B008B7573 /* Info.plist */,
113115
1D44EF7B292C066C00465C43 /* Assets.xcassets */,
114116
1DDE18842E114DE500227AE6 /* ChangeCounter.swift */,
115117
1DF227AF2C2856BC00D8B3A7 /* ContentViewCompose.swift */,
@@ -488,6 +490,7 @@
488490
ENABLE_PREVIEWS = YES;
489491
FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../shared/build/xcode-frameworks/$(CONFIGURATION)/$(SDK_NAME)";
490492
GENERATE_INFOPLIST_FILE = YES;
493+
INFOPLIST_FILE = KMPObservableViewModelSample/Info.plist;
491494
INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES;
492495
INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES;
493496
INFOPLIST_KEY_UILaunchScreen_Generation = YES;
@@ -522,6 +525,7 @@
522525
ENABLE_PREVIEWS = YES;
523526
FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../shared/build/xcode-frameworks/$(CONFIGURATION)/$(SDK_NAME)";
524527
GENERATE_INFOPLIST_FILE = YES;
528+
INFOPLIST_FILE = KMPObservableViewModelSample/Info.plist;
525529
INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES;
526530
INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES;
527531
INFOPLIST_KEY_UILaunchScreen_Generation = YES;
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>CADisableMinimumFrameDurationOnPhone</key>
6+
<true/>
7+
</dict>
8+
</plist>

0 commit comments

Comments
 (0)