Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
jenly1314 committed Jun 13, 2019
1 parent ebe893b commit d57d7f2
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 5 deletions.
3 changes: 3 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -104,7 +104,7 @@ Step.4 当配置改变了baseUrl时,只需通过BaseUrlManager刷新下数据

```

更多使用详情,请查看[app](app)中的源码使用示例
更多使用详情,请查看[app](app)中的源码使用示例,或直接查看[API帮助文档](https://jenly1314.github.io/projects/BaseUrlManager/doc/)

## 版本记录

Expand Down
5 changes: 5 additions & 0 deletions lib/build.gradle
Expand Up @@ -27,6 +27,11 @@ android {
}
}

task javadoc(type: Javadoc) {
source = android.sourceSets.main.java.srcDirs
classpath += project.files(android.getBootClasspath().join(File.pathSeparator))
}

dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
testImplementation deps.test.junit
Expand Down
Expand Up @@ -6,6 +6,7 @@

import java.util.Collection;
import java.util.List;
import java.lang.String;

/**
* @author <a href="mailto:jenly1314@gmail.com">Jenly</a>
Expand All @@ -14,13 +15,13 @@ public interface IBaseUrlManager {

/**
* 获取BaseUrl
* @return
* @return {@link String}
*/
String getBaseUrl();

/**
* 获取UrlInfo
* @return
* @return {@link UrlInfo}
*/
UrlInfo getUrlInfo();

Expand Down Expand Up @@ -56,13 +57,13 @@ public interface IBaseUrlManager {

/**
* 获取UrlInfo集合
* @return
* @return {@link List<UrlInfo>}
*/
List<UrlInfo> getUrlInfos();

/**
* 获取url数
* @return
* @return {@link int}
*/
int getCount();

Expand Down

0 comments on commit d57d7f2

Please sign in to comment.