├── .gitignore ├── LICENSE ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── ragdroid │ │ └── clayground │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── ragdroid │ │ │ └── clayground │ │ │ ├── MoviesApplication.kt │ │ │ ├── di │ │ │ └── AppModule.kt │ │ │ ├── model │ │ │ └── MovieId.kt │ │ │ ├── moviedetail │ │ │ ├── MovieDetailActivity.kt │ │ │ └── MovieDetailAndroidViewModel.kt │ │ │ ├── theme │ │ │ └── MovieTheme.kt │ │ │ └── util │ │ │ └── Debug.kt │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── values-night │ │ └── themes.xml │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── themes.xml │ └── test │ └── java │ └── com │ └── ragdroid │ └── clayground │ └── ExampleUnitTest.kt ├── base-mvi ├── .gitignore ├── build.gradle └── src │ └── main │ └── java │ └── com │ └── ragdroid │ └── base_mvi │ └── BaseViewModel.kt ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── native ├── .gitignore ├── clayground-ios │ ├── clayground-ios.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── swiftpm │ │ │ └── Package.resolved │ ├── clayground-ios │ │ ├── Assets.xcassets │ │ │ ├── AccentColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── ClaygroundApp.swift │ │ ├── Info.plist │ │ ├── Preview Content │ │ │ └── Preview Assets.xcassets │ │ │ │ └── Contents.json │ │ └── clayground-ios-Bridging-Header.h │ ├── clayground-iosTests │ │ ├── Info.plist │ │ └── clayground_iosTests.swift │ └── clayground-iosUITests │ │ ├── Info.plist │ │ └── clayground_iosUITests.swift ├── clayground-mac │ ├── clayground-mac.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── swiftpm │ │ │ └── Package.resolved │ ├── clayground-mac │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ │ ├── AccentColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── Preview Content │ │ │ └── Preview Assets.xcassets │ │ │ │ └── Contents.json │ │ └── clayground_mac.entitlements │ ├── clayground-macTests │ │ ├── Info.plist │ │ └── clayground_macTests.swift │ └── clayground-macUITests │ │ ├── Info.plist │ │ └── clayground_macUITests.swift ├── clayground-shared │ ├── .gitignore │ ├── .swiftpm │ │ └── xcode │ │ │ └── package.xcworkspace │ │ │ └── contents.xcworkspacedata │ ├── Package.swift │ ├── README.md │ ├── Sources │ │ └── clayground-shared │ │ │ ├── LoaderView.swift │ │ │ └── clayground_shared.swift │ └── Tests │ │ ├── LinuxMain.swift │ │ └── clayground-sharedTests │ │ ├── XCTestManifests.swift │ │ └── clayground_sharedTests.swift └── native.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ ├── IDEWorkspaceChecks.plist │ └── swiftpm │ └── Package.resolved ├── settings.gradle └── shared ├── .gitignore ├── build.gradle.kts ├── clayground.podspec ├── src ├── androidMain │ ├── AndroidManifest.xml │ └── kotlin │ │ └── com │ │ └── ragdroid │ │ └── clayground │ │ └── shared │ │ └── Platform.kt ├── androidTest │ └── kotlin │ │ └── com │ │ └── ragdroid │ │ └── clayground │ │ └── shared │ │ └── androidTest.kt ├── commonMain │ └── kotlin │ │ └── com │ │ └── ragdroid │ │ └── clayground │ │ └── shared │ │ ├── Greeting.kt │ │ ├── Platform.kt │ │ ├── api │ │ ├── BaseUrl.kt │ │ ├── MoviesService.kt │ │ ├── MoviesServiceImpl.kt │ │ └── models │ │ │ └── MovieDetailResponse.kt │ │ ├── di │ │ ├── CommonModule.kt │ │ └── SharedModule.kt │ │ ├── domain.mappers │ │ └── Mappers.kt │ │ ├── domain.repository │ │ └── MovieDetailRepository.kt │ │ ├── domain │ │ └── models │ │ │ ├── MovieDetail.kt │ │ │ └── MovieId.kt │ │ └── ui │ │ ├── base │ │ ├── GenericNativeViewModel.kt │ │ ├── GenericViewModel.kt │ │ ├── Init.kt │ │ ├── MviViewModel.kt │ │ ├── Next.kt │ │ ├── SideEffectHandler.kt │ │ └── Update.kt │ │ └── moviedetail │ │ ├── MovieDetailState.kt │ │ └── MovieDetailViewModel.kt ├── iosMain │ └── kotlin │ │ └── com │ │ └── ragdroid │ │ └── clayground │ │ └── shared │ │ ├── NativeViewModel.kt │ │ └── Platform.kt ├── iosTest │ └── kotlin │ │ └── com.ragdroid.clayground.shared │ │ └── iosTest.kt └── macOSMain │ └── kotlin │ └── com │ └── ragdroid │ └── clayground │ └── shared │ ├── NativeViewModel.kt │ └── Platform.kt └── swiftpackage ├── .swiftpm └── xcode │ ├── package.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── riteshgupta.xcuserdatad │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ └── riteshgupta.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── Package.swift ├── Package~.swift ├── shared-unspecified.zip └── shared.xcframework ├── Info.plist ├── ios-arm64 ├── dSYMs │ └── shared.framework.dSYM │ │ └── Contents │ │ ├── Info.plist │ │ └── Resources │ │ └── DWARF │ │ └── shared └── shared.framework │ ├── Headers │ └── shared.h │ ├── Info.plist │ ├── Modules │ └── module.modulemap │ └── shared ├── ios-x86_64-simulator ├── dSYMs │ └── shared.framework.dSYM │ │ └── Contents │ │ ├── Info.plist │ │ └── Resources │ │ └── DWARF │ │ └── shared └── shared.framework │ ├── Headers │ └── shared.h │ ├── Info.plist │ ├── Modules │ └── module.modulemap │ └── shared └── macos-x86_64 ├── dSYMs └── shared.framework.dSYM │ └── Contents │ ├── Info.plist │ └── Resources │ └── DWARF │ └── shared └── shared.framework ├── Headers ├── Modules ├── Resources ├── Versions ├── A │ ├── Headers │ │ └── shared.h │ ├── Modules │ │ └── module.modulemap │ ├── Resources │ │ └── Info.plist │ └── shared └── Current └── shared /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/ragdroid/clayground/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/app/src/androidTest/java/com/ragdroid/clayground/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/ragdroid/clayground/MoviesApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/app/src/main/java/com/ragdroid/clayground/MoviesApplication.kt -------------------------------------------------------------------------------- /app/src/main/java/com/ragdroid/clayground/di/AppModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/app/src/main/java/com/ragdroid/clayground/di/AppModule.kt -------------------------------------------------------------------------------- /app/src/main/java/com/ragdroid/clayground/model/MovieId.kt: -------------------------------------------------------------------------------- 1 | package com.ragdroid.clayground.model 2 | 3 | data class MovieId(val id: Int) 4 | -------------------------------------------------------------------------------- /app/src/main/java/com/ragdroid/clayground/moviedetail/MovieDetailActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/app/src/main/java/com/ragdroid/clayground/moviedetail/MovieDetailActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/ragdroid/clayground/moviedetail/MovieDetailAndroidViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/app/src/main/java/com/ragdroid/clayground/moviedetail/MovieDetailAndroidViewModel.kt -------------------------------------------------------------------------------- /app/src/main/java/com/ragdroid/clayground/theme/MovieTheme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/app/src/main/java/com/ragdroid/clayground/theme/MovieTheme.kt -------------------------------------------------------------------------------- /app/src/main/java/com/ragdroid/clayground/util/Debug.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/app/src/main/java/com/ragdroid/clayground/util/Debug.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /app/src/test/java/com/ragdroid/clayground/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/app/src/test/java/com/ragdroid/clayground/ExampleUnitTest.kt -------------------------------------------------------------------------------- /base-mvi/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /base-mvi/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/base-mvi/build.gradle -------------------------------------------------------------------------------- /base-mvi/src/main/java/com/ragdroid/base_mvi/BaseViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/base-mvi/src/main/java/com/ragdroid/base_mvi/BaseViewModel.kt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/gradlew.bat -------------------------------------------------------------------------------- /native/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/native/.gitignore -------------------------------------------------------------------------------- /native/clayground-ios/clayground-ios.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/native/clayground-ios/clayground-ios.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /native/clayground-ios/clayground-ios.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/native/clayground-ios/clayground-ios.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /native/clayground-ios/clayground-ios.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/native/clayground-ios/clayground-ios.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /native/clayground-ios/clayground-ios.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/native/clayground-ios/clayground-ios.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /native/clayground-ios/clayground-ios/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/native/clayground-ios/clayground-ios/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /native/clayground-ios/clayground-ios/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/native/clayground-ios/clayground-ios/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /native/clayground-ios/clayground-ios/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/native/clayground-ios/clayground-ios/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /native/clayground-ios/clayground-ios/ClaygroundApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/native/clayground-ios/clayground-ios/ClaygroundApp.swift -------------------------------------------------------------------------------- /native/clayground-ios/clayground-ios/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/native/clayground-ios/clayground-ios/Info.plist -------------------------------------------------------------------------------- /native/clayground-ios/clayground-ios/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/native/clayground-ios/clayground-ios/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /native/clayground-ios/clayground-ios/clayground-ios-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/native/clayground-ios/clayground-ios/clayground-ios-Bridging-Header.h -------------------------------------------------------------------------------- /native/clayground-ios/clayground-iosTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/native/clayground-ios/clayground-iosTests/Info.plist -------------------------------------------------------------------------------- /native/clayground-ios/clayground-iosTests/clayground_iosTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/native/clayground-ios/clayground-iosTests/clayground_iosTests.swift -------------------------------------------------------------------------------- /native/clayground-ios/clayground-iosUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/native/clayground-ios/clayground-iosUITests/Info.plist -------------------------------------------------------------------------------- /native/clayground-ios/clayground-iosUITests/clayground_iosUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/native/clayground-ios/clayground-iosUITests/clayground_iosUITests.swift -------------------------------------------------------------------------------- /native/clayground-mac/clayground-mac.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/native/clayground-mac/clayground-mac.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /native/clayground-mac/clayground-mac.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/native/clayground-mac/clayground-mac.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /native/clayground-mac/clayground-mac.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/native/clayground-mac/clayground-mac.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /native/clayground-mac/clayground-mac.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/native/clayground-mac/clayground-mac.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /native/clayground-mac/clayground-mac/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/native/clayground-mac/clayground-mac/AppDelegate.swift -------------------------------------------------------------------------------- /native/clayground-mac/clayground-mac/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/native/clayground-mac/clayground-mac/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /native/clayground-mac/clayground-mac/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/native/clayground-mac/clayground-mac/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /native/clayground-mac/clayground-mac/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/native/clayground-mac/clayground-mac/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /native/clayground-mac/clayground-mac/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/native/clayground-mac/clayground-mac/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /native/clayground-mac/clayground-mac/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/native/clayground-mac/clayground-mac/Info.plist -------------------------------------------------------------------------------- /native/clayground-mac/clayground-mac/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/native/clayground-mac/clayground-mac/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /native/clayground-mac/clayground-mac/clayground_mac.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/native/clayground-mac/clayground-mac/clayground_mac.entitlements -------------------------------------------------------------------------------- /native/clayground-mac/clayground-macTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/native/clayground-mac/clayground-macTests/Info.plist -------------------------------------------------------------------------------- /native/clayground-mac/clayground-macTests/clayground_macTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/native/clayground-mac/clayground-macTests/clayground_macTests.swift -------------------------------------------------------------------------------- /native/clayground-mac/clayground-macUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/native/clayground-mac/clayground-macUITests/Info.plist -------------------------------------------------------------------------------- /native/clayground-mac/clayground-macUITests/clayground_macUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/native/clayground-mac/clayground-macUITests/clayground_macUITests.swift -------------------------------------------------------------------------------- /native/clayground-shared/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /.build 3 | /Packages 4 | /*.xcodeproj 5 | xcuserdata/ 6 | -------------------------------------------------------------------------------- /native/clayground-shared/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/native/clayground-shared/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /native/clayground-shared/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/native/clayground-shared/Package.swift -------------------------------------------------------------------------------- /native/clayground-shared/README.md: -------------------------------------------------------------------------------- 1 | # clayground-shared 2 | 3 | A description of this package. 4 | -------------------------------------------------------------------------------- /native/clayground-shared/Sources/clayground-shared/LoaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/native/clayground-shared/Sources/clayground-shared/LoaderView.swift -------------------------------------------------------------------------------- /native/clayground-shared/Sources/clayground-shared/clayground_shared.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/native/clayground-shared/Sources/clayground-shared/clayground_shared.swift -------------------------------------------------------------------------------- /native/clayground-shared/Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/native/clayground-shared/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /native/clayground-shared/Tests/clayground-sharedTests/XCTestManifests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/native/clayground-shared/Tests/clayground-sharedTests/XCTestManifests.swift -------------------------------------------------------------------------------- /native/clayground-shared/Tests/clayground-sharedTests/clayground_sharedTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/native/clayground-shared/Tests/clayground-sharedTests/clayground_sharedTests.swift -------------------------------------------------------------------------------- /native/native.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/native/native.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /native/native.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/native/native.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /native/native.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/native/native.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/settings.gradle -------------------------------------------------------------------------------- /shared/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /shared/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/shared/build.gradle.kts -------------------------------------------------------------------------------- /shared/clayground.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/shared/clayground.podspec -------------------------------------------------------------------------------- /shared/src/androidMain/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/shared/src/androidMain/AndroidManifest.xml -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/com/ragdroid/clayground/shared/Platform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/shared/src/androidMain/kotlin/com/ragdroid/clayground/shared/Platform.kt -------------------------------------------------------------------------------- /shared/src/androidTest/kotlin/com/ragdroid/clayground/shared/androidTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/shared/src/androidTest/kotlin/com/ragdroid/clayground/shared/androidTest.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/ragdroid/clayground/shared/Greeting.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/shared/src/commonMain/kotlin/com/ragdroid/clayground/shared/Greeting.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/ragdroid/clayground/shared/Platform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/shared/src/commonMain/kotlin/com/ragdroid/clayground/shared/Platform.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/ragdroid/clayground/shared/api/BaseUrl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/shared/src/commonMain/kotlin/com/ragdroid/clayground/shared/api/BaseUrl.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/ragdroid/clayground/shared/api/MoviesService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/shared/src/commonMain/kotlin/com/ragdroid/clayground/shared/api/MoviesService.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/ragdroid/clayground/shared/api/MoviesServiceImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/shared/src/commonMain/kotlin/com/ragdroid/clayground/shared/api/MoviesServiceImpl.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/ragdroid/clayground/shared/api/models/MovieDetailResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/shared/src/commonMain/kotlin/com/ragdroid/clayground/shared/api/models/MovieDetailResponse.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/ragdroid/clayground/shared/di/CommonModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/shared/src/commonMain/kotlin/com/ragdroid/clayground/shared/di/CommonModule.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/ragdroid/clayground/shared/di/SharedModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/shared/src/commonMain/kotlin/com/ragdroid/clayground/shared/di/SharedModule.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/ragdroid/clayground/shared/domain.mappers/Mappers.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/shared/src/commonMain/kotlin/com/ragdroid/clayground/shared/domain.mappers/Mappers.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/ragdroid/clayground/shared/domain.repository/MovieDetailRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/shared/src/commonMain/kotlin/com/ragdroid/clayground/shared/domain.repository/MovieDetailRepository.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/ragdroid/clayground/shared/domain/models/MovieDetail.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/shared/src/commonMain/kotlin/com/ragdroid/clayground/shared/domain/models/MovieDetail.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/ragdroid/clayground/shared/domain/models/MovieId.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/shared/src/commonMain/kotlin/com/ragdroid/clayground/shared/domain/models/MovieId.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/ragdroid/clayground/shared/ui/base/GenericNativeViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/shared/src/commonMain/kotlin/com/ragdroid/clayground/shared/ui/base/GenericNativeViewModel.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/ragdroid/clayground/shared/ui/base/GenericViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/shared/src/commonMain/kotlin/com/ragdroid/clayground/shared/ui/base/GenericViewModel.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/ragdroid/clayground/shared/ui/base/Init.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/shared/src/commonMain/kotlin/com/ragdroid/clayground/shared/ui/base/Init.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/ragdroid/clayground/shared/ui/base/MviViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/shared/src/commonMain/kotlin/com/ragdroid/clayground/shared/ui/base/MviViewModel.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/ragdroid/clayground/shared/ui/base/Next.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/shared/src/commonMain/kotlin/com/ragdroid/clayground/shared/ui/base/Next.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/ragdroid/clayground/shared/ui/base/SideEffectHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/shared/src/commonMain/kotlin/com/ragdroid/clayground/shared/ui/base/SideEffectHandler.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/ragdroid/clayground/shared/ui/base/Update.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/shared/src/commonMain/kotlin/com/ragdroid/clayground/shared/ui/base/Update.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/ragdroid/clayground/shared/ui/moviedetail/MovieDetailState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/shared/src/commonMain/kotlin/com/ragdroid/clayground/shared/ui/moviedetail/MovieDetailState.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/ragdroid/clayground/shared/ui/moviedetail/MovieDetailViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/shared/src/commonMain/kotlin/com/ragdroid/clayground/shared/ui/moviedetail/MovieDetailViewModel.kt -------------------------------------------------------------------------------- /shared/src/iosMain/kotlin/com/ragdroid/clayground/shared/NativeViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/shared/src/iosMain/kotlin/com/ragdroid/clayground/shared/NativeViewModel.kt -------------------------------------------------------------------------------- /shared/src/iosMain/kotlin/com/ragdroid/clayground/shared/Platform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/shared/src/iosMain/kotlin/com/ragdroid/clayground/shared/Platform.kt -------------------------------------------------------------------------------- /shared/src/iosTest/kotlin/com.ragdroid.clayground.shared/iosTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/shared/src/iosTest/kotlin/com.ragdroid.clayground.shared/iosTest.kt -------------------------------------------------------------------------------- /shared/src/macOSMain/kotlin/com/ragdroid/clayground/shared/NativeViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/shared/src/macOSMain/kotlin/com/ragdroid/clayground/shared/NativeViewModel.kt -------------------------------------------------------------------------------- /shared/src/macOSMain/kotlin/com/ragdroid/clayground/shared/Platform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/shared/src/macOSMain/kotlin/com/ragdroid/clayground/shared/Platform.kt -------------------------------------------------------------------------------- /shared/swiftpackage/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/shared/swiftpackage/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /shared/swiftpackage/.swiftpm/xcode/package.xcworkspace/xcuserdata/riteshgupta.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/shared/swiftpackage/.swiftpm/xcode/package.xcworkspace/xcuserdata/riteshgupta.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /shared/swiftpackage/.swiftpm/xcode/xcuserdata/riteshgupta.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/shared/swiftpackage/.swiftpm/xcode/xcuserdata/riteshgupta.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /shared/swiftpackage/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/shared/swiftpackage/Package.swift -------------------------------------------------------------------------------- /shared/swiftpackage/Package~.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/shared/swiftpackage/Package~.swift -------------------------------------------------------------------------------- /shared/swiftpackage/shared-unspecified.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/shared/swiftpackage/shared-unspecified.zip -------------------------------------------------------------------------------- /shared/swiftpackage/shared.xcframework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/shared/swiftpackage/shared.xcframework/Info.plist -------------------------------------------------------------------------------- /shared/swiftpackage/shared.xcframework/ios-arm64/dSYMs/shared.framework.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/shared/swiftpackage/shared.xcframework/ios-arm64/dSYMs/shared.framework.dSYM/Contents/Info.plist -------------------------------------------------------------------------------- /shared/swiftpackage/shared.xcframework/ios-arm64/dSYMs/shared.framework.dSYM/Contents/Resources/DWARF/shared: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/shared/swiftpackage/shared.xcframework/ios-arm64/dSYMs/shared.framework.dSYM/Contents/Resources/DWARF/shared -------------------------------------------------------------------------------- /shared/swiftpackage/shared.xcframework/ios-arm64/shared.framework/Headers/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/shared/swiftpackage/shared.xcframework/ios-arm64/shared.framework/Headers/shared.h -------------------------------------------------------------------------------- /shared/swiftpackage/shared.xcframework/ios-arm64/shared.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/shared/swiftpackage/shared.xcframework/ios-arm64/shared.framework/Info.plist -------------------------------------------------------------------------------- /shared/swiftpackage/shared.xcframework/ios-arm64/shared.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/shared/swiftpackage/shared.xcframework/ios-arm64/shared.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /shared/swiftpackage/shared.xcframework/ios-arm64/shared.framework/shared: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/shared/swiftpackage/shared.xcframework/ios-arm64/shared.framework/shared -------------------------------------------------------------------------------- /shared/swiftpackage/shared.xcframework/ios-x86_64-simulator/dSYMs/shared.framework.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/shared/swiftpackage/shared.xcframework/ios-x86_64-simulator/dSYMs/shared.framework.dSYM/Contents/Info.plist -------------------------------------------------------------------------------- /shared/swiftpackage/shared.xcframework/ios-x86_64-simulator/dSYMs/shared.framework.dSYM/Contents/Resources/DWARF/shared: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/shared/swiftpackage/shared.xcframework/ios-x86_64-simulator/dSYMs/shared.framework.dSYM/Contents/Resources/DWARF/shared -------------------------------------------------------------------------------- /shared/swiftpackage/shared.xcframework/ios-x86_64-simulator/shared.framework/Headers/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/shared/swiftpackage/shared.xcframework/ios-x86_64-simulator/shared.framework/Headers/shared.h -------------------------------------------------------------------------------- /shared/swiftpackage/shared.xcframework/ios-x86_64-simulator/shared.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/shared/swiftpackage/shared.xcframework/ios-x86_64-simulator/shared.framework/Info.plist -------------------------------------------------------------------------------- /shared/swiftpackage/shared.xcframework/ios-x86_64-simulator/shared.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/shared/swiftpackage/shared.xcframework/ios-x86_64-simulator/shared.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /shared/swiftpackage/shared.xcframework/ios-x86_64-simulator/shared.framework/shared: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/shared/swiftpackage/shared.xcframework/ios-x86_64-simulator/shared.framework/shared -------------------------------------------------------------------------------- /shared/swiftpackage/shared.xcframework/macos-x86_64/dSYMs/shared.framework.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/shared/swiftpackage/shared.xcframework/macos-x86_64/dSYMs/shared.framework.dSYM/Contents/Info.plist -------------------------------------------------------------------------------- /shared/swiftpackage/shared.xcframework/macos-x86_64/dSYMs/shared.framework.dSYM/Contents/Resources/DWARF/shared: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/shared/swiftpackage/shared.xcframework/macos-x86_64/dSYMs/shared.framework.dSYM/Contents/Resources/DWARF/shared -------------------------------------------------------------------------------- /shared/swiftpackage/shared.xcframework/macos-x86_64/shared.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /shared/swiftpackage/shared.xcframework/macos-x86_64/shared.framework/Modules: -------------------------------------------------------------------------------- 1 | Versions/Current/Modules -------------------------------------------------------------------------------- /shared/swiftpackage/shared.xcframework/macos-x86_64/shared.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /shared/swiftpackage/shared.xcframework/macos-x86_64/shared.framework/Versions/A/Headers/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/shared/swiftpackage/shared.xcframework/macos-x86_64/shared.framework/Versions/A/Headers/shared.h -------------------------------------------------------------------------------- /shared/swiftpackage/shared.xcframework/macos-x86_64/shared.framework/Versions/A/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/shared/swiftpackage/shared.xcframework/macos-x86_64/shared.framework/Versions/A/Modules/module.modulemap -------------------------------------------------------------------------------- /shared/swiftpackage/shared.xcframework/macos-x86_64/shared.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/shared/swiftpackage/shared.xcframework/macos-x86_64/shared.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /shared/swiftpackage/shared.xcframework/macos-x86_64/shared.framework/Versions/A/shared: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragdroid/Clayground/HEAD/shared/swiftpackage/shared.xcframework/macos-x86_64/shared.framework/Versions/A/shared -------------------------------------------------------------------------------- /shared/swiftpackage/shared.xcframework/macos-x86_64/shared.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /shared/swiftpackage/shared.xcframework/macos-x86_64/shared.framework/shared: -------------------------------------------------------------------------------- 1 | Versions/Current/shared --------------------------------------------------------------------------------