65 lines
1.8 KiB
Groovy
65 lines
1.8 KiB
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'realm-android'
|
|
|
|
android {
|
|
compileSdkVersion 23
|
|
buildToolsVersion '23.0.2'
|
|
defaultConfig {
|
|
minSdkVersion 16
|
|
targetSdkVersion 23
|
|
versionCode 52
|
|
versionName '3.0.0'
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
|
|
|
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.2'
|
|
//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-Realm') // clone "https://github.com/PhilJay/MPAndroidChart-Realm" to get this or uncomment the gradle dependency below:
|
|
compile 'com.github.PhilJay:MPAndroidChart-Realm:v1.0.0@aar'
|
|
|
|
compile project(':MPChartLib')
|
|
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.5'
|
|
}
|