Skip to content

Commit 3267907

Browse files
committed
revert extra selected files
1 parent 1b6b765 commit 3267907

File tree

5 files changed

+46
-3
lines changed

5 files changed

+46
-3
lines changed

build.gradle

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
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+
}

sample/sample-app/proguard-rules.pro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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

sample/sample-core/proguard-rules.pro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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

sample/sample-util/proguard-rules.pro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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

settings.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
include ':affectedmoduledetector'

0 commit comments

Comments
 (0)