Skip to content

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
  • Loading branch information
waruqi committed Apr 18, 2020
1 parent d5a371d commit 4d407a4
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ XMake installed on the system. Available [here](https://github.com/xmake-io/xmak

```
plugins {
id 'org.tboox.gradle-xmake-plugin' version '1.0.7'
id 'org.tboox.gradle-xmake-plugin' version '1.0.8'
}
```

Expand All @@ -70,7 +70,7 @@ buildscript {
}
}
dependencies {
classpath 'org.tboox:gradle-xmake-plugin:1.0.7'
classpath 'org.tboox:gradle-xmake-plugin:1.0.8'
}
repositories {
mavenCentral()
Expand Down
4 changes: 2 additions & 2 deletions README_zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ xmake-gradle是一个无缝整合xmake的gradle插件。

```
plugins {
id 'org.tboox.gradle-xmake-plugin' version '1.0.7'
id 'org.tboox.gradle-xmake-plugin' version '1.0.8'
}
```

Expand All @@ -70,7 +70,7 @@ buildscript {
}
}
dependencies {
classpath 'org.tboox:gradle-xmake-plugin:1.0.7'
classpath 'org.tboox:gradle-xmake-plugin:1.0.8'
}
repositories {
mavenCentral()
Expand Down
2 changes: 1 addition & 1 deletion gradle-xmake-plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {
apply plugin: 'groovy'

group = "org.tboox"
version = "1.0.7"
version = "1.0.8"

repositories {
// Use jcenter for resolving your dependencies.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ function _install_cxxstl(installdir, arch)

-- get c++ sdk directory
local cxxstl_sdkdir
if ndk_cxxstl:startswith("llvmstl") then
if ndk_cxxstl:startswith("c++") or ndk_cxxstl:startswith("llvmstl") then
cxxstl_sdkdir = cxxstl_sdkdir_llvmstl
elseif ndk_cxxstl:startswith("gnustl") then
cxxstl_sdkdir = cxxstl_sdkdir_gnustl
Expand All @@ -94,7 +94,7 @@ function _install_cxxstl(installdir, arch)

-- get stl library
local cxxstl_filename
if ndk_cxxstl == "llvmstl_shared" then
if ndk_cxxstl == "c++_shared" or ndk_cxxstl == "llvmstl_shared" then
cxxstl_filename = "libc++_shared.so"
elseif ndk_cxxstl == "gnustl_shared" then
cxxstl_filename = "libgnustl_shared.so"
Expand Down
2 changes: 1 addition & 1 deletion nativelib/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id 'org.tboox.gradle-xmake-plugin' version '1.0.7'
id 'org.tboox.gradle-xmake-plugin' version '1.0.8'
}

apply plugin: 'com.android.library'
Expand Down

0 comments on commit 4d407a4

Please sign in to comment.