JoyStick/joysticklibrary/build.gradle

39 lines
830 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 {
compileSdkVersion 27
buildToolsVersion "27.0.3"
2015-10-31 04:13:41 +00:00
defaultConfig {
minSdkVersion 14
targetSdkVersion 27
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 {
2017-11-27 01:12:23 +00:00
google()
2015-10-31 04:27:41 +00:00
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
}