JoyStick/app/build.gradle
Jacker d3eb9a8df9
updated the project files and updated compatibility settings
The new compileSDK is 33 and the minSDK version is 26
2024-01-24 17:39:09 +02:00

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'
}