Skip to content

Instantly share code, notes, and snippets.

@marenovakovic
Created January 4, 2023 11:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marenovakovic/3fd64f4c57c4f32a4b337367ec430748 to your computer and use it in GitHub Desktop.
Save marenovakovic/3fd64f4c57c4f32a4b337367ec430748 to your computer and use it in GitHub Desktop.
Compose iOS Gradle settings
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