Make the app compile in release
Following instructions from https://stackoverflow.com/a/70074787/1472514
This commit is contained in:
parent
a7c2d86a55
commit
0166702b08
3 changed files with 4 additions and 1 deletions
|
|
@ -8,7 +8,7 @@ android {
|
|||
}
|
||||
|
||||
dependencies {
|
||||
api(files("./libs/matrix-rust-sdk.aar"))
|
||||
api(project(":libraries:rustSdk"))
|
||||
implementation(project(":libraries:core"))
|
||||
implementation(libs.timber)
|
||||
implementation("net.java.dev.jna:jna:5.10.0@aar")
|
||||
|
|
|
|||
2
libraries/rustSdk/build.gradle
Normal file
2
libraries/rustSdk/build.gradle
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
configurations.maybeCreate("default")
|
||||
artifacts.add("default", file('matrix-rust-sdk.aar'))
|
||||
|
|
@ -19,6 +19,7 @@ dependencyResolutionManagement {
|
|||
rootProject.name = "ElementX"
|
||||
include(":app")
|
||||
include(":libraries:core")
|
||||
include(":libraries:rustSdk")
|
||||
include(":libraries:matrix")
|
||||
include(":libraries:textcomposer")
|
||||
include(":libraries:elementresources")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue