File tree Expand file tree Collapse file tree 5 files changed +46
-3
lines changed
Expand file tree Collapse file tree 5 files changed +46
-3
lines changed Original file line number Diff line number Diff line change 1+ // Top-level build file where you can add configuration options common to all sub-projects/modules.
2+ buildscript {
3+ ext. kotlin_version = " 2.2.10"
4+ repositories {
5+ google()
6+ mavenCentral()
7+ maven {
8+ url " https://plugins.gradle.org/m2/"
9+ }
10+ }
11+ dependencies {
12+ classpath " com.android.tools.build:gradle:8.13.0"
13+ classpath " org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version "
14+ classpath(" org.jlleitschuh.gradle:ktlint-gradle:13.1.0" )
15+ classpath(" org.jacoco:org.jacoco.core:0.8.13" )
16+ classpath " com.vanniktech:gradle-maven-publish-plugin:0.34.0"
17+ }
18+ }
19+
20+ apply plugin : " org.jlleitschuh.gradle.ktlint"
21+
22+ allprojects {
23+ repositories {
24+ google()
25+ mavenCentral()
26+ }
27+ }
28+
29+ allprojects {
30+ plugins. withId(" com.vanniktech.maven.publish" ) {
31+ mavenPublishing {
32+ // sonatypeHost = "CENTRAL_PORTAL"
33+ publishToMavenCentral()
34+
35+ signAllPublications()
36+ }
37+ }
38+ }
39+
40+ task clean (type : Delete ) {
41+ delete rootProject. buildDir
42+ }
Original file line number Diff line number Diff line change 11# Add project specific ProGuard rules here.
22# You can control the set of applied configuration files using the
3- # proguardFiles setting in build.gradle.kts
3+ # proguardFiles setting in build.gradle
44#
55# For more details, see
66# http://developer.android.com/guide/developing/tools/proguard.html
Original file line number Diff line number Diff line change 11# Add project specific ProGuard rules here.
22# You can control the set of applied configuration files using the
3- # proguardFiles setting in build.gradle.kts
3+ # proguardFiles setting in build.gradle
44#
55# For more details, see
66# http://developer.android.com/guide/developing/tools/proguard.html
Original file line number Diff line number Diff line change 11# Add project specific ProGuard rules here.
22# You can control the set of applied configuration files using the
3- # proguardFiles setting in build.gradle.kts
3+ # proguardFiles setting in build.gradle
44#
55# For more details, see
66# http://developer.android.com/guide/developing/tools/proguard.html
Original file line number Diff line number Diff line change 1+ include ' :affectedmoduledetector'
You can’t perform that action at this time.
0 commit comments