-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial pass at separating out a navigation-fragments module for all …
…navigation-related code
- Loading branch information
Showing
84 changed files
with
475 additions
and
247 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 |
---|---|---|
|
@@ -24,12 +24,13 @@ val developerEmail by extra("[email protected]") | |
android { | ||
namespace = "dev.hotwire.core" | ||
compileSdk = 34 | ||
|
||
testOptions.unitTests.isIncludeAndroidResources = true | ||
testOptions.unitTests.isReturnDefaultValues = true | ||
testOptions.targetSdk = 34 | ||
|
||
defaultConfig { | ||
minSdk = 28 | ||
targetSdk = 34 | ||
} | ||
|
||
buildTypes { | ||
|
@@ -71,10 +72,10 @@ android { | |
|
||
dependencies { | ||
// Kotlin | ||
implementation("org.jetbrains.kotlin:kotlin-reflect:1.9.22") | ||
implementation("org.jetbrains.kotlin:kotlin-reflect:1.9.23") | ||
|
||
// Material | ||
implementation("com.google.android.material:material:1.11.0") | ||
implementation("com.google.android.material:material:1.12.0") | ||
|
||
// AndroidX | ||
implementation("androidx.constraintlayout:constraintlayout:2.1.4") | ||
|
@@ -86,19 +87,16 @@ dependencies { | |
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.6.3") | ||
|
||
// Networking/API | ||
implementation("com.squareup.okhttp3:okhttp:4.11.0") | ||
implementation("com.squareup.okhttp3:logging-interceptor:4.11.0") | ||
implementation("com.squareup.okhttp3:okhttp:4.12.0") | ||
implementation("com.squareup.okhttp3:logging-interceptor:4.12.0") | ||
|
||
// Coroutines | ||
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3") | ||
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3") | ||
|
||
// Browser | ||
implementation("androidx.browser:browser:1.7.0") | ||
|
||
// Exported AndroidX dependencies | ||
api("androidx.appcompat:appcompat:1.6.1") | ||
api("androidx.core:core-ktx:1.12.0") | ||
api("androidx.core:core-ktx:1.13.1") | ||
api("androidx.webkit:webkit:1.8.0") | ||
api("androidx.activity:activity-ktx:1.8.1") | ||
api("androidx.fragment:fragment-ktx:1.6.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
2 changes: 1 addition & 1 deletion
2
core/src/main/kotlin/dev/hotwire/core/bridge/BridgeComponent.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
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
2 changes: 1 addition & 1 deletion
2
core/src/main/kotlin/dev/hotwire/core/bridge/StradaJsonConverter.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
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
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
Oops, something went wrong.