mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-01-31 00:45:24 +01:00
* Implemented writeTextFile on Android. * Added license headers. * fix fmt checks. * implement more file APIs * change file * cleanup * refactor dialog plugin to leverage new FS APIs * implement metadata functions * fix build * expose FS rust API * resolve resources on android * update pnpm * update docs --------- Co-authored-by: Lucas Nogueira <lucas@tauri.app>
32 lines
723 B
Groovy
32 lines
723 B
Groovy
pluginManagement {
|
|
repositories {
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
google()
|
|
}
|
|
resolutionStrategy {
|
|
eachPlugin {
|
|
switch (requested.id.id) {
|
|
case "com.android.library":
|
|
useVersion("8.0.2")
|
|
break
|
|
case "org.jetbrains.kotlin.android":
|
|
useVersion("1.8.20")
|
|
break
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
mavenCentral()
|
|
google()
|
|
|
|
}
|
|
}
|
|
|
|
include ':tauri-android'
|
|
project(':tauri-android').projectDir = new File('./.tauri/tauri-api')
|