-
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.
- Loading branch information
Showing
5 changed files
with
19 additions
and
13 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
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,17 +1,17 @@ | ||
object Versions { | ||
const val KOTLIN = "1.9.10" | ||
const val AGP = "8.1.1" | ||
const val COMPOSE = "1.5.1" | ||
const val KOTLIN = "1.9.20" | ||
const val AGP = "8.2.0" | ||
const val COMPOSE = "1.5.11" | ||
const val SETTINGS = "1.0.0" | ||
const val SQLDELIGHT = "2.0.0" | ||
const val FIREBASE_BOM = "32.3.1" | ||
|
||
const val KTOR = "2.3.5" | ||
const val KTOR = "2.3.6" | ||
const val KODE_IN = "7.20.2" | ||
const val COROUTINE = "1.7.3" | ||
const val KOTLINX_DATE_TIME = "0.4.0" | ||
const val KOTLINX_DATE_TIME = "0.4.1" | ||
|
||
const val JUNIT_JUPITER = "5.9.3" | ||
const val MOCKK = "1.13.5" | ||
const val MOCKK = "1.13.8" | ||
const val KO_TEST = "5.5.5" | ||
} |
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,6 +1,7 @@ | ||
#Thu Dec 07 17:50:32 NPT 2023 | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-bin.zip | ||
networkTimeout=10000 | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
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
shared/src/iosMain/kotlin/me/sujanpoudel/playdeals/common/utils/isDebugBuild.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,4 +1,7 @@ | ||
package me.sujanpoudel.playdeals.common.utils | ||
|
||
import kotlin.experimental.ExperimentalNativeApi | ||
|
||
//@OptIn(ExperimentalNativeApi::class) | ||
actual val isDebugBuild: Boolean | ||
get() = Platform.isDebugBinary |