Skip to content

Commit

Permalink
First commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander committed Aug 15, 2018
1 parent bb1da5c commit 98ceec1
Show file tree
Hide file tree
Showing 51 changed files with 1,593 additions and 672 deletions.
104 changes: 59 additions & 45 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,28 +1,33 @@
buildscript {
repositories {
maven { url 'https://maven.fabric.io/public' }
jcenter()
google()
//maven { url 'https://maven.fabric.io/public' }
}

dependencies {
classpath 'io.fabric.tools:gradle:1.+'
classpath 'com.android.tools.build:gradle:3.1.4'
classpath 'io.sentry:sentry-android-gradle-plugin:1.7.5'
//classpath 'io.fabric.tools:gradle:1.+'
}
}
apply plugin: 'com.android.application'
apply plugin: 'io.fabric'
apply plugin: 'io.sentry.android.gradle'
//apply plugin: 'io.fabric'

repositories {
maven { url 'https://maven.fabric.io/public' }
jcenter()
maven { url "https://jitpack.io" }
google()
//maven { url 'https://maven.fabric.io/public' }
}

android {
compileSdkVersion 26
buildToolsVersion '26.0.2'
compileSdkVersion 27
buildToolsVersion '28.0.2'
defaultConfig {
applicationId "com.bitshares.bitshareswallet"
minSdkVersion 15
targetSdkVersion 25
targetSdkVersion 27
versionCode 10201001
versionName "1.2.1.1"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
Expand Down Expand Up @@ -87,46 +92,55 @@ android {
}

dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
implementation fileTree(include: ['*.jar'], dir: '../libs')

androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile('com.crashlytics.sdk.android:crashlytics:2.6.8@aar') {
transitive = true;
}
compile 'com.android.support:multidex:1.0.2'
compile 'com.android.support:appcompat-v7:26.1.0'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
compile 'com.android.support:support-v4:26.1.0'
compile 'com.android.support:preference-v7:26.1.0'
compile 'com.android.support:preference-v14:26.1.0'
compile 'com.android.support:design:26.1.0'
compile 'com.google.guava:guava:23.0-android'
compile 'com.madgag.spongycastle:core:1.56.0.0'
compile 'com.madgag.spongycastle:prov:1.56.0.0'
compile 'com.madgag.spongycastle:pkix:1.51.0.0'
compile 'com.madgag.spongycastle:pg:1.51.0.0'
compile 'org.slf4j:slf4j-android:1.7.25'
compile 'com.google.protobuf:protobuf-java:3.4.0'
compile 'com.squareup.okhttp3:okhttp:3.9.0'
compile 'com.fasterxml.jackson.core:jackson-databind:2.5.1'
compile 'com.google.code.gson:gson:2.8.1'
compile 'com.kaopiz:kprogresshud:1.0.2'
compile 'com.wang.avi:library:2.1.3'
compile 'com.google.firebase:firebase-core:11.4.2'
compile 'com.github.PhilJay:MPAndroidChart:v3.0.2'
compile 'com.squareup.retrofit2:retrofit:2.3.0'
compile 'com.squareup.retrofit2:converter-gson:2.3.0'
compile 'com.jakewharton:butterknife:8.8.1'

implementation 'io.sentry:sentry-android:1.7.5'
//implementation "ch.acra:acra-http:5.1.3"
implementation 'com.android.support:appcompat-v7:27.0.2'
implementation 'com.android.support.constraint:constraint-layout:1.1.2'
implementation 'com.android.support:support-v4:27.0.2'
implementation 'com.android.support:preference-v7:27.0.2'
implementation 'com.android.support:preference-v14:27.0.2'
implementation 'com.android.support:design:27.0.2'
implementation 'com.google.guava:guava:23.0-android'
implementation 'com.madgag.spongycastle:core:1.56.0.0'
implementation 'com.madgag.spongycastle:prov:1.56.0.0'
implementation 'com.madgag.spongycastle:pkix:1.51.0.0'
implementation 'com.madgag.spongycastle:pg:1.51.0.0'
implementation 'org.slf4j:slf4j-android:1.7.25'
implementation 'com.google.protobuf:protobuf-java:3.4.0'
implementation 'com.squareup.okhttp3:okhttp:3.11.0'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.9.5'
implementation 'com.google.code.gson:gson:2.8.2'
implementation 'com.kaopiz:kprogresshud:1.0.2'
implementation 'com.wang.avi:library:2.1.3'
implementation 'com.github.PhilJay:MPAndroidChart:v3.0.2'
implementation 'com.squareup.retrofit2:retrofit:2.3.0'
implementation 'com.squareup.retrofit2:converter-gson:2.3.0'
implementation 'com.jakewharton:butterknife:8.8.1'
annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.1'
implementation 'android.arch.persistence.room:runtime:1.0.0-rc1'
annotationProcessor "android.arch.persistence.room:compiler:1.0.0-rc1"
implementation 'android.arch.lifecycle:extensions:1.0.0-rc1'
annotationProcessor "android.arch.lifecycle:compiler:1.0.0-rc1"
testCompile 'junit:junit:4.12'
implementation 'android.arch.persistence.room:runtime:1.1.1'
annotationProcessor "android.arch.persistence.room:compiler:1.1.1"
implementation 'android.arch.lifecycle:extensions:1.1.1'
annotationProcessor "android.arch.lifecycle:compiler:1.1.1"
testImplementation 'junit:junit:4.12'
implementation 'io.reactivex.rxjava2:rxjava:2.1.5'
implementation 'io.reactivex.rxjava2:rxandroid:2.0.1'
implementation project(':graphenej:graphenej')
}
implementation 'me.dm7.barcodescanner:zxing:1.9.8'
implementation 'com.andrognito.pinlockview:pinlockview:2.1.0'
//implementation 'com.github.atomfrede:jadenticon:2.0.0'
//implementation project(':graphenej:graphenej')
implementation 'com.github.bilthon:graphenej:0.4.2'

apply plugin: 'com.google.gms.google-services'
/*implementation('com.crashlytics.sdk.android:answers:1.4.2@aar') {
transitive = true;
}
implementation('com.crashlytics.sdk.android:crashlytics:2.9.4@aar') {
transitive = true;
}*/
}
1 change: 1 addition & 0 deletions app/release/output.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
[{"outputType":{"type":"APK"},"apkInfo":{"type":"MAIN","splits":[],"versionCode":10201001,"versionName":"1.2.1.1","enabled":true,"outputFile":"app-release.apk","fullName":"release","baseName":"release"},"path":"app-release.apk","properties":{}}]
Loading

0 comments on commit 98ceec1

Please sign in to comment.