Skip to content

Commit 734a85b

Browse files
committed
feat:Rename Shared Module to ProgressIndicator
1 parent e222b3a commit 734a85b

File tree

13 files changed

+12
-12
lines changed

13 files changed

+12
-12
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ iosApp/Pods/*
1212
iosApp/iosApp.xcworkspace/*
1313
iosApp/iosApp.xcodeproj/*
1414
!iosApp/iosApp.xcodeproj/project.pbxproj
15-
shared/shared.podspec
15+
progressIndicator/progressIndicator.podspec

androidApp/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ kotlin {
99
sourceSets {
1010
val androidMain by getting {
1111
dependencies {
12-
implementation(project(":shared"))
12+
implementation(project(":progressIndicator"))
1313
}
1414
}
1515
}

desktopApp/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ kotlin {
1111
val jvmMain by getting {
1212
dependencies {
1313
implementation(compose.desktop.currentOs)
14-
implementation(project(":shared"))
14+
implementation(project(":progressIndicator"))
1515
}
1616
}
1717
}

iosApp/iosApp.xcodeproj/project.pbxproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@
170170
);
171171
runOnlyForDeploymentPostprocessing = 0;
172172
shellPath = /bin/sh;
173-
shellScript = "cd \"$SRCROOT/..\"\n./gradlew :shared:embedAndSignAppleFrameworkForXcode";
173+
shellScript = "cd \"$SRCROOT/..\"\n./gradlew :progressIndicator:embedAndSignAppleFrameworkForXcode";
174174
};
175175
/* End PBXShellScriptBuildPhase section */
176176

@@ -316,7 +316,7 @@
316316
ENABLE_PREVIEWS = YES;
317317
FRAMEWORK_SEARCH_PATHS = (
318318
"$(inherited)",
319-
"$(SRCROOT)/../shared/build/xcode-frameworks/$(CONFIGURATION)/$(SDK_NAME)",
319+
"$(SRCROOT)/../progressIndicator/build/xcode-frameworks/$(CONFIGURATION)/$(SDK_NAME)",
320320
);
321321
INFOPLIST_FILE = iosApp/Info.plist;
322322
IPHONEOS_DEPLOYMENT_TARGET = 14.1;
@@ -327,7 +327,7 @@
327327
OTHER_LDFLAGS = (
328328
"$(inherited)",
329329
"-framework",
330-
shared,
330+
progressIndicator,
331331
);
332332
PRODUCT_BUNDLE_IDENTIFIER = "${BUNDLE_ID}${TEAM_ID}";
333333
PRODUCT_NAME = "${APP_NAME}";
@@ -348,7 +348,7 @@
348348
ENABLE_PREVIEWS = YES;
349349
FRAMEWORK_SEARCH_PATHS = (
350350
"$(inherited)",
351-
"$(SRCROOT)/../shared/build/xcode-frameworks/$(CONFIGURATION)/$(SDK_NAME)",
351+
"$(SRCROOT)/../progressIndicator/build/xcode-frameworks/$(CONFIGURATION)/$(SDK_NAME)",
352352
);
353353
INFOPLIST_FILE = iosApp/Info.plist;
354354
IPHONEOS_DEPLOYMENT_TARGET = 14.1;
@@ -359,7 +359,7 @@
359359
OTHER_LDFLAGS = (
360360
"$(inherited)",
361361
"-framework",
362-
shared,
362+
progressIndicator,
363363
);
364364
PRODUCT_BUNDLE_IDENTIFIER = "${BUNDLE_ID}${TEAM_ID}";
365365
PRODUCT_NAME = "${APP_NAME}";

iosApp/iosApp/ContentView.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import UIKit
22
import SwiftUI
3-
import shared
3+
import progressIndicator
44

55
struct ComposeView: UIViewControllerRepresentable {
66
func makeUIViewController(context: Context) -> UIViewController {

shared/build.gradle.kts renamed to progressIndicator/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ kotlin {
1515
iosSimulatorArm64()
1616
).forEach { iosTarget ->
1717
iosTarget.binaries.framework {
18-
baseName = "shared"
18+
baseName = "progressIndicator"
1919
isStatic = true
2020
}
2121
}

0 commit comments

Comments
 (0)