のねのBlog

パソコンの問題や、ソフトウェアの開発で起きた問題など書いていきます。よろしくお願いします^^。

2016-10-01から1ヶ月間の記事一覧

AOSPのFrameworkのアプリでBreakを掛けてみる

Edit Configのクリック Projectを選ぶ Menu>Run>Edit Configurationsのクリック あたらしいConfigurationを作成 Debug Configurationsの画面で、"+をクリック" "Remoteをクリック" 何か設定に名前をつける。portを8700にする。OKをクリックする。 Break Poi…

dumpsys

moneyforward.com

MSB8028 The intermediate directory

MSB8028 The intermediate directory (x64\Debug\) contains files shared from another project This can lead to incorrect clean and rebuild behavior. C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V140\Microsoft.CppBuild.targetsstackoverflo…

Nexus9にGappsが表示されない。

adb root adb disable-verity Verified Boot | Android Open Source Project

freeTextLayoutCaches

Cross Reference: /frameworks/base/core/jni/android_graphics_Canvas.cpp 630 {"freeTextLayoutCaches", "()V", (void*) CanvasJNI::freeTextLayoutCaches} Cross Reference: /frameworks/base/core/jni/android_graphics_Canvas.cpp 569 static void free…

Android-Studio Filesystem Case-Sensitivity Mismatch

Help>Edit Custom Property idea.case.sensitive.fs=trueAndroid Studioを再起動する。Filesystem Case-Sensitivity Mismatch - IntelliJ IDEA - Confluence

HbFontCache

Cross Reference: /frameworks/minikin/libs/minikin/HbFontCache.cpp 89 void purgeHbFontCacheLocked() { 90 assertMinikinLocked(); 91 getFontCacheLocked()->clear(); 92 } 80 HbFontCache* getFontCacheLocked() { 81 assertMinikinLocked(); 82 stati…

Error while opening file for parsing: 'frameworks/base/../av/camera/aidl/android/hardware/ICameraService.aidl'

android/ 17:35:54 $ make Running kati to generate build-aosp_flounder.ninja... No need to regenerate ninja file Starting build with ninja ninja: Entering directory `.' [ 0% 107/42765] Aidl: framework <= frameworks/base/../av/camera/aidl/an…

Mac CommandLineTools

Mac

$ xcode-select -r xcode-select: error: --reset must be run as root (e.g. sudo xcode-select --reset). $ sudo xcode-select -r Password: $ xcode-select -p /Library/Developer/CommandLineTools$ /usr/bin/clang --version Apple LLVM version 8.0.0 …

mac ln

Mac

$ sudo ln -s /Applications/Xcode_7.3.1.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk /Developer/SDKs/MacOs/ 10:50:09 $ sudo ln -s /Applications/Xcode_8.0.app/Contents/Developer/Platforms/MacOSX.platform/De…

mac aosp 10.12 error: 'syscall' is deprecated: first deprecated in OS X 10.12

Mac

system/core/libcutils/threads.c:38:10: error: 'syscall' is deprecated: first deprecated in OS X 10.12 - syscall(2) is unsupported; please switch to a supported interface. For SYS_kdebug_trace use kdebug_signpost(). [-Werror,-Wdeprecated-de…

mac source build/envsetup.sh lunch

Mac

build/core/combo/mac_version.mk:26: none of the installed SDKs (wifi-serviceac_sdk_versions_installed) match supported versions (10.8 10.9 10.10 10.11), trying 10.8 build/core/combo/mac_version.mk:36: no SDK 10.8 at /Applications/Xcode.app…

git clone fatal: Could not read from remote repository.

Mac

$ git clone git@bitbucket.org:user01/android.git Cloning into 'android'... The authenticity of host 'bitbucket.org (104.192.143.3)' can't be established. RSA key fingerprint is SHA256:. Are you sure you want to continue connecting (yes/no)…

mac Error: Your Xcode (7.3) is outdated

Mac

$ brew install tree Error: Your Xcode (7.3) is outdated. Please update to Xcode 8.0 (or delete it). Xcode can be updated from the App Store.$ brew install tree Error: Your Xcode (7.3) is outdated. Please update to Xcode 8.0 (or delete it).…

Android Studio Logcatのカラー Darcula

Scheme:DarcuraをSaveAsで何か名前を付けて保存する。 Use inherited attributesのチェックを外すと、Foregroundの色が変えられるようになる。 Assert : 9876AA Debug : 6897BB Error : FF6B68 Info : 6A8759 Verbose: BBBBBB Warn : BBB529stackoverflow.com

idea.propeties

# # *DO NOT* modify this file directly. If there is a value that you would like to override, # please add it to your user specific configuration file. # # See http://tools.android.com/tech-docs/configuration # # Use ${idea.home.path} macro…

vmoptions

wannabe-jellyfish.hatenablog.com

WindowsとUbuntuでgit statusの表示が異なる

WindowsのSourceTreeのターミナルでgit statusのコマンドを打ったときと、 Ubuntuでgit statusのコマンドを打ったとき、表示が異なる。以下は、Windowsで打ったとき $ git config --local -l core.repositoryformatversion=0 core.filemode=true core.bare=f…

pyenv install

Mac

mbp01:android m_fujii$ pyenv install 2.7.10 Downloading Python-2.7.10.tgz... -> https://www.python.org/ftp/python/2.7.10/Python-2.7.10.tgz Installing Python-2.7.10... patching file ./Lib/site.py ERROR: The Python zlib extension was not com…

%zdを16進で書くには

d.hatena.ne.jp

git push

$git config --global push.default simple $git push fatal: The current branch feat01_enc_fujii has no upstream branch. To push the current branch and set the remote as upstream, use git push --set-upstream origin feat01 $git push --set-upst…

originのurlを変える

$git remote add origin git@bitbucket.org:user01/android7.0-minikin.git fatal: remote origin already exists.$git remote -v origin https://android.googlesource.com/platform/frameworks/minikin/ (fetch) origin https://android.googlesource.com/…