[#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")
|
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
|
// Force orchestrator to be used for this module, because we need cleared state to generate screenshots
|
||||||
val isOrchestratorEnabled = true
|
val isOrchestratorEnabled = true
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<manifest
|
<manifest
|
||||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
package="cash.z.ecc.test">
|
package="co.electriccoin.zcash.test">
|
||||||
|
|
||||||
<!-- Required to write screenshots -->
|
<!-- Required to write screenshots -->
|
||||||
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<manifest
|
<manifest
|
||||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
package="cash.z.ecc">
|
package="co.electriccoin.zcash">
|
||||||
|
|
||||||
<application
|
<application
|
||||||
android:name="cash.z.ecc.app.AppImpl"
|
android:name="cash.z.ecc.app.AppImpl"
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
package cash.z.ecc.app
|
package cash.z.ecc.app
|
||||||
|
|
||||||
import android.app.Application
|
import android.app.Application
|
||||||
import cash.z.ecc.BuildConfig
|
import co.electriccoin.zcash.BuildConfig
|
||||||
|
|
||||||
@Suppress("unused")
|
@Suppress("unused")
|
||||||
class AppImpl : Application() {
|
class AppImpl : Application() {
|
||||||
|
|
Loading…
Reference in New Issue