WT1.1.3 build 2 iOS. Apple SignIn, Google SignIn
This commit is contained in:
@@ -1,4 +1,13 @@
|
||||
class NotFoundException implements Exception {
|
||||
final String message;
|
||||
const NotFoundException({this.message});
|
||||
}
|
||||
}
|
||||
|
||||
class WorkoutTestException implements Exception {
|
||||
static const String CUSTOMER_EXISTS = "customer-exists";
|
||||
static const String LOGIN_CANCELLED = "login-cancelled";
|
||||
|
||||
final String message;
|
||||
final String code;
|
||||
const WorkoutTestException({this.message, this.code});
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import 'dart:async';
|
||||
import 'dart:io';
|
||||
|
||||
/*
|
||||
import 'package:aitrainer_app/model/cache.dart';
|
||||
import 'package:aitrainer_app/model/product.dart';
|
||||
import 'package:aitrainer_app/service/logging.dart';
|
||||
@@ -21,15 +21,7 @@ class PlatformPurchaseApi with Logging {
|
||||
|
||||
List getProductList() => _productList;
|
||||
|
||||
/* Platform.isAndroid
|
||||
? [
|
||||
'android.test.purchased',
|
||||
'point_1000',
|
||||
'5000_point',
|
||||
'android.test.canceled',
|
||||
]
|
||||
: ['com.cooni.point1000', 'com.cooni.point5000'];
|
||||
*/
|
||||
|
||||
|
||||
factory PlatformPurchaseApi() {
|
||||
return _singleton;
|
||||
@@ -167,3 +159,4 @@ class PlatformPurchaseApi with Logging {
|
||||
this._purchases = items;
|
||||
}
|
||||
}
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user