-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
19 changed files
with
242 additions
and
94 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
package com.xiamuyao.repidmvclibrary; | ||
|
||
import java.lang.annotation.ElementType; | ||
|
||
/** | ||
* XiaMuYao | ||
* [email protected] | ||
|
@@ -13,9 +15,8 @@ public enum RunType { | |
QA, ONLINE | ||
} | ||
|
||
public static final boolean DEBUG = true; //log的开关 | ||
public static final RunType URL_TYPE = RunType.QA; //打正式包时须改成 ONLINE | ||
|
||
public static final boolean DEBUG = true; //log的开关 | ||
public static String URL_Base = UrlConstants.getApi(); //接口域名 | ||
|
||
} | ||
|
@@ -33,6 +34,7 @@ class UrlConstants { | |
public static String getApi() { | ||
if (AppConfig.URL_TYPE == AppConfig.RunType.QA) | ||
return Api_Qq; | ||
return Api_Online; | ||
else | ||
return Api_Online; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...idmvclibrary/UItil/AppApplicationMgr.java → ...pidmvclibrary/Util/AppApplicationMgr.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 1 addition & 6 deletions
7
...yao/repidmvclibrary/UItil/DeviceUtil.java → ...uyao/repidmvclibrary/Util/DeviceUtil.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...muyao/repidmvclibrary/UItil/FastBlur.java → ...amuyao/repidmvclibrary/Util/FastBlur.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...iamuyao/repidmvclibrary/UItil/RSBlur.java → ...xiamuyao/repidmvclibrary/Util/RSBlur.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.