forked from cl3m/multiplatform-compose
-
Notifications
You must be signed in to change notification settings - Fork 0
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
24 changed files
with
208 additions
and
236 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 |
---|---|---|
|
@@ -11,3 +11,4 @@ test/build | |
androidApp/build | ||
build | ||
modules.xml | ||
.idea |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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 @@ | ||
build |
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,11 @@ | ||
repositories { | ||
jcenter() | ||
} | ||
|
||
plugins { | ||
`kotlin-dsl` | ||
} | ||
|
||
kotlinDslPluginOptions { | ||
experimentalWarning.set(false) | ||
} |
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,39 @@ | ||
|
||
object Version { | ||
const val kotlin = "1.4.21" | ||
|
||
const val appcompat = "1.2.0" | ||
const val material = "1.2.1" | ||
|
||
const val compose = "1.0.0-alpha09" | ||
const val nav_compose = "1.0.0-alpha04" | ||
|
||
const val yoga = "~> 1.7" | ||
|
||
const val junit = "4.13" | ||
} | ||
|
||
|
||
object AndroidSdk { | ||
const val min = 24 | ||
const val compile = 29 | ||
const val target = compile | ||
} | ||
|
||
object iOSSdk { | ||
const val deploymentTarget = "9.0" | ||
} | ||
|
||
object Android { | ||
const val appcompact = "androidx.appcompat:appcompat:${Version.appcompat}" | ||
const val material = "com.google.android.material:material:${Version.material}" | ||
} | ||
|
||
object Compose { | ||
const val runtime = "androidx.compose.runtime:runtime:${Version.compose}" | ||
const val ui = "androidx.compose.ui:ui:${Version.compose}" | ||
const val foundationLayout = "androidx.compose.foundation:foundation-layout:${Version.compose}" | ||
const val material = "androidx.compose.material:material:${Version.compose}" | ||
const val runtimeLiveData = "androidx.compose.runtime:runtime-livedata:${Version.compose}" | ||
const val navigation = "androidx.navigation:navigation-compose:${Version.nav_compose}" | ||
} |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.