File tree 5 files changed +7
-7
lines changed
java/com/facebook/soloader
5 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ You can use [prebuilt aars](https://github.com/facebook/soloader/releases/latest
21
21
or fetch SoLoader from Maven repository by adding the following to your
22
22
` build.gradle ` file:
23
23
``` groovy
24
- implementation 'com.facebook.soloader:soloader:0.12.0 +'
24
+ implementation 'com.facebook.soloader:soloader:0.12.1 +'
25
25
```
26
26
27
27
## Building from source
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ NAME = 'SoLoader'
3
3
GROUP = 'com.facebook.soloader'
4
4
ARTIFACT = 'annotation'
5
5
PACKAGING = 'jar'
6
- VERSION='0.12.0 '
6
+ VERSION='0.12.1 '
7
7
8
8
DESCRIPTION = "DoNotOptimize class"
9
9
URL = 'https://github.com/facebook/soloader'
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ NAME = 'SoLoader'
3
3
GROUP = 'com.facebook.soloader'
4
4
ARTIFACT = 'nativeloader'
5
5
PACKAGING = 'jar'
6
- VERSION='0.12.0 '
6
+ VERSION='0.12.1 '
7
7
8
8
DESCRIPTION = "Native code loading interface for Android"
9
9
URL = 'https://github.com/facebook/soloader'
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ NAME = 'SoLoader'
2
2
3
3
GROUP = 'com.facebook.soloader'
4
4
ARTIFACT = 'soloader'
5
- VERSION='0.12.0 '
5
+ VERSION='0.12.1 '
6
6
7
7
DESCRIPTION = "Reliable native code loader for Android"
8
8
URL = 'https://github.com/facebook/soloader'
@@ -25,13 +25,13 @@ INTERNAL_DEPENDENCIES = (""
25
25
"<dependency>"
26
26
"<groupId>com.facebook.soloader</groupId>"
27
27
"<artifactId>annotation</artifactId>"
28
- "<version>0.12.0 </version>"
28
+ "<version>0.12.1 </version>"
29
29
"<scope>compile</scope>"
30
30
"</dependency>"
31
31
"<dependency>"
32
32
"<groupId>com.facebook.soloader</groupId>"
33
33
"<artifactId>nativeloader</artifactId>"
34
- "<version>0.12.0 </version>"
34
+ "<version>0.12.1 </version>"
35
35
"<scope>compile</scope>"
36
36
"</dependency>"
37
37
"</dependencies>")
Original file line number Diff line number Diff line change @@ -93,7 +93,7 @@ public class SoLoader {
93
93
/* package */ @ Nullable static SoFileLoader sSoFileLoader ;
94
94
95
95
// optional identifier strings to facilitate bytecode analysis
96
- public static final String VERSION = "0.12.0 " ;
96
+ public static final String VERSION = "0.12.1 " ;
97
97
98
98
/**
99
99
* locking controlling the list of SoSources. We want to allow long running iterations over the
You can’t perform that action at this time.
0 commit comments