Skip to content

Commit f9f9421

Browse files
committed
배포 준비
1 parent 879cb49 commit f9f9421

3 files changed

Lines changed: 16 additions & 8 deletions

File tree

audioControllerLibrary/build.gradle

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,19 @@ dependencies {
4444
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
4545
}
4646

47-
group='com.github.HyunJinNo'
47+
afterEvaluate {
48+
publishing {
49+
publications {
50+
// Creates a Maven publication called "release"
51+
release(MavenPublication) {
52+
// Applies the component for the release build variant.
53+
from components.release
54+
55+
// You can customize attributes of the publication.
56+
groupId = 'com.github.HyunJinNo'
57+
artifactId = ''
58+
version = '1.0.0'
59+
}
60+
}
61+
}
62+
}

build.gradle

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,4 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
2-
buildscript {
3-
dependencies {
4-
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
5-
}
6-
}
7-
82
plugins {
93
id 'com.android.application' version '8.0.1' apply false
104
id 'com.android.library' version '8.0.1' apply false

settings.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ dependencyResolutionManagement {
1010
repositories {
1111
google()
1212
mavenCentral()
13-
maven { url "https://jitpack.io" }
1413
}
1514
}
1615
rootProject.name = "SimpleAudioController"

0 commit comments

Comments
 (0)