File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
SwiftKitCore/src/main/java/org/swift/swiftkit/core Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ let package = Package(
6363 . target(
6464 name: " MySwiftLibrary " ,
6565 dependencies: [
66- . product( name: " SwiftJavaRuntimeSupport " , package : " swift-java " ) ,
66+ . product( name: " SwiftRuntimeFunctions " , package : " swift-java " ) ,
6767 ] ,
6868 exclude: [
6969 " swift-java.config " ,
Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ let package = Package(
6565 dependencies: [
6666 . product( name: " SwiftJava " , package : " swift-java " ) ,
6767 . product( name: " CSwiftJavaJNI " , package : " swift-java " ) ,
68- . product( name: " SwiftJavaRuntimeSupport " , package : " swift-java " ) ,
68+ . product( name: " SwiftRuntimeFunctions " , package : " swift-java " ) ,
6969 ] ,
7070 exclude: [
7171 " swift-java.config " ,
Original file line number Diff line number Diff line change 2424
2525public final class SwiftLibraries {
2626
27- // Library names of core Swift and SwiftKit
27+ // Library names of core Swift and SwiftRuntimeFunctions
2828 public static final String LIB_NAME_SWIFT_CORE = "swiftCore" ;
2929 public static final String LIB_NAME_SWIFT_CONCURRENCY = "swift_Concurrency" ;
3030 public static final String LIB_NAME_SWIFT_RUNTIME_FUNCTIONS = "SwiftRuntimeFunctions" ;
@@ -43,7 +43,7 @@ public final class SwiftLibraries {
4343 private static final boolean INITIALIZED_LIBS = loadLibraries (false );
4444
4545 public static boolean loadLibraries (boolean loadSwiftRuntimeFunctions ) {
46- System .loadLibrary (LIB_NAME_SWIFT_RUNTIME_FUNCTIONS );
46+ System .loadLibrary (LIB_NAME_SWIFT_CORE );
4747 if (loadSwiftRuntimeFunctions ) {
4848 System .loadLibrary (LIB_NAME_SWIFT_RUNTIME_FUNCTIONS );
4949 }
You can’t perform that action at this time.
0 commit comments