Created
January 4, 2023 11:38
-
-
Save marenovakovic/3fd64f4c57c4f32a4b337367ec430748 to your computer and use it in GitHub Desktop.
Compose iOS Gradle settings
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
pluginManagement { | |
repositories { | |
google() | |
gradlePluginPortal() | |
mavenCentral() | |
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev") | |
} | |
} | |
buildscript { | |
repositories { | |
mavenLocal() | |
mavenCentral() | |
google() | |
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev") | |
} | |
dependencies { | |
classpath("com.android.tools.build:gradle:7.3.1") | |
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.22") | |
} | |
} | |
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS") | |
enableFeaturePreview("VERSION_CATALOGS") | |
rootProject.name = "Your Project" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment