Skip to content

Commit

Permalink
Merge pull request #8 from Merseyside/develop
Browse files Browse the repository at this point in the history
Remove local deps
  • Loading branch information
Merseyside authored Apr 19, 2022
2 parents 4117731 + f7e1153 commit dda90b2
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 12 deletions.
6 changes: 5 additions & 1 deletion archy-android/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,11 @@ android {

kotlinConvention {
debug = true
setCompilerArgs("-Xinline-classes", "-Xskip-prerelease-check")
setCompilerArgs(
"-Xinline-classes",
"-opt-in=kotlin.RequiresOptIn",
"-Xskip-prerelease-check"
)
}

val androidLibraries = listOf(
Expand Down
20 changes: 12 additions & 8 deletions archy-core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -29,18 +29,22 @@ kotlin {
}

ios()
// iosSimulatorArm64()
//
// sourceSets {
// val iosMain by getting
// val iosSimulatorArm64Main by getting
// iosSimulatorArm64Main.dependsOn(iosMain)
// }
iosSimulatorArm64()

sourceSets {
val iosMain by getting
val iosSimulatorArm64Main by getting
iosSimulatorArm64Main.dependsOn(iosMain)
}
}

kotlinConvention {
debug = true
setCompilerArgs("-Xinline-classes", "-Xskip-prerelease-check")
setCompilerArgs(
"-Xinline-classes",
"-opt-in=kotlin.RequiresOptIn",
"-Xskip-prerelease-check"
)
}

val mppLibs = listOf(
Expand Down
3 changes: 1 addition & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,7 @@ android.enableJetifier=true
# Kotlin code style for this project: "official" or "obsolete":
kotlin.code.style=official

build.localDependencies=false
build.localAndroidDependencies=true
build.localAndroidDependencies=false
build.localKotlinExtLibrary=false

kotlin.mpp.stability.nowarn=true
Expand Down
Binary file not shown.
2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
enableFeaturePreview("VERSION_CATALOGS")
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")

private val isLocalAndroidDependencies = true
private val isLocalAndroidDependencies = false
private val isLocalKotlinExtLibrary = false

dependencyResolutionManagement {
Expand Down
1 change: 1 addition & 0 deletions utils-core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ kotlinConvention {
setCompilerArgs(
"-Xinline-classes",
"-Xskip-prerelease-check",
"-opt-in=kotlin.RequiresOptIn",
"-Xbinary=memoryModel=experimental"
)
}
Expand Down

0 comments on commit dda90b2

Please sign in to comment.