Added module BankingUiCommon
This commit is contained in:
parent
c342eaacc3
commit
913d85d4a8
|
@ -0,0 +1,20 @@
|
||||||
|
apply plugin: 'java-library'
|
||||||
|
apply plugin: 'kotlin'
|
||||||
|
|
||||||
|
|
||||||
|
sourceCompatibility = "1.7"
|
||||||
|
targetCompatibility = "1.7"
|
||||||
|
|
||||||
|
compileKotlin {
|
||||||
|
kotlinOptions.jvmTarget = "1.6"
|
||||||
|
}
|
||||||
|
compileTestKotlin {
|
||||||
|
kotlinOptions.jvmTarget = "1.6"
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
api "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion"
|
||||||
|
|
||||||
|
api "net.dankito.utils:java-utils:$javaUtilsVersion"
|
||||||
|
}
|
|
@ -49,6 +49,7 @@ android {
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation project(':fints4javaLib')
|
implementation project(':fints4javaLib')
|
||||||
|
implementation project(':BankingUiCommon')
|
||||||
|
|
||||||
api "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion"
|
api "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion"
|
||||||
|
|
||||||
|
|
|
@ -2,6 +2,8 @@ rootProject.name = 'fints4java'
|
||||||
|
|
||||||
include ':fints4javaLib'
|
include ':fints4javaLib'
|
||||||
|
|
||||||
include ':fints4javaAndroidApp'
|
|
||||||
|
|
||||||
include ':BankListCreator'
|
include ':BankListCreator'
|
||||||
|
|
||||||
|
include ':BankingUiCommon'
|
||||||
|
|
||||||
|
include ':fints4javaAndroidApp'
|
Loading…
Reference in New Issue