45 lines
No EOL
1.5 KiB
Groovy
45 lines
No EOL
1.5 KiB
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'kotlin-android'
|
|
|
|
android {
|
|
compileSdkVersion 32
|
|
|
|
defaultConfig {
|
|
android.defaultConfig.vectorDrawables.useSupportLibrary = true
|
|
applicationId "com.tunerly"
|
|
minSdkVersion 16
|
|
targetSdkVersion 32
|
|
versionCode 8
|
|
versionName "1.0.7"
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
|
|
buildFeatures {
|
|
viewBinding true
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(dir: "libs", include: ["*.jar"])
|
|
implementation 'androidx.core:core-ktx:1.7.0'
|
|
implementation 'androidx.appcompat:appcompat:1.4.1'
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.1.3'
|
|
implementation 'androidx.cardview:cardview:1.0.0'
|
|
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
|
|
implementation 'androidx.preference:preference-ktx:1.2.0'
|
|
implementation 'com.akexorcist:localization:1.2.9'
|
|
implementation files('libs/TarsosDSP-2.4.jar')
|
|
implementation 'androidx.preference:preference-ktx:1.2.0'
|
|
testImplementation 'junit:junit:4.12'
|
|
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
|
|
implementation("org.jetbrains.kotlin:kotlin-reflect:1.5.0")
|
|
} |