mirror of https://github.com/FongMi/TV.git
parent
c5095ed7a6
commit
098642bd51
@ -0,0 +1,18 @@ |
||||
package com.fongmi.android.tv; |
||||
|
||||
public class Constant { |
||||
|
||||
public static final String PROXY = "https://ghproxy.com/"; |
||||
public static final String REPO = "https://raw.githubusercontent.com/FongMi/TV/"; |
||||
public static final String RELEASE = "release"; |
||||
public static final String KITKAT = "kitkat"; |
||||
public static final String DEV = "dev"; |
||||
|
||||
public static String getReleasePath(String path) { |
||||
return PROXY + REPO + RELEASE + path; |
||||
} |
||||
|
||||
public static String getBranchPath(String branch, String path) { |
||||
return PROXY + REPO + branch + path; |
||||
} |
||||
} |
||||
Loading…
Reference in new issue