Skip to content

Commit

Permalink
Merge pull request #3 from orbitalsonic/master
Browse files Browse the repository at this point in the history
fcm
  • Loading branch information
hypersoftdev committed Feb 14, 2024
2 parents 38a649a + df87eeb commit 36d2119
Showing 1 changed file with 18 additions and 3 deletions.
21 changes: 18 additions & 3 deletions fcm/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
plugins {
id 'com.android.library'
id 'org.jetbrains.kotlin.android'
id 'maven-publish'
}

android {
Expand All @@ -21,11 +22,11 @@ android {
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}
kotlinOptions {
jvmTarget = '1.8'
jvmTarget = '17'
}
}

Expand All @@ -42,4 +43,18 @@ dependencies {
// Glide Library for imageview
implementation 'com.github.bumptech.glide:glide:4.15.1'
annotationProcessor 'com.github.bumptech.glide:compiler:4.14.2'
}

publishing {
publications {
release(MavenPublication) {
groupId = 'com.hypersoft.fcm'
artifactId = 'fcm'
version = '1.0.3'

afterEvaluate {
from components.release
}
}
}
}

0 comments on commit 36d2119

Please sign in to comment.