salomonbrys
11/04/2021, 7:07 PMAydar Mukhametzyanov
11/05/2021, 10:04 AMAppDelegate
with didFinishLaunch
, where you setup InjectionIII.
The only difference is that you would need to setup build settings Other Linker Flags
in build.gradle.kts by using buildSettings.OTHER_LDFLAGS("")
. If you create a new project you will see the commented example:
plugins {
id("org.jetbrains.gradle.apple.applePlugin") version "212.4638.14-0.14"
}
apple {
iosApp {
productName = "DeleteMeKMA2"
sceneDelegateClass = "SceneDelegate"
launchStoryboard = "LaunchScreen"
//productInfo["NSAppTransportSecurity"] = mapOf("NSAllowsArbitraryLoads" to true)
//buildSettings.OTHER_LDFLAGS("")
dependencies {
implementation(project(":shared"))
}
}
}
Would that work for you?salomonbrys
11/05/2021, 10:10 AMbuild/apple/iosApp
while sources are in src/iosAppMain
, which InjectionIII is not watching (it is only watching sub directories of the directory containing the xcodeproj).
Also, I couldn’t find a way to start the app in DEBUG (so I had to remove #if DEBUG
to get InjectionIII stratup messages).Aydar Mukhametzyanov
11/05/2021, 10:21 AM