diff --git a/BankingUiCommon/build.gradle b/BankingUiCommon/build.gradle new file mode 100644 index 00000000..458e4005 --- /dev/null +++ b/BankingUiCommon/build.gradle @@ -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" +} \ No newline at end of file diff --git a/fints4javaAndroidApp/build.gradle b/fints4javaAndroidApp/build.gradle index 50290e19..ab4f34ed 100644 --- a/fints4javaAndroidApp/build.gradle +++ b/fints4javaAndroidApp/build.gradle @@ -49,6 +49,7 @@ android { dependencies { implementation project(':fints4javaLib') + implementation project(':BankingUiCommon') api "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion" diff --git a/settings.gradle b/settings.gradle index 9730720e..99051208 100644 --- a/settings.gradle +++ b/settings.gradle @@ -2,6 +2,8 @@ rootProject.name = 'fints4java' include ':fints4javaLib' -include ':fints4javaAndroidApp' +include ':BankListCreator' -include ':BankListCreator' \ No newline at end of file +include ':BankingUiCommon' + +include ':fints4javaAndroidApp' \ No newline at end of file