33 lines
625 B
Groovy
33 lines
625 B
Groovy
plugins {
|
|
id 'com.android.application'
|
|
}
|
|
|
|
android {
|
|
namespace 'com.example.newapp'
|
|
compileSdk 34
|
|
|
|
defaultConfig {
|
|
applicationId 'com.example.newapp'
|
|
minSdk 24
|
|
targetSdk 34
|
|
versionCode 1
|
|
versionName '1.0'
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
}
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_17
|
|
targetCompatibility JavaVersion.VERSION_17
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'androidx.appcompat:appcompat:1.6.1'
|
|
implementation 'com.google.android.material:material:1.11.0'
|
|
}
|