File tree 7 files changed +36
-9
lines changed
7 files changed +36
-9
lines changed Original file line number Diff line number Diff line change 1
1
/.project
2
2
/.README.md.html
3
3
/buildallandrun.sh
4
+ /android-toolchain /
5
+ /tools /
Original file line number Diff line number Diff line change 8
8
/proguard-project.txt
9
9
/project.properties
10
10
/target /
11
- /libs /armeabi /
11
+ /libs /armeabi /
12
+ /rust-keylock-android-java.iml
Original file line number Diff line number Diff line change 2
2
<manifest xmlns : android =" http://schemas.android.com/apk/res/android"
3
3
package =" org.astonbitecode.rustkeylock"
4
4
android : versionCode =" 1"
5
- android : versionName =" 0.2.1 " >
5
+ android : versionName =" 0.2.2 " >
6
6
7
7
<uses-sdk
8
8
android : minSdkVersion =" 16"
Original file line number Diff line number Diff line change 14
14
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
15
15
<android .version></android .version>
16
16
<jna .version>4.4.0</jna .version>
17
- <android .maven.plugin.version>4.4.3 </android .maven.plugin.version>
17
+ <android .maven.plugin.version>4.5.0 </android .maven.plugin.version>
18
18
<android .plugin.version>4.1.1.4</android .plugin.version>
19
19
<junit .version>3.8.1</junit .version>
20
20
<maven .compiler.plugin.version>3.6.1</maven .compiler.plugin.version>
103
103
<pluginExecutions >
104
104
<pluginExecution >
105
105
<pluginExecutionFilter >
106
- <groupId >com.simpligility.maven.plugins</groupId >
107
- <artifactId >android-maven-plugin</artifactId >
106
+ <groupId >
107
+ org.apache.maven.plugins
108
+ </groupId >
109
+ <artifactId >
110
+ maven-dependency-plugin
111
+ </artifactId >
112
+ <versionRange >[2.1,)</versionRange >
113
+ <goals >
114
+ <goal >unpack-dependencies</goal >
115
+ </goals >
116
+ </pluginExecutionFilter >
117
+ <action >
118
+ <ignore ></ignore >
119
+ </action >
120
+ </pluginExecution >
121
+ <pluginExecution >
122
+ <pluginExecutionFilter >
123
+ <groupId >
124
+ com.simpligility.maven.plugins
125
+ </groupId >
126
+ <artifactId >
127
+ android-maven-plugin
128
+ </artifactId >
108
129
<versionRange >[4.4.3,)</versionRange >
109
130
<goals >
131
+ <goal >generate-sources</goal >
110
132
<goal >emma</goal >
133
+ <goal >proguard</goal >
111
134
</goals >
112
135
</pluginExecutionFilter >
113
136
<action >
114
- <ignore / >
137
+ <ignore ></ ignore >
115
138
</action >
116
139
</pluginExecution >
117
140
</pluginExecutions >
Original file line number Diff line number Diff line change @@ -3,3 +3,4 @@ Cargo.lock
3
3
/.project
4
4
/.settings /
5
5
/config
6
+ /rust-keylock-android-rust.iml
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " rustkeylockandroid"
3
- version = " 0.2.1 "
3
+ version = " 0.2.2 "
4
4
authors = [
" aston <[email protected] >" ]
5
5
6
6
[lib ]
7
7
name = " rustkeylockandroid"
8
8
crate-type = [" cdylib" ]
9
9
10
10
[dependencies ]
11
- rust_keylock = " 0.2.1 "
11
+ rust_keylock = { git = " https://github.com/rust-keylock/rust-keylock-lib " , rev = " HEAD " }
12
12
libc = " 0.2"
13
13
lazy_static = " 0.2"
14
14
log = " 0.3"
Original file line number Diff line number Diff line change @@ -113,7 +113,7 @@ impl Editor for AndroidImpl {
113
113
}
114
114
}
115
115
116
- fn show_message ( & self , message : & ' static str ) -> UserSelection {
116
+ fn show_message ( & self , message : & str ) -> UserSelection {
117
117
debug ! ( "Showing Message '{}'" , message) ;
118
118
( self . show_message_cb ) ( super :: to_java_string ( message. to_string ( ) ) ) ;
119
119
let user_selection = self . rx . recv ( ) . unwrap ( ) ;
You can’t perform that action at this time.
0 commit comments