ここだけども。きっと。
http://www.google.co.jp/nexus/5/
今はまだ、こんな。

Nexus 5 release date, pricing listed on Japanese site - Android Community
「本当か?」などと。

Nexus 5 Release Date and Price Disclosed By Japanese Retailer?
これら、ソースは以下のサイトのようです。
Android OS 4.3.1 でカードでリアルタイムな情報をレコメンドする「Google Now」にて、お好みの言語で対応してるとか。
Included in this recap is an article reporting that Android 4.3.1 is coming to the Nexus 7 (2013) LTE and the announcement that you can use Google Now in any language.
Android 4.3.1 Coming to 2013 Nexus 7 LTE, Google Now in Any Language – xda-developers
今は「国際社会」ということで、以前から、任意の言語での対応は、「Xposed Module」なるところで進んでいたという。
Use Google Now in any Language – xda-developers
なんなのでしょう、「Xposed」て。
Say Goodbye to Custom “Stock” Roms and Hello to Xposed Framework – xda-developers
「カスタムROMとかもう終わりだろ?Xposedだろ?」というような雰囲気で書いてます。
使ってみます。要rootedです。
ちっ、なんなんだよこれは。

デバッグ版はエミュレータでも実機でも問題なく処理できますが。
![]()
ちっ。
対応方法を探します。
In the latest version of Android Studio (0.2.11) Generate Signed Apk no longer works. You're directed to set up a signing configuration in your gradle.bundle file, which (presumably) has to be run by hand from the command line unless you're willing to hardcode your password there
How to set up gradle and android studio to do release build? - Stack Overflow
I ended up just using "gradle installRelease" and coping the release APK from build/apk folder.
I am not sure why we are getting this, I do have my signingConfigs setup properly in build.gradle.
Android Studio: Signing issue after upgrade - Stack Overflow
android {
signingConfigs {
debug {
storeFile file("debug.keystore")
}
myConfig {
storeFile file("other.keystore")
storePassword "android"
keyAlias "androiddebugkey"
keyPassword "android"
}
}
buildTypes {
foo {
debuggable true
jniDebugBuild true
signingConfig signingConfigs.myConfig
}
}
}
Gradle Plugin User Guide - Android Tools Project Site
build.gradle を上記を参考に記述して、
$ gradle installRelease
と実行して、build/apk フォルダ内にapkを取ってきましたけど。
build.gradle にパスワードとかプレーンで書くとかどうなのか、
AndroidStudio のパスワード管理まわりが未対応なのかな。
(※ 再起動したらいけるときもあったりしたよ。)