Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added debug support #76

Merged
merged 5 commits into from
Mar 23, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {

repositories {
google()
mavenCentral()
jcenter()
}
dependencies {
classpath(Deps.android_gradle_plugin)
classpath(Deps.SqlDelight.gradle)
classpath(Deps.xcodesync)
classpath(Deps.cocoapodsext)
classpath("org.jetbrains.kotlin:kotlin-serialization:${Versions.kotlin}")

classpath(kotlin("gradle-plugin", Versions.kotlin))
Expand All @@ -21,6 +21,7 @@ buildscript {
allprojects {
repositories {
google()
mavenCentral()
jcenter()
maven(url = "https://kotlin.bintray.com/kotlinx")
maven(url = "https://dl.bintray.com/touchlabpublic/kotlin")
Expand Down
5 changes: 2 additions & 3 deletions buildSrc/src/main/java/Dependencies.kt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ object Versions {
val coroutines = "1.3.3-native-mt"
val koin = "3.0.0-alpha-8"
val serialization = "0.14.0"
val xcodesync = "0.2"
val cocoapodsext = "0.6"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What's the logic behind how we're versioning the new plugin?


}

Expand All @@ -33,8 +33,7 @@ object Deps {
val multiplatformSettings = "com.russhwolf:multiplatform-settings:${Versions.multiplatformSettings}"
val multiplatformSettingsTest = "com.russhwolf:multiplatform-settings-test:${Versions.multiplatformSettings}"
val koinCore = "org.koin:koin-core:${Versions.koin}"
val xcodesync = "co.touchlab:kotlinxcodesync:${Versions.xcodesync}"

val cocoapodsext = "co.touchlab:kotlinnativecocoapods:${Versions.cocoapodsext}"

object AndroidXTest {
val core = "androidx.test:core:${Versions.android_x}"
Expand Down
Loading