[#177] Change application package name

In a separate pull request, the class packages will be refactored to match this new package name
This commit is contained in:
Carter Jernigan 2022-02-23 11:42:38 -05:00 committed by Carter Jernigan
parent f01c855ead
commit 2941e873c2
4 changed files with 4 additions and 4 deletions

View File

@ -6,7 +6,7 @@ plugins {
id("com.github.triplet.play")
}
val packageName = "cash.z.ecc"
val packageName = "co.electriccoin.zcash"
// Force orchestrator to be used for this module, because we need cleared state to generate screenshots
val isOrchestratorEnabled = true

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
package="cash.z.ecc.test">
package="co.electriccoin.zcash.test">
<!-- Required to write screenshots -->
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
package="cash.z.ecc">
package="co.electriccoin.zcash">
<application
android:name="cash.z.ecc.app.AppImpl"

View File

@ -1,7 +1,7 @@
package cash.z.ecc.app
import android.app.Application
import cash.z.ecc.BuildConfig
import co.electriccoin.zcash.BuildConfig
@Suppress("unused")
class AppImpl : Application() {