/
githubmirror
/
MPAndroidChart
Обзор
Документация
Войти
/
githubmirror
/
MPAndroidChart
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v2.1.0
MPChartExample/build.gradle
57 строк
1 KB
Philipp Jahoda
Update gradle and manifest.
08 апр 2015, 14:38
08 апр 2015, 14:38
b6edbec
Код
Авторство
О чём код?
apply plugin: 'com.android.application' android { compileSdkVersion 21 buildToolsVersion '21.1.1' defaultConfig { minSdkVersion 16 targetSdkVersion 21 versionCode 40 versionName '2.1.0' 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:1.1.0' // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files } } repositories { maven { url "https://jitpack.io" } } 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:21.0.3' //compile 'com.github.PhilJay:MPAndroidChart:v2.0.9' }