Skip to content

Commit 8b8cad7

Browse files
Remove mokttp name of :library
1 parent 47c03b0 commit 8b8cad7

File tree

5 files changed

+6
-8
lines changed

5 files changed

+6
-8
lines changed

.github/workflows/continuous-integration-workflow.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
with:
2020
java-version: 1.8
2121
- name: Tests
22-
run: bash ./gradlew mokttp:testDebugUnitTest
22+
run: bash ./gradlew library:testDebugUnitTest
2323

2424
ios_tests:
2525
name: iOS Tests
@@ -32,4 +32,4 @@ jobs:
3232
- name: Boot simulator
3333
run: xcrun simctl boot "iPhone 8"
3434
- name: Tests
35-
run: ./gradlew mokttp:iosTest
35+
run: ./gradlew library:iosTest

sample-android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ dependencies {
4949
implementation 'androidx.recyclerview:recyclerview:1.1.0'
5050
implementation 'androidx.recyclerview:recyclerview-selection:1.0.0'
5151

52-
implementation project(':mokttp')
52+
implementation project(':library')
5353
implementation project(':sample-sharedCode')
5454

5555
testImplementation 'junit:junit:4.13'

sample-ios/SampleiOS.xcodeproj/project.pbxproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@
199199
);
200200
runOnlyForDeploymentPostprocessing = 0;
201201
shellPath = /bin/bash;
202-
shellScript = "cd \"$PROJECT_DIR/..\"\n./gradlew mokttp:linkDebugFrameworkIosX64 sample-sharedCode:linkDebugFrameworkIosX64\n";
202+
shellScript = "cd \"$PROJECT_DIR/..\"\n./gradlew library:linkDebugFrameworkIosX64 sample-sharedCode:linkDebugFrameworkIosX64\n";
203203
};
204204
/* End PBXShellScriptBuildPhase section */
205205

sample-sharedCode/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ kotlin {
4646
commonMain.dependencies {
4747
implementation 'org.jetbrains.kotlin:kotlin-stdlib-common'
4848
implementation "org.jetbrains.kotlinx:kotlinx-serialization-runtime-common:0.20.0"
49-
implementation project(':mokttp')
49+
implementation project(':library')
5050
}
5151

5252
iosMain {

settings.gradle

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
include ':mokttp'
2-
project(':mokttp').projectDir = file('./library')
3-
1+
include ':library'
42
include ':sample-android'
53
include ':sample-sharedCode'

0 commit comments

Comments
 (0)