├── .idea ├── copyright │ └── profiles_settings.xml ├── vcs.xml ├── dictionaries │ └── lizhaotailang.xml ├── modules.xml ├── runConfigurations.xml ├── compiler.xml ├── gradle.xml └── misc.xml ├── .gitignore └── README.md /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/dictionaries/lizhaotailang.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | zhuanlan 5 | 6 | 7 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 18 | 19 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## 知乎专栏APP 2 | 3 | 由于版权问题,本App不再提供更新和维护,感谢大家的支持。API分析请查看[wiki](https://github.com/marktony/zhuanlan/wiki)或者查看我的博客[文章](https://marktony.github.io/2016/05/14/%E7%9F%A5%E4%B9%8E%E4%B8%93%E6%A0%8FAPI%E5%88%86%E6%9E%90/) 4 | ## 我的其他项目 5 | + [纸飞机](https://github.com/marktony/ZhiHuDaily) -- 采用MVP架构,集合了果壳精选和豆瓣一刻的综合性阅读客户端 6 | + [饭否精选](https://github.com/marktony/FanfouHandpick) -- 使用Kotlin开发的饭否精选客户端 7 | + [简单翻译](https://github.com/marktony/Translator) -- 翻译App 8 | + [Reader](https://github.com/marktony/Reader) -- MVP + Volley + Gson, 内容包含了糗事百科,煎蛋和内涵段子 9 | 10 | ### 联系我 11 | marktonymengyi#gmail.com (替换#为@) 12 | 13 | ## 支持我的工作 14 | 如果你认为我值得获得一定的报酬,请使用微信或支付宝扫描下面的二维码向我捐赠。 15 | 16 | ![Wechat_QRCode](https://github.com/marktony/Awesome_API/blob/master/we_chat_qr_code.png) 17 | ![Alipay_QRCode](https://github.com/marktony/Awesome_API/blob/master/alipay_qr_code.png) 18 | 19 | ### 许可证 20 | ``` 21 | Copyright 2016 lizhaotailang 22 | 23 | Licensed under the Apache License, Version 2.0 (the "License"); 24 | you may not use this file except in compliance with the License. 25 | You may obtain a copy of the License at 26 | 27 | http://www.apache.org/licenses/LICENSE-2.0 28 | 29 | Unless required by applicable law or agreed to in writing, software 30 | distributed under the License is distributed on an "AS IS" BASIS, 31 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 32 | See the License for the specific language governing permissions and 33 | limitations under the License. 34 | ``` 35 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 19 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 46 | --------------------------------------------------------------------------------