mirror of
https://github.com/kennethreitz/super-sphere.git
synced 2026-06-18 14:11:00 +00:00
30 lines
734 B
Groovy
30 lines
734 B
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 25
|
|
buildToolsVersion "25.0.2"
|
|
defaultConfig {
|
|
applicationId "org.kennethreitz.supersphere.android"
|
|
versionCode 22
|
|
versionName "0.10.2"
|
|
minSdkVersion 10
|
|
targetSdkVersion 18
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
lintOptions {
|
|
abortOnError false
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile 'com.android.support:multidex:1.0.1'
|
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
|
compile 'com.android.support:appcompat-v7:25.1.0'
|
|
compile project(':love')
|
|
}
|