52 lines
1.6 KiB
Groovy
52 lines
1.6 KiB
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'de.mobilej.unmock'
|
|
|
|
android {
|
|
compileSdkVersion 25
|
|
buildToolsVersion '25.0.2'
|
|
|
|
defaultConfig {
|
|
applicationId "com.iamthefij.otbeta"
|
|
minSdkVersion 22
|
|
targetSdkVersion 25
|
|
versionCode 1
|
|
versionName "1.0"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
dexOptions {
|
|
javaMaxHeapSize "3g"
|
|
}
|
|
}
|
|
|
|
unMock {
|
|
keep 'android.location.Location'
|
|
keep 'android.util.SparseArray'
|
|
keep 'com.android.internal.util.ArrayUtils'
|
|
keep 'com.android.internal.util.GrowingArrayUtils'
|
|
keep 'org.json.JSON'
|
|
keep 'org.json.JSONObject'
|
|
}
|
|
|
|
dependencies {
|
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
|
// https://mvnrepository.com/artifact/com.goebl/david-webb
|
|
compile group: 'com.goebl', name: 'david-webb', version: '1.3.0'
|
|
// https://mvnrepository.com/artifact/com.google.code.gson/gson
|
|
compile group: 'com.google.code.gson', name: 'gson', version: '2.8.0'
|
|
// http://www.android-graphview.org/download-getting-started/
|
|
compile 'com.jjoe64:graphview:4.2.1'
|
|
|
|
compile 'com.android.support:appcompat-v7:25.2.0'
|
|
compile 'com.android.support:design:25.2.0'
|
|
compile 'com.android.support.constraint:constraint-layout:1.0.2'
|
|
compile 'com.android.support:cardview-v7:25.2.0'
|
|
compile 'com.android.support:support-v4:25.2.0'
|
|
compile 'com.android.support:recyclerview-v7:25.2.0'
|
|
testCompile 'junit:junit:4.12'
|
|
}
|