Start with using git submodules #24

without-aar-files
Gerben Droogers 6 years ago
parent 24f853a62e
commit c0a2571937

6
.gitmodules vendored

@ -0,0 +1,6 @@
[submodule "matrix-sdk"]
path = matrix-sdk
url = https://github.com/matrix-org/matrix-android-sdk
[submodule "olm-sdk"]
path = olm-sdk
url = http://git.matrix.org/git/olm.git/

@ -17,12 +17,6 @@ android {
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
repositories {
flatDir {
dir 'libs'
}
}
}
dependencies {
@ -35,9 +29,9 @@ dependencies {
compile 'com.android.support.constraint:constraint-layout:1.0.2'
testCompile 'junit:junit:4.12'
compile(name: 'matrix-sdk', ext: 'aar')
compile(name: 'olm-sdk', ext: 'aar')
implementation project(':olm-sdk')
implementation project(':matrix-sdk')
compile 'com.squareup.retrofit:retrofit:1.6.1'
compile 'com.google.code.gson:gson:2.3'
compile 'com.squareup.okhttp:okhttp-urlconnection:2.2.0'

Binary file not shown.

Binary file not shown.

@ -0,0 +1 @@
Subproject commit 4498034a3af3a886df2cda822897871206fddfcd

@ -0,0 +1 @@
Subproject commit ec2695b9c945fa577c6fc4501d65a186208ecfed

@ -1 +1,5 @@
include ':app'
include ':olm-sdk'
project(':olm-sdk').projectDir=new File('olm-sdk/android/olm-sdk')
include ':matrix-sdk'
project(':matrix-sdk').projectDir=new File('matrix-sdk/matrix-sdk')
Loading…
Cancel
Save