| plugins { | plugins { | ||||
| id 'com.android.library' | id 'com.android.library' | ||||
| id 'org.jetbrains.kotlin.android' | id 'org.jetbrains.kotlin.android' | ||||
| id 'maven-publish' | |||||
| } | } | ||||
| android { | android { | ||||
| dependencies { | dependencies { | ||||
| implementation fileTree(include: ['*.jar'], dir: 'libs') | implementation fileTree(include: ['*.jar'], dir: 'libs') | ||||
| api files('libs/AILinkHealthRingSDK.jar') | api files('libs/AILinkHealthRingSDK.jar') | ||||
| } | |||||
| afterEvaluate { | |||||
| publishing { | |||||
| publications { | |||||
| release(MavenPublication) { | |||||
| from components.release | |||||
| groupId = 'com.github.elinkthings' | |||||
| artifactId = 'AILinkSDKHealthRingLibraryAndroid' | |||||
| version = '1.0.0' | |||||
| } | |||||
| } | |||||
| } | |||||
| } | } |