Skip to content

Commit 506558e

Browse files
committed
* Bump 0.11.0
* Use latest build tools
1 parent 2cd9e28 commit 506558e

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.travis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ android:
66
components:
77
- platform-tools
88
- tools
9-
- build-tools-26.0.2
9+
- build-tools-25.0.2
1010
- android-16
1111
before_install:
1212
- openssl aes-256-cbc -K $encrypted_2f32dd076c5d_key -iv $encrypted_2f32dd076c5d_iv
@@ -19,8 +19,8 @@ script:
1919
- mvn -f java/pom.xml clean install
2020
before_deploy:
2121
- jarsigner -verbose -sigalg SHA1withRSA -digestalg SHA1 -keystore ks/rkl.jks -storepass
22-
$storepass -keypass $keypass java/target/rust-keylock-android-0.10.0-unsigned.apk rustkeylock
23-
- "${ANDROID_HOME}/build-tools/26.0.2/zipalign -v 4 java/target/rust-keylock-android-0.10.0-unsigned.apk
22+
$storepass -keypass $keypass java/target/rust-keylock-android-0.11.0-unsigned.apk rustkeylock
23+
- "${ANDROID_HOME}/build-tools/26.0.2/zipalign -v 4 java/target/rust-keylock-android-0.11.0-unsigned.apk
2424
java/target/rust-keylock-android.apk"
2525
deploy:
2626
overwrite: true

java/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
33
package="org.astonbitecode.rustkeylock"
44
android:versionCode="1"
5-
android:versionName="0.10.0" >
5+
android:versionName="0.11.0" >
66

77
<uses-sdk
88
android:minSdkVersion="16"

java/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>org.astonbitecode.rustkeylock</groupId>
66
<artifactId>rust-keylock-android</artifactId>
7-
<version>0.10.0</version>
7+
<version>0.11.0</version>
88
<packaging>apk</packaging>
99

1010
<name>rust-keylock-android</name>
@@ -42,7 +42,7 @@
4242
<dependency>
4343
<groupId>io.github.astonbitecode</groupId>
4444
<artifactId>j4rs</artifactId>
45-
<version>0.10.2-java7</version>
45+
<version>0.11.0-java7</version>
4646
</dependency>
4747
<dependency>
4848
<groupId>com.dropbox.core</groupId>

rust/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rustkeylockandroid"
3-
version = "0.10.0"
3+
version = "0.11.0"
44
authors = ["aston <[email protected]>"]
55
edition = "2018"
66

@@ -9,8 +9,8 @@ name = "rustkeylockandroid"
99
crate-type = ["cdylib"]
1010

1111
[dependencies]
12-
rust_keylock = "0.10.0"
13-
j4rs = "0.10"
12+
rust_keylock = {git="https://github.com/rust-keylock/rust-keylock-lib.git"}
13+
j4rs = "0.11.0"
1414
libc = "0.2"
1515
jni-sys = "0.3"
1616
serde = { version = "1.0", features = ["derive"] }

0 commit comments

Comments
 (0)