Aperture: Move .dev suffix to debug build type configuration

Change-Id: I317cf54fc1168eeb31bb2b5ad7d6fe62e86168a3
diff --git a/app/build.gradle.kts b/app/build.gradle.kts
index f5a4650..1f20657 100644
--- a/app/build.gradle.kts
+++ b/app/build.gradle.kts
@@ -11,7 +11,7 @@
     compileSdk = 33
 
     defaultConfig {
-        applicationId = "org.lineageos.aperture.dev"
+        applicationId = "org.lineageos.aperture"
         minSdk = 26
         targetSdk = 33
         versionCode = 1
@@ -36,6 +36,10 @@
                 )
             )
         }
+        getByName("debug") {
+            // Append .dev to package name so we won't conflict with AOSP build.
+            applicationIdSuffix = ".dev"
+        }
     }
 
     compileOptions {