2024-01-24 15:39:09 +00:00
|
|
|
plugins {
|
|
|
|
id 'com.android.application'
|
|
|
|
}
|
2015-10-31 04:13:41 +00:00
|
|
|
|
|
|
|
android {
|
2024-01-24 15:39:09 +00:00
|
|
|
namespace "com.erz.joystick"
|
|
|
|
compileSdk 33
|
2015-10-31 04:13:41 +00:00
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "com.erz.joystick"
|
2024-01-24 15:39:09 +00:00
|
|
|
minSdkVersion 31
|
|
|
|
targetSdk 33
|
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'
|
|
|
|
}
|
|
|
|
}
|
2024-01-24 15:39:09 +00:00
|
|
|
buildFeatures {
|
|
|
|
viewBinding true
|
|
|
|
}
|
2015-10-31 04:13:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2017-11-27 01:16:15 +00:00
|
|
|
implementation project(path: ':joysticklibrary')
|
2024-01-24 15:39:09 +00:00
|
|
|
implementation 'com.android.support:appcompat-v7:28.0.0'
|
|
|
|
testImplementation 'junit:junit:4.13.2'
|
2016-10-29 17:44:18 +00:00
|
|
|
}
|