mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-07-18 00:46:45 +00:00
- fix(sync): unblock @sp/sync-core/@sp/sync-providers typecheck under vitest 4 - chore(mobile): pin @capacitor/keyboard to 8.0.1 - chore(mobile): migrate to Capacitor 8 - Merge branch 'feat/issue-7749-3341d1' - docs(plugins): plan for wiring PERSISTED_DATA_CHANGED hook - test(plugins): cover document-mode bundled load and PLUGIN_USER_DATA LWW - chore(plugins): re-bundle document-mode and document Stage A path
25 lines
465 B
Groovy
25 lines
465 B
Groovy
buildscript {
|
|
|
|
ext.kotlin_version = "2.2.20"
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:8.13.0'
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
maven { url 'https://jitpack.io' }
|
|
}
|
|
}
|
|
|
|
task clean(type: Delete) {
|
|
delete rootProject.buildDir
|
|
}
|