ZYWallet -> YWallet
|
@ -41,7 +41,7 @@ android {
|
|||
}
|
||||
|
||||
defaultConfig {
|
||||
applicationId "me.hanh.zywallet"
|
||||
applicationId "me.hanh.ywallet"
|
||||
minSdkVersion 24
|
||||
targetSdkVersion 30
|
||||
versionCode flutterVersionCode.toInteger()
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="me.hanh.zywallet">
|
||||
package="me.hanh.ywallet">
|
||||
<!-- Flutter needs it to communicate with the running application
|
||||
to allow setting breakpoints, to provide hot reload, etc.
|
||||
-->
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="me.hanh.zywallet">
|
||||
package="me.hanh.ywallet">
|
||||
<application
|
||||
android:label="ZYWallet"
|
||||
android:label="YWallet"
|
||||
android:icon="@mipmap/ic_launcher"
|
||||
android:allowBackup="false">
|
||||
<activity
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
package me.hanh.zywallet
|
||||
package me.hanh.ywallet
|
||||
|
||||
import io.flutter.embedding.android.FlutterFragmentActivity
|
||||
import io.flutter.embedding.engine.FlutterEngine
|
After Width: | Height: | Size: 5.0 KiB |
After Width: | Height: | Size: 2.3 KiB |
After Width: | Height: | Size: 68 B |
|
@ -0,0 +1,9 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item>
|
||||
<bitmap android:gravity="fill" android:src="@drawable/background"/>
|
||||
</item>
|
||||
<item>
|
||||
<bitmap android:gravity="center" android:src="@drawable/splash"/>
|
||||
</item>
|
||||
</layer-list>
|
After Width: | Height: | Size: 68 B |
|
@ -0,0 +1,9 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item>
|
||||
<bitmap android:gravity="fill" android:src="@drawable/background"/>
|
||||
</item>
|
||||
<item>
|
||||
<bitmap android:gravity="center" android:src="@drawable/splash"/>
|
||||
</item>
|
||||
</layer-list>
|
After Width: | Height: | Size: 70 B |
After Width: | Height: | Size: 6.6 KiB |
After Width: | Height: | Size: 14 KiB |
After Width: | Height: | Size: 18 KiB |
After Width: | Height: | Size: 70 B |
|
@ -0,0 +1,17 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<!-- Theme applied to the Android Window while the process is starting when the OS's Dark Mode setting is off -->
|
||||
<style name="LaunchTheme" parent="@android:style/Theme.Black.NoTitleBar">
|
||||
<item name="android:windowFullscreen">false</item>
|
||||
<item name="android:windowSplashScreenBackground">#FFFFFF</item>
|
||||
</style>
|
||||
<!-- Theme applied to the Android Window as soon as the process has started.
|
||||
This theme determines the color of the Android Window while your
|
||||
Flutter UI initializes, as well as behind your Flutter UI while its
|
||||
running.
|
||||
|
||||
This Theme is only used starting with V2 of Flutter's Android embedding. -->
|
||||
<style name="NormalTheme" parent="@android:style/Theme.Black.NoTitleBar">
|
||||
<item name="android:windowBackground">?android:colorBackground</item>
|
||||
</style>
|
||||
</resources>
|
|
@ -0,0 +1,17 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<!-- Theme applied to the Android Window while the process is starting when the OS's Dark Mode setting is off -->
|
||||
<style name="LaunchTheme" parent="@android:style/Theme.Light.NoTitleBar">
|
||||
<item name="android:windowFullscreen">false</item>
|
||||
<item name="android:windowSplashScreenBackground">#000000</item>
|
||||
</style>
|
||||
<!-- Theme applied to the Android Window as soon as the process has started.
|
||||
This theme determines the color of the Android Window while your
|
||||
Flutter UI initializes, as well as behind your Flutter UI while its
|
||||
running.
|
||||
|
||||
This Theme is only used starting with V2 of Flutter's Android embedding. -->
|
||||
<style name="NormalTheme" parent="@android:style/Theme.Light.NoTitleBar">
|
||||
<item name="android:windowBackground">?android:colorBackground</item>
|
||||
</style>
|
||||
</resources>
|
|
@ -1,5 +1,5 @@
|
|||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="me.hanh.zywallet">
|
||||
package="me.hanh.ywallet">
|
||||
<!-- Flutter needs it to communicate with the running application
|
||||
to allow setting breakpoints, to provide hot reload, etc.
|
||||
-->
|
||||
|
|
BIN
assets/icon.png
Before Width: | Height: | Size: 81 KiB After Width: | Height: | Size: 17 KiB |
|
@ -1,6 +1,7 @@
|
|||
flutter pub get
|
||||
flutter pub run flutter_launcher_icons:main
|
||||
flutter pub run flutter_app_name
|
||||
#flutter pub run flutter_app_name
|
||||
#flutter pub run change_app_package_name:main me.hanh.ywallet
|
||||
flutter pub run build_runner build
|
||||
flutter pub run flutter_native_splash:create
|
||||
|
||||
|
|
|
@ -49,7 +49,7 @@ const mZECUNIT = 100000;
|
|||
const DEFAULT_FEE = 1000;
|
||||
const MAXMONEY = 21000000;
|
||||
const DOC_URL = "https://hhanh00.github.io/zwallet/";
|
||||
const APP_NAME = "ZYWallet";
|
||||
const APP_NAME = "YWallet";
|
||||
|
||||
const RECOVERY_FILE = "recover.bin";
|
||||
|
||||
|
|
|
@ -22,7 +22,7 @@ class _RestorePageState extends State<RestorePage> {
|
|||
final _accountIndexController = TextEditingController(text: "0");
|
||||
final _shareController = TextEditingController();
|
||||
var _validKey = true;
|
||||
var _coin = 0;
|
||||
var _coin = 1;
|
||||
var _showIndex = false;
|
||||
|
||||
@override
|
||||
|
|
|
@ -15,7 +15,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
|
|||
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
|
||||
# Read more about iOS versioning at
|
||||
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
|
||||
version: 1.2.1+204
|
||||
version: 1.2.1+206
|
||||
|
||||
environment:
|
||||
sdk: ">=2.12.0 <3.0.0"
|
||||
|
@ -91,7 +91,7 @@ dev_dependencies:
|
|||
flutter_native_splash: ^1.2.3
|
||||
|
||||
flutter_app_name:
|
||||
name: "ZYWallet"
|
||||
name: "YWallet"
|
||||
|
||||
flutter_icons:
|
||||
android: true
|
||||
|
|