Android APK 上架

Eclipse
1. 修改APK Version/Build Date, AndroidManifest debuggable=false
2. Project Menu -> Android Tools -> Export Signed Application Package
3. https://play.google.com/apps/publish


GooglePlay上架
修复Fragment注入漏洞 for PreferenceActivity
https://support.google.com/faqs/answer/7188427
a. exported=false
b. (targetSdkVersion >= 19)
   PreferenceActivity isValidFragment(super default) will throw an exception.
c. (targetSdkVersion <= 18) public boolean isValidFragment(String fragmentName) {
           return MyFragment.class.getName().equals(fragmentName);
   }


APK隐私条款模板
华为穿戴设备
http://consumer.huawei.com/minisite/worldwide/privacy-policy/en/index.htm

你可能感兴趣的:(Android)