mirror of
https://github.com/HackPlan/AndroidArcMenu.git
synced 2026-06-15 15:08:36 +08:00
54 lines
1.5 KiB
Groovy
54 lines
1.5 KiB
Groovy
apply plugin: 'com.android.library'
|
|
|
|
ext {
|
|
bintrayRepo = 'maven'
|
|
bintrayName = 'AndroidArcMenu'
|
|
|
|
publishedGroupId = 'com.hackplan.androidarcmenu'
|
|
libraryName = 'AndroidArcMenu'
|
|
artifact = 'library'
|
|
|
|
libraryDescription = 'An easy-to-use arc Menu library for Android.'
|
|
|
|
siteUrl = '//github.com/HackPlan/AndroidArcMenu'
|
|
gitUrl = '//github.com/HackPlan/AndroidArcMenu'
|
|
|
|
libraryVersion = '1.1.0'
|
|
|
|
developerId = 'Dacer'
|
|
developerName = 'Ding Wenhao'
|
|
developerEmail = 'dacerfeedback@gmail.com'
|
|
|
|
licenseName = 'The Apache Software License, Version 2.0'
|
|
licenseUrl = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
|
|
allLicenses = ["Apache-2.0"]
|
|
}
|
|
|
|
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(dir: 'libs', include: ['*.jar'])
|
|
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'
|
|
}
|
|
|
|
apply from: 'https://raw.githubusercontent.com/nuuneoi/JCenter/master/installv1.gradle'
|
|
apply from: 'https://raw.githubusercontent.com/nuuneoi/JCenter/master/bintrayv1.gradle' |