パソコンの Google Playにてアプリの「インストール」で端末名が表示されない場合

いままでずっと、
パソコンでブラウザでみるGooglePlayStoreから
アプリを端末にインストールするときに
端末が表示されていませんでしたよ、
こんなかんじで。

アプリをインストールしたいので、インストールを押す。

KM_Plasticine_widgets_Lite_-_Google_Play_の_Android_アプリ 3

昔使っていた端末だけが表示される。

KM_Plasticine_widgets_Lite_-_Google_Play_の_Android_アプリ

現在使っている「NEXUS4」が表示されません。

ずっと、こんなかんじで、パソコンの「インストール」ボタンを押すことによる端末へのインストールができなかったのですが。

どうやら、端末の「Playストア」アプリのデータを一度削除すれば可能になるようです。

手順。

続きを読む >>


AndroidStudio 0.2.11 で リリースapkの署名ができない「Generate Signed APK」

ちっ、なんなんだよこれは。

build.gradle_-_Android_Studio__I_O_Preview__0.2.11

デバッグ版はエミュレータでも実機でも問題なく処理できますが。

Issue_60762_-_android_-_Problem_wen_generate_apk_-_Android_Open_Source_Project_-_Issue_Tracker_-_Google_Project_Hosting

Issue 60762 - android - Problem wen generate apk - Android Open Source Project - Issue Tracker - Google Project Hosting

ちっ。

対応方法を探します。

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 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 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 Gradle Plugin User Guide - Android Tools Project Site

build.gradle を上記を参考に記述して、

$ gradle installRelease

と実行して、build/apk フォルダ内にapkを取ってきましたけど。

build.gradle にパスワードとかプレーンで書くとかどうなのか、
AndroidStudio のパスワード管理まわりが未対応なのかな。
(※ 再起動したらいけるときもあったりしたよ。)


Android Studio で Crashlytics が便利すぎる

見かけたので。10/2付。

Launching_Crashlytics_for_Android_Studio___Crashlytics_Blog

We’re extremely excited to announce the release of Crashlytics for Android Studio!
At Crashlytics, we are passionate about building tools that developers love. When Android Studio was first announced at Google I/O this year, it immediately caught our eye. You could even say that Android Studio is the most Android-centric development environment, the next big thing, “the new black”! Well enough hype, let’s get to the good stuff!

Launching Crashlytics for Android Studio | Crashlytics Blog Launching Crashlytics for Android Studio | Crashlytics Blog

The_most_powerful__yet_lightest_weight_crash_reporting_solution_for_iOS_and_Android_developers.___Crashlytics

The most powerful, yet lightest weight crash reporting solution for iOS and Android developers. | Crashlytics The most powerful, yet lightest weight crash reporting solution for iOS and Android developers. | Crashlytics

メールアドレス登録後、プラグインのzipをダウンロード後、AndroidStudio上で、
[Preference]-[Plugins] からインストール。

丁寧な案内メールからのリンクによるブラウザ起動などで迷わず進める。

新規プロジェクト作成後、赤いプラグインボタンを押すと、リソースファイル内に自動で必要箇所を自動挿入されていく。

MainActivity.java_-__Test1005__-_Test1005_-____androidstudio_Test1005Project__-_Android_Studio__I_O_Preview__0.2.11

MainActivity.java_-__Test1005__-_Test1005_-____androidstudio_Test1005Project__-_Android_Studio__I_O_Preview__0.2.11 2

リソースファイルの必要箇所挿入が終わると、ダイアログで待機している旨(WAITING)の表示。
ビルド後実行すると、ダイアログは認識成功(SUCCESS)に変わり、ブラウザ上ダッシュボードでそれが確認できるようになる。

Crashlytics

という流れで、スムーズな手順で利用開始できる。
AndroidStudio,プラグイン,ブラウザ上の管理画面ともリアルタイムにそれぞれ反応される。

このときのプラグインからの「リソースの書き換え」で行われた内容を確認してみる。

対象プロジェクトは、テンプレートのデフォルトな一番簡単なのを利用した。

続きを読む >>