-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Description This updates Kotlin to 2.0.0 Also a bunch of other dependency updates Motivation and Context Updating to the latest and greatest to have better compilation performances. How Has This Been Tested? Ran samples, published locally
- Loading branch information
1 parent
3e87cd9
commit 6364907
Showing
76 changed files
with
200 additions
and
224 deletions.
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 |
---|---|---|
|
@@ -70,6 +70,7 @@ fastlane/test_output | |
|
||
# Android project | ||
.gradle | ||
.kotlin | ||
.android | ||
local.properties | ||
.idea/ | ||
|
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
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
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
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 |
---|---|---|
@@ -1,11 +1,9 @@ | ||
org.gradle.caching=true | ||
kotlin.js.ir.dce=true | ||
kotlin.mpp.stability.nowarn=true | ||
org.gradle.parallel=true | ||
org.gradle.jvmargs=-Xmx3072m -XX\:+HeapDumpOnOutOfMemoryError -Dfile.encoding\=UTF-8 | ||
version=5.4.0 | ||
version=5.4.0-SNAPSHOT | ||
android.useAndroidX=true | ||
android.enableJetifier=true | ||
kotlin.code.style=official | ||
kapt.incremental.apt=true | ||
kotlin.mpp.androidSourceSetLayoutVersion=2 |
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
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
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
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
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
6 changes: 6 additions & 0 deletions
6
...in/kotlin/com/mirego/trikot/foundation/concurrent/dispatchQueue/OperationDispatchQueue.kt
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,6 @@ | ||
package com.mirego.trikot.foundation.concurrent.dispatchQueue | ||
|
||
expect class OperationDispatchQueue() : TrikotDispatchQueue { | ||
override fun isSerial(): Boolean | ||
override fun dispatch(block: DispatchBlock) | ||
} |
6 changes: 0 additions & 6 deletions
6
...Main/kotlin/com/mirego/trikot/foundation/concurrent/dispatchQueue/TrikotDispatchQueues.kt
This file was deleted.
Oops, something went wrong.
5 changes: 4 additions & 1 deletion
5
...ain/kotlin/com/mirego/trikot/foundation/concurrent/dispatchQueue/UIThreadDispatchQueue.kt
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 |
---|---|---|
@@ -1,3 +1,6 @@ | ||
package com.mirego.trikot.foundation.concurrent.dispatchQueue | ||
|
||
expect class UIThreadDispatchQueue() : TrikotDispatchQueue | ||
expect class UIThreadDispatchQueue() : TrikotDispatchQueue { | ||
override fun isSerial(): Boolean | ||
override fun dispatch(block: DispatchBlock) | ||
} |
3 changes: 3 additions & 0 deletions
3
...in/kotlin/com/mirego/trikot/foundation/concurrent/dispatchQueue/OperationDispatchQueue.kt
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,3 @@ | ||
package com.mirego.trikot.foundation.concurrent.dispatchQueue | ||
|
||
actual class OperationDispatchQueue : IOSGlobalDispatchQueue(), TrikotDispatchQueue |
8 changes: 0 additions & 8 deletions
8
...Main/kotlin/com/mirego/trikot/foundation/concurrent/dispatchQueue/TrikotDispatchQueues.kt
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
6 changes: 6 additions & 0 deletions
6
...in/kotlin/com/mirego/trikot/foundation/concurrent/dispatchQueue/OperationDispatchQueue.kt
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,6 @@ | ||
package com.mirego.trikot.foundation.concurrent.dispatchQueue | ||
|
||
actual open class OperationDispatchQueue : TrikotDispatchQueue { | ||
actual override fun isSerial() = true | ||
actual override fun dispatch(block: DispatchBlock) = block() | ||
} |
9 changes: 0 additions & 9 deletions
9
...Main/kotlin/com/mirego/trikot/foundation/concurrent/dispatchQueue/TrikotDispatchQueues.kt
This file was deleted.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
...ain/kotlin/com/mirego/trikot/foundation/concurrent/dispatchQueue/UIThreadDispatchQueue.kt
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
package com.mirego.trikot.foundation.concurrent.dispatchQueue | ||
|
||
actual class UIThreadDispatchQueue : TrikotDispatchQueue { | ||
override fun dispatch(block: DispatchBlock) { | ||
actual override fun dispatch(block: DispatchBlock) { | ||
block() | ||
} | ||
} |
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
3 changes: 3 additions & 0 deletions
3
...ed/kotlin/com/mirego/trikot/foundation/concurrent/dispatchQueue/OperationDispatchQueue.kt
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,3 @@ | ||
package com.mirego.trikot.foundation.concurrent.dispatchQueue | ||
|
||
actual class OperationDispatchQueue : JvmDispatchQueue(), TrikotDispatchQueue |
6 changes: 0 additions & 6 deletions
6
...ared/kotlin/com/mirego/trikot/foundation/concurrent/dispatchQueue/TrikotDispatchQueues.kt
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
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.