mirror of
https://github.com/etlegacy/JoyStick.git
synced 2024-11-12 23:54:25 +00:00
38 lines
814 B
Groovy
38 lines
814 B
Groovy
apply plugin: 'com.android.library'
|
|
apply plugin: 'com.novoda.bintray-release'
|
|
|
|
android {
|
|
compileSdkVersion 23
|
|
buildToolsVersion "23.0.1"
|
|
|
|
defaultConfig {
|
|
minSdkVersion 11
|
|
targetSdkVersion 23
|
|
versionCode 1
|
|
versionName "1.0"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
}
|
|
|
|
buildscript {
|
|
repositories {
|
|
jcenter()
|
|
}
|
|
dependencies {
|
|
classpath 'com.novoda:bintray-release:0.3.4'
|
|
}
|
|
}
|
|
|
|
publish {
|
|
userOrg = 'erz05'
|
|
groupId = 'com.github.erz05'
|
|
artifactId = 'JoyStick'
|
|
version = '1.0.1'
|
|
description = 'Android Library for JoyStick View'
|
|
website = 'https://github.com/erz05/JoyStick'
|
|
}
|