|
|
|
@ -94,7 +94,13 @@ allprojects {
|
|
|
|
|
testImplementation 'junit:junit:4.12' |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (OperatingSystem.current().isMacOsX()) { |
|
|
|
|
// 目前开发工程适配 mac_x64, mac_aarch64, windows_x64 |
|
|
|
|
if (OperatingSystem.current().isMacOsX() && "aarch64".equals(System.getProperty("os.arch"))) { |
|
|
|
|
dependencies { |
|
|
|
|
// jxbrowser 6.23不支持M1,因此没有本地库,但是6.23jar还是需要留着,用来兼容 |
|
|
|
|
implementation "com.fr.third:jxbrowser-mac-arm-v7:${jxBrowserVersion}" |
|
|
|
|
} |
|
|
|
|
} else if (OperatingSystem.current().isMacOsX()) { |
|
|
|
|
dependencies { |
|
|
|
|
implementation 'com.fr.third:jxbrowser-mac:6.23' |
|
|
|
|
implementation "com.fr.third:jxbrowser-mac-v7:${jxBrowserVersion}" |
|
|
|
|