0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Android に MPAndroidChart を追加する際の注意点

Last updated at Posted at 2020-04-19

こんばんは。
今作っているアプリにグラフ表示ができるようにしたいなぁと思い、MPAndroidChartを追加しようとした際に少し詰まったので備忘録です。

MPAndroidChartとはいろんなグラフを簡単に表示することができるライブラリです。
ヌルヌル動きます。すごいです。
MPAndroidChart

##何に詰まったのか

こちらをみて、プロジェクトモジュールに maven の依存関係を追加しようとした際に詰まりました。

まずは間違い

buildscript {
    ext.kotlin_version = '1.3.71'
    repositories {
        google()
        jcenter()
        maven { url 'https://jitpack.io' } // この部分の依存関係の宣言はいらないです。
    }
    ...
}

allprojects {
    repositories {
        google()
        jcenter()
        maven { url 'https://jitpack.io' }
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

ただしくは、

buildscript {
    ext.kotlin_version = '1.3.71'
    repositories {
        google()
        jcenter()
    }
    ...
}

allprojects {
    repositories {
        google()
        jcenter()
        maven { url 'https://jitpack.io' } // ここだけあれば良いです。
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

以上です。

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?