1 /** 2 * 3 */ 4 package edu.jiangxin.apktoolbox.help; 5 6 /** 7 * @author jiangxin 8 * @author 2019-05-11 9 * 10 */ 11 public class Constant { 12 13 private Constant() { 14 } 15 16 /** 17 * Url for creating feedbacks or issues 18 */ 19 public static final String URL_FEEDBACK = "https://github.com/jiangxincode/ApkToolBoxGUI/issues/new"; 20 21 /** 22 * Url for contributing the repository 23 */ 24 public static final String URL_CONTRIBUTE = "https://github.com/jiangxincode/ApkToolBoxGUI"; 25 26 /** 27 * Url for checking update 28 */ 29 public static final String URL_CHECK_UPDATE = "https://api.github.com/repos/jiangxincode/ApkToolBoxGUI/releases/latest"; 30 }