Skip to content
This repository was archived by the owner on Jan 8, 2024. It is now read-only.

Commit 025d45d

Browse files
committed
v19.5
1 parent 2c07013 commit 025d45d

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

app/src/main/java/moe/riru/manager/utils/NativeHelper.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,15 @@
99
@Keep
1010
public class NativeHelper {
1111

12+
private static final int V19_5 = 27;
1213
private static final int V19_4 = 26;
1314
private static final int V19_3 = 25;
1415
private static final int V19_2 = 24;
1516
private static final int V19_1 = 22;
1617
private static final int V19 = 20;
1718
private static final int V18 = 19;
1819
private static final int V17_1 = 18;
19-
private static final int MAX_VERSION = V19_4;
20+
private static final int MAX_VERSION = V19_5;
2021

2122
static {
2223
System.loadLibrary("helper");
@@ -32,6 +33,8 @@ public static String versionName(Context context, int versionCode) {
3233
}
3334

3435
switch (versionCode) {
36+
case V19_5:
37+
return "v19.5";
3538
case V19_4:
3639
return "v19.4";
3740
case V19_3:

riru-core/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ def moduleId = "riru-core"
2424
def moduleName = "Riru - Core"
2525
def moduleAuthor = "Rikka"
2626
def moduleDescription = "Inject zygote process by replace libmemtrack.so, provide interface to other Riru modules."
27-
def versionName = "v19.4"
28-
def versionCode = 26
27+
def versionName = "v19.5"
28+
def versionCode = 27
2929

3030
def zipNameMagisk = "magisk-${project.name}-${versionName}.zip"
3131

riru-core/jni/main/version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#ifndef VERSION_H
22
#define VERSION_H
33

4-
#define VERSION_CODE 26
5-
#define VERSION_NAME "v19.4"
4+
#define VERSION_CODE 27
5+
#define VERSION_NAME "v19.5"
66

77
#endif // VERSION_H

0 commit comments

Comments
 (0)