Made BankFinder a multiplatform project
This commit is contained in:
parent
afc8ce9ee9
commit
247604e696
|
@ -1,35 +1,162 @@
|
||||||
apply plugin: 'java-library'
|
plugins {
|
||||||
apply plugin: 'kotlin'
|
id "org.jetbrains.kotlin.multiplatform"
|
||||||
|
id "com.android.library"
|
||||||
|
id "maven-publish"
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
ext.artifactName = "bank-finder"
|
ext.artifactName = "bank-finder"
|
||||||
|
|
||||||
sourceCompatibility = "7"
|
|
||||||
targetCompatibility = "7"
|
kotlin {
|
||||||
|
jvm {
|
||||||
|
compilations.main.kotlinOptions {
|
||||||
|
jvmTarget = "1.6"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
targets {
|
||||||
|
// Select iOS target for real device or emulator.
|
||||||
|
final def iOSIsRealDevice = System.getenv('SDK_NAME')?.startsWith("iphoneos")
|
||||||
|
final def iOSTarget = iOSIsRealDevice ? presets.iosArm64 : presets.iosX64
|
||||||
|
|
||||||
|
// iOS target.
|
||||||
|
fromPreset(iOSTarget, 'ios') {
|
||||||
|
binaries {
|
||||||
|
framework {
|
||||||
|
baseName = "fints4k"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
dependencies {
|
sourceSets {
|
||||||
|
commonMain {
|
||||||
|
dependencies {
|
||||||
|
implementation kotlin("stdlib-common")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
commonTest {
|
||||||
|
dependencies {
|
||||||
|
implementation kotlin("test-common")
|
||||||
|
implementation kotlin("test-annotations-common")
|
||||||
|
|
||||||
|
implementation "ch.tutteli.atrium:atrium-fluent-en_GB:$atriumVersion"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
jvmMain {
|
||||||
|
dependencies {
|
||||||
api "net.dankito.utils:java-utils:$javaUtilsVersion"
|
api "net.dankito.utils:java-utils:$javaUtilsVersion"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
jvmTest {
|
||||||
|
dependencies {
|
||||||
|
implementation kotlin("test-junit")
|
||||||
|
|
||||||
|
implementation "org.junit.jupiter:junit-jupiter:$junit5Version"
|
||||||
|
runtimeOnly "org.junit.jupiter:junit-jupiter-engine:$junit5Version"
|
||||||
|
|
||||||
|
implementation "org.assertj:assertj-core:$assertJVersion"
|
||||||
|
implementation "org.mockito:mockito-core:$mockitoVersion"
|
||||||
|
|
||||||
|
implementation "ch.tutteli.atrium:atrium-api-fluent-en_GB-jdk8:$atriumVersion"
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
testImplementation "org.junit.jupiter:junit-jupiter:$junit5Version"
|
iosMain {
|
||||||
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:$junit5Version"
|
dependencies {
|
||||||
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-common:$kotlinVersion"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
testImplementation "org.assertj:assertj-core:$assertJVersion"
|
}
|
||||||
testImplementation "org.mockito:mockito-core:$mockitoVersion"
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Task to generate iOS framework for xcode projects.
|
||||||
|
task packForXCode(type: Sync) {
|
||||||
|
|
||||||
|
final File frameworkDir = new File(buildDir, "xcode-frameworks")
|
||||||
|
final String mode = project.findProperty("XCODE_CONFIGURATION")?.toUpperCase() ?: 'DEBUG'
|
||||||
|
|
||||||
|
final def framework = kotlin.targets.ios.binaries.getFramework("", mode)
|
||||||
|
|
||||||
|
inputs.property "mode", mode
|
||||||
|
dependsOn framework.linkTask
|
||||||
|
|
||||||
|
from { framework.outputFile.parentFile }
|
||||||
|
into frameworkDir
|
||||||
|
|
||||||
|
doLast {
|
||||||
|
new File(frameworkDir, 'gradlew').with {
|
||||||
|
text = "#!/bin/bash\nexport 'JAVA_HOME=${System.getProperty("java.home")}'\ncd '${rootProject.rootDir}'\n./gradlew \$@\n"
|
||||||
|
setExecutable(true)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Run packForXCode when building.
|
||||||
|
tasks.build.dependsOn packForXCode
|
||||||
|
|
||||||
|
|
||||||
|
android {
|
||||||
|
compileSdkVersion androidCompileSdkVersion
|
||||||
|
|
||||||
|
|
||||||
|
defaultConfig {
|
||||||
|
minSdkVersion androidMinSdkVersion
|
||||||
|
targetSdkVersion androidTargetSdkVersion
|
||||||
|
|
||||||
|
versionName version
|
||||||
|
versionCode appVersionCode
|
||||||
|
|
||||||
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||||
|
}
|
||||||
|
|
||||||
|
buildTypes {
|
||||||
|
release {
|
||||||
|
minifyEnabled false
|
||||||
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
packagingOptions {
|
||||||
|
pickFirst 'META-INF/ktor-http.kotlin_module'
|
||||||
|
pickFirst 'META-INF/kotlinx-io.kotlin_module'
|
||||||
|
pickFirst 'META-INF/atomicfu.kotlin_module'
|
||||||
|
pickFirst 'META-INF/ktor-utils.kotlin_module'
|
||||||
|
pickFirst 'META-INF/kotlinx-coroutines-io.kotlin_module'
|
||||||
|
pickFirst 'META-INF/ktor-client-core.kotlin_module'
|
||||||
|
pickFirst 'META-INF/DEPENDENCIES'
|
||||||
|
pickFirst 'META-INF/NOTICE'
|
||||||
|
pickFirst 'META-INF/LICENSE'
|
||||||
|
pickFirst 'META-INF/LICENSE.txt'
|
||||||
|
pickFirst 'META-INF/NOTICE.txt'
|
||||||
|
}
|
||||||
|
|
||||||
|
lintOptions {
|
||||||
|
abortOnError false
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
task jarTest (type: Jar) {
|
//task jarTest (type: Jar) {
|
||||||
from sourceSets.test.output
|
// from sourceSets.jvmTest.output
|
||||||
classifier = 'test'
|
// classifier = 'test'
|
||||||
}
|
//}
|
||||||
|
//
|
||||||
configurations {
|
//configurations {
|
||||||
testOutput
|
// testOutput
|
||||||
}
|
//}
|
||||||
|
//
|
||||||
artifacts {
|
//artifacts {
|
||||||
testOutput jarTest
|
// testOutput jarTest
|
||||||
}
|
//}
|
|
@ -0,0 +1,7 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
package="net.dankito.banking.bankfinder">
|
||||||
|
|
||||||
|
<uses-permission android:name="android.permission.INTERNET" />
|
||||||
|
|
||||||
|
</manifest>
|
Loading…
Reference in New Issue