Fix namespace and applicationId in build.gradle to match package structure

This commit is contained in:
cmclark00 2025-04-01 05:06:38 -04:00
parent f5f135ff27
commit 38163c33a3
39 changed files with 134 additions and 157 deletions

View file

@ -4,13 +4,13 @@ plugins {
}
android {
namespace 'com.mintris'
compileSdk 34
namespace "com.pixelmintdrop"
compileSdk 35
defaultConfig {
applicationId "com.mintris"
applicationId "com.pixelmintdrop"
minSdk 30
targetSdk 34
targetSdk 35
versionCode 1
versionName "1.0"
@ -27,6 +27,7 @@ android {
buildFeatures {
viewBinding true
dataBinding true
}
compileOptions {