45 lines
1.1 KiB
Groovy
45 lines
1.1 KiB
Groovy
apply plugin: "com.android.application"
|
|
|
|
def enableProguardInReleaseBuilds = false
|
|
|
|
android {
|
|
compileSdkVersion 34
|
|
buildToolsVersion "34.0.0"
|
|
|
|
namespace "com.logistream"
|
|
defaultConfig {
|
|
applicationId "com.logistream.mobile"
|
|
minSdkVersion 23
|
|
targetSdkVersion 34
|
|
versionCode 1
|
|
versionName "1.0"
|
|
}
|
|
|
|
buildTypes {
|
|
debug {
|
|
minifyEnabled false
|
|
}
|
|
release {
|
|
minifyEnabled enableProguardInReleaseBuilds
|
|
proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
|
|
}
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_17
|
|
targetCompatibility JavaVersion.VERSION_17
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(dir: "libs", include: ["*.jar"])
|
|
|
|
implementation 'androidx.appcompat:appcompat:1.6.1'
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
|
|
implementation 'androidx.webkit:webkit:1.8.0'
|
|
|
|
// Google Play Services for Location
|
|
implementation 'com.google.android.gms:play-services-location:21.0.1'
|
|
}
|
|
|