JoyStick/joysticklibrary/build.gradle

38 lines
813 B
Groovy
Raw Normal View History

2015-10-31 04:13:41 +00:00
apply plugin: 'com.android.library'
2015-10-31 04:30:44 +00:00
apply plugin: 'com.novoda.bintray-release'
2015-10-31 04:13:41 +00:00
android {
2016-10-29 17:44:18 +00:00
compileSdkVersion 25
2017-05-03 06:00:56 +00:00
buildToolsVersion "25.0.3"
2015-10-31 04:13:41 +00:00
defaultConfig {
minSdkVersion 14
2016-10-29 17:44:18 +00:00
targetSdkVersion 25
2017-01-22 22:05:56 +00:00
versionCode 2
versionName "1.1"
2015-10-31 04:13:41 +00:00
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
2015-10-31 04:27:41 +00:00
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.novoda:bintray-release:0.7.0'
2015-10-31 04:27:41 +00:00
}
}
publish {
userOrg = 'erz05'
groupId = 'com.github.erz05'
artifactId = 'JoyStick'
2017-01-22 22:05:56 +00:00
version = '1.1.0'
2015-10-31 04:27:41 +00:00
description = 'Android Library for JoyStick View'
website = 'https://github.com/erz05/JoyStick'
2016-10-29 17:44:18 +00:00
}