gradle の dependencies は「Gradle, please」に聞け

 

AndroidStudioを使うようになって、
「あれ、こんな記述で良かったっけ?」
「あれ、これ、最新バージョンなんぼ?」
などと思うことがあります。

 

dependencies {
    // Google Play Services
    compile 'com.google.android.gms:play-services:4.0.30'

    // Support Libraries
    compile 'com.android.support:support-v4:19.0.0'
    compile 'com.android.support:appcompat-v7:19.0.0'
    compile 'com.android.support:gridlayout-v7:19.0.0'
    compile 'com.android.support:support-v7-mediarouter:19.0.0'
    compile 'com.android.support:support-v13:19.0.0'

    // Note: these libraries require the "Google Repository" and "Android Repository"
    //       to be installed via the SDK manager.
}

 

MavenCentralRepository を参照しながら
すぐに教えてくれます。

 

Gradle__please 2

Gradle__please 3

続きを読む >>


Android Studio に今は必ず必要な build.gradle の記述

 

もう、1億万回くらい設定やりましわ,これ。

[File] - [Project Structure]

今の Android Studio (I/O preview) 0.1.3 では、標準でもれなく
こんなダイアログが当たり前に表示されますが。

build.gradle

We will provide a UI to configure project settings later. Until then, please manually edit your build.gradle file to configure source folders, libraries and dependencies.

NOTE THAT EDITS MADE IN THE FOLLOWING DIALOG DO NOT AFFECT THE GRADLE BUILD.
The dialog can be used for temporary adjustments to SDKs etc.

私たちは、後でプロジェクトの設定を構成するためのUIを提供します。それまでは、ソースフォルダ、ライブラリと依存関係を設定するためにあなたのbuild.gradleファイルを手動で編集してください。

次のダイアログIN MADE編集注Gradleのビルドには影響しません。
ダイアログはSDKのへの一時的な調整のために使用することができますなど

なんか、いろいろやってるんですね、今は。
GUIから設定変更できてなかったんですね、今は。

で、そんな build.gradle 記述なメモをば。

続きを読む >>


library module と library の dependencies がなんかしっくりこないのですが。

なんとなく 動いてしまうのが 高機能IDEのいいとこなのでしょうか。

Google MapAPI V2 でいつのまにか、はまったりして。

map api v2

Google Maps Android API v2 のメモ

Android Studio でいうところの以下の3つ。

・Project
・Modules
・Libraries

実際はよく分かってなかったのでしょうね、あたしは。

「Google Play Service」なるよくわかんないライブラリ中心に
いろいろ試行錯誤していましたが、Google Map v2 については
もうこんなかんじで許して欲しいです。

続きを読む >>