[#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:
parent
f01c855ead
commit
2941e873c2
|
@ -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
|
||||
|
|
|
@ -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"/>
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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() {
|
||||
|
|
Loading…
Reference in New Issue