Meng's pages

Android developer and maybe other intersting things.

0%

Android Weekly Notes Issue 244

Android Weekly Issue #244

February 12th, 2017
Android Weekly Issue #244
本期内容包括: Android Fragments使用教程; ClassyShark使用; Firebase的Personal App Indexing功能引出的一些权限问题; 关于应用内没有提供Privacy Policy的后续处理; Kotlin中的annotation processor讨论; Pull和Push模式的讲解; 为什么Android测试这么难; Android 7 Nougat不再支持用Intent发送file:// URI, 应用需要改用FileProvider实现原有功能.

ARTICLES & TUTORIALS

Android Fragments Tutorial: An Introduction

一篇如何使用Fragments的讲解.

Exporting data from ClassyShark

ClassyShark的APK dashboardA检查apk的问题(重复依赖, 过期依赖等).
本文介绍如何一次性导出全部的数据.

Post-mortem : Firebase vs permissions

两周前Firebase发布了一个新功能: Personal App Indexing. 之后遇到了一些权限相关的问题, 本文讨论遇到的具体问题和解决方法, 然后他们发布了一个hotfix版本.

Did you get one of these Google Play Developer Policy Violation Emails?

如果你的应用使用了一些”dangerous permissions”, 你需要在应用或者Google Play上附有privacy policy, 否则你就会收到Google Play的邮件.

作者他的Demo app也收到了这种邮件, 所以他提供了他的解决方法.

他找到了这个网站, 这是他最后写成的Gist. 利用RawGit可以将github上的文件url转成用HTML显示的url. 之后在app中设置一个链接, 点击打开这个url就可以了.

Pushing the limits of Kotlin annotation processing

关于Kotlin的annotation processor支持, 是一个很复杂的问题, 作者讨论了关于这个问题的历史进展和当前的局限性.

Pull vs Push & Imperative vs Reactive - Reactive Programming

作者用浅显的代码例子解释了Pull和Push模式的区别, 一个是自己不停地查询读取, 另一个是等改变发生的时候收到通知.

Why Android Testing is so Hard: Historical Edition

为什么Android项目这么难测试呢? 作者认为主要有三方面的历史原因:

  • Performance方面的考虑.
  • 对Android组件的误解.
  • Android和Unit Testing出现的时机.

Sharing files though Intents: are you ready for Nougat?

Android 7 Nougat引入了一些文件系统的权限变化, 来增强安全性.

如果你已经把targetSdkVersion升到了24+, 并且你用Intent发送一个file:// URI, 你将会得到一个FileUriExposedException.

解决办法是使用FileProvider.

LIBRARIES & CODE

SlidingSquaresLoader

一个有趣的动画方块的loading图案.

ason

一个JSON库, 简化了序列化, 更易使用.

Intro-To-RxJava

上一期有一篇文章提过的RxJava练习项目.

chuck

An in-app HTTP inspector for Android OkHttp clients.
截取请求和响应, 点击通知可以查看UI显示.

android-parcelable-intellij-plugin-kotlin

为kotlin的类生成Parcelable代码的插件.

Welcome to my other publishing channels