OSDN Git Service

rev versions
authorKoushik Dutta <koushd@gmail.com>
Sun, 1 Dec 2013 06:25:20 +0000 (22:25 -0800)
committerKoushik Dutta <koushd@gmail.com>
Sun, 1 Dec 2013 06:25:20 +0000 (22:25 -0800)
Change-Id: Iaeb683302509e15f2a7868968cddd6cba4b21baa

Superuser/AndroidManifest.xml
Superuser/jni/su/su.h
Superuser/src/com/koushikdutta/superuser/util/SuHelper.java

index 318f953..a0fbbc5 100644 (file)
@@ -2,7 +2,7 @@
 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
     package="com.koushikdutta.superuser"
     android:versionCode="1027"
-    android:versionName="1.0.2.7" >
+    android:versionName="1.0.2.8" >
 
     <uses-sdk
         android:minSdkVersion="8"
index fbdd1b1..d549bcd 100644 (file)
@@ -77,7 +77,7 @@
 #define str(a) #a
 
 #ifndef VERSION_CODE
-#define VERSION_CODE 14
+#define VERSION_CODE 15
 #endif
 #define VERSION xstr(VERSION_CODE) " " REQUESTOR
 
index 93083b4..dd86e19 100644 (file)
@@ -4,7 +4,7 @@ import android.content.Context;
 import android.util.Log;
 
 public class SuHelper {
-    public static String CURRENT_VERSION = "14";
+    public static String CURRENT_VERSION = "15";
     public static void checkSu(Context context) throws Exception {
         Process p = Runtime.getRuntime().exec("su -v");
         String result = Settings.readToEnd(p.getInputStream());