
adnroid
lhanwen
三啊速度阿森
展开
-
谷歌上架失败问题记录
1 我出现的情况是 清单文件中 添加了 android:hardwareAccelerated="true" 或者 <meta-dat android:name="com.google.android.actions" android:resource="@xml/network_security_config" /> 注释掉就可以了,另外也有可能是so...原创 2019-12-04 14:51:46 · 614 阅读 · 0 评论 -
android 混淆打包问题总结
1: app:transformClassesAndResourcesWithProguardFor 在混淆文件中添加以下内容-ignorewarnings # 抑制警告原创 2018-05-21 14:30:55 · 5107 阅读 · 1 评论 -
播放系统铃声
1 播放提示铃声的时候 用 Uri notification = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);if (notification == null) return;Ringtone r = RingtoneManager.getRingtone(context, notification);r.pla...原创 2018-07-12 11:14:06 · 318 阅读 · 0 评论 -
openGL 贴图动态更新造成的内存溢出
public static int loadTexture(Context context, Bitmap bitmap) { final int[] textureObjectIds = new int[1]; GLES20.glGenTextures(1, textureObjectIds, 0); if (textureObjectIds...原创 2018-11-08 15:18:24 · 1556 阅读 · 0 评论