-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathbuild.gradle
More file actions
33 lines (29 loc) · 966 Bytes
/
build.gradle
File metadata and controls
33 lines (29 loc) · 966 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
plugins {
id 'com.android.application'
}
android {
namespace 'de.androidcrypto.android_hce_beginner_app'
compileSdk 34 // Atualizado para Android 14
defaultConfig {
applicationId "de.androidcrypto.android_hce_beginner_app"
minSdk 26 // Android 8.0 (compatível com maioria)
targetSdk 34 // Atualizado para Android 14 (Obrigatório)
versionCode 2
versionName "2.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
dependencies {
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'com.google.android.material:material:1.11.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
}