Add a module for the Matrix SDK with the aar of the Rust SDK
This commit is contained in:
parent
4219281691
commit
1238047b08
14 changed files with 131 additions and 34 deletions
|
|
@ -3,6 +3,7 @@
|
|||
xmlns:tools="http://schemas.android.com/tools">
|
||||
|
||||
<application
|
||||
android:name=".ElementXApplication"
|
||||
android:allowBackup="true"
|
||||
android:dataExtractionRules="@xml/data_extraction_rules"
|
||||
android:fullBackupContent="@xml/backup_rules"
|
||||
|
|
|
|||
|
|
@ -0,0 +1,12 @@
|
|||
package io.element.android.x
|
||||
|
||||
import android.app.Application
|
||||
import io.element.android.x.sdk.matrix.MatrixInstance
|
||||
|
||||
class ElementXApplication : Application() {
|
||||
|
||||
override fun onCreate() {
|
||||
super.onCreate()
|
||||
MatrixInstance.init(this)
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue