-
Notifications
You must be signed in to change notification settings - Fork 9
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
Multiplatform #14
Draft
luca992
wants to merge
21
commits into
Electric-Coin-Company:main
Choose a base branch
from
luca992:master
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Multiplatform #14
Changes from 10 commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
e7a3614
update kotlin and dependencies
luca992 f54c96c
Begin port to multiplatform
luca992 f86dbe9
Fixes. All tests passing jvm. update dokka
luca992 c4daa90
Finish multiplatform implementation and make tests multiplatform
luca992 5a3a5f0
fix accidental infinite recursion. fixes non-jvm tests
luca992 850ddc3
update to 1.6.20
luca992 cdc7084
fix signing issue when publishing
luca992 245f8e7
update to 1.6.21 add iosSimulatorArm64 target
luca992 8a5fb52
Merge remote-tracking branch 'luca992/master'
luca992 13716d9
remove moko-resources, move test values to const string in commonTest
luca992 1072c46
remove now unused moko-resources generated webpack config
luca992 c4160de
match other zcash projects' gradle jvmargs
luca992 9f9a40f
revert to using CharArray for passphrase param in toSeed
luca992 132da15
use CPRNGs for all targets
luca992 a758860
use expect actual for toSha256
luca992 6f2def9
remove fluidsonic.locale dependency
luca992 fc77c85
add linuxX64 and all darwin targets. and gradle prop to enable or dis…
luca992 f8c4be2
remove okio from jvmMain. make Pbkdf2Sha512 expected
luca992 b1ffe2f
add mingX64
luca992 9537bdf
Merge branch 'main'
luca992 af1269d
fix webpack config for js tests
luca992 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,3 +15,5 @@ build/ | |
.idea | ||
local.properties | ||
|
||
.DS_Store | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
|
||
buildscript { | ||
repositories { | ||
mavenLocal() | ||
google() | ||
mavenCentral() | ||
} | ||
|
||
} | ||
|
||
plugins { | ||
kotlin("multiplatform").version(cash.z.ecc.android.Deps.kotlinVersion) apply false | ||
id("io.kotest.multiplatform") version cash.z.ecc.android.Deps.Kotest.version apply false | ||
kotlin("plugin.serialization") version cash.z.ecc.android.Deps.kotlinVersion apply false | ||
id("com.jfrog.bintray").version("1.+") | ||
} | ||
|
||
allprojects { | ||
repositories { | ||
google() | ||
mavenCentral() | ||
maven("https://oss.sonatype.org/content/repositories/snapshots") | ||
} | ||
} | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,5 +3,5 @@ plugins { | |
} | ||
|
||
repositories { | ||
jcenter() | ||
mavenCentral() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
org.gradle.jvmargs=-Xmx4096M | ||
luca992 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
kotlin.native.binary.memoryModel=experimental |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We'll need some KotlinJS configuration, to control whether to download (useful on CI) and which version to download.
To
gradle.properties
, add new propertiesIS_DOWNLOAD_NODE=true
,IS_DOWNLOAD_YARN=true
, andNODE_VERSION=16.14.2
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The node 14 issue is resolved as of 1.6.20