Skip to content

Commit 643e466

Browse files
lib
1 parent 6440e50 commit 643e466

File tree

23 files changed

+280
-29
lines changed

23 files changed

+280
-29
lines changed

.idea/artifacts/di_multiplatform_lib_jvm_1_0_2.xml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/gradle.xml

Lines changed: 16 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/jarRepositories.xml

Lines changed: 15 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/uiDesigner.xml

Lines changed: 124 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build.gradle.kts

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
plugins {
22
kotlin("multiplatform") version "1.4.32"
33
id("maven-publish")
4+
// id("convention.publication")
45
}
56

6-
group = "me.annazharkova"
7-
version = "1.0.1"
7+
group = "com.azharkova"
8+
version = "1.0.3"
89

910
repositories {
1011
jcenter()
@@ -21,10 +22,17 @@ kotlin {
2122
}
2223
}
2324
val hostOs = System.getProperty("os.name")
24-
val iosTarget = when {
25+
/*val iosTarget = when {
2526
hostOs == "X64"-> iosX64("ios")
2627
hostOs == "arm64" -> iosArm64("ios")
2728
else -> iosX64("ios")
29+
}*/
30+
ios {
31+
binaries {
32+
framework {
33+
baseName = "library"
34+
}
35+
}
2836
}
2937

3038
sourceSets {
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
signing.keyId=15EDFFBE
2+
signing.password=Multiplatform
3+
signing.secretKeyRingFile=/Users/annazharkova/15EDFFBE.gpg
4+
sonatypeUsername = anioutkazharkova
5+
sonatypePassword = Anna123456!!
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
## This file must *NOT* be checked into Version Control Systems,
2+
# as it contains information specific to your local configuration.
3+
#
4+
# Location of the SDK. This is only used by Gradle.
5+
# For customization when using a Version Control System, please read the
6+
# header note.
7+
#Sat Jan 30 22:59:41 GMT+07:00 2021
8+
signing.keyId=15EDFFBE
9+
signing.password=Multiplatform
10+
signing.secretKeyRingFile=/Users/annazharkova/15EDFFBE.gpg
11+
ossrhUsername=anioutkazharkova
12+
ossrhPassword=Anna123456!!

settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ pluginManagement {
66
mavenCentral()
77
}
88
}
9-
9+
//includeBuild("convention-plugins")
1010
rootProject.name = "di-multiplatform-lib"
1111

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
package com.azharkova.di.init
2+
3+
import com.azharkova.di.container.DIContainer
4+
5+
class ConfiguratorApp {
6+
val appDIContainer: DIContainer by lazy { DIContainer() }
7+
}

0 commit comments

Comments
 (0)