Updated on 2026-08-14

This commit is contained in:
Tangem 2019-04-01 19:36:37 +03:00
parent 300b38450e
commit 39de788b03
7 changed files with 12 additions and 32 deletions

1
.idea/gradle.xml generated
View file

@ -11,7 +11,6 @@
<option value="$PROJECT_DIR$/app" />
<option value="$PROJECT_DIR$/card-android" />
<option value="$PROJECT_DIR$/card-common" />
<option value="$PROJECT_DIR$/ripple-core" />
<option value="$PROJECT_DIR$/server-android" />
</set>
</option>

View file

@ -47,19 +47,9 @@ dependencies {
implementation project(':card-common')
implementation project(':card-android')
implementation project(':server-android')
implementation project(':ripple-core')
//for ripple-core TODO: move to ripple-core?
implementation 'net.i2p.crypto:eddsa:0.2.0'
implementation 'org.bouncycastle:bcprov-jdk15on:1.58'
//noinspection DuplicatePlatformClasses
implementation 'org.json:json:20171018'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.9.3'
// implementation 'com.github.TangemCash:card-common:0.1.2'
// implementation 'com.github.TangemCash:card-android:0.1.3'
// implementation 'com.github.TangemCash:server-android:0.1.4'
// implementation 'com.github.TangemCash:card-common:0.1.2'
// implementation 'com.github.TangemCash:card-android:0.1.3'
// implementation 'com.github.TangemCash:server-android:0.1.4'
implementation 'androidx.appcompat:appcompat:1.1.0-alpha01'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation 'androidx.lifecycle:lifecycle-extensions:2.0.0'
@ -89,4 +79,12 @@ dependencies {
implementation 'io.reactivex.rxjava2:rxjava:2.2.0'
implementation 'io.reactivex.rxjava2:rxandroid:2.0.2'
implementation 'io.reactivex.rxjava2:rxkotlin:2.3.0'
implementation files('libs/ripple-core-0.0.1.jar')
//4 dependencies for ripple-core TODO: move to module?
implementation 'net.i2p.crypto:eddsa:0.2.0'
implementation 'org.bouncycastle:bcprov-jdk15on:1.58'
//noinspection DuplicatePlatformClasses
implementation 'org.json:json:20171018'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.9.3'
}

View file

@ -1,15 +0,0 @@
configurations.maybeCreate("default")
artifacts.add("default", file('ripple-core-0.0.1-SNAPSHOT.jar'))
apply plugin: 'java-library'
apply plugin: 'com.github.dcendents.android-maven'
dependencies {
implementation 'net.i2p.crypto:eddsa:0.2.0'
implementation 'org.bouncycastle:bcprov-jdk15on:1.58'
implementation 'org.json:json:20171018'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.9.3'
}
repositories {
mavenCentral()
}

View file

@ -1,2 +0,0 @@
configurations.maybeCreate("default")
artifacts.add("default", file('ripple-core-0.0.1-SNAPSHOT.jar'))

View file

@ -1 +1 @@
include ':app', ':card-android', ':server-android', ':card-common', ':ripple-core'
include ':app', ':card-android', ':server-android', ':card-common'