Skip to content

Commit 022b0b2

Browse files
committed
Revert "Moved to version 0.2.2" until included in F-Droid
This reverts commit d375274.
1 parent 57e9447 commit 022b0b2

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

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.2.2" >
5+
android:versionName="0.2.1" >
66

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

java/pom.xml

Lines changed: 1 addition & 1 deletion
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.2.2-SNAPSHOT</version>
7+
<version>0.2.1</version>
88
<packaging>apk</packaging>
99

1010
<name>rust-keylock-android</name>

rust/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
22
name = "rustkeylockandroid"
3-
version = "0.2.2"
3+
version = "0.2.1"
44
authors = ["aston <[email protected]>"]
55

66
[lib]
77
name = "rustkeylockandroid"
88
crate-type = ["cdylib"]
99

1010
[dependencies]
11-
rust_keylock = { git = "https://github.com/rust-keylock/rust-keylock-lib", rev = "HEAD" }
11+
rust_keylock = "0.2.1"
1212
libc = "0.2"
1313
lazy_static = "0.2"
1414
log = "0.3"

rust/src/android_editor.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ impl Editor for AndroidImpl {
113113
}
114114
}
115115

116-
fn show_message(&self, message: &str) -> UserSelection {
116+
fn show_message(&self, message: &'static str) -> UserSelection {
117117
debug!("Showing Message '{}'", message);
118118
(self.show_message_cb)(super::to_java_string(message.to_string()));
119119
let user_selection = self.rx.recv().unwrap();

0 commit comments

Comments
 (0)