Skip to content
This repository has been archived by the owner on Feb 23, 2021. It is now read-only.

Commit

Permalink
fix x86 and other arch incompatibility issues. bump to v0.0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
TGIO committed Jun 17, 2017
1 parent acb46c9 commit 5209f10
Show file tree
Hide file tree
Showing 10 changed files with 5 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Android JNI model implementation of Rob Napier's RNCryptor.

```gradle
dependencies {
compile 'com.github.tgio:rncryptor-native:0.0.8'
compile 'com.github.tgio:rncryptor-native:0.0.9'
}
```

Expand Down
3 changes: 2 additions & 1 deletion benchmark/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:25.3.1'
compile 'com.github.tgio:rncryptor-native:0.0.8'
compile 'com.github.tgio:rncryptor-native:0.0.9'
// compile project(':rncryptor-native')
compile project(':jncryptor')
compile 'com.github.PhilJay:MPAndroidChart:v2.2.4'
}
10 changes: 2 additions & 8 deletions rncryptor-native/build.gradle
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
apply plugin: 'com.android.model.library'

def version = 8;
def version = 9;

ext {



bintrayRepo = 'maven'
bintrayName = 'rncryptor-native'

Expand All @@ -29,7 +26,6 @@ ext {
allLicenses = ["Apache-2.0"]
}


model {
android {
compileSdkVersion = 25
Expand All @@ -49,7 +45,7 @@ model {
ndk {
moduleName = 'rncrypto'
cppFlags.addAll(['-frtti', '-fexceptions'])
ldLibs.add("log")
ldLibs.addAll(['android', 'log'])
stl "gnustl_shared"
}
sources {
Expand Down Expand Up @@ -84,8 +80,6 @@ model {
}
}



}


Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 comments on commit 5209f10

Please sign in to comment.