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

Commit

Permalink
v19.5
Browse files Browse the repository at this point in the history
  • Loading branch information
RikkaW committed Aug 23, 2019
1 parent 2c07013 commit 025d45d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
5 changes: 4 additions & 1 deletion app/src/main/java/moe/riru/manager/utils/NativeHelper.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,15 @@
@Keep
public class NativeHelper {

private static final int V19_5 = 27;
private static final int V19_4 = 26;
private static final int V19_3 = 25;
private static final int V19_2 = 24;
private static final int V19_1 = 22;
private static final int V19 = 20;
private static final int V18 = 19;
private static final int V17_1 = 18;
private static final int MAX_VERSION = V19_4;
private static final int MAX_VERSION = V19_5;

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

switch (versionCode) {
case V19_5:
return "v19.5";
case V19_4:
return "v19.4";
case V19_3:
Expand Down
4 changes: 2 additions & 2 deletions riru-core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ def moduleId = "riru-core"
def moduleName = "Riru - Core"
def moduleAuthor = "Rikka"
def moduleDescription = "Inject zygote process by replace libmemtrack.so, provide interface to other Riru modules."
def versionName = "v19.4"
def versionCode = 26
def versionName = "v19.5"
def versionCode = 27

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

Expand Down
4 changes: 2 additions & 2 deletions riru-core/jni/main/version.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#ifndef VERSION_H
#define VERSION_H

#define VERSION_CODE 26
#define VERSION_NAME "v19.4"
#define VERSION_CODE 27
#define VERSION_NAME "v19.5"

#endif // VERSION_H

0 comments on commit 025d45d

Please sign in to comment.