Skip to content

Commit ece9466

Browse files
committed
feat:Reorganize the project structure
1 parent be114d8 commit ece9466

File tree

43 files changed

+141
-35
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+141
-35
lines changed

.gitignore

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ build/
77
/captures
88
.externalNativeBuild
99
.cxx
10-
iosApp/Podfile.lock
11-
iosApp/Pods/*
12-
iosApp/iosApp.xcworkspace/*
13-
iosApp/iosApp.xcodeproj/*
14-
!iosApp/iosApp.xcodeproj/project.pbxproj
10+
sample/iosApp/Podfile.lock
11+
sample/iosApp/Pods/*
12+
sample/iosApp/iosApp.xcworkspace/*
13+
sample/iosApp/iosApp.xcodeproj/*
14+
!sample/iosApp/iosApp.xcodeproj/project.pbxproj
1515
progressIndicator/progressIndicator.podspec
1616
/convention-plugins/
1717
keySec.gpg

.run/desktopApp.run.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<configuration default="false" name="desktopApp" type="GradleRunConfiguration" factoryName="Gradle">
33
<ExternalSystemSettings>
44
<option name="executionName" />
5-
<option name="externalProjectPath" value="$PROJECT_DIR$/desktopApp" />
5+
<option name="externalProjectPath" value="$PROJECT_DIR$/sample/desktopApp" />
66
<option name="externalSystemIdString" value="GRADLE" />
77
<option name="scriptParameters" value="" />
88
<option name="taskDescriptions">

progressIndicator/src/androidMain/kotlin/com/multiplatform/progressindicator/main.android.kt

Lines changed: 0 additions & 8 deletions
This file was deleted.

androidApp/build.gradle.kts renamed to sample/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(":progressIndicator"))
12+
implementation(project(":sample:shared"))
1313
}
1414
}
1515
}

androidApp/src/androidMain/kotlin/com/myapplication/MainActivity.kt renamed to sample/androidApp/src/androidMain/kotlin/com/myapplication/MainActivity.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
package com.myapplication
22

3-
import com.multiplatform.progressindicator.MainView
43
import android.os.Bundle
54
import androidx.activity.compose.setContent
65
import androidx.appcompat.app.AppCompatActivity
6+
import com.kevinnzou.sample.shared.MainView
77

88
class MainActivity : AppCompatActivity() {
99
override fun onCreate(savedInstanceState: Bundle?) {

0 commit comments

Comments
 (0)