Skip to content
Snippets Groups Projects
Commit 30de1d78 authored by Benoit Marty's avatar Benoit Marty
Browse files

Fix compilation issue with Jitpack

parent 1967566b
No related branches found
No related tags found
No related merge requests found
install:
- ./gradlew :matrix-sdk-android:build :matrix-sdk-android:publishToMavenLocal -x :matrix-sdk-android:test
- find . -name "*.aar"
......@@ -3,6 +3,7 @@ apply plugin: 'kotlin-android'
apply plugin: 'kotlin-kapt'
apply plugin: 'kotlin-parcelize'
apply plugin: 'realm-android'
apply plugin: 'maven-publish'
buildscript {
repositories {
......@@ -196,3 +197,13 @@ dependencies {
androidTestUtil 'androidx.test:orchestrator:1.3.0'
}
project.afterEvaluate {
publishing {
publications {
release(MavenPublication) {
from components.release
}
}
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment