Skip to content

Commit 4d407a4

Browse files
committed
update version
1 parent d5a371d commit 4d407a4

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ XMake installed on the system. Available [here](https://github.com/xmake-io/xmak
5656

5757
```
5858
plugins {
59-
id 'org.tboox.gradle-xmake-plugin' version '1.0.7'
59+
id 'org.tboox.gradle-xmake-plugin' version '1.0.8'
6060
}
6161
```
6262

@@ -70,7 +70,7 @@ buildscript {
7070
}
7171
}
7272
dependencies {
73-
classpath 'org.tboox:gradle-xmake-plugin:1.0.7'
73+
classpath 'org.tboox:gradle-xmake-plugin:1.0.8'
7474
}
7575
repositories {
7676
mavenCentral()

README_zh.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ xmake-gradle是一个无缝整合xmake的gradle插件。
5656

5757
```
5858
plugins {
59-
id 'org.tboox.gradle-xmake-plugin' version '1.0.7'
59+
id 'org.tboox.gradle-xmake-plugin' version '1.0.8'
6060
}
6161
```
6262

@@ -70,7 +70,7 @@ buildscript {
7070
}
7171
}
7272
dependencies {
73-
classpath 'org.tboox:gradle-xmake-plugin:1.0.7'
73+
classpath 'org.tboox:gradle-xmake-plugin:1.0.8'
7474
}
7575
repositories {
7676
mavenCentral()

gradle-xmake-plugin/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ plugins {
88
apply plugin: 'groovy'
99

1010
group = "org.tboox"
11-
version = "1.0.7"
11+
version = "1.0.8"
1212

1313
repositories {
1414
// Use jcenter for resolving your dependencies.

gradle-xmake-plugin/src/main/resources/lua/install_artifacts.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ function _install_cxxstl(installdir, arch)
6868

6969
-- get c++ sdk directory
7070
local cxxstl_sdkdir
71-
if ndk_cxxstl:startswith("llvmstl") then
71+
if ndk_cxxstl:startswith("c++") or ndk_cxxstl:startswith("llvmstl") then
7272
cxxstl_sdkdir = cxxstl_sdkdir_llvmstl
7373
elseif ndk_cxxstl:startswith("gnustl") then
7474
cxxstl_sdkdir = cxxstl_sdkdir_gnustl
@@ -94,7 +94,7 @@ function _install_cxxstl(installdir, arch)
9494

9595
-- get stl library
9696
local cxxstl_filename
97-
if ndk_cxxstl == "llvmstl_shared" then
97+
if ndk_cxxstl == "c++_shared" or ndk_cxxstl == "llvmstl_shared" then
9898
cxxstl_filename = "libc++_shared.so"
9999
elseif ndk_cxxstl == "gnustl_shared" then
100100
cxxstl_filename = "libgnustl_shared.so"

nativelib/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id 'org.tboox.gradle-xmake-plugin' version '1.0.7'
2+
id 'org.tboox.gradle-xmake-plugin' version '1.0.8'
33
}
44

55
apply plugin: 'com.android.library'

0 commit comments

Comments
 (0)