mirror of
https://github.com/HackPlan/AndroidArcMenu.git
synced 2026-06-15 15:08:36 +08:00
32 lines
976 B
Groovy
32 lines
976 B
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion COMPILE_SDK_VERSION as int
|
|
buildToolsVersion BUILD_TOOLS_VERSION
|
|
|
|
defaultConfig {
|
|
minSdkVersion 16
|
|
targetSdkVersion COMPILE_SDK_VERSION as int
|
|
versionCode VERSION_CODE as int
|
|
versionName VERSION_NAME
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile fileTree(include: ['*.jar'], dir: 'libs')
|
|
compile project(':library')
|
|
compile 'com.android.support:appcompat-v7:24.0.0'
|
|
compile 'com.android.support:recyclerview-v7:24.0.0'
|
|
compile 'com.jakewharton.timber:timber:4.3.1'
|
|
debugCompile 'com.squareup.leakcanary:leakcanary-android:1.5'
|
|
releaseCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.5'
|
|
testCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.5'
|
|
}
|