mirror of
https://github.com/etlegacy/JoyStick.git
synced 2024-11-23 20:42:24 +00:00
d3eb9a8df9
The new compileSDK is 33 and the minSDK version is 26
31 lines
No EOL
675 B
Groovy
31 lines
No EOL
675 B
Groovy
plugins {
|
|
id 'com.android.application'
|
|
}
|
|
|
|
android {
|
|
namespace "com.erz.joystick"
|
|
compileSdk 33
|
|
|
|
defaultConfig {
|
|
applicationId "com.erz.joystick"
|
|
minSdkVersion 31
|
|
targetSdk 33
|
|
versionCode 1
|
|
versionName "1.0"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
buildFeatures {
|
|
viewBinding true
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(path: ':joysticklibrary')
|
|
implementation 'com.android.support:appcompat-v7:28.0.0'
|
|
testImplementation 'junit:junit:4.13.2'
|
|
} |