mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-01-03 17:40:43 +00:00
Fixes and changed build versions for ios and android projects.
This commit is contained in:
parent
3722d7e05a
commit
6a9720d5d6
7 changed files with 68 additions and 39 deletions
|
@ -354,7 +354,7 @@
|
||||||
buildSettings = {
|
buildSettings = {
|
||||||
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
||||||
CLANG_ENABLE_MODULES = YES;
|
CLANG_ENABLE_MODULES = YES;
|
||||||
CURRENT_PROJECT_VERSION = 11;
|
CURRENT_PROJECT_VERSION = 12;
|
||||||
DEVELOPMENT_TEAM = 32J6BB6VUS;
|
DEVELOPMENT_TEAM = 32J6BB6VUS;
|
||||||
ENABLE_BITCODE = NO;
|
ENABLE_BITCODE = NO;
|
||||||
FRAMEWORK_SEARCH_PATHS = (
|
FRAMEWORK_SEARCH_PATHS = (
|
||||||
|
@ -494,7 +494,7 @@
|
||||||
buildSettings = {
|
buildSettings = {
|
||||||
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
||||||
CLANG_ENABLE_MODULES = YES;
|
CLANG_ENABLE_MODULES = YES;
|
||||||
CURRENT_PROJECT_VERSION = 11;
|
CURRENT_PROJECT_VERSION = 12;
|
||||||
DEVELOPMENT_TEAM = 32J6BB6VUS;
|
DEVELOPMENT_TEAM = 32J6BB6VUS;
|
||||||
ENABLE_BITCODE = NO;
|
ENABLE_BITCODE = NO;
|
||||||
FRAMEWORK_SEARCH_PATHS = (
|
FRAMEWORK_SEARCH_PATHS = (
|
||||||
|
@ -528,7 +528,7 @@
|
||||||
buildSettings = {
|
buildSettings = {
|
||||||
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
||||||
CLANG_ENABLE_MODULES = YES;
|
CLANG_ENABLE_MODULES = YES;
|
||||||
CURRENT_PROJECT_VERSION = 11;
|
CURRENT_PROJECT_VERSION = 12;
|
||||||
DEVELOPMENT_TEAM = 32J6BB6VUS;
|
DEVELOPMENT_TEAM = 32J6BB6VUS;
|
||||||
ENABLE_BITCODE = NO;
|
ENABLE_BITCODE = NO;
|
||||||
FRAMEWORK_SEARCH_PATHS = (
|
FRAMEWORK_SEARCH_PATHS = (
|
||||||
|
|
|
@ -27,10 +27,10 @@ class BitcoinBalance extends Balance {
|
||||||
final int confirmed;
|
final int confirmed;
|
||||||
final int unconfirmed;
|
final int unconfirmed;
|
||||||
|
|
||||||
int get total =>
|
int get total => confirmed + unconfirmed;
|
||||||
confirmed + (unconfirmed < 0 ? unconfirmed * -1 : unconfirmed);
|
|
||||||
|
|
||||||
int get availableBalance => confirmed + (unconfirmed < 0 ? unconfirmed : 0);
|
int get availableBalance =>
|
||||||
|
(confirmed ?? 0) + (unconfirmed < 0 ? unconfirmed : 0);
|
||||||
|
|
||||||
String get confirmedFormatted => bitcoinAmountToString(amount: confirmed);
|
String get confirmedFormatted => bitcoinAmountToString(amount: confirmed);
|
||||||
|
|
||||||
|
|
|
@ -23,8 +23,7 @@ String jsonrpcparams(List<Object> params) {
|
||||||
|
|
||||||
String jsonrpc(
|
String jsonrpc(
|
||||||
{String method, List<Object> params, int id, double version = 2.0}) =>
|
{String method, List<Object> params, int id, double version = 2.0}) =>
|
||||||
'{"jsonrpc": "$version", "method": "$method", "id": "$id", "params": ${json
|
'{"jsonrpc": "$version", "method": "$method", "id": "$id", "params": ${json.encode(params)}}\n';
|
||||||
.encode(params)}}\n';
|
|
||||||
|
|
||||||
class SocketTask {
|
class SocketTask {
|
||||||
SocketTask({this.completer, this.isSubscription, this.subject});
|
SocketTask({this.completer, this.isSubscription, this.subject});
|
||||||
|
@ -75,7 +74,9 @@ class ElectrumClient {
|
||||||
|
|
||||||
socket.listen((Uint8List event) {
|
socket.listen((Uint8List event) {
|
||||||
try {
|
try {
|
||||||
_handleResponse(utf8.decode(event.toList()));
|
final response =
|
||||||
|
json.decode(utf8.decode(event.toList())) as Map<String, Object>;
|
||||||
|
_handleResponse(response);
|
||||||
} on FormatException catch (e) {
|
} on FormatException catch (e) {
|
||||||
final msg = e.message.toLowerCase();
|
final msg = e.message.toLowerCase();
|
||||||
|
|
||||||
|
@ -87,12 +88,33 @@ class ElectrumClient {
|
||||||
unterminatedString += e.source as String;
|
unterminatedString += e.source as String;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (msg.contains("not a subtype of type")) {
|
||||||
|
unterminatedString += e.source as String;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (isJSONStringCorrect(unterminatedString)) {
|
if (isJSONStringCorrect(unterminatedString)) {
|
||||||
_handleResponse(unterminatedString);
|
final response =
|
||||||
|
json.decode(unterminatedString) as Map<String, Object>;
|
||||||
|
_handleResponse(response);
|
||||||
|
unterminatedString = null;
|
||||||
|
}
|
||||||
|
} on TypeError catch (e) {
|
||||||
|
if (!e.toString().contains('Map<String, Object>')) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
final source = utf8.decode(event.toList());
|
||||||
|
unterminatedString += source;
|
||||||
|
|
||||||
|
if (isJSONStringCorrect(unterminatedString)) {
|
||||||
|
final response =
|
||||||
|
json.decode(unterminatedString) as Map<String, Object>;
|
||||||
|
_handleResponse(response);
|
||||||
unterminatedString = null;
|
unterminatedString = null;
|
||||||
}
|
}
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
print(e);
|
print(e.toString());
|
||||||
}
|
}
|
||||||
}, onError: (Object error) {
|
}, onError: (Object error) {
|
||||||
print(error.toString());
|
print(error.toString());
|
||||||
|
@ -239,7 +261,7 @@ class ElectrumClient {
|
||||||
if (result is String) {
|
if (result is String) {
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
print(result);
|
||||||
return '';
|
return '';
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -275,7 +297,8 @@ class ElectrumClient {
|
||||||
params: [scripthash]);
|
params: [scripthash]);
|
||||||
}
|
}
|
||||||
|
|
||||||
BehaviorSubject<T> subscribe<T>({@required String id,
|
BehaviorSubject<T> subscribe<T>(
|
||||||
|
{@required String id,
|
||||||
@required String method,
|
@required String method,
|
||||||
List<Object> params = const []}) {
|
List<Object> params = const []}) {
|
||||||
final subscription = BehaviorSubject<T>();
|
final subscription = BehaviorSubject<T>();
|
||||||
|
@ -296,7 +319,8 @@ class ElectrumClient {
|
||||||
return completer.future;
|
return completer.future;
|
||||||
}
|
}
|
||||||
|
|
||||||
Future<dynamic> callWithTimeout({String method,
|
Future<dynamic> callWithTimeout(
|
||||||
|
{String method,
|
||||||
List<Object> params = const [],
|
List<Object> params = const [],
|
||||||
int timeout = 2000}) async {
|
int timeout = 2000}) async {
|
||||||
final completer = Completer<dynamic>();
|
final completer = Completer<dynamic>();
|
||||||
|
@ -325,8 +349,7 @@ class ElectrumClient {
|
||||||
onConnectionStatusChange = null;
|
onConnectionStatusChange = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
void _regisryTask(int id, Completer completer) =>
|
void _regisryTask(int id, Completer completer) => _tasks[id.toString()] =
|
||||||
_tasks[id.toString()] =
|
|
||||||
SocketTask(completer: completer, isSubscription: false);
|
SocketTask(completer: completer, isSubscription: false);
|
||||||
|
|
||||||
void _regisrySubscription(String id, BehaviorSubject subject) =>
|
void _regisrySubscription(String id, BehaviorSubject subject) =>
|
||||||
|
@ -371,22 +394,20 @@ class ElectrumClient {
|
||||||
_isConnected = isConnected;
|
_isConnected = isConnected;
|
||||||
}
|
}
|
||||||
|
|
||||||
void _handleResponse(String response) {
|
void _handleResponse(Map<String, Object> response) {
|
||||||
print('Response: $response');
|
final method = response['method'];
|
||||||
final jsoned = json.decode(response) as Map<String, Object>;
|
final id = response['id'] as String;
|
||||||
// print(jsoned);
|
final result = response['result'];
|
||||||
final method = jsoned['method'];
|
|
||||||
final id = jsoned['id'] as String;
|
|
||||||
final result = jsoned['result'];
|
|
||||||
|
|
||||||
if (method is String) {
|
if (method is String) {
|
||||||
_methodHandler(method: method, request: jsoned);
|
_methodHandler(method: method, request: response);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
_finish(id, result);
|
_finish(id, result);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// FIXME: move me
|
// FIXME: move me
|
||||||
bool isJSONStringCorrect(String source) {
|
bool isJSONStringCorrect(String source) {
|
||||||
try {
|
try {
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
import 'package:cake_wallet/bitcoin/bitcoin_amount_format.dart';
|
|
||||||
import 'package:cake_wallet/themes/theme_base.dart';
|
import 'package:cake_wallet/themes/theme_base.dart';
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:flutter/services.dart';
|
import 'package:flutter/services.dart';
|
||||||
|
|
|
@ -358,7 +358,16 @@ class ExchangeTradeState extends State<ExchangeTradeForm> {
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
actionLeftButton: () => Navigator.of(context).pop());
|
actionLeftButton: () => Navigator.of(context).pop(),
|
||||||
|
feeFiatAmount: widget.exchangeTradeViewModel.sendViewModel
|
||||||
|
.pendingTransaction.feeFormatted,
|
||||||
|
fiatAmountValue: widget.exchangeTradeViewModel.sendViewModel
|
||||||
|
.pendingTransactionFeeFiatAmount +
|
||||||
|
' ' +
|
||||||
|
widget.exchangeTradeViewModel.sendViewModel.fiat.title,
|
||||||
|
recipientTitle: S.of(context).recipient_address,
|
||||||
|
recipientAddress:
|
||||||
|
widget.exchangeTradeViewModel.sendViewModel.address);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
|
@ -310,7 +310,7 @@ abstract class ExchangeViewModelBase with Store {
|
||||||
}
|
}
|
||||||
|
|
||||||
final amount = availableBalance - fee;
|
final amount = availableBalance - fee;
|
||||||
depositAmount = bitcoinAmountToString(amount: amount);
|
changeDepositAmount(amount: bitcoinAmountToString(amount: amount));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -11,7 +11,7 @@ description: Cake Wallet.
|
||||||
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
|
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
|
||||||
# Read more about iOS versioning at
|
# Read more about iOS versioning at
|
||||||
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
|
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
|
||||||
version: 4.1.0+27
|
version: 4.1.0+28
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=2.7.0 <3.0.0"
|
sdk: ">=2.7.0 <3.0.0"
|
||||||
|
|
Loading…
Reference in a new issue