Skip to content

Commit e6f2979

Browse files
Merge pull request #1217 from cypherstack/various
Various
2 parents 6f1a57e + 2cdfec9 commit e6f2979

File tree

139 files changed

+9930
-7473
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

139 files changed

+9930
-7473
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ pubspec.yaml
8585
/android/app/src/main/profile/AndroidManifest.xml
8686
/android/app/src/main/kotlin/com/cypherstack/stackwallet/MainActivity.kt
8787
/android/app/src/main/res/**/ic_launcher.png
88+
/android/app/src/main/res/**/splash.png
8889

8990
/ios/Runner/Info.plist
9091
/ios/Runner.xcodeproj/project.pbxproj
@@ -122,3 +123,6 @@ lib/wl_gen/generated/
122123
/linux/flutter/generated_plugins.cmake
123124
/windows/flutter/generated_plugins.cmake
124125
/macos/Flutter/GeneratedPluginRegistrant.swift
126+
127+
/assets/windows/mwebd.exe
128+
/tool/build

analysis_options.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@ linter:
9494
constant_identifier_names: false
9595
prefer_final_locals: true
9696
prefer_final_in_for_each: true
97+
lines_longer_than_80_chars: true
9798
# require_trailing_commas: true // causes issues with dart 3.7
9899
# avoid_print: false # Uncomment to disable the `avoid_print` rule
99100
# prefer_single_quotes: true # Uncomment to enable the `prefer_single_quotes` rule

android/app/proguard-rules.pro

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,9 @@
3232
-keep,allowobfuscation,allowshrinking class * extends com.google.gson.reflect.TypeToken
3333

3434
# required for flutter file_picker
35-
-keep class androidx.lifecycle.DefaultLifecycleObserver
35+
-keep class androidx.lifecycle.DefaultLifecycleObserver
36+
37+
# required for flutter_secure_storage
38+
-dontwarn com.google.errorprone.annotations.**
39+
-dontwarn javax.annotation.Nullable
40+
-dontwarn javax.annotation.concurrent.GuardedBy
-6.37 KB
Binary file not shown.
-2.23 KB
Binary file not shown.
69 Bytes
Loading
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
3+
<item>
4+
<bitmap android:gravity="fill" android:src="@drawable/background"/>
5+
</item>
6+
<item>
7+
<bitmap android:gravity="center" android:src="@drawable/splash"/>
8+
</item>
9+
</layer-list>
69 Bytes
Loading
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
3+
<item>
4+
<bitmap android:gravity="fill" android:src="@drawable/background"/>
5+
</item>
6+
<item>
7+
<bitmap android:gravity="center" android:src="@drawable/splash"/>
8+
</item>
9+
</layer-list>
-1 Bytes
Loading

0 commit comments

Comments
 (0)