android 4.4.2 keystore grep 結果メモ

android 4.4.2 keystore grep 結果メモ 調査した際のログメモ $ cd env/android/android-4.4.2_r2/ $ ls Makefile art bootable cts developers device external hardware libnativehelper packages prebuilts system abi bionic build dalvik development docs frameworks libcore ndk pdk sdk tools $ g ./packages/apps/CertInstaller/src/com/android/certinstaller/CertInstaller.java ^C $ g ./packages/apps/CertInstaller/src/com/android/certinstaller/CertInstaller.java $ find ./packages/apps/ -name CredentialHelper.java ./packages/apps/CertInstaller/src/com/android/certinstaller/CredentialHelper.java $ g ./packages/apps/CertInstaller/src/com/android/certinstaller/CredentialHelper.java $ find ./packages/apps/CertInstaller/ -name *.java |xargs grep createSystemInstallIntent |grep createSystemInstallIntent ./packages/apps/CertInstaller/src/com/android/certinstaller/CertInstaller.java: mCredentials.createSystemInstallIntent(), ./packages/apps/CertInstaller/src/com/android/certinstaller/CredentialHelper.java: Intent createSystemInstallIntent() { $ find ./frameworks/base/core -name CredentialStorage....

2014-05-29 ·  2014-05-29 · 14 分 · 2888 文字

tf201 root化

tags: [“tf201”,“android”] title: 20120816 tf201 root化 tf201 root化 参考1 参考2 bootloader unlock download apk here Unlock Device App install apk & done flash recovery clockworkmod fastboot mode Boot your tablet into fastboot by holding down the power and volume-down buttons. The tablet will power off and reboot. Wait until you see several lines of white text in the upper-left corner of the screen, then let go of the power and volume buttons....

2012-08-16 ·  2012-08-16 · 1 分 · 148 文字

android Toastを上げるサンプル

android Toastを上げるサンプル Toast.makeText( this, "Build.DEVICE=" + Build.DEVICE + ":" + "Build.VERSION.SDK_INT=" + Build.VERSION.SDK_INT, android.widget.Toast.LENGTH_LONG).show(); Intent intent = new Intent(); intent.setClassName("com.google.android.gsf", "com.google.android.gsf.gtalkservice.diagnostics.GTalkDiagnostics"); startActivity(intent);

2012-06-20 ·  2012-06-20 · 1 分 · 22 文字

Galaxy Nexus タップ時の音を変更する

Galaxy Nexus タップ時の音を変更する タップ時に鳴らす音を用意する(NexusSより抜いた) 名前を以下に変更する Effect_Tick.ogg /systemを書き込み権限付きでremountする(要ルート) mount -o rw,remount /system adbでpushする adb push ./Effect_Tick.ogg /system/media/audio/ui

2012-06-09 ·  2012-06-09 · 1 分 · 16 文字

android メモリリーク調査

android メモリリーク調査 Eclise 新規ソフトウェアーより、以下を追加 BIRT http://download.eclipse.org/birt/update-site/3.7 BIRT 3.7 Engine OSGi Runtime SDK 0.0.0 mat http://download.eclipse.org/mat/1.1.1/update-site/ DDMS、Deviceより。Heapを選択。↓矢印のついているheapアイコンでhprofファイルが作成される できたhprofファイルは現状バグっているらしいので、hprofツールで再度加工しなおす。 /env/gb234/android/out/host/linux-x86/bin/hprof-conv system_process.hprof ./TMP/temp.hprof eclipseファイルを開くから、できたhprofを選択すると、展開され、hprof取得タイミングでのメモリ情報が表示される。

2011-12-01 ·  2011-12-01 · 1 分 · 21 文字