mirror of
https://github.com/pezkuwichain/pezkuwi-wallet-android.git
synced 2026-06-19 15:51:13 +00:00
fix(build): develop variant uses base applicationId io.pezkuwichain.wallet
The develop build type appended a '.dev' applicationIdSuffix, producing io.pezkuwichain.wallet.dev, which has no matching client in the google-services.json and broke every PR/develop build at processDevelopGoogleServices. Drop the suffix so develop uses the base io.pezkuwichain.wallet identity (keeps the -develop versionName suffix).
This commit is contained in:
+2
-1
@@ -80,7 +80,8 @@ android {
|
|||||||
signingConfig signingConfigs.dev
|
signingConfig signingConfigs.dev
|
||||||
matchingFallbacks = ['debug']
|
matchingFallbacks = ['debug']
|
||||||
versionNameSuffix '-develop'
|
versionNameSuffix '-develop'
|
||||||
applicationIdSuffix '.dev'
|
// Use the base applicationId (io.pezkuwichain.wallet) — no ".dev" suffix —
|
||||||
|
// so it matches the registered google-services client.
|
||||||
//Init firebase
|
//Init firebase
|
||||||
def localReleaseNotes = releaseNotes()
|
def localReleaseNotes = releaseNotes()
|
||||||
def localFirebaseGroup = firebaseGroup()
|
def localFirebaseGroup = firebaseGroup()
|
||||||
|
|||||||
Reference in New Issue
Block a user