Skip to content

Commit f042844

Browse files
fix :
- rename classes
1 parent 7c0a197 commit f042844

File tree

4 files changed

+4
-7
lines changed

4 files changed

+4
-7
lines changed

build.gradle

Lines changed: 0 additions & 6 deletions
This file was deleted.

build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ buildscript {
1010
classpath(ClassPaths.gradlePlugin)
1111
classpath(ClassPaths.kotlinPlugin)
1212
classpath(ClassPaths.googleServicesPlugin)
13+
classpath(ClassPaths.githubMaven)
1314
// NOTE: Do not place your application dependencies here; they belong
1415
// in the individual module build.gradle.kts files
1516
}

buildSrc/src/main/kotlin/Dependencies.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ object ClassPaths {
5353
const val gradlePlugin = "com.android.tools.build:gradle:${Versions.gradlePlugin}"
5454
const val kotlinPlugin = "org.jetbrains.kotlin:kotlin-gradle-plugin:${Versions.kotlin}"
5555
const val googleServicesPlugin = "com.google.gms:google-services:${Versions.googleServicesPlugin}"
56+
const val githubMaven = "com.github.dcendents:android-maven-gradle-plugin:2.1"
5657
}
5758

5859
/**

customedittextoutlinedborder/build.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ apply plugin: 'kotlin-android-extensions'
44
apply plugin: 'kotlin-kapt'
55

66
apply plugin: 'maven-publish'
7+
apply plugin: 'com.github.dcendents.android-maven'
78

89
android {
910
compileSdkVersion 29
@@ -48,7 +49,7 @@ def getArtificatId = { ->
4849
publishing {
4950
publications {
5051
bar(MavenPublication) {
51-
groupId 'shweta.com' // Replace with group ID
52+
groupId 'com.github.simformsolutions' // Replace with group ID
5253
artifactId getArtificatId()
5354
version getVersionName()
5455
artifact("$buildDir/outputs/aar/${getArtificatId()}-release.aar")

0 commit comments

Comments
 (0)