mirror of https://github.com/FongMi/TV.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
583 B
18 lines
583 B
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;
|
|
}
|
|
}
|
|
|