JoyStick/app/build.gradle

28 lines
704 B
Groovy
Raw Normal View History

2015-10-31 04:13:41 +00:00
apply plugin: 'com.android.application'
android {
2016-10-29 17:44:18 +00:00
compileSdkVersion 25
2017-01-22 06:12:15 +00:00
buildToolsVersion "25.0.2"
2015-10-31 04:13:41 +00:00
defaultConfig {
applicationId "com.erz.joystick"
minSdkVersion 11
2016-10-29 17:44:18 +00:00
targetSdkVersion 25
2015-10-31 04:13:41 +00:00
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
2017-01-22 06:12:15 +00:00
compile 'com.android.support:appcompat-v7:25.1.0'
compile 'com.android.support:design:25.1.0'
2017-01-22 07:38:02 +00:00
compile project(':joysticklibrary')
2016-10-29 17:44:18 +00:00
}