Default to canary channel if running canary build

This commit is contained in:
topjohnwu
2019-03-11 07:38:31 -04:00
parent a1827fd680
commit 7e3ff03109
3 changed files with 8 additions and 2 deletions

View File

@@ -12,6 +12,7 @@ import android.provider.OpenableColumns;
import android.widget.Toast;
import com.topjohnwu.magisk.App;
import com.topjohnwu.magisk.BuildConfig;
import com.topjohnwu.magisk.Config;
import com.topjohnwu.magisk.Const;
import com.topjohnwu.magisk.container.Module;
@@ -118,4 +119,8 @@ public class Utils {
public static void reboot() {
Shell.su("/system/bin/reboot" + (Config.recovery ? " recovery" : "")).submit();
}
public static boolean isCanary() {
return BuildConfig.VERSION_NAME.contains("-");
}
}