Gasflow-fork/app/build.gradle

39 lines
975 B
Groovy
Raw Normal View History

2024-08-31 11:23:42 +01:00
plugins {
alias(libs.plugins.android.application)
}
2015-10-03 15:19:25 +01:00
android {
2024-08-31 11:23:42 +01:00
namespace 'com.mridang.speedo'
compileSdk 34
2015-10-03 15:19:25 +01:00
defaultConfig {
applicationId "com.mridang.speedo"
2024-08-31 11:23:42 +01:00
minSdk 24
targetSdk 34
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
2015-10-03 15:19:25 +01:00
}
2024-08-31 11:23:42 +01:00
2015-10-03 15:19:25 +01:00
buildTypes {
release {
minifyEnabled false
2024-08-31 11:23:42 +01:00
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
2015-10-03 15:19:25 +01:00
}
}
2024-08-31 11:23:42 +01:00
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
2015-10-03 15:19:25 +01:00
}
dependencies {
2024-08-31 11:36:47 +01:00
implementation libs.preference.preference
2024-08-31 11:23:42 +01:00
implementation libs.legacy.support.v4
implementation libs.appcompat
implementation libs.material
testImplementation libs.junit
androidTestImplementation libs.ext.junit
androidTestImplementation libs.espresso.core
}