/
githubmirror
/
MPAndroidChart
Обзор
Документация
Войти
/
githubmirror
/
MPAndroidChart
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v2.2.5
MPChartExample/build.gradle
60 строк
2 KB
Philipp Jahoda
Update gradle
27 май 2016, 18:46
27 май 2016, 18:46
77f83cd
Код
Авторство
О чём код?
apply plugin: 'com.android.application' android { compileSdkVersion 23 buildToolsVersion '23.0.2' defaultConfig { minSdkVersion 8 targetSdkVersion 23 versionCode 51 versionName '2.2.5' sourceSets { main { java.srcDirs = ['src'] res.srcDirs = ['res'] assets.srcDirs = ['assets'] manifest.srcFile 'AndroidManifest.xml' } } } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } lintOptions { abortOnError false } } buildscript { repositories { jcenter() } dependencies { classpath 'com.android.tools.build:gradle:2.1.0' //classpath 'io.realm:realm-gradle-plugin:0.88.2' // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files } } repositories { maven { url "https://jitpack.io" } maven { // this is for realm-db url 'http://oss.jfrog.org/artifactory/oss-snapshot-local' } } dependencies { //compile fileTree(dir: 'libs', include: ['*.jar']) compile project(':MPChartLib') // remove this if you only imported the example project compile 'com.android.support:appcompat-v7:23.1.1' compile 'io.realm:realm-android:0.87.5' // dependency for realm-database API (http://realm.io) //compile 'com.github.PhilJay:MPAndroidChart:v2.2.0' }