From 670fb71448f1acd99a344a955dfd83eb91d2ddc9 Mon Sep 17 00:00:00 2001 From: rovo89 Date: Tue, 3 Jul 2012 23:31:49 +0200 Subject: [PATCH] Use numeric versions for the binary The binary is updated less often than the Java part. A version string suggests that the version number should be the same as for the Java part (especially when the strings are similar), but this is not the case. The different format should avoid this misunderstanding and also recompiling the binary just to change the version from "beta" to "release" etc. --- xposed.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xposed.h b/xposed.h index a33a9ecc9..2607b330c 100644 --- a/xposed.h +++ b/xposed.h @@ -15,7 +15,7 @@ namespace android { #define XPOSED_CLASS "de/robv/android/xposed/XposedBridge" #define XPOSED_CLASS_DOTS "de.robv.android.xposed.XposedBridge" #define XRESOURCES_CLASS "android/content/res/XResources" -#define XPOSED_VERSION "1.7b7" +#define XPOSED_VERSION "20" extern bool keepLoadingXposed; typedef std::list::iterator XposedOriginalMethodsIt;