e82d2a0ece
- Added a new WebP launcher icon for the app in the mipmap-xxxhdpi directory. - Created a new strings.xml file containing the app name and asset statements for handling URLs.
22 lines
436 B
Groovy
22 lines
436 B
Groovy
plugins {
|
|
id 'com.android.application'
|
|
}
|
|
|
|
android {
|
|
namespace 'com.hdrdevs.turnosxpress'
|
|
compileSdk 36
|
|
|
|
defaultConfig {
|
|
applicationId 'com.hdrdevs.turnosxpress'
|
|
minSdk 23
|
|
targetSdk 35
|
|
versionCode 1
|
|
versionName '1.0.0'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'com.google.androidbrowserhelper:androidbrowserhelper:2.7.2'
|
|
implementation 'androidx.appcompat:appcompat:1.7.0'
|
|
}
|