fix: selected pyramid level too small

This commit is contained in:
hyb1996
2018-01-27 13:50:30 +08:00
parent a683e84140
commit 0c042f7f07
6 changed files with 28 additions and 14 deletions

View File

@@ -40,7 +40,7 @@ public class VersionService {
public VersionService() {
mRetrofit = new Retrofit.Builder()
.baseUrl("https://raw.githubusercontent.com/")
.baseUrl("https://www.autojs.org/")
.addConverterFactory(GsonConverterFactory.create(new GsonBuilder()
.setLenient()
.create()))

View File

@@ -11,7 +11,7 @@ import retrofit2.http.GET;
public interface UpdateCheckApi {
@GET("/hyb1996/NoRootScriptDroid/master/version.json")
@GET("/assets/autojs/version.json")
Observable<VersionInfo> checkForUpdates();
}