Tanguy Herbron
3a1ac3c80b
- Fix code typos - Add a 'fromSym' field in the transactions table - Fix translation in the drawer [RecordTransactionActivity rework] - New currency selection - Add Exchange selection - Add corresponding Pair selection - Add tabs to select Buy/Sell/Transaction > Buy fragment - Add note field - Add fee format selection - Limit date selection to the past (it's no longer possible to add a futur transaction) - Auto fill the price after date selection
30 lines
651 B
Groovy
30 lines
651 B
Groovy
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:3.1.4'
|
|
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
// in the individual module build.gradle files
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
maven { url "https://jitpack.io" }
|
|
maven { url "http://dl.bintray.com/lukaville/maven" }
|
|
}
|
|
}
|
|
|
|
task clean(type: Delete) {
|
|
delete rootProject.buildDir
|
|
}
|