-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathbuild.gradle
More file actions
34 lines (29 loc) · 915 Bytes
/
build.gradle
File metadata and controls
34 lines (29 loc) · 915 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
plugins {
alias(libs.plugins.android.application)
}
android {
namespace 'com.datalogic.example.configurationmanagerintentsampleapi'
compileSdkVersion 'Datalogic:Datalogic SDK v1:30'
defaultConfig {
applicationId "com.datalogic.example.configurationmanagerintentsampleapi"
minSdk 30
targetSdk 35
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_11
}
}
dependencies {
implementation 'com.android.support:support-compat:28.0.0'
implementation libs.androidx.annotation.jvm
}