Skip to content

Commit

Permalink
library adjustments.
Browse files Browse the repository at this point in the history
  • Loading branch information
commandiron committed Oct 25, 2022
1 parent 0bd9b7c commit 8c1606e
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 2 deletions.
19 changes: 17 additions & 2 deletions animatable-compose/build.gradle
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
plugins {
id 'com.android.library'
id 'org.jetbrains.kotlin.android'
id 'maven-publish'
}

android {
namespace 'com.commandiron.animatable_compose'
compileSdk 32
compileSdk 33

defaultConfig {
minSdk 23
targetSdk 32
targetSdk 33

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles "consumer-rules.pro"
Expand Down Expand Up @@ -39,4 +40,18 @@ android {
dependencies {
implementation "androidx.compose.ui:ui:$compose_ui_version"
implementation "androidx.compose.material3:material3:1.0.0-alpha15"
}

afterEvaluate {
publishing{
publications {
release(MavenPublication){
from components.release

groupId = 'com.git.luolix.topmandiron'
artifactId = 'animatable-compose'
version = '1.0.0'
}
}
}
}
4 changes: 4 additions & 0 deletions jitpack.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
jdk:
- openjdk 11
before install:
- ./scripts/prepareJitpackEnvironment.sh

0 comments on commit 8c1606e

Please sign in to comment.