From 314b9c5d4657db79dd156104dc5e1f74a9a9b907 Mon Sep 17 00:00:00 2001 From: Faith Sodipe Date: Tue, 2 Sep 2025 16:16:36 +0100 Subject: [PATCH 1/4] removed unused models and added auth repository --- .env | 4 +- .gitignore | 2 +- lib/modules/home/views/home_screen.dart | 11 +- .../authentication_service.dart | 203 ++---- .../local_user_repository_data_source.dart | 14 +- .../login_user/login_user_repository.dart | 6 +- .../login_user_respository_impl.dart | 18 +- .../authentication/auth_repository.dart | 26 +- .../authentication_repository_impl.dart | 48 +- .../models/account_creation/signup_model.dart | 186 ------ .../models/authentication/auth_models.dart | 187 ++++++ .../authentication/check_user_model.dart | 54 -- .../models/authentication/login_model.dart | 448 ------------- .../models/customer/name_enquiry_model.dart | 64 -- .../domain/models/event/event_model.dart | 167 ----- .../models/favourties/favourites_model.dart | 98 --- .../foreign_exchange/exchange_rate_model.dart | 107 ---- .../historical_data/asset_index_model.dart | 102 --- lib/shared/domain/models/kyc/kyc_model.dart | 86 --- .../domain/models/kyc_be/embassy_model.dart | 100 --- .../models/neulogic/bonds_products_model.dart | 282 --------- .../models/neulogic/cash_account_model.dart | 184 ------ .../cash_account_transaction_model.dart | 132 ---- .../models/neulogic/client_product_model.dart | 123 ---- .../neulogic/featured_product_model.dart | 46 -- .../neulogic/initiate_payment_model.dart | 101 --- .../initiate_payment_response_model.dart | 72 --- .../neulogic/investment_values_model.dart | 76 --- .../mutual_funds/fund_price_model.dart | 32 - .../mutual_funds/fund_price_yield_model.dart | 185 ------ .../mutual_funds/fund_prices_model.dart | 63 -- .../mutual_funds/fund_redemption_model.dart | 111 ---- .../mutual_funds/fund_subscription_model.dart | 158 ----- .../mutual_funds/fund_transaction_model.dart | 140 ----- .../mutual_funds/investment_values_model.dart | 45 -- .../mutual_fund_account_model.dart | 271 -------- .../neulogic/mutual_funds/product_model.dart | 133 ---- .../models/neulogic/relationship_model.dart | 46 -- .../sma_individual_valuation_model.dart | 120 ---- .../neulogic/sma_invesment_value_model.dart | 71 --- .../neulogic/tbills_products_model.dart | 284 --------- lib/shared/domain/models/news/news_model.dart | 157 ----- .../domain/models/paginated_response.dart | 4 - lib/shared/domain/models/parse_response.dart | 9 +- .../pdf_generator/generate_pdf_model.dart | 76 --- .../perfoming_asset_model.dart | 177 ------ ...gers_dashboard_investment_value_model.dart | 50 -- .../business_investment_summary_model.dart | 80 --- .../reporting/investment_values_model.dart | 367 ----------- lib/shared/domain/models/response.dart | 24 +- .../risk_profile_assessment_model.dart | 269 -------- .../securities_stat_model.dart | 573 ----------------- .../models/transaction/transaction_model.dart | 306 --------- lib/shared/domain/models/user/user_model.dart | 87 --- .../user_profile/user_profile_model.dart | 593 ------------------ .../user_withdrawal_bank_model.dart | 222 ------- .../domain/models/utility/bank_model.dart | 117 ---- .../domain/models/utility/country_model.dart | 105 ---- .../domain/models/utility/states_model.dart | 95 --- .../bvn/verify_bvn_req_model.dart | 62 -- .../bvn/verify_bvn_res_model.dart | 28 - .../cac/verify_cac_req_model.dart | 55 -- .../id_document/verify_id_document.dart | 48 -- .../models/wallet/bank_account_model.dart | 96 --- .../models/wallet/nuban_account_model.dart | 253 -------- .../wallet/product_type_detail_model.dart | 55 -- .../models/wallet/product_type_model.dart | 123 ---- .../models/wallet/transfer_funds_model.dart | 135 ---- .../watchlist/create_watchlist_model.dart | 88 --- .../models/watchlist/watchlist_model.dart | 140 ----- .../domain/models/zanibal/equities_model.dart | 430 ------------- .../zanibal/investment_account_model.dart | 420 ------------- .../models/zanibal/order_book_model.dart | 410 ------------ .../portfolio_position_report_model.dart | 395 ------------ .../models/zanibal/position_report_model.dart | 40 -- .../models/zanibal/rolling_average_model.dart | 55 -- .../zanibal/stock_recommendation_model.dart | 135 ---- .../models/zanibal/validate_order_model.dart | 507 --------------- .../mixins/exception_handler_mixin.dart | 4 +- 79 files changed, 285 insertions(+), 11111 deletions(-) delete mode 100644 lib/shared/domain/models/account_creation/signup_model.dart create mode 100644 lib/shared/domain/models/authentication/auth_models.dart delete mode 100644 lib/shared/domain/models/authentication/check_user_model.dart delete mode 100644 lib/shared/domain/models/authentication/login_model.dart delete mode 100644 lib/shared/domain/models/customer/name_enquiry_model.dart delete mode 100644 lib/shared/domain/models/event/event_model.dart delete mode 100644 lib/shared/domain/models/favourties/favourites_model.dart delete mode 100644 lib/shared/domain/models/foreign_exchange/exchange_rate_model.dart delete mode 100644 lib/shared/domain/models/historical_data/asset_index_model.dart delete mode 100644 lib/shared/domain/models/kyc/kyc_model.dart delete mode 100644 lib/shared/domain/models/kyc_be/embassy_model.dart delete mode 100644 lib/shared/domain/models/neulogic/bonds_products_model.dart delete mode 100644 lib/shared/domain/models/neulogic/cash_account_model.dart delete mode 100644 lib/shared/domain/models/neulogic/cash_account_transaction_model.dart delete mode 100644 lib/shared/domain/models/neulogic/client_product_model.dart delete mode 100644 lib/shared/domain/models/neulogic/featured_product_model.dart delete mode 100644 lib/shared/domain/models/neulogic/initiate_payment_model.dart delete mode 100644 lib/shared/domain/models/neulogic/initiate_payment_response_model.dart delete mode 100644 lib/shared/domain/models/neulogic/investment_values_model.dart delete mode 100644 lib/shared/domain/models/neulogic/mutual_funds/fund_price_model.dart delete mode 100644 lib/shared/domain/models/neulogic/mutual_funds/fund_price_yield_model.dart delete mode 100644 lib/shared/domain/models/neulogic/mutual_funds/fund_prices_model.dart delete mode 100644 lib/shared/domain/models/neulogic/mutual_funds/fund_redemption_model.dart delete mode 100644 lib/shared/domain/models/neulogic/mutual_funds/fund_subscription_model.dart delete mode 100644 lib/shared/domain/models/neulogic/mutual_funds/fund_transaction_model.dart delete mode 100644 lib/shared/domain/models/neulogic/mutual_funds/investment_values_model.dart delete mode 100644 lib/shared/domain/models/neulogic/mutual_funds/mutual_fund_account_model.dart delete mode 100644 lib/shared/domain/models/neulogic/mutual_funds/product_model.dart delete mode 100644 lib/shared/domain/models/neulogic/relationship_model.dart delete mode 100644 lib/shared/domain/models/neulogic/sma_individual_valuation_model.dart delete mode 100644 lib/shared/domain/models/neulogic/sma_invesment_value_model.dart delete mode 100644 lib/shared/domain/models/neulogic/tbills_products_model.dart delete mode 100644 lib/shared/domain/models/news/news_model.dart delete mode 100644 lib/shared/domain/models/pdf_generator/generate_pdf_model.dart delete mode 100644 lib/shared/domain/models/performing_assets/perfoming_asset_model.dart delete mode 100644 lib/shared/domain/models/reporting/all_ledgers_dashboard_investment_value_model.dart delete mode 100644 lib/shared/domain/models/reporting/business_investment_summary_model.dart delete mode 100644 lib/shared/domain/models/reporting/investment_values_model.dart delete mode 100644 lib/shared/domain/models/risk_profile_assessment/risk_profile_assessment_model.dart delete mode 100644 lib/shared/domain/models/securities_stat_model/securities_stat_model.dart delete mode 100644 lib/shared/domain/models/transaction/transaction_model.dart delete mode 100644 lib/shared/domain/models/user/user_model.dart delete mode 100644 lib/shared/domain/models/user_profile/user_profile_model.dart delete mode 100644 lib/shared/domain/models/user_profile/user_withdrawal_bank_model.dart delete mode 100644 lib/shared/domain/models/utility/bank_model.dart delete mode 100644 lib/shared/domain/models/utility/country_model.dart delete mode 100644 lib/shared/domain/models/utility/states_model.dart delete mode 100644 lib/shared/domain/models/verification/bvn/verify_bvn_req_model.dart delete mode 100644 lib/shared/domain/models/verification/bvn/verify_bvn_res_model.dart delete mode 100644 lib/shared/domain/models/verification/cac/verify_cac_req_model.dart delete mode 100644 lib/shared/domain/models/verification/id_document/verify_id_document.dart delete mode 100644 lib/shared/domain/models/wallet/bank_account_model.dart delete mode 100644 lib/shared/domain/models/wallet/nuban_account_model.dart delete mode 100644 lib/shared/domain/models/wallet/product_type_detail_model.dart delete mode 100644 lib/shared/domain/models/wallet/product_type_model.dart delete mode 100644 lib/shared/domain/models/wallet/transfer_funds_model.dart delete mode 100644 lib/shared/domain/models/watchlist/create_watchlist_model.dart delete mode 100644 lib/shared/domain/models/watchlist/watchlist_model.dart delete mode 100644 lib/shared/domain/models/zanibal/equities_model.dart delete mode 100644 lib/shared/domain/models/zanibal/investment_account_model.dart delete mode 100644 lib/shared/domain/models/zanibal/order_book_model.dart delete mode 100644 lib/shared/domain/models/zanibal/portfolio_position_report_model.dart delete mode 100644 lib/shared/domain/models/zanibal/position_report_model.dart delete mode 100644 lib/shared/domain/models/zanibal/rolling_average_model.dart delete mode 100644 lib/shared/domain/models/zanibal/stock_recommendation_model.dart delete mode 100644 lib/shared/domain/models/zanibal/validate_order_model.dart diff --git a/.env b/.env index cae41e8..de58010 100644 --- a/.env +++ b/.env @@ -1 +1,3 @@ -TEST_KEY = 'PROJECTR' \ No newline at end of file +TEST_KEY = 'PROJECTR' +BASE_URL = 'https://projectr.linkpc.net/api/' +GOOGLE_KEY = '' \ No newline at end of file diff --git a/.gitignore b/.gitignore index 1a14af1..4260e53 100644 --- a/.gitignore +++ b/.gitignore @@ -43,4 +43,4 @@ app.*.map.json /android/app/profile /android/app/release -# *.env +*.env diff --git a/lib/modules/home/views/home_screen.dart b/lib/modules/home/views/home_screen.dart index 08ab3b5..c7717d9 100644 --- a/lib/modules/home/views/home_screen.dart +++ b/lib/modules/home/views/home_screen.dart @@ -261,7 +261,7 @@ class _HomeScreenState extends ConsumerState { return List.generate(_appointmentActions.length, (index) { return PopupMenuItem( onTap: () { - if(index == 0){ + if (index == 0) { modalBottomSheet( context, Container(), @@ -279,13 +279,8 @@ class _HomeScreenState extends ConsumerState { height: MediaQuery.of(context).size.height * .5, isDismissible: true, ); - } - else if(index == 1){ - - } - else{ - - } + } else if (index == 1) { + } else {} }, child: Row(children: [ Image.asset( diff --git a/lib/services/api_services/authentication/authentication_service.dart b/lib/services/api_services/authentication/authentication_service.dart index 86b234b..8241322 100644 --- a/lib/services/api_services/authentication/authentication_service.dart +++ b/lib/services/api_services/authentication/authentication_service.dart @@ -1,41 +1,38 @@ import 'package:projectr/shared/data/remote/network_service.dart'; -import 'package:projectr/shared/domain/models/authentication/check_user_model.dart'; -import 'package:projectr/shared/domain/models/authentication/login_model.dart'; -import 'package:projectr/shared/domain/models/base_model.dart'; +import 'package:projectr/shared/domain/models/authentication/auth_models.dart'; import 'package:projectr/shared/domain/models/either.dart'; -import 'package:projectr/shared/domain/models/response.dart'; import 'package:projectr/shared/exceptions/app_exception.dart'; -import 'package:dio/dio.dart'; abstract class IAuthService { - Future> login( - {required String userName, required String password}); + Future> withSocial({ + required int type, + required String token, + required String email, + }); - Future> forgotPassword({required String custId}); + Future> withPhoneNumber( + {required String phoneCode, required String phoneNumber}); - Future>> getUserAccount( - {required String userName}); - - Future> resetPassword( - {required String custId, required String password, required String otp}); - - Future> verifyEmail({required String email}); - Future> createAccount( - {required Map model}); + Future> completePhoneNumberLogin( + {required CompleteLoginWithPhoneNumberModel model}); } class AuthService implements IAuthService { final NetworkService networkService; + final String path = 'Authentications/'; AuthService(this.networkService); @override - Future> login( - {required String userName, required String password}) async { + Future> withPhoneNumber( + {required String phoneCode, required String phoneNumber}) async { try { final eitherType = await networkService.post( - 'auth/login', - data: {'username': userName, 'password': password}, + '$path/WithPhoneNumber', + data: { + 'phoneCode': phoneCode, + 'phoneNumber': phoneNumber, + }, ); return eitherType.fold( (exception) { @@ -43,8 +40,8 @@ class AuthService implements IAuthService { }, (response) { var data = response.data; - var login = LoginResponseModel.fromMap(data); - return Right(login); + var res = PhoneNumberLoginResponseModel.fromMap(data); + return Right(res); }, ); } catch (e) { @@ -55,93 +52,21 @@ class AuthService implements IAuthService { } @override - Future> forgotPassword( - {required String custId}) async { + Future> completePhoneNumberLogin( + {required CompleteLoginWithPhoneNumberModel model}) async { try { final eitherType = await networkService.post( - 'auth/forgetPassword', - data: {'CustID': custId}, + '$path/CompletePhoneNumberLogin', + data: model.toMap(), ); return eitherType.fold( (exception) { - var result = BaseResponse.fromMap(exception.error); - return Left( - AppException( - error: result.message, - message: result.message ?? - 'Unknown error occurred while resetting password.', - ), - ); - }, - (response) { - return const Right(true); - }, - ); - } catch (e) { - return Left( - AppException(message: 'Unknown error occurred', error: e.toString()), - ); - } - } - - @override - Future>> getUserAccount( - {required String userName}) async { - try { - final eitherType = await networkService.get( - 'users/usernames?email=$userName', - ); - return eitherType.fold( - (exception) { - var result = BaseResponse.fromMap(exception.error); - return Left( - AppException( - error: result.message, - message: result.message ?? - 'Unknown error occurred while resetting password.', - ), - ); - }, - (response) { - final userAccounts = List.from( - response.data['data'].map((x) => UserAccountsModel.fromMap(x))); - return Right(userAccounts); - }, - ); - } catch (e) { - return Left( - AppException(message: 'Unknown error occurred', error: e.toString()), - ); - } - } - - @override - Future> resetPassword({ - required String custId, - required String password, - required String otp, - }) async { - try { - final eitherType = await networkService.post( - 'auth/resetPassword', - data: {'CustID': custId, 'otp': otp, 'password': password}, - ); - return eitherType.fold( - (exception) { - var result = BaseResponse( - data: exception.message, - message: exception.error, - statusCode: 400); - return Left( - AppException( - error: result.data, - message: result.message ?? - 'Unknown error occurred while resetting password.', - ), - ); + return Left(exception); }, (response) { - return const Right(true); + var data = response.data; + var login = LoginResponseModel.fromMap(data); + return Right(login); }, ); } catch (e) { @@ -152,78 +77,30 @@ class AuthService implements IAuthService { } @override - Future> verifyEmail( - {required String email}) async { + Future> withSocial( + {required int type, required String token, required String email}) async { try { final eitherType = await networkService.post( - 'auth/verify-email', - data: {'email': email}, - ); - return eitherType.fold( - (exception) { - var result = BaseResponse( - data: exception.message, - message: exception.error, - statusCode: 400); - return Left( - AppException( - error: result.data, - message: result.message ?? - 'Unknown error occurred while verifying email.', - ), - ); - }, - (response) { - var res = response.data['data']; - return Right(BaseModel( - message: res == true - ? 'You already have an account with us registered to this email. Please Login.' - : '', - status: !res)); + '$path/CompletePhoneNumberLogin', + data: { + 'type': type, + 'token': token, + 'email': email, }, ); - } catch (e) { - return Left( - AppException( - message: 'Unknown error occurred while verifying email.', - error: e.toString()), - ); - } - } - - @override - Future> createAccount( - {required Map model}) async { - try { - final eitherType = await networkService.postObject( - 'auth/signup', - data: FormData.fromMap(model), - ); return eitherType.fold( (exception) { - var result = BaseResponse( - data: exception.message, - message: exception.error, - statusCode: 400); - return Left( - AppException( - error: result.data, - message: result.message ?? - 'Unknown error occurred while creating account.', - ), - ); + return Left(exception); }, (response) { - return Right(BaseModel( - status: response.statusCode == 200, - message: response.message ?? 'Account Created Successfully')); + var data = response.data; + var login = LoginResponseModel.fromMap(data); + return Right(login); }, ); } catch (e) { return Left( - AppException( - message: 'Unknown error occurred while creating account', - error: e.toString()), + AppException(message: 'Unknown error occurred', error: e.toString()), ); } } diff --git a/lib/services/repositories/local/login_user/local_user_repository_data_source.dart b/lib/services/repositories/local/login_user/local_user_repository_data_source.dart index 3da1bbc..1e381a5 100644 --- a/lib/services/repositories/local/login_user/local_user_repository_data_source.dart +++ b/lib/services/repositories/local/login_user/local_user_repository_data_source.dart @@ -1,11 +1,11 @@ import 'package:projectr/shared/data/local/storage_service.dart'; -import 'package:projectr/shared/domain/models/authentication/login_model.dart'; +import 'package:projectr/shared/domain/models/authentication/auth_models.dart'; abstract class LoginUserDataSource { String get storageKey; - Future fetchUser(); - Future saveUser(UserData user); + Future fetchUser(); + Future saveUser(LoggedInUser user); Future removeUser(); Future hasUser(); } @@ -19,18 +19,18 @@ class LoginUserDataSourceImpl extends LoginUserDataSource { String get storageKey => ''; @override - Future fetchUser() async { + Future fetchUser() async { final data = await storageService.get(storageKey); if (data != null && data != '') { final userJson = data.toString(); - return UserData.fromJson(userJson); + return LoggedInUser.fromMap({}); } return null; } @override - Future saveUser(UserData user) async { - return await storageService.set(storageKey, user.toJson()); + Future saveUser(LoggedInUser user) async { + return await storageService.set(storageKey, '${user.toMap()}'); } @override diff --git a/lib/services/repositories/local/login_user/login_user_repository.dart b/lib/services/repositories/local/login_user/login_user_repository.dart index cdaa942..989f399 100644 --- a/lib/services/repositories/local/login_user/login_user_repository.dart +++ b/lib/services/repositories/local/login_user/login_user_repository.dart @@ -1,11 +1,11 @@ -import 'package:projectr/shared/domain/models/authentication/login_model.dart'; +import 'package:projectr/shared/domain/models/authentication/auth_models.dart'; abstract class LoginUserRepository { ///save login user in local storage - Future save(UserData user); + Future save(LoggedInUser user); ///retrieve login user from locale storage - Future get(); + Future get(); ///remove login user from locale storage Future removeUser(); diff --git a/lib/services/repositories/local/login_user/login_user_respository_impl.dart b/lib/services/repositories/local/login_user/login_user_respository_impl.dart index d9c1b88..a44ba77 100644 --- a/lib/services/repositories/local/login_user/login_user_respository_impl.dart +++ b/lib/services/repositories/local/login_user/login_user_respository_impl.dart @@ -1,30 +1,30 @@ import 'package:projectr/services/repositories/local/login_user/local_user_repository_data_source.dart'; import 'package:projectr/services/repositories/local/login_user/login_user_repository.dart'; -import 'package:projectr/shared/domain/models/authentication/login_model.dart'; +import 'package:projectr/shared/domain/models/authentication/auth_models.dart'; class LoginUserRepositoryImpl extends LoginUserRepository { - final LoginUserDataSource dataSource; + final LoginUserDataSource _service; - LoginUserRepositoryImpl(this.dataSource); + LoginUserRepositoryImpl(this._service); @override - Future get() async { - var data = await dataSource.fetchUser(); + Future get() async { + var data = await _service.fetchUser(); return data; } @override - Future save(UserData user) async { - return await dataSource.saveUser(user); + Future save(LoggedInUser user) async { + return await _service.saveUser(user); } @override Future isUserExist() async { - return await dataSource.hasUser(); + return await _service.hasUser(); } @override Future removeUser() async { - return await dataSource.removeUser(); + return await _service.removeUser(); } } diff --git a/lib/services/repositories/remote/authentication/auth_repository.dart b/lib/services/repositories/remote/authentication/auth_repository.dart index d23e3d2..ef2ca1a 100644 --- a/lib/services/repositories/remote/authentication/auth_repository.dart +++ b/lib/services/repositories/remote/authentication/auth_repository.dart @@ -1,23 +1,17 @@ -import 'package:projectr/shared/domain/models/authentication/check_user_model.dart'; -import 'package:projectr/shared/domain/models/authentication/login_model.dart'; -import 'package:projectr/shared/domain/models/base_model.dart'; +import 'package:projectr/shared/domain/models/authentication/auth_models.dart'; import 'package:projectr/shared/domain/models/either.dart'; import 'package:projectr/shared/exceptions/app_exception.dart'; abstract class AuthenticationRepository { - Future> login( - {required String userName, required String password}); + Future> withSocial({ + required int type, + required String token, + required String email, + }); - Future> forgotPasssword({required String custId}); + Future> withPhoneNumber( + {required String phoneCode, required String phoneNumber}); - Future>> getUserAccounts( - {required String userName}); - - Future> resetPassword( - {required String custId, required String otp, required String password}); - - Future> verifyEmail({required String email}); - - Future> createAccount( - {required Map model}); + Future> completePhoneNumberLogin( + {required CompleteLoginWithPhoneNumberModel model}); } diff --git a/lib/services/repositories/remote/authentication/authentication_repository_impl.dart b/lib/services/repositories/remote/authentication/authentication_repository_impl.dart index 5249632..d7cb219 100644 --- a/lib/services/repositories/remote/authentication/authentication_repository_impl.dart +++ b/lib/services/repositories/remote/authentication/authentication_repository_impl.dart @@ -1,52 +1,30 @@ import 'package:projectr/services/api_services/authentication/authentication_service.dart'; import 'package:projectr/services/repositories/remote/authentication/auth_repository.dart'; -import 'package:projectr/shared/domain/models/authentication/check_user_model.dart'; -import 'package:projectr/shared/domain/models/authentication/login_model.dart'; -import 'package:projectr/shared/domain/models/base_model.dart'; +import 'package:projectr/shared/domain/models/authentication/auth_models.dart'; import 'package:projectr/shared/domain/models/either.dart'; import 'package:projectr/shared/exceptions/app_exception.dart'; class AuthenticationRepositoryImpl extends AuthenticationRepository { - final IAuthService dataSource; + final IAuthService _service; - AuthenticationRepositoryImpl(this.dataSource); + AuthenticationRepositoryImpl(this._service); @override - Future> login( - {required String userName, required String password}) async { - return dataSource.login(userName: userName, password: password); + Future> completePhoneNumberLogin( + {required CompleteLoginWithPhoneNumberModel model}) async { + return await _service.completePhoneNumberLogin(model: model); } @override - Future> forgotPasssword({required String custId}) { - return dataSource.forgotPassword(custId: custId); + Future> withPhoneNumber( + {required String phoneCode, required String phoneNumber}) async { + return await _service.withPhoneNumber( + phoneCode: phoneCode, phoneNumber: phoneNumber); } @override - Future>> getUserAccounts( - {required String userName}) { - return dataSource.getUserAccount(userName: userName); - } - - @override - Future> resetPassword({ - required String custId, - required String otp, - required String password, - }) async { - return dataSource.resetPassword( - custId: custId, password: password, otp: otp); - } - - @override - Future> verifyEmail( - {required String email}) async { - return dataSource.verifyEmail(email: email); - } - - @override - Future> createAccount( - {required Map model}) { - return dataSource.createAccount(model: model); + Future> withSocial( + {required int type, required String token, required String email}) async { + return await _service.withSocial(type: type, token: token, email: email); } } diff --git a/lib/shared/domain/models/account_creation/signup_model.dart b/lib/shared/domain/models/account_creation/signup_model.dart deleted file mode 100644 index 39b8d14..0000000 --- a/lib/shared/domain/models/account_creation/signup_model.dart +++ /dev/null @@ -1,186 +0,0 @@ -import 'dart:io'; - -class SignUpModel { - File? identityDocument; - File? proofOfAddress; - File? cac; - File? passport; - File? signature; - File? facta; - File? birthCert; - File? coi; - File? memorandum; - String? identityDocumentFileName; - String? proofOfAddressFileName; - String? cacFileName; - String? passportFileName; - String? signatureFileName; - String? factaFileName; - String? birthCertFileName; - String? coiFileName; - String? memorandumFileName; - - bool? usMarket; - String? maritalStatus; - String? accountOpeningProduct; - dynamic businessInvolvements; - String? involvementType; - dynamic involvementTypeBusiness; - String? accountType; - String? firstName; - String? lastName; - String? employmentType; - String? employerName; - String? employerAddress; - String? bankAcctName2; - String? bankName2; - String? bankAcctNumber2; - String? swiftCode; - String? othernames; - String? gender; - String? dateOfBirth; - String? emailAddress; - String? phoneNumber; - String? bVNNumber; - String? previousCHN; - String? maidenName; - String? address; - String? country; - String? state; - String? bankAcctName; - String? bankAcctNumber; - String? bankName; - String? residency; - String? sortCode; - String? bankCode; - String? aggrementCheck; - - String? identityType; - String? identityNumber; - String? identityExpiryDate; - String? title; - String? occupation; - String? bankCode2; - String? correspondentAcctNo; - String? correspondentName; - String? beneficiaryName; - String? beneficiaryAcctNo; - String? beneficiaryBankName; - String? beneficiaryBankAddress; - String? product; - String? bvnFirstName; - String? bvnMiddleName; - String? bvnLastName; - String? referral; - String? referralSource; - //Other Personal Information - String? countryOfTaxResidence; - String? stateOfTaxResidence; - String? cityOfTaxResidence; - String? lgaOfTaxResidence; -//Next of Kins - String? nextOfKinFirstName; - String? nextOfKinLastName; - String? nextOfKinPhone; - String? nextOfKinEmail; - String? nextOfKinAddress; - String? nextOfKinGender; - String? nextOfKinDOB; - String? nextOfKinRelationship; - - //corporate signup - String? companyName; - String? dateOfIncorporation; - String? businessRegistrationNumber; - String? authorisedSignatureName; - - //primaryContactInformation - String? primaryContactDesignation; - String? primaryContactFirstName; - String? primaryContactLastName; - String? primaryContactPhoneNumber; - String? primaryContactEmail; - String? primaryContactAddress; - String? primaryContactDOB; - - SignUpModel( - {this.bVNNumber, - this.bankName2, - this.involvementTypeBusiness, - this.lgaOfTaxResidence, - this.title, - this.usMarket, - this.accountOpeningProduct, - this.accountType, - this.address, - this.aggrementCheck, - this.authorisedSignatureName, - this.bankAcctName, - this.bankAcctName2, - this.bankAcctNumber, - this.bankAcctNumber2, - this.bankCode, - this.bankCode2, - this.bankName, - this.beneficiaryAcctNo, - this.beneficiaryBankAddress, - this.beneficiaryBankName, - this.beneficiaryName, - this.birthCert, - this.businessInvolvements, - this.cityOfTaxResidence, - this.companyName, - this.correspondentAcctNo, - this.correspondentName, - this.country, - this.dateOfBirth, - this.emailAddress, - this.employerAddress, - this.employerName, - this.employmentType, - this.facta, - this.firstName, - this.gender, - this.identityDocument, - this.identityExpiryDate, - this.identityNumber, - this.identityType, - this.involvementType, - this.lastName, - this.maidenName, - this.nextOfKinFirstName, - this.nextOfKinLastName, - this.nextOfKinAddress, - this.nextOfKinDOB, - this.nextOfKinEmail, - this.nextOfKinGender, - this.nextOfKinPhone, - this.nextOfKinRelationship, - this.occupation, - this.othernames, - this.passport, - this.phoneNumber, - this.previousCHN, - this.proofOfAddress, - this.residency, - this.signature, - this.sortCode, - this.state, - this.swiftCode, - this.product, - this.bvnFirstName, - this.bvnLastName, - this.bvnMiddleName, - this.referral, - this.referralSource, - this.maritalStatus, - this.countryOfTaxResidence, - this.stateOfTaxResidence, - this.identityDocumentFileName, - this.proofOfAddressFileName, - this.passportFileName, - this.signatureFileName, - this.factaFileName, - this.birthCertFileName, - this.dateOfIncorporation}); -} diff --git a/lib/shared/domain/models/authentication/auth_models.dart b/lib/shared/domain/models/authentication/auth_models.dart new file mode 100644 index 0000000..f5e10a1 --- /dev/null +++ b/lib/shared/domain/models/authentication/auth_models.dart @@ -0,0 +1,187 @@ +// ignore_for_file: public_member_api_docs, sort_constructors_first +import 'dart:convert'; + +class CompleteLoginWithPhoneNumberModel { + final String? phoneCode; + final String? phoneNumber; + final String? otp; + final String? token; + final int? type; + + CompleteLoginWithPhoneNumberModel({ + this.phoneCode, + this.phoneNumber, + this.otp, + this.token, + this.type, + }); + + CompleteLoginWithPhoneNumberModel copyWith({ + String? phoneCode, + String? phoneNumber, + String? otp, + String? token, + int? type, + }) => + CompleteLoginWithPhoneNumberModel( + phoneCode: phoneCode ?? this.phoneCode, + phoneNumber: phoneNumber ?? this.phoneNumber, + otp: otp ?? this.otp, + token: token ?? this.token, + type: type ?? this.type, + ); + + Map toMap() { + return { + 'phoneCode': phoneCode, + 'phoneNumber': phoneNumber, + 'otp': otp, + 'token': token, + 'type': type, + }; + } +} + +class PhoneNumberLoginResponseModel { + final String? otpToken; + final DateTime? expiresAt; + final String? phoneNumber; + final String? phoneCode; + final int? type; + + PhoneNumberLoginResponseModel({ + this.otpToken, + this.expiresAt, + this.phoneNumber, + this.phoneCode, + this.type, + }); + + PhoneNumberLoginResponseModel copyWith({ + String? otpToken, + DateTime? expiresAt, + String? phoneNumber, + String? phoneCode, + int? type, + }) => + PhoneNumberLoginResponseModel( + otpToken: otpToken ?? this.otpToken, + expiresAt: expiresAt ?? this.expiresAt, + phoneNumber: phoneNumber ?? this.phoneNumber, + phoneCode: phoneCode ?? this.phoneCode, + type: type ?? this.type, + ); + + factory PhoneNumberLoginResponseModel.fromMap(Map map) { + return PhoneNumberLoginResponseModel( + otpToken: map['otpToken'] ?? '', + expiresAt: map['expiresAt'] != null + ? DateTime.fromMillisecondsSinceEpoch(map['expiresAt']) + : null, + phoneNumber: map['phoneNumber'] ?? '', + phoneCode: map['phoneCode'] ?? ' ', + type: map['type']?.toInt(), + ); + } +} + +class LoginResponseModel { + final LoggedInUser user; + final String token; + final String? refreshToken; + LoginResponseModel({ + required this.user, + required this.token, + this.refreshToken, + }); + + LoginResponseModel copyWith({ + LoggedInUser? user, + String? token, + String? refreshToken, + }) { + return LoginResponseModel( + user: user ?? this.user, + token: token ?? this.token, + refreshToken: refreshToken ?? this.refreshToken, + ); + } + + Map toMap() { + return { + 'user': user.toMap(), + 'refreshToken': refreshToken, + 'authToken': token, + }; + } + + factory LoginResponseModel.fromMap(Map map) { + return LoginResponseModel( + user: LoggedInUser.fromMap(map['user']), + token: map['token'] ?? '', + refreshToken: map['refreshToken'] ?? '', + ); + } + + String toJson() => json.encode(toMap()); + + factory LoginResponseModel.fromJson(String source) => + LoginResponseModel.fromMap(json.decode(source) as Map); + + @override + String toString() => 'LoginResponseModel(user: $user, token: $token)'; + + @override + bool operator ==(covariant LoginResponseModel other) { + if (identical(this, other)) return true; + + return other.user == user && other.token == token; + } + + @override + int get hashCode => user.hashCode ^ token.hashCode; +} + +class LoggedInUser { + String id; + String phoneNumber; + String phoneCode; + String email; + int accountType; + int registrationType; + bool isFirstLogin; + + LoggedInUser({ + required this.id, + required this.phoneNumber, + required this.phoneCode, + required this.email, + required this.accountType, + required this.registrationType, + required this.isFirstLogin, + }); + + Map toMap() { + return { + 'id': id, + 'phoneNumber': phoneNumber, + 'phoneCode': phoneCode, + 'email': email, + 'accountType': accountType, + 'registrationType': registrationType, + 'isFirstLogin': isFirstLogin, + }; + } + + factory LoggedInUser.fromMap(Map map) { + return LoggedInUser( + id: map['id'] ?? '', + phoneNumber: map['phoneNumber'] ?? '', + phoneCode: map['phoneCode'] ?? '', + email: map['email'] ?? '', + accountType: map['accountType']?.toInt() ?? 0, + registrationType: map['registrationType']?.toInt() ?? 0, + isFirstLogin: map['isFirstLogin'] ?? false, + ); + } +} diff --git a/lib/shared/domain/models/authentication/check_user_model.dart b/lib/shared/domain/models/authentication/check_user_model.dart deleted file mode 100644 index ff76bbe..0000000 --- a/lib/shared/domain/models/authentication/check_user_model.dart +++ /dev/null @@ -1,54 +0,0 @@ -// ignore_for_file: public_member_api_docs, sort_constructors_first -import 'dart:convert'; - -class UserAccountsModel { - String? custId; - String? fullName; - UserAccountsModel({ - this.custId, - this.fullName, - }); - - UserAccountsModel copyWith({ - String? custId, - String? fullName, - }) { - return UserAccountsModel( - custId: custId ?? this.custId, - fullName: fullName ?? this.fullName, - ); - } - - Map toMap() { - return { - 'CustID': custId, - 'fullName': fullName, - }; - } - - factory UserAccountsModel.fromMap(Map map) { - return UserAccountsModel( - custId: map['CustID'] != null ? map['CustID'] as String : null, - fullName: map['fullName'] != null ? map['fullName'] as String : null, - ); - } - - String toJson() => json.encode(toMap()); - - factory UserAccountsModel.fromJson(String source) => - UserAccountsModel.fromMap(json.decode(source) as Map); - - @override - String toString() => - 'UserAccountsModel(CustID: $custId, fullName: $fullName)'; - - @override - bool operator ==(covariant UserAccountsModel other) { - if (identical(this, other)) return true; - - return other.custId == custId && other.fullName == fullName; - } - - @override - int get hashCode => custId.hashCode ^ fullName.hashCode; -} diff --git a/lib/shared/domain/models/authentication/login_model.dart b/lib/shared/domain/models/authentication/login_model.dart deleted file mode 100644 index 35277dd..0000000 --- a/lib/shared/domain/models/authentication/login_model.dart +++ /dev/null @@ -1,448 +0,0 @@ -// ignore_for_file: public_member_api_docs, sort_constructors_first -import 'dart:convert'; - -class LoginResponseModel { - final LoginUser user; - final String token; - LoginResponseModel({ - required this.user, - required this.token, - }); - - LoginResponseModel copyWith({ - LoginUser? user, - String? token, - }) { - return LoginResponseModel( - user: user ?? this.user, - token: token ?? this.token, - ); - } - - Map toMap() { - return { - 'user': user.toMap(), - 'token': token, - }; - } - - factory LoginResponseModel.fromMap(Map map) { - return LoginResponseModel( - user: LoginUser.fromMap(map['user']), - token: map['token'] ?? '', - ); - } - - String toJson() => json.encode(toMap()); - - factory LoginResponseModel.fromJson(String source) => - LoginResponseModel.fromMap(json.decode(source) as Map); - - @override - String toString() => 'LoginResponseModel(user: $user, token: $token)'; - - @override - bool operator ==(covariant LoginResponseModel other) { - if (identical(this, other)) return true; - - return other.user == user && other.token == token; - } - - @override - int get hashCode => user.hashCode ^ token.hashCode; -} - -class LoginUser { - String firstName; - String lastName; - dynamic otherNames; - String fullName; - String email; - String companyName; - String phone; - String address; - String addressLga; - String addressCity; - String addressState; - String addressCountry; - String accountOfficer; - int id; - bool hasBusiness; - String secId; - String camId; - dynamic custId; - String completedTier; - int currentTier; - String username; - String avatar; - bool is2FaEnabled; - CurrentTierRequest? currentTierRequest; - LoginUser({ - required this.firstName, - required this.lastName, - required this.otherNames, - required this.fullName, - required this.email, - required this.companyName, - required this.phone, - required this.address, - required this.addressLga, - required this.addressCity, - required this.addressState, - required this.addressCountry, - required this.accountOfficer, - required this.id, - required this.hasBusiness, - required this.secId, - required this.camId, - required this.custId, - required this.completedTier, - required this.currentTier, - required this.username, - required this.avatar, - required this.is2FaEnabled, - required this.currentTierRequest, - }); - - factory LoginUser.initial() { - return LoginUser( - firstName: '', - fullName: '', - address: '', - addressCity: '', - addressCountry: '', - addressLga: '', - accountOfficer: '', - addressState: '', - avatar: '', - lastName: '', - otherNames: '', - companyName: '', - phone: '', - username: '', - id: 0, - hasBusiness: false, - secId: '', - camId: '', - completedTier: '0', - currentTier: 0, - email: '', - custId: '', - is2FaEnabled: false, - currentTierRequest: CurrentTierRequest.initial(), - ); - } - - LoginUser copyWith({ - String? firstName, - String? lastName, - String? otherNames, - String? fullName, - String? email, - String? companyName, - String? phone, - String? address, - String? addressLga, - String? addressCity, - String? addressState, - String? addressCountry, - String? accountOfficer, - int? id, - bool? hasBusiness, - String? secId, - String? camId, - String? custId, - String? completedTier, - int? currentTier, - String? username, - String? avatar, - bool? is2FaEnabled, - CurrentTierRequest? currentTierRequest, - }) { - return LoginUser( - firstName: firstName ?? this.firstName, - lastName: lastName ?? this.lastName, - otherNames: otherNames ?? this.otherNames, - fullName: fullName ?? this.fullName, - email: email ?? this.email, - companyName: companyName ?? this.companyName, - phone: phone ?? this.phone, - address: address ?? this.address, - addressLga: addressLga ?? this.addressLga, - addressCity: addressCity ?? this.addressCity, - addressState: addressState ?? this.addressState, - addressCountry: addressCountry ?? this.addressCountry, - accountOfficer: accountOfficer ?? this.accountOfficer, - id: id ?? this.id, - hasBusiness: hasBusiness ?? this.hasBusiness, - secId: secId ?? this.secId, - camId: camId ?? this.camId, - custId: custId ?? this.custId, - completedTier: completedTier ?? this.completedTier, - currentTier: currentTier ?? this.currentTier, - username: username ?? this.username, - avatar: avatar ?? this.avatar, - is2FaEnabled: is2FaEnabled ?? this.is2FaEnabled, - currentTierRequest: currentTierRequest ?? this.currentTierRequest, - ); - } - - Map toMap() { - return { - 'firstName': firstName, - 'lastName': lastName, - 'otherNames': otherNames, - 'fullName': fullName, - 'email': email, - 'companyName': companyName, - 'phone': phone, - 'address': address, - 'addressLga': addressLga, - 'addressCity': addressCity, - 'addressState': addressState, - 'addressCountry': addressCountry, - 'accountOfficer': accountOfficer, - 'id': id, - 'hasBusiness': hasBusiness, - 'SEC_ID': secId, - 'CAM_ID': camId, - 'custId': custId, - 'completedTier': completedTier, - 'currentTier': currentTier, - 'username': username, - 'avatar': avatar, - 'is2FaEnabled': is2FaEnabled, - 'currentTierRequest': currentTierRequest?.toMap(), - }; - } - - factory LoginUser.fromMap(Map map) { - return LoginUser( - firstName: map['firstName'] ?? '', - lastName: map['lastName'] ?? '', - otherNames: map['otherNames'] ?? '', - fullName: map['fullName'] ?? '', - email: map['email'] ?? '', - companyName: map['companyName'] ?? '', - phone: map['phone'] ?? '', - address: map['address'] ?? '', - addressLga: map['addressLga'] ?? '', - addressCity: map['addressCity'] ?? '', - addressState: map['addressState'] ?? '', - addressCountry: map['addressCountry'] ?? '', - accountOfficer: map['accountOfficer'] ?? '', - id: map['id'] ?? 0, - hasBusiness: map['hasBusiness'] ?? false, - secId: map['SEC_ID'] ?? '', - camId: map['CAM_ID'] ?? '', - custId: map['custId'] ?? '', - completedTier: map['completedTier'] ?? '', - currentTier: map['currentTier'] ?? 0, - username: map['username'] ?? '', - avatar: map['avatar'] ?? '', - is2FaEnabled: map['is2FaEnabled'] ?? false, - currentTierRequest: map['currentKycRequest'] != null - ? CurrentTierRequest.fromMap(map['currentKycRequest']) - : null, - ); - } - - String toJson() => json.encode(toMap()); - - factory LoginUser.fromJson(String source) => - LoginUser.fromMap(json.decode(source) as Map); - - @override - String toString() { - return 'LoginUser(firstName: $firstName, lastName: $lastName, otherNames: $otherNames, fullName: $fullName, email: $email, companyName: $companyName, phone: $phone, address: $address, addressLga: $addressLga, addressCity: $addressCity, addressState: $addressState, addressCountry: $addressCountry, accountOfficer: $accountOfficer, id: $id, hasBusiness: $hasBusiness, secId: $secId, camId: $camId, custId: $custId, completedTier: $completedTier, currentTier: $currentTier, username: $username, avatar: $avatar, is2FaEnabled: $is2FaEnabled, currentTierRequest: $currentTierRequest)'; - } - - @override - bool operator ==(covariant LoginUser other) { - if (identical(this, other)) return true; - - return other.firstName == firstName && - other.lastName == lastName && - other.otherNames == otherNames && - other.fullName == fullName && - other.email == email && - other.companyName == companyName && - other.phone == phone && - other.address == address && - other.addressLga == addressLga && - other.addressCity == addressCity && - other.addressState == addressState && - other.addressCountry == addressCountry && - other.accountOfficer == accountOfficer && - other.id == id && - other.hasBusiness == hasBusiness && - other.secId == secId && - other.camId == camId && - other.custId == custId && - other.completedTier == completedTier && - other.currentTier == currentTier && - other.username == username && - other.avatar == avatar && - other.is2FaEnabled == is2FaEnabled && - other.currentTierRequest == currentTierRequest; - } - - @override - int get hashCode { - return firstName.hashCode ^ - lastName.hashCode ^ - otherNames.hashCode ^ - fullName.hashCode ^ - email.hashCode ^ - companyName.hashCode ^ - phone.hashCode ^ - address.hashCode ^ - addressLga.hashCode ^ - addressCity.hashCode ^ - addressState.hashCode ^ - addressCountry.hashCode ^ - accountOfficer.hashCode ^ - id.hashCode ^ - hasBusiness.hashCode ^ - secId.hashCode ^ - camId.hashCode ^ - custId.hashCode ^ - completedTier.hashCode ^ - currentTier.hashCode ^ - username.hashCode ^ - avatar.hashCode ^ - is2FaEnabled.hashCode ^ - currentTierRequest.hashCode; - } -} - -class UserData { - final String userName; - final String password; - final String firstName; - final String lastName; - UserData({ - required this.userName, - required this.password, - required this.firstName, - required this.lastName, - }); - - UserData copyWith({ - String? userName, - String? password, - String? firstName, - String? lastName, - }) { - return UserData( - userName: userName ?? this.userName, - password: password ?? this.password, - firstName: firstName ?? this.firstName, - lastName: lastName ?? this.lastName, - ); - } - - Map toMap() { - return { - 'userName': userName, - 'password': password, - 'firstName': firstName, - 'lastName': lastName, - }; - } - - factory UserData.fromMap(Map map) { - return UserData( - userName: map['userName'] as String, - password: map['password'] as String, - firstName: map['firstName'] as String, - lastName: map['lastName'] as String, - ); - } - - String toJson() => json.encode(toMap()); - - factory UserData.fromJson(String source) => - UserData.fromMap(json.decode(source) as Map); - - @override - String toString() { - return 'UserData(userName: $userName, password: $password, firstName: $firstName, lastName: $lastName)'; - } - - @override - bool operator ==(covariant UserData other) { - if (identical(this, other)) return true; - - return other.userName == userName && - other.password == password && - other.firstName == firstName && - other.lastName == lastName; - } - - @override - int get hashCode { - return userName.hashCode ^ - password.hashCode ^ - firstName.hashCode ^ - lastName.hashCode; - } -} - -class CurrentTierRequest { - String requestType; - String status; - CurrentTierRequest({ - required this.requestType, - required this.status, - }); - - factory CurrentTierRequest.initial() { - return CurrentTierRequest( - requestType: '', - status: '', - ); - } - CurrentTierRequest copyWith({ - String? requestType, - String? status, - }) { - return CurrentTierRequest( - requestType: requestType ?? this.requestType, - status: status ?? this.status, - ); - } - - Map toMap() { - return { - 'requestType': requestType, - 'status': status, - }; - } - - factory CurrentTierRequest.fromMap(Map map) { - return CurrentTierRequest( - requestType: map['requestType'] as String, - status: map['status'] as String, - ); - } - - String toJson() => json.encode(toMap()); - - factory CurrentTierRequest.fromJson(String source) => - CurrentTierRequest.fromMap(json.decode(source) as Map); - - @override - String toString() => - 'CurrentTierRequest(requestType: $requestType, status: $status)'; - - @override - bool operator ==(covariant CurrentTierRequest other) { - if (identical(this, other)) return true; - - return other.requestType == requestType && other.status == status; - } - - @override - int get hashCode => requestType.hashCode ^ status.hashCode; -} diff --git a/lib/shared/domain/models/customer/name_enquiry_model.dart b/lib/shared/domain/models/customer/name_enquiry_model.dart deleted file mode 100644 index 99ec40a..0000000 --- a/lib/shared/domain/models/customer/name_enquiry_model.dart +++ /dev/null @@ -1,64 +0,0 @@ -import 'dart:convert'; - -// ignore_for_file: public_member_api_docs, sort_constructors_first - -class ValidateBankAccountModel { - String accountNumber; - String bankCode; - ValidateBankAccountModel({ - required this.accountNumber, - required this.bankCode, - }); - - ValidateBankAccountModel copyWith({ - String? accountNumber, - String? bankCode, - }) { - return ValidateBankAccountModel( - accountNumber: accountNumber ?? this.accountNumber, - bankCode: bankCode ?? this.bankCode, - ); - } - - Map toMap() { - return { - 'accountNumber': accountNumber, - 'bankCode': bankCode, - }; - } - - @override - String toString() => - 'ValidateBankAccountModel(accountNumber: $accountNumber, bankCode: $bankCode)'; - - @override - bool operator ==(covariant ValidateBankAccountModel other) { - if (identical(this, other)) return true; - - return other.accountNumber == accountNumber && other.bankCode == bankCode; - } - - @override - int get hashCode => accountNumber.hashCode ^ bankCode.hashCode; -} - -class ValidateAccountModelResponse { - String? accountNumber; - int? bankId; - String? accountName; - - ValidateAccountModelResponse( - {this.accountName, this.accountNumber, this.bankId}); - - factory ValidateAccountModelResponse.fromMap(Map map) { - return ValidateAccountModelResponse( - accountNumber: map['account_number'] ?? '', - bankId: map['bank_id'] ?? 0, - accountName: map['account_name'] ?? '', - ); - } - - factory ValidateAccountModelResponse.fromJson(String source) => - ValidateAccountModelResponse.fromMap( - json.decode(source) as Map); -} diff --git a/lib/shared/domain/models/event/event_model.dart b/lib/shared/domain/models/event/event_model.dart deleted file mode 100644 index b645304..0000000 --- a/lib/shared/domain/models/event/event_model.dart +++ /dev/null @@ -1,167 +0,0 @@ -// ignore_for_file: public_member_api_docs, sort_constructors_first -import 'dart:convert'; - -import 'package:flutter/foundation.dart'; - -class EventModel { - String? id; - String? title; - List? participants; - DateTime? startTime; - DateTime? endTime; - bool? recurring; - String? status; - String? userId; - String? meetingLink; - String? otherDetails; - bool? allDay; - int? participantsCount; - DateTime? createdAt; - DateTime? updatedAt; - EventModel({ - this.id, - this.title, - this.participants, - this.startTime, - this.endTime, - this.recurring, - this.status, - this.userId, - this.meetingLink, - this.otherDetails, - this.allDay, - this.participantsCount, - this.createdAt, - this.updatedAt, - }); - - EventModel copyWith({ - String? id, - String? title, - List? participants, - DateTime? startTime, - DateTime? endTime, - bool? recurring, - String? status, - String? userId, - String? meetingLink, - String? otherDetails, - bool? allDay, - int? participantsCount, - DateTime? createdAt, - DateTime? updatedAt, - }) { - return EventModel( - id: id ?? this.id, - title: title ?? this.title, - participants: participants ?? this.participants, - startTime: startTime ?? this.startTime, - endTime: endTime ?? this.endTime, - recurring: recurring ?? this.recurring, - status: status ?? this.status, - userId: userId ?? this.userId, - meetingLink: meetingLink ?? this.meetingLink, - otherDetails: otherDetails ?? this.otherDetails, - allDay: allDay ?? this.allDay, - participantsCount: participantsCount ?? this.participantsCount, - createdAt: createdAt ?? this.createdAt, - updatedAt: updatedAt ?? this.updatedAt, - ); - } - - Map toMap() { - return { - 'id': id, - 'title': title, - 'participants': participants, - 'startTime': startTime?.millisecondsSinceEpoch, - 'endTime': endTime?.millisecondsSinceEpoch, - 'recurring': recurring, - 'status': status, - 'userId': userId, - 'meetingLink': meetingLink, - 'otherDetails': otherDetails, - 'allDay': allDay, - 'participantsCount': participantsCount, - 'createdAt': createdAt?.millisecondsSinceEpoch, - 'updatedAt': updatedAt?.millisecondsSinceEpoch, - }; - } - - factory EventModel.fromMap(Map map) { - return EventModel( - id: map['id'] ?? '', - title: map['title'] ?? '', - participants: map['participants'] == null - ? [] - : List.from(map["participants"].map((x) => x)), - startTime: map['startTime'] != null - ? DateTime.parse(map['startTime']) - : DateTime.now(), - endTime: map['endTime'] != null - ? DateTime.parse(map['endTime']) - : DateTime.now(), - recurring: map['recurring'] ?? false, - status: map['status'] ?? '', - userId: map['userId'] ?? '', - meetingLink: map['meetingLink'] ?? '', - otherDetails: map['otherDetails'] ?? '', - allDay: map['allDay'] ?? '', - participantsCount: map['participantsCount'] ?? '', - createdAt: map['createdAt'] != null - ? DateTime.parse(map['createdAt']) - : DateTime.now(), - updatedAt: map['updatedAt'] != null - ? DateTime.parse(map['updatedAt']) - : DateTime.now(), - ); - } - - String toJson() => json.encode(toMap()); - - factory EventModel.fromJson(String source) => - EventModel.fromMap(json.decode(source) as Map); - - @override - String toString() { - return 'EventModel(id: $id, title: $title, participants: $participants, startTime: $startTime, endTime: $endTime, recurring: $recurring, status: $status, userId: $userId, meetingLink: $meetingLink, otherDetails: $otherDetails, allDay: $allDay, participantsCount: $participantsCount, createdAt: $createdAt, updatedAt: $updatedAt)'; - } - - @override - bool operator ==(covariant EventModel other) { - if (identical(this, other)) return true; - - return other.id == id && - other.title == title && - listEquals(other.participants, participants) && - other.startTime == startTime && - other.endTime == endTime && - other.recurring == recurring && - other.status == status && - other.userId == userId && - other.meetingLink == meetingLink && - other.otherDetails == otherDetails && - other.allDay == allDay && - other.participantsCount == participantsCount && - other.createdAt == createdAt && - other.updatedAt == updatedAt; - } - - @override - int get hashCode { - return id.hashCode ^ - title.hashCode ^ - participants.hashCode ^ - startTime.hashCode ^ - endTime.hashCode ^ - recurring.hashCode ^ - status.hashCode ^ - userId.hashCode ^ - meetingLink.hashCode ^ - otherDetails.hashCode ^ - allDay.hashCode ^ - participantsCount.hashCode ^ - createdAt.hashCode ^ - updatedAt.hashCode; - } -} diff --git a/lib/shared/domain/models/favourties/favourites_model.dart b/lib/shared/domain/models/favourties/favourites_model.dart deleted file mode 100644 index 7070f59..0000000 --- a/lib/shared/domain/models/favourties/favourites_model.dart +++ /dev/null @@ -1,98 +0,0 @@ -// ignore_for_file: public_member_api_docs, sort_constructors_first -import 'dart:convert'; - -class FavouriteModel { - final int id; - final DateTime updatedAt; - final DateTime createdAt; - final bool deleted; - final bool suspended; - final String clientId; - final String symbol; - FavouriteModel({ - required this.id, - required this.updatedAt, - required this.createdAt, - required this.deleted, - required this.suspended, - required this.clientId, - required this.symbol, - }); - - FavouriteModel copyWith({ - int? id, - DateTime? updatedAt, - DateTime? createdAt, - bool? deleted, - bool? suspended, - String? clientId, - String? symbol, - }) { - return FavouriteModel( - id: id ?? this.id, - updatedAt: updatedAt ?? this.updatedAt, - createdAt: createdAt ?? this.createdAt, - deleted: deleted ?? this.deleted, - suspended: suspended ?? this.suspended, - clientId: clientId ?? this.clientId, - symbol: symbol ?? this.symbol, - ); - } - - Map toMap() { - return { - 'id': id, - 'updatedAt': updatedAt.millisecondsSinceEpoch, - 'createdAt': createdAt.millisecondsSinceEpoch, - 'deleted': deleted, - 'suspended': suspended, - 'clientId': clientId, - 'symbol': symbol, - }; - } - - factory FavouriteModel.fromMap(Map map) { - return FavouriteModel( - id: map['id'] ?? 0, - updatedAt: map['updatedAt'] == null - ? DateTime.now() - : DateTime.parse(map['updatedAt']), - createdAt: map['createdAt'] == null - ? DateTime.now() - : DateTime.parse(map['createdAt']), - deleted: map['deleted'] ?? false, - suspended: map['suspended'] ?? false, - clientId: map['clientId'] ?? '', - symbol: map['symbol'] ?? '', - ); - } - - String toJson() => json.encode(toMap()); - - factory FavouriteModel.fromJson(String source) => - FavouriteModel.fromMap(json.decode(source) as Map); - - @override - bool operator ==(covariant FavouriteModel other) { - if (identical(this, other)) return true; - - return other.id == id && - other.updatedAt == updatedAt && - other.createdAt == createdAt && - other.deleted == deleted && - other.suspended == suspended && - other.clientId == clientId && - other.symbol == symbol; - } - - @override - int get hashCode { - return id.hashCode ^ - updatedAt.hashCode ^ - createdAt.hashCode ^ - deleted.hashCode ^ - suspended.hashCode ^ - clientId.hashCode ^ - symbol.hashCode; - } -} diff --git a/lib/shared/domain/models/foreign_exchange/exchange_rate_model.dart b/lib/shared/domain/models/foreign_exchange/exchange_rate_model.dart deleted file mode 100644 index de1ec7d..0000000 --- a/lib/shared/domain/models/foreign_exchange/exchange_rate_model.dart +++ /dev/null @@ -1,107 +0,0 @@ -// ignore_for_file: public_member_api_docs, sort_constructors_first -import 'dart:convert'; - -class ExchangeRateModel { - final int timestamp; - final String baseCurrency; - final double usdRate; - final double gbpRate; - final double eurRate; - final double cadRate; - final double cnyRate; - final double audRate; - ExchangeRateModel({ - required this.timestamp, - required this.baseCurrency, - required this.usdRate, - required this.gbpRate, - required this.eurRate, - required this.cadRate, - required this.cnyRate, - required this.audRate, - }); - - ExchangeRateModel copyWith({ - int? timestamp, - String? base, - double? usdRate, - double? gbpRate, - double? eurRate, - double? cadRate, - double? cnyRate, - double? audRate, - }) { - return ExchangeRateModel( - timestamp: timestamp ?? this.timestamp, - baseCurrency: base ?? baseCurrency, - usdRate: usdRate ?? this.usdRate, - gbpRate: gbpRate ?? this.gbpRate, - eurRate: eurRate ?? this.eurRate, - cadRate: cadRate ?? this.cadRate, - cnyRate: cnyRate ?? this.cnyRate, - audRate: audRate ?? this.audRate, - ); - } - - Map toMap() { - return { - 'timestamp': timestamp, - 'base': baseCurrency, - 'USDRate': usdRate, - 'GBPRate': gbpRate, - 'EURRate': eurRate, - 'CADRate': cadRate, - 'CNYRate': cnyRate, - 'AUDRate': audRate, - }; - } - - factory ExchangeRateModel.fromMap(Map map) { - return ExchangeRateModel( - timestamp: map['timestamp'] ?? 0, - baseCurrency: map['base'] ?? '', - usdRate: map['USDRate'] ?? 0, - gbpRate: map['GBPRate'] ?? 0, - eurRate: map['EURRate'] ?? 0, - cadRate: map['CADRate'] ?? 0, - cnyRate: map['CNYRate'] ?? 0, - audRate: map['AUDRate'] ?? 0, - ); - } - - String toJson() => json.encode(toMap()); - - factory ExchangeRateModel.fromJson(String source) => - ExchangeRateModel.fromMap(json.decode(source) as Map); - - @override - String toString() { - return 'ExchangeRateModel(timestamp: $timestamp, base: $baseCurrency, usdRate: $usdRate, gbpRate: $gbpRate, eurRate: $eurRate, cadRate: $cadRate, cnyRate: $cnyRate, audRate: $audRate)'; - } - - @override - bool operator ==(covariant ExchangeRateModel other) { - if (identical(this, other)) return true; - - return other.timestamp == timestamp && - other.baseCurrency == baseCurrency && - other.usdRate == usdRate && - other.gbpRate == gbpRate && - other.eurRate == eurRate && - other.cadRate == cadRate && - other.cnyRate == cnyRate && - other.audRate == audRate; - } - - @override - int get hashCode { - return timestamp.hashCode ^ - baseCurrency.hashCode ^ - usdRate.hashCode ^ - gbpRate.hashCode ^ - eurRate.hashCode ^ - cadRate.hashCode ^ - cnyRate.hashCode ^ - audRate.hashCode; - } -} diff --git a/lib/shared/domain/models/historical_data/asset_index_model.dart b/lib/shared/domain/models/historical_data/asset_index_model.dart deleted file mode 100644 index fdc5007..0000000 --- a/lib/shared/domain/models/historical_data/asset_index_model.dart +++ /dev/null @@ -1,102 +0,0 @@ -// ignore_for_file: public_member_api_docs, sort_constructors_first -import 'dart:convert'; - -class AssetIndexDataModel { - final int id; - final DateTime updatedAt; - final DateTime createdAt; - final String stockCode; - final String price; - final DateTime date; - final DateTime lastProcessedDate; - AssetIndexDataModel({ - required this.id, - required this.updatedAt, - required this.createdAt, - required this.stockCode, - required this.price, - required this.date, - required this.lastProcessedDate, - }); - - AssetIndexDataModel copyWith({ - int? id, - DateTime? updatedAt, - DateTime? createdAt, - String? stockCode, - String? price, - DateTime? date, - DateTime? lastProcessedDate, - }) { - return AssetIndexDataModel( - id: id ?? this.id, - updatedAt: updatedAt ?? this.updatedAt, - createdAt: createdAt ?? this.createdAt, - stockCode: stockCode ?? this.stockCode, - price: price ?? this.price, - date: date ?? this.date, - lastProcessedDate: lastProcessedDate ?? this.lastProcessedDate, - ); - } - - Map toMap() { - return { - 'id': id, - 'updatedAt': updatedAt.millisecondsSinceEpoch, - 'createdAt': createdAt.millisecondsSinceEpoch, - 'stockCode': stockCode, - 'price': price, - 'date': date.millisecondsSinceEpoch, - 'lastProcessedDate': lastProcessedDate.millisecondsSinceEpoch, - }; - } - - factory AssetIndexDataModel.fromMap(Map map) { - return AssetIndexDataModel( - id: map['id'] ?? 0, - updatedAt: - DateTime.parse(map['updatedAt'] ?? DateTime.now().toIso8601String()), - createdAt: - DateTime.parse(map['createdAt'] ?? DateTime.now().toIso8601String()), - stockCode: map['stockCode'] ?? '', - price: map['price'] ?? '', - date: DateTime.parse(map['date'] ?? DateTime.now().toIso8601String()), - lastProcessedDate: DateTime.parse( - map['lastProcessedDate'] ?? DateTime.now().toIso8601String()), - ); - } - - String toJson() => json.encode(toMap()); - - factory AssetIndexDataModel.fromJson(String source) => - AssetIndexDataModel.fromMap(json.decode(source) as Map); - - @override - String toString() { - return 'AsiIndexModel(id: $id, updatedAt: $updatedAt, createdAt: $createdAt, stockCode: $stockCode, price: $price, date: $date, lastProcessedDate: $lastProcessedDate)'; - } - - @override - bool operator ==(covariant AssetIndexDataModel other) { - if (identical(this, other)) return true; - - return other.id == id && - other.updatedAt == updatedAt && - other.createdAt == createdAt && - other.stockCode == stockCode && - other.price == price && - other.date == date && - other.lastProcessedDate == lastProcessedDate; - } - - @override - int get hashCode { - return id.hashCode ^ - updatedAt.hashCode ^ - createdAt.hashCode ^ - stockCode.hashCode ^ - price.hashCode ^ - date.hashCode ^ - lastProcessedDate.hashCode; - } -} diff --git a/lib/shared/domain/models/kyc/kyc_model.dart b/lib/shared/domain/models/kyc/kyc_model.dart deleted file mode 100644 index e017371..0000000 --- a/lib/shared/domain/models/kyc/kyc_model.dart +++ /dev/null @@ -1,86 +0,0 @@ -// ignore_for_file: public_member_api_docs, sort_constructors_first -import 'dart:convert'; -import 'dart:io'; - -class KycStatusModel { - String? currentTier; - KycStatusModel({ - this.currentTier, - }); - - KycStatusModel copyWith({ - String? currentTier, - }) { - return KycStatusModel( - currentTier: currentTier ?? this.currentTier, - ); - } - - Map toMap() { - return { - 'currentTier': currentTier, - }; - } - - factory KycStatusModel.fromMap(Map map) { - return KycStatusModel( - currentTier: - map['currentTier'] != null ? map['currentTier'] as String : '', - ); - } - - String toJson() => json.encode(toMap()); - - factory KycStatusModel.fromJson(String source) => - KycStatusModel.fromMap(json.decode(source) as Map); - - @override - String toString() => 'KycStatusModel(currentTier: $currentTier)'; - - @override - bool operator ==(covariant KycStatusModel other) { - if (identical(this, other)) return true; - - return other.currentTier == currentTier; - } - - @override - int get hashCode => currentTier.hashCode; -} - -class TierTwoUpdateModel { - File? address; - File? passportPhotograph; - File? signature; - String? addressFileName; - String? passportPhotographFileName; - String? signatureFileName; - - TierTwoUpdateModel({ - required this.address, - required this.passportPhotograph, - required this.signature, - required this.addressFileName, - required this.passportPhotographFileName, - required this.signatureFileName, - }); - - TierTwoUpdateModel copyWith({ - File? address, - File? passportPhotograph, - File? signature, - String? addressFileName, - String? passportPhotographFileName, - String? signatureFileName, - }) { - return TierTwoUpdateModel( - address: address ?? this.address, - passportPhotograph: passportPhotograph ?? this.passportPhotograph, - signature: signature ?? this.signature, - addressFileName: addressFileName ?? this.addressFileName, - passportPhotographFileName: - passportPhotographFileName ?? this.passportPhotographFileName, - signatureFileName: signatureFileName ?? this.signatureFileName, - ); - } -} diff --git a/lib/shared/domain/models/kyc_be/embassy_model.dart b/lib/shared/domain/models/kyc_be/embassy_model.dart deleted file mode 100644 index f52ecb4..0000000 --- a/lib/shared/domain/models/kyc_be/embassy_model.dart +++ /dev/null @@ -1,100 +0,0 @@ -// ignore_for_file: public_member_api_docs, sort_constructors_first - -class EmbassyModel { - int id; - String name; - String addressOne; - String addressTwo; - String city; - String state; - String country; - EmbassyModel({ - required this.id, - required this.name, - required this.addressOne, - required this.addressTwo, - required this.city, - required this.state, - required this.country, - }); - - EmbassyModel copyWith({ - int? id, - String? name, - String? addressOne, - String? addressTwo, - String? city, - String? state, - String? country, - }) { - return EmbassyModel( - id: id ?? this.id, - name: name ?? this.name, - addressOne: addressOne ?? this.addressOne, - addressTwo: addressTwo ?? this.addressTwo, - city: city ?? this.city, - state: state ?? this.state, - country: country ?? this.country, - ); - } - - Map toMap() { - return { - 'id': id, - 'name': name, - 'addressOne': addressOne, - 'addressTwo': addressTwo, - 'city': city, - 'state': state, - 'country': country, - }; - } - - factory EmbassyModel.fromMap(Map map) { - return EmbassyModel( - id: map['id'] ?? 0, - name: map['name'] ?? '', - addressOne: map['addressOne'] ?? '', - addressTwo: map['addressTwo'] ?? '', - city: map['city'] ?? '', - state: map['state'] ?? '', - country: map['country'] ?? '', - ); - } - - factory EmbassyModel.initial() { - return EmbassyModel( - id: 0, - name: '', - addressOne: '', - addressTwo: '', - city: '', - state: '', - country: '', - ); - } - - @override - bool operator ==(covariant EmbassyModel other) { - if (identical(this, other)) return true; - - return other.id == id && - other.name == name && - other.addressOne == addressOne && - other.addressTwo == addressTwo && - other.city == city && - other.state == state && - other.country == country; - } - - @override - int get hashCode { - return id.hashCode ^ - name.hashCode ^ - addressOne.hashCode ^ - addressTwo.hashCode ^ - city.hashCode ^ - state.hashCode ^ - country.hashCode; - } -} diff --git a/lib/shared/domain/models/neulogic/bonds_products_model.dart b/lib/shared/domain/models/neulogic/bonds_products_model.dart deleted file mode 100644 index 6400cd7..0000000 --- a/lib/shared/domain/models/neulogic/bonds_products_model.dart +++ /dev/null @@ -1,282 +0,0 @@ -// ignore_for_file: public_member_api_docs, sort_constructors_first -import 'dart:convert'; - -import 'package:flutter/foundation.dart'; - -class BondsProductResponse { - int? statusCode; - String? message; - List? data; - BondsProductResponse({ - this.statusCode, - this.message, - this.data, - }); - - BondsProductResponse copyWith({ - int? statusCode, - String? message, - List? data, - }) { - return BondsProductResponse( - statusCode: statusCode ?? this.statusCode, - message: message ?? this.message, - data: data ?? this.data, - ); - } - - Map toMap() { - return { - 'statusCode': statusCode, - 'message': message, - 'data': - data == null ? [] : List.from(data!.map((x) => x.toMap())), - }; - } - - factory BondsProductResponse.fromMap(Map map) { - return BondsProductResponse( - statusCode: map['statusCode'] != null ? map['statusCode'] as int : null, - message: map['message'] != null ? map['message'] as String : null, - data: map['data'] != null - ? List.from( - map['data'].map((x) => BondsProductsModel.fromMap(x))) - : null, - ); - } - - String toJson() => json.encode(toMap()); - - factory BondsProductResponse.fromJson(String source) => - BondsProductResponse.fromMap(json.decode(source) as Map); - - @override - String toString() => - 'BondsProductResponse(statusCode: $statusCode, message: $message, data: $data)'; - - @override - bool operator ==(covariant BondsProductResponse other) { - if (identical(this, other)) return true; - - return other.statusCode == statusCode && - other.message == message && - listEquals(other.data, data); - } - - @override - int get hashCode => statusCode.hashCode ^ message.hashCode ^ data.hashCode; -} - -class BondsProductsModel { - String? applyManagementFeeYn; - String? applyCommissionYn; - String? applyCustodyFeeYn; - String? boaId; - String? currencyDescription; - String? currencyId; - String? securityDescription; - String? securityIssuer; - String? maturityDate; - num? couponRate; - num? couponPaymentsPerYear; - String? nextCouponDate; - num? minimumPurchaseUnits; - num? maximumPurchaseUnits; - num? minimumPurchasePrice; - num? maximumPurchasePrice; - String? productDescription; - String? productId; - BondsProductsModel({ - this.applyManagementFeeYn, - this.applyCommissionYn, - this.applyCustodyFeeYn, - this.boaId, - this.currencyDescription, - this.currencyId, - this.securityDescription, - this.securityIssuer, - this.maturityDate, - this.couponRate, - this.couponPaymentsPerYear, - this.nextCouponDate, - this.minimumPurchaseUnits, - this.maximumPurchaseUnits, - this.minimumPurchasePrice, - this.maximumPurchasePrice, - this.productDescription, - this.productId, - }); - - BondsProductsModel copyWith({ - String? applyManagementFeeYn, - String? applyCommissionYn, - String? applyCustodyFeeYn, - String? boaId, - String? currencyDescription, - String? currencyId, - String? securityDescription, - String? securityIssuer, - String? maturityDate, - num? couponRate, - num? couponPaymentsPerYear, - String? nextCouponDate, - num? minimumPurchaseUnits, - num? maximumPurchaseUnits, - num? minimumPurchasePrice, - num? maximumPurchasePrice, - String? productDescription, - String? productId, - }) { - return BondsProductsModel( - applyManagementFeeYn: applyManagementFeeYn ?? this.applyManagementFeeYn, - applyCommissionYn: applyCommissionYn ?? this.applyCommissionYn, - applyCustodyFeeYn: applyCustodyFeeYn ?? this.applyCustodyFeeYn, - boaId: boaId ?? this.boaId, - currencyDescription: currencyDescription ?? this.currencyDescription, - currencyId: currencyId ?? this.currencyId, - securityDescription: securityDescription ?? this.securityDescription, - securityIssuer: securityIssuer ?? this.securityIssuer, - maturityDate: maturityDate ?? this.maturityDate, - couponRate: couponRate ?? this.couponRate, - couponPaymentsPerYear: - couponPaymentsPerYear ?? this.couponPaymentsPerYear, - nextCouponDate: nextCouponDate ?? this.nextCouponDate, - minimumPurchaseUnits: minimumPurchaseUnits ?? this.minimumPurchaseUnits, - maximumPurchaseUnits: maximumPurchaseUnits ?? this.maximumPurchaseUnits, - minimumPurchasePrice: minimumPurchasePrice ?? this.minimumPurchasePrice, - maximumPurchasePrice: maximumPurchasePrice ?? this.maximumPurchasePrice, - productDescription: productDescription ?? this.productDescription, - productId: productId ?? this.productId, - ); - } - - Map toMap() { - return { - 'applyManagementFeeYn': applyManagementFeeYn, - 'applyCommissionYn': applyCommissionYn, - 'applyCustodyFeeYn': applyCustodyFeeYn, - 'boaId': boaId, - 'currencyDescription': currencyDescription, - 'currencyId': currencyId, - 'securityDescription': securityDescription, - 'securityIssuer': securityIssuer, - 'maturityDate': maturityDate, - 'couponRate': couponRate, - 'couponPaymentsPerYear': couponPaymentsPerYear, - 'nextCouponDate': nextCouponDate, - 'minimumPurchaseUnits': minimumPurchaseUnits, - 'maximumPurchaseUnits': maximumPurchaseUnits, - 'minimumPurchasePrice': minimumPurchasePrice, - 'maximumPurchasePrice': maximumPurchasePrice, - 'productDescription': productDescription, - 'productId': productId, - }; - } - - factory BondsProductsModel.fromMap(Map map) { - return BondsProductsModel( - applyManagementFeeYn: map['APPLY_MANAGEMENT_FEE_YN'] != null - ? map['APPLY_MANAGEMENT_FEE_YN'] as String - : null, - applyCommissionYn: map['APPLY_COMMISSION_YN'] != null - ? map['APPLY_COMMISSION_YN'] as String - : null, - applyCustodyFeeYn: map['APPLY_CUSTODY_FEE_YN'] != null - ? map['APPLY_CUSTODY_FEE_YN'] as String - : null, - boaId: map['BOA_ID'] != null ? map['BOA_ID'] as String : null, - currencyDescription: map['CURRENCY_DESCRIPTION'] != null - ? map['CURRENCY_DESCRIPTION'] as String - : null, - currencyId: - map['CURRENCY_ID'] != null ? map['CURRENCY_ID'] as String : null, - securityDescription: map['SECURITY_DESCRIPTION'] != null - ? map['SECURITY_DESCRIPTION'] as String - : null, - securityIssuer: map['SECURITY_ISSUER'] != null - ? map['SECURITY_ISSUER'] as String - : null, - maturityDate: - map['MATURITY_DATE'] != null ? map['MATURITY_DATE'] as String : null, - couponRate: map['COUPON_RATE'] != null ? map['COUPON_RATE'] as num : null, - couponPaymentsPerYear: map['COUPON_PAYMENTS_PER_YEAR'] != null - ? map['COUPON_PAYMENTS_PER_YEAR'] as num - : null, - nextCouponDate: map['NEXT_COUPON_DATE'] != null - ? map['NEXT_COUPON_DATE'] as String - : null, - minimumPurchaseUnits: map['MINIMUM_PURCHASE_UNITS'] != null - ? map['MINIMUM_PURCHASE_UNITS'] as num - : null, - maximumPurchaseUnits: map['MAXIMUM_PURCHASE_UNITS'] != null - ? map['MAXIMUM_PURCHASE_UNITS'] as num - : null, - minimumPurchasePrice: map['MINIMUM_PURCHASE_PRICE'] != null - ? map['MINIMUM_PURCHASE_PRICE'] as num - : null, - maximumPurchasePrice: map['MAXIMUM_PURCHASE_PRICE'] != null - ? map['MAXIMUM_PURCHASE_PRICE'] as num - : null, - productDescription: map['PRODUCT_DESCRIPTION'] != null - ? map['PRODUCT_DESCRIPTION'] as String - : null, - productId: map['PRODUCT_ID'] != null ? map['PRODUCT_ID'] as String : null, - ); - } - - String toJson() => json.encode(toMap()); - - factory BondsProductsModel.fromJson(String source) => - BondsProductsModel.fromMap(json.decode(source) as Map); - - @override - String toString() { - return 'BondsProductsModel(applyManagementFeeYn: $applyManagementFeeYn, applyCommissionYn: $applyCommissionYn, applyCustodyFeeYn: $applyCustodyFeeYn, boaId: $boaId, currencyDescription: $currencyDescription, currencyId: $currencyId, securityDescription: $securityDescription, securityIssuer: $securityIssuer, maturityDate: $maturityDate, couponRate: $couponRate, couponPaymentsPerYear: $couponPaymentsPerYear, nextCouponDate: $nextCouponDate, minimumPurchaseUnits: $minimumPurchaseUnits, maximumPurchaseUnits: $maximumPurchaseUnits, minimumPurchasePrice: $minimumPurchasePrice, maximumPurchasePrice: $maximumPurchasePrice, productDescription: $productDescription, productId: $productId)'; - } - - @override - bool operator ==(covariant BondsProductsModel other) { - if (identical(this, other)) return true; - - return other.applyManagementFeeYn == applyManagementFeeYn && - other.applyCommissionYn == applyCommissionYn && - other.applyCustodyFeeYn == applyCustodyFeeYn && - other.boaId == boaId && - other.currencyDescription == currencyDescription && - other.currencyId == currencyId && - other.securityDescription == securityDescription && - other.securityIssuer == securityIssuer && - other.maturityDate == maturityDate && - other.couponRate == couponRate && - other.couponPaymentsPerYear == couponPaymentsPerYear && - other.nextCouponDate == nextCouponDate && - other.minimumPurchaseUnits == minimumPurchaseUnits && - other.maximumPurchaseUnits == maximumPurchaseUnits && - other.minimumPurchasePrice == minimumPurchasePrice && - other.maximumPurchasePrice == maximumPurchasePrice && - other.productDescription == productDescription && - other.productId == productId; - } - - @override - int get hashCode { - return applyManagementFeeYn.hashCode ^ - applyCommissionYn.hashCode ^ - applyCustodyFeeYn.hashCode ^ - boaId.hashCode ^ - currencyDescription.hashCode ^ - currencyId.hashCode ^ - securityDescription.hashCode ^ - securityIssuer.hashCode ^ - maturityDate.hashCode ^ - couponRate.hashCode ^ - couponPaymentsPerYear.hashCode ^ - nextCouponDate.hashCode ^ - minimumPurchaseUnits.hashCode ^ - maximumPurchaseUnits.hashCode ^ - minimumPurchasePrice.hashCode ^ - maximumPurchasePrice.hashCode ^ - productDescription.hashCode ^ - productId.hashCode; - } -} diff --git a/lib/shared/domain/models/neulogic/cash_account_model.dart b/lib/shared/domain/models/neulogic/cash_account_model.dart deleted file mode 100644 index 33bd778..0000000 --- a/lib/shared/domain/models/neulogic/cash_account_model.dart +++ /dev/null @@ -1,184 +0,0 @@ -// ignore_for_file: public_member_api_docs, sort_constructors_first -import 'dart:convert'; - -class FixedIncomeCashAccountModel { - final String customerNo; - final String accountNo; - final String accountName; - final String nubanAccountNo; - final String alternateAccountNo; - //final String externalReference; - final num availableBalance; - final num currentBalance; - final num accruedCreditInterest; - final num accruedDebitInterest; - final String currencyId; - final String currencyName; - final String productId; - final String productName; - final String dateOpened; - final String boaId; - final String sourceApp; -// final String sourceRef; - FixedIncomeCashAccountModel({ - required this.customerNo, - required this.accountNo, - required this.accountName, - required this.nubanAccountNo, - required this.alternateAccountNo, - //required this.externalReference, - required this.availableBalance, - required this.currentBalance, - required this.accruedCreditInterest, - required this.accruedDebitInterest, - required this.currencyId, - required this.currencyName, - required this.productId, - required this.productName, - required this.dateOpened, - required this.boaId, - required this.sourceApp, - // required this.sourceRef, - }); - - FixedIncomeCashAccountModel copyWith({ - String? customerNo, - String? accountNo, - String? accountName, - String? nubanAccountNo, - String? alternateAccountNo, - String? externalReference, - num? availableBalance, - num? currentBalance, - num? accruedCreditInterest, - num? accruedDebitInterest, - String? currencyId, - String? currencyName, - String? productId, - String? productName, - String? dateOpened, - String? boaId, - String? sourceApp, - String? sourceRef, - }) { - return FixedIncomeCashAccountModel( - customerNo: customerNo ?? this.customerNo, - accountNo: accountNo ?? this.accountNo, - accountName: accountName ?? this.accountName, - nubanAccountNo: nubanAccountNo ?? this.nubanAccountNo, - alternateAccountNo: alternateAccountNo ?? this.alternateAccountNo, - //externalReference: externalReference ?? this.externalReference, - availableBalance: availableBalance ?? this.availableBalance, - currentBalance: currentBalance ?? this.currentBalance, - accruedCreditInterest: - accruedCreditInterest ?? this.accruedCreditInterest, - accruedDebitInterest: accruedDebitInterest ?? this.accruedDebitInterest, - currencyId: currencyId ?? this.currencyId, - currencyName: currencyName ?? this.currencyName, - productId: productId ?? this.productId, - productName: productName ?? this.productName, - dateOpened: dateOpened ?? this.dateOpened, - boaId: boaId ?? this.boaId, - sourceApp: sourceApp ?? this.sourceApp, - //sourceRef: sourceRef ?? this.sourceRef, - ); - } - - Map toMap() { - return { - 'customerNo': customerNo, - 'accountNo': accountNo, - 'accountName': accountName, - 'nubanAccountNo': nubanAccountNo, - 'alternateAccountNo': alternateAccountNo, - //'externalReference': externalReference, - 'availableBalance': availableBalance, - 'currentBalance': currentBalance, - 'accruedCreditInterest': accruedCreditInterest, - 'accruedDebitInterest': accruedDebitInterest, - 'currencyId': currencyId, - 'currencyName': currencyName, - 'productId': productId, - 'productName': productName, - 'dateOpened': dateOpened, - 'boaId': boaId, - 'sourceApp': sourceApp, - //'sourceRef': sourceRef, - }; - } - - factory FixedIncomeCashAccountModel.fromMap(Map map) { - return FixedIncomeCashAccountModel( - customerNo: map['CUSTOMER_NO'] ?? '', - accountNo: map['ACCOUNT_NO'] ?? '', - accountName: map['ACCOUNT_NAME'] ?? '', - nubanAccountNo: map['NUBAN_ACCOUNT_NO'] ?? '', - alternateAccountNo: map['ALTERNATE_ACCOUNT_NO'] ?? '', - // externalReference: map['EXTERNAL_REFERENCE'] ?? '', - availableBalance: map['AVAILABLE_BALANCE'] ?? 0, - currentBalance: map['CURRENT_BALANCE'] ?? 0, - accruedCreditInterest: map['ACCRUED_CREDIT_INTEREST'] ?? 0, - accruedDebitInterest: map['ACCRUED_DEBIT_INTEREST'] ?? 0, - currencyId: map['CURRENCY_ID'] ?? '', - currencyName: map['CURRENCY_NAME'] ?? '', - productId: map['PRODUCT_ID'] ?? '', - productName: map['PRODUCT_NAME'] ?? '', - dateOpened: map['DATE_OPENED'] ?? '', - boaId: map['BOA_ID'] ?? '', - sourceApp: map['SOURCE_APP'] ?? '', - // sourceRef: map['SOURCE_REF'] ?? '', - ); - } - - String toJson() => json.encode(toMap()); - - factory FixedIncomeCashAccountModel.fromJson(String source) => - FixedIncomeCashAccountModel.fromMap( - json.decode(source) as Map); - - @override - bool operator ==(covariant FixedIncomeCashAccountModel other) { - if (identical(this, other)) return true; - - return other.customerNo == customerNo && - other.accountNo == accountNo && - other.accountName == accountName && - other.nubanAccountNo == nubanAccountNo && - other.alternateAccountNo == alternateAccountNo && - // other.externalReference == externalReference && - other.availableBalance == availableBalance && - other.currentBalance == currentBalance && - other.accruedCreditInterest == accruedCreditInterest && - other.accruedDebitInterest == accruedDebitInterest && - other.currencyId == currencyId && - other.currencyName == currencyName && - other.productId == productId && - other.productName == productName && - other.dateOpened == dateOpened && - other.boaId == boaId && - other.sourceApp == sourceApp; - // other.sourceRef == sourceRef; - } - - @override - int get hashCode { - return customerNo.hashCode ^ - accountNo.hashCode ^ - accountName.hashCode ^ - nubanAccountNo.hashCode ^ - alternateAccountNo.hashCode ^ - // externalReference.hashCode ^ - availableBalance.hashCode ^ - currentBalance.hashCode ^ - accruedCreditInterest.hashCode ^ - accruedDebitInterest.hashCode ^ - currencyId.hashCode ^ - currencyName.hashCode ^ - productId.hashCode ^ - productName.hashCode ^ - dateOpened.hashCode ^ - boaId.hashCode ^ - sourceApp.hashCode; - // sourceRef.hashCode; - } -} diff --git a/lib/shared/domain/models/neulogic/cash_account_transaction_model.dart b/lib/shared/domain/models/neulogic/cash_account_transaction_model.dart deleted file mode 100644 index a152588..0000000 --- a/lib/shared/domain/models/neulogic/cash_account_transaction_model.dart +++ /dev/null @@ -1,132 +0,0 @@ -import 'dart:convert'; - -CashAccountTransactionResponseModel cashAccountTransactionResponseModelFromJson( - String str) => - CashAccountTransactionResponseModel.fromJson(json.decode(str)); - -String cashAccountTransactionResponseModelToJson( - CashAccountTransactionResponseModel data) => - json.encode(data.toJson()); - -class CashAccountTransactionResponseModel { - final String status; - final List result; - - CashAccountTransactionResponseModel({ - required this.status, - required this.result, - }); - - factory CashAccountTransactionResponseModel.fromJson( - Map json) => - CashAccountTransactionResponseModel( - status: json["status"], - result: - List.from(json["result"].map((x) => Result.fromJson(x))), - ); - - Map toJson() => { - "status": status, - "result": List.from(result.map((x) => x.toJson())), - }; -} - -class Result { - final List transactions; - - Result({ - required this.transactions, - }); - - factory Result.fromJson(Map json) => Result( - transactions: List.from( - json["GetCashAccountTransactionByCurrentDate"] - .map((x) => CashAccountTransactionModel.fromJson(x))), - ); - - Map toJson() => { - "GetCashAccountTransactionByCurrentDate": - List.from(transactions.map((x) => x.toJson())), - }; -} - -class CashAccountTransactionModel { - final String accountName; - final String accountNo; - final dynamic alternateAccountNo; - final String businessDate; - final dynamic chequeReference; - final String currencyId; - final String currencyName; - final String customerNo; - final String effectiveDate; - final String isReversed; - final dynamic nubanAccountNo; - final String processingDate; - final double transactionAmount; - final String transactionDescription; - final int transactionNumber; - final String transactionReference; - final String transactionType; - - CashAccountTransactionModel({ - required this.accountName, - required this.accountNo, - required this.alternateAccountNo, - required this.businessDate, - required this.chequeReference, - required this.currencyId, - required this.currencyName, - required this.customerNo, - required this.effectiveDate, - required this.isReversed, - required this.nubanAccountNo, - required this.processingDate, - required this.transactionAmount, - required this.transactionDescription, - required this.transactionNumber, - required this.transactionReference, - required this.transactionType, - }); - - factory CashAccountTransactionModel.fromJson(Map json) => - CashAccountTransactionModel( - accountName: json["ACCOUNT_NAME"], - accountNo: json["ACCOUNT_NO"], - alternateAccountNo: json["ALTERNATE_ACCOUNT_NO"], - businessDate: json["BUSINESS_DATE"], - chequeReference: json["CHEQUE_REFERENCE"], - currencyId: json["CURRENCY_ID"], - currencyName: json["CURRENCY_NAME"], - customerNo: json["CUSTOMER_NO"], - effectiveDate: json["EFFECTIVE_DATE"], - isReversed: json["IS_REVERSED"], - nubanAccountNo: json["NUBAN_ACCOUNT_NO"], - processingDate: json["PROCESSING_DATE"], - transactionAmount: json["TRANSACTION_AMOUNT"]?.toDouble(), - transactionDescription: json["TRANSACTION_DESCRIPTION"], - transactionNumber: json["TRANSACTION_NUMBER"], - transactionReference: json["TRANSACTION_REFERENCE"], - transactionType: json["TRANSACTION_TYPE"], - ); - - Map toJson() => { - "ACCOUNT_NAME": accountName, - "ACCOUNT_NO": accountNo, - "ALTERNATE_ACCOUNT_NO": alternateAccountNo, - "BUSINESS_DATE": businessDate, - "CHEQUE_REFERENCE": chequeReference, - "CURRENCY_ID": currencyId, - "CURRENCY_NAME": currencyName, - "CUSTOMER_NO": customerNo, - "EFFECTIVE_DATE": effectiveDate, - "IS_REVERSED": isReversed, - "NUBAN_ACCOUNT_NO": nubanAccountNo, - "PROCESSING_DATE": processingDate, - "TRANSACTION_AMOUNT": transactionAmount, - "TRANSACTION_DESCRIPTION": transactionDescription, - "TRANSACTION_NUMBER": transactionNumber, - "TRANSACTION_REFERENCE": transactionReference, - "TRANSACTION_TYPE": transactionType, - }; -} diff --git a/lib/shared/domain/models/neulogic/client_product_model.dart b/lib/shared/domain/models/neulogic/client_product_model.dart deleted file mode 100644 index 926879e..0000000 --- a/lib/shared/domain/models/neulogic/client_product_model.dart +++ /dev/null @@ -1,123 +0,0 @@ -// ignore_for_file: public_member_api_docs, sort_constructors_first -import 'dart:convert'; - -class ClientProductModel { - final String investmentType; - final String effectiveDate; - final String maturityDate; - final num amountAtMaturity; - final num rate; - final num principal; - final num accruedInterest; - final num marketValue; - final String nextCouponDate; - final String instrumentName; - ClientProductModel({ - required this.investmentType, - required this.effectiveDate, - required this.maturityDate, - required this.amountAtMaturity, - required this.rate, - required this.principal, - required this.accruedInterest, - required this.marketValue, - required this.nextCouponDate, - required this.instrumentName, - }); - - ClientProductModel copyWith({ - String? investmentType, - String? effectiveDate, - String? maturityDate, - num? amountAtMaturity, - num? rate, - num? principal, - num? accruedInterest, - num? marketValue, - String? nextCouponDate, - String? instrumentName, - }) { - return ClientProductModel( - investmentType: investmentType ?? this.investmentType, - effectiveDate: effectiveDate ?? this.effectiveDate, - maturityDate: maturityDate ?? this.maturityDate, - amountAtMaturity: amountAtMaturity ?? this.amountAtMaturity, - rate: rate ?? this.rate, - principal: principal ?? this.principal, - accruedInterest: accruedInterest ?? this.accruedInterest, - marketValue: marketValue ?? this.marketValue, - nextCouponDate: nextCouponDate ?? this.nextCouponDate, - instrumentName: instrumentName ?? this.instrumentName, - ); - } - - Map toMap() { - return { - 'investmentType': investmentType, - 'effectiveDate': effectiveDate, - 'maturityDate': maturityDate, - 'amountAtMaturity': amountAtMaturity, - 'rate': rate, - 'principal': principal, - 'accruedInterest': accruedInterest, - 'marketValue': marketValue, - 'nextCouponDate': nextCouponDate, - 'instrumentName': instrumentName, - }; - } - - factory ClientProductModel.fromMap(Map map) { - return ClientProductModel( - investmentType: map['investmentType'] ?? '', - effectiveDate: map['effectiveDate'] ?? '', - maturityDate: map['maturityDate'] ?? '', - amountAtMaturity: map['amountAtMaturity'] ?? 0, - rate: map['rate'] ?? 0, - principal: map['principal'] ?? 0, - accruedInterest: map['accruedInterest'] ?? 0, - marketValue: map['marketValue'] ?? 0, - nextCouponDate: map['nextCouponDate'] ?? '', - instrumentName: map['instrumentName'] ?? '', - ); - } - - String toJson() => json.encode(toMap()); - - factory ClientProductModel.fromJson(String source) => - ClientProductModel.fromMap(json.decode(source) as Map); - - @override - String toString() { - return 'ClientProductModel(investmentType: $investmentType, effectiveDate: $effectiveDate, maturityDate: $maturityDate, amountAtMaturity: $amountAtMaturity, rate: $rate, principal: $principal, accruedInterest: $accruedInterest, marketValue: $marketValue, nextCouponDate: $nextCouponDate, instrumentName: $instrumentName)'; - } - - @override - bool operator ==(covariant ClientProductModel other) { - if (identical(this, other)) return true; - - return other.investmentType == investmentType && - other.effectiveDate == effectiveDate && - other.maturityDate == maturityDate && - other.amountAtMaturity == amountAtMaturity && - other.rate == rate && - other.principal == principal && - other.accruedInterest == accruedInterest && - other.marketValue == marketValue && - other.nextCouponDate == nextCouponDate && - other.instrumentName == instrumentName; - } - - @override - int get hashCode { - return investmentType.hashCode ^ - effectiveDate.hashCode ^ - maturityDate.hashCode ^ - amountAtMaturity.hashCode ^ - rate.hashCode ^ - principal.hashCode ^ - accruedInterest.hashCode ^ - marketValue.hashCode ^ - nextCouponDate.hashCode ^ - instrumentName.hashCode; - } -} diff --git a/lib/shared/domain/models/neulogic/featured_product_model.dart b/lib/shared/domain/models/neulogic/featured_product_model.dart deleted file mode 100644 index 95eb80f..0000000 --- a/lib/shared/domain/models/neulogic/featured_product_model.dart +++ /dev/null @@ -1,46 +0,0 @@ -class FeaturedProductModel { - int id; - String name; - String description; - String pictureUrl; - int adPosition; - dynamic webUrl; - int active; - DateTime createdAt; - - FeaturedProductModel({ - required this.id, - required this.name, - required this.description, - required this.pictureUrl, - required this.adPosition, - required this.webUrl, - required this.active, - required this.createdAt, - }); - - factory FeaturedProductModel.fromJson(Map json) => - FeaturedProductModel( - id: json["id"] ?? 0, - name: json["name"] ?? '', - description: json["description"] ?? '', - pictureUrl: json["picture_url"] ?? '', - adPosition: json["ad_position"] ?? '', - webUrl: json["web_url"] ?? '', - active: json["active"] ?? '', - createdAt: json["created_at"] == null - ? DateTime.now() - : DateTime.parse(json["created_at"]), - ); - - Map toJson() => { - "id": id, - "name": name, - "description": description, - "picture_url": pictureUrl, - "ad_position": adPosition, - "web_url": webUrl, - "active": active, - "created_at": createdAt.toIso8601String(), - }; -} diff --git a/lib/shared/domain/models/neulogic/initiate_payment_model.dart b/lib/shared/domain/models/neulogic/initiate_payment_model.dart deleted file mode 100644 index bfd842c..0000000 --- a/lib/shared/domain/models/neulogic/initiate_payment_model.dart +++ /dev/null @@ -1,101 +0,0 @@ -// ignore_for_file: public_member_api_docs, sort_constructors_first -import 'dart:convert'; - -class InitiatePaymentModel { - num amount; - String email; - String accountId; - String channel; - String callbackUrl; - String productType; - InitiatePaymentModel({ - required this.amount, - required this.email, - required this.accountId, - required this.channel, - required this.callbackUrl, - required this.productType, - }); - - InitiatePaymentModel copyWith({ - num? amount, - String? email, - String? accountId, - String? channel, - String? callbackUrl, - String? productType, - }) { - return InitiatePaymentModel( - amount: amount ?? this.amount, - email: email ?? this.email, - accountId: accountId ?? this.accountId, - channel: channel ?? this.channel, - callbackUrl: callbackUrl ?? this.callbackUrl, - productType: productType ?? this.productType, - ); - } - - Map toMap() { - return { - 'amount': amount, - 'email': email, - 'accountId': accountId, - 'channel': channel.toLowerCase(), - 'callback_url': callbackUrl, - 'productType': productType, - }; - } - - factory InitiatePaymentModel.fromMap(Map map) { - return InitiatePaymentModel( - amount: map['amount'] as num, - email: map['email'] as String, - accountId: map['accountId'] as String, - channel: map['channel'] as String, - callbackUrl: map['callbackUrl'] as String, - productType: map['productType'] as String, - ); - } - - factory InitiatePaymentModel.initial() { - return InitiatePaymentModel( - amount: 0, - email: '', - accountId: '', - channel: '', - callbackUrl: '', - productType: ''); - } - - String toJson() => json.encode(toMap()); - - factory InitiatePaymentModel.fromJson(String source) => - InitiatePaymentModel.fromMap(json.decode(source) as Map); - - @override - String toString() { - return 'InitiatePaymentModel(amount: $amount, email: $email, accountId: $accountId, channel: $channel, callbackUrl: $callbackUrl, productType: $productType)'; - } - - @override - bool operator ==(covariant InitiatePaymentModel other) { - if (identical(this, other)) return true; - - return other.amount == amount && - other.email == email && - other.accountId == accountId && - other.channel == channel && - other.callbackUrl == callbackUrl && - other.productType == productType; - } - - @override - int get hashCode { - return amount.hashCode ^ - email.hashCode ^ - accountId.hashCode ^ - channel.hashCode ^ - callbackUrl.hashCode ^ - productType.hashCode; - } -} diff --git a/lib/shared/domain/models/neulogic/initiate_payment_response_model.dart b/lib/shared/domain/models/neulogic/initiate_payment_response_model.dart deleted file mode 100644 index 6d850bf..0000000 --- a/lib/shared/domain/models/neulogic/initiate_payment_response_model.dart +++ /dev/null @@ -1,72 +0,0 @@ -// ignore_for_file: public_member_api_docs, sort_constructors_first -import 'dart:convert'; - -class InitiatePaymentResponseData { - String authorizationUrl; - String accessCode; - String reference; - InitiatePaymentResponseData({ - required this.authorizationUrl, - required this.accessCode, - required this.reference, - }); - - InitiatePaymentResponseData copyWith({ - String? authorizationUrl, - String? accessCode, - String? reference, - }) { - return InitiatePaymentResponseData( - authorizationUrl: authorizationUrl ?? this.authorizationUrl, - accessCode: accessCode ?? this.accessCode, - reference: reference ?? this.reference, - ); - } - - Map toMap() { - return { - 'authorization_url': authorizationUrl, - 'accessCode': accessCode, - 'reference': reference, - }; - } - - factory InitiatePaymentResponseData.fromMap(Map map) { - return InitiatePaymentResponseData( - authorizationUrl: map['authorization_url'] ?? '', - accessCode: map['access_code'] ?? '', - reference: map['reference'] ?? '', - ); - } - - factory InitiatePaymentResponseData.initial() { - return InitiatePaymentResponseData( - authorizationUrl: '', - accessCode: '', - reference: '', - ); - } - - String toJson() => json.encode(toMap()); - - factory InitiatePaymentResponseData.fromJson(String source) => - InitiatePaymentResponseData.fromMap( - json.decode(source) as Map); - - @override - String toString() => - 'InitiatePaymentResponseData(authorizationUrl: $authorizationUrl, accessCode: $accessCode, reference: $reference)'; - - @override - bool operator ==(covariant InitiatePaymentResponseData other) { - if (identical(this, other)) return true; - - return other.authorizationUrl == authorizationUrl && - other.accessCode == accessCode && - other.reference == reference; - } - - @override - int get hashCode => - authorizationUrl.hashCode ^ accessCode.hashCode ^ reference.hashCode; -} diff --git a/lib/shared/domain/models/neulogic/investment_values_model.dart b/lib/shared/domain/models/neulogic/investment_values_model.dart deleted file mode 100644 index 253b157..0000000 --- a/lib/shared/domain/models/neulogic/investment_values_model.dart +++ /dev/null @@ -1,76 +0,0 @@ -// ignore_for_file: public_member_api_docs, sort_constructors_first -import 'dart:convert'; - -class FixedIncomeInvestmentValuesModel { - final num portfolioValue; - final num totalInvestmentValue; - final num totalReturn; - final num roi; - FixedIncomeInvestmentValuesModel({ - required this.portfolioValue, - required this.totalInvestmentValue, - required this.totalReturn, - required this.roi, - }); - - FixedIncomeInvestmentValuesModel copyWith({ - num? portfolioValue, - num? totalInvestmentValue, - num? totalReturn, - num? roi, - }) { - return FixedIncomeInvestmentValuesModel( - portfolioValue: portfolioValue ?? this.portfolioValue, - totalInvestmentValue: totalInvestmentValue ?? this.totalInvestmentValue, - totalReturn: totalReturn ?? this.totalReturn, - roi: roi ?? this.roi, - ); - } - - Map toMap() { - return { - 'portfolioValue': portfolioValue, - 'totalInvestmentValue': totalInvestmentValue, - 'totalReturn': totalReturn, - 'roi': roi, - }; - } - - factory FixedIncomeInvestmentValuesModel.fromMap(Map map) { - return FixedIncomeInvestmentValuesModel( - portfolioValue: map['portfolioValue'] ?? 0, - totalInvestmentValue: map['totalInvestmentValue'] ?? 0, - totalReturn: map['totalReturn'] ?? 0, - roi: map['roi'] ?? 0, - ); - } - - String toJson() => json.encode(toMap()); - - factory FixedIncomeInvestmentValuesModel.fromJson(String source) => - FixedIncomeInvestmentValuesModel.fromMap( - json.decode(source) as Map); - - @override - String toString() { - return 'FixedIncomeInvestmentValuesModel(portfolioValue: $portfolioValue, totalInvestmentValue: $totalInvestmentValue, totalReturn: $totalReturn, roi: $roi)'; - } - - @override - bool operator ==(covariant FixedIncomeInvestmentValuesModel other) { - if (identical(this, other)) return true; - - return other.portfolioValue == portfolioValue && - other.totalInvestmentValue == totalInvestmentValue && - other.totalReturn == totalReturn && - other.roi == roi; - } - - @override - int get hashCode { - return portfolioValue.hashCode ^ - totalInvestmentValue.hashCode ^ - totalReturn.hashCode ^ - roi.hashCode; - } -} diff --git a/lib/shared/domain/models/neulogic/mutual_funds/fund_price_model.dart b/lib/shared/domain/models/neulogic/mutual_funds/fund_price_model.dart deleted file mode 100644 index 8325212..0000000 --- a/lib/shared/domain/models/neulogic/mutual_funds/fund_price_model.dart +++ /dev/null @@ -1,32 +0,0 @@ -import 'package:projectr/shared/domain/models/neulogic/mutual_funds/fund_prices_model.dart'; - -class MutualFundPriceHistoryResponseModel { - String status; - List result; - - MutualFundPriceHistoryResponseModel({ - required this.status, - required this.result, - }); - - factory MutualFundPriceHistoryResponseModel.fromJson( - Map json) => - MutualFundPriceHistoryResponseModel( - status: json["status"], - result: - List.from(json["result"].map((x) => Result.fromJson(x))), - ); -} - -class Result { - List getFundTransactions; - - Result({ - required this.getFundTransactions, - }); - - factory Result.fromJson(Map json) => Result( - getFundTransactions: List.from( - json["GetFundPrice"].map((x) => MutualFundPriceModel.fromJson(x))), - ); -} diff --git a/lib/shared/domain/models/neulogic/mutual_funds/fund_price_yield_model.dart b/lib/shared/domain/models/neulogic/mutual_funds/fund_price_yield_model.dart deleted file mode 100644 index 927af8a..0000000 --- a/lib/shared/domain/models/neulogic/mutual_funds/fund_price_yield_model.dart +++ /dev/null @@ -1,185 +0,0 @@ -// ignore_for_file: public_member_api_docs, sort_constructors_first -import 'dart:convert'; - -class MutualFundPriceYieldModel { - num id; - DateTime updatedAt; - DateTime createdAt; - bool deleted; - bool suspended; - String fundCode; - String fundDescription; - String openPrice; - String currentPrice; - String distribution; - DateTime openingDate; - DateTime currentDate; - num accrualDays; - num dayBasis; - String annualisedReturn; - MutualFundPriceYieldModel({ - required this.id, - required this.updatedAt, - required this.createdAt, - required this.deleted, - required this.suspended, - required this.fundCode, - required this.fundDescription, - required this.openPrice, - required this.currentPrice, - required this.distribution, - required this.openingDate, - required this.currentDate, - required this.accrualDays, - required this.dayBasis, - required this.annualisedReturn, - }); - - MutualFundPriceYieldModel copyWith({ - num? id, - DateTime? updatedAt, - DateTime? createdAt, - bool? deleted, - bool? suspended, - String? fundCode, - String? fundDescription, - String? openPrice, - String? currentPrice, - String? distribution, - DateTime? openingDate, - DateTime? currentDate, - num? accrualDays, - num? dayBasis, - String? annualisedReturn, - }) { - return MutualFundPriceYieldModel( - id: id ?? this.id, - updatedAt: updatedAt ?? this.updatedAt, - createdAt: createdAt ?? this.createdAt, - deleted: deleted ?? this.deleted, - suspended: suspended ?? this.suspended, - fundCode: fundCode ?? this.fundCode, - fundDescription: fundDescription ?? this.fundDescription, - openPrice: openPrice ?? this.openPrice, - currentPrice: currentPrice ?? this.currentPrice, - distribution: distribution ?? this.distribution, - openingDate: openingDate ?? this.openingDate, - currentDate: currentDate ?? this.currentDate, - accrualDays: accrualDays ?? this.accrualDays, - dayBasis: dayBasis ?? this.dayBasis, - annualisedReturn: annualisedReturn ?? this.annualisedReturn, - ); - } - - Map toMap() { - return { - 'id': id, - 'updatedAt': updatedAt.millisecondsSinceEpoch, - 'createdAt': createdAt.millisecondsSinceEpoch, - 'deleted': deleted, - 'suspended': suspended, - 'fundCode': fundCode, - 'fundDescription': fundDescription, - 'openPrice': openPrice, - 'currentPrice': currentPrice, - 'distribution': distribution, - 'openingDate': openingDate.millisecondsSinceEpoch, - 'currentDate': currentDate.millisecondsSinceEpoch, - 'accrualDays': accrualDays, - 'dayBasis': dayBasis, - 'annualisedReturn': annualisedReturn, - }; - } - - factory MutualFundPriceYieldModel.fromMap(Map map) { - return MutualFundPriceYieldModel( - id: map['id'] ?? 0, - updatedAt: map['updatedAt'] != null - ? DateTime.parse(map['updatedAt']) - : DateTime.now(), - createdAt: map['createdAt'] != null - ? DateTime.parse(map['createdAt']) - : DateTime.now(), - deleted: map['deleted'] ?? false, - suspended: map['suspended'] ?? false, - fundCode: map['fundCode'] ?? '', - fundDescription: map['fundDescription'] ?? '', - openPrice: map['openPrice'] ?? '0.00', - currentPrice: map['currentPrice'] ?? '', - distribution: map['distribution'] ?? '', - openingDate: map['openingDate'] != null - ? DateTime.parse(map['openingDate']) - : DateTime.now(), - currentDate: map['currentDate'] != null - ? DateTime.parse(map['currentDate']) - : DateTime.now(), - accrualDays: map['accrualDays'] ?? 0, - dayBasis: map['dayBasis'] ?? 0, - annualisedReturn: map['annualisedReturn'] ?? '', - ); - } - - factory MutualFundPriceYieldModel.initial() { - return MutualFundPriceYieldModel( - id: 0, - updatedAt: DateTime.now(), - createdAt: DateTime.now(), - deleted: false, - suspended: false, - fundCode: '', - fundDescription: '', - openPrice: '', - currentPrice: '', - distribution: '', - openingDate: DateTime.now(), - currentDate: DateTime.now(), - accrualDays: 0, - dayBasis: 0, - annualisedReturn: '0.00', - ); - } - - factory MutualFundPriceYieldModel.fromJson(String source) => - MutualFundPriceYieldModel.fromMap( - json.decode(source) as Map); - - @override - bool operator ==(covariant MutualFundPriceYieldModel other) { - if (identical(this, other)) return true; - - return other.id == id && - other.updatedAt == updatedAt && - other.createdAt == createdAt && - other.deleted == deleted && - other.suspended == suspended && - other.fundCode == fundCode && - other.fundDescription == fundDescription && - other.openPrice == openPrice && - other.currentPrice == currentPrice && - other.distribution == distribution && - other.openingDate == openingDate && - other.currentDate == currentDate && - other.accrualDays == accrualDays && - other.dayBasis == dayBasis && - other.annualisedReturn == annualisedReturn; - } - - @override - int get hashCode { - return id.hashCode ^ - updatedAt.hashCode ^ - createdAt.hashCode ^ - deleted.hashCode ^ - suspended.hashCode ^ - fundCode.hashCode ^ - fundDescription.hashCode ^ - openPrice.hashCode ^ - currentPrice.hashCode ^ - distribution.hashCode ^ - openingDate.hashCode ^ - currentDate.hashCode ^ - accrualDays.hashCode ^ - dayBasis.hashCode ^ - annualisedReturn.hashCode; - } -} diff --git a/lib/shared/domain/models/neulogic/mutual_funds/fund_prices_model.dart b/lib/shared/domain/models/neulogic/mutual_funds/fund_prices_model.dart deleted file mode 100644 index bdd61e9..0000000 --- a/lib/shared/domain/models/neulogic/mutual_funds/fund_prices_model.dart +++ /dev/null @@ -1,63 +0,0 @@ -class MutualFundPricesHistoryResponseModel { - String status; - List result; - - MutualFundPricesHistoryResponseModel({ - required this.status, - required this.result, - }); - - factory MutualFundPricesHistoryResponseModel.fromJson( - Map json) => - MutualFundPricesHistoryResponseModel( - status: json["status"], - result: - List.from(json["result"].map((x) => Result.fromJson(x))), - ); -} - -class Result { - List getFundTransactions; - - Result({ - required this.getFundTransactions, - }); - - factory Result.fromJson(Map json) => Result( - getFundTransactions: List.from( - json["GetFundPrices"].map((x) => MutualFundPriceModel.fromJson(x))), - ); -} - -class MutualFundPriceModel { - String fundId; - String fundDescription; - String valueDate; - num bidPrice; - num offerPrice; - - MutualFundPriceModel({ - required this.fundId, - required this.fundDescription, - required this.valueDate, - required this.bidPrice, - required this.offerPrice, - }); - - factory MutualFundPriceModel.fromJson(Map json) => - MutualFundPriceModel( - fundId: json["FUND_ID"], - fundDescription: json["FUND_DESCRIPTION"], - valueDate: json["VALUE_DATE"], - bidPrice: json["BID_PRICE"], - offerPrice: json["OFFER_PRICE"], - ); - - Map toJson() => { - "FUND_ID": fundId, - "FUND_DESCRIPTION": fundDescription, - "VALUE_DATE": valueDate, - "BID_PRICE": bidPrice, - "OFFER_PRICE": offerPrice, - }; -} diff --git a/lib/shared/domain/models/neulogic/mutual_funds/fund_redemption_model.dart b/lib/shared/domain/models/neulogic/mutual_funds/fund_redemption_model.dart deleted file mode 100644 index 9a6b869..0000000 --- a/lib/shared/domain/models/neulogic/mutual_funds/fund_redemption_model.dart +++ /dev/null @@ -1,111 +0,0 @@ -import 'dart:convert'; - -class RedeemFundModel { - String account; - String date; - String fund; - String otp; - String price; - num quantity; - String twoFactorToken; - int userBankAccountId; - String currency; - RedeemFundModel({ - required this.account, - required this.date, - required this.fund, - required this.otp, - required this.price, - required this.quantity, - required this.twoFactorToken, - required this.userBankAccountId, - required this.currency, - }); - - RedeemFundModel copyWith({ - String? account, - String? date, - String? fund, - String? otp, - String? price, - num? quantity, - String? twoFactorToken, - String? currency, - int? userBankAccountId, - }) { - return RedeemFundModel( - account: account ?? this.account, - date: date ?? this.date, - fund: fund ?? this.fund, - otp: otp ?? this.otp, - price: price ?? this.price, - quantity: quantity ?? this.quantity, - currency: currency ?? this.currency, - twoFactorToken: twoFactorToken ?? this.twoFactorToken, - userBankAccountId: userBankAccountId ?? this.userBankAccountId, - ); - } - - Map toMap() { - return { - 'account': account, - 'date': date, - 'fund': fund, - 'otp': otp, - 'price': price, - 'quantity': quantity, - 'twoFactorToken': twoFactorToken, - 'userBankAccountId': userBankAccountId, - }; - } - - factory RedeemFundModel.fromMap(Map map) { - return RedeemFundModel( - currency: '', - account: map['account'] as String, - date: map['date'], - fund: map['fund'] as String, - otp: map['otp'] as String, - price: map['price'] as String, - quantity: map['quantity'] as int, - twoFactorToken: map['twoFactorToken'] as String, - userBankAccountId: map['userBankAccountId'] as int, - ); - } - - String toJson() => json.encode(toMap()); - - factory RedeemFundModel.fromJson(String source) => - RedeemFundModel.fromMap(json.decode(source) as Map); - - @override - String toString() { - return 'RedeemFundModel(account: $account, date: $date, fund: $fund, otp: $otp, price: $price, quantity: $quantity, twoFactorToken: $twoFactorToken, userBankAccountId: $userBankAccountId)'; - } - - @override - bool operator ==(covariant RedeemFundModel other) { - if (identical(this, other)) return true; - - return other.account == account && - other.date == date && - other.fund == fund && - other.otp == otp && - other.price == price && - other.quantity == quantity && - other.twoFactorToken == twoFactorToken && - other.userBankAccountId == userBankAccountId; - } - - @override - int get hashCode { - return account.hashCode ^ - date.hashCode ^ - fund.hashCode ^ - otp.hashCode ^ - price.hashCode ^ - quantity.hashCode ^ - twoFactorToken.hashCode ^ - userBankAccountId.hashCode; - } -} diff --git a/lib/shared/domain/models/neulogic/mutual_funds/fund_subscription_model.dart b/lib/shared/domain/models/neulogic/mutual_funds/fund_subscription_model.dart deleted file mode 100644 index 2d03434..0000000 --- a/lib/shared/domain/models/neulogic/mutual_funds/fund_subscription_model.dart +++ /dev/null @@ -1,158 +0,0 @@ -// ignore_for_file: public_member_api_docs, sort_constructors_first -import 'dart:convert'; -import 'dart:io'; - -class FundSubscriptionModel { - String accountId; - num amount; - String callbackUrl; - String channel; - String date; - String fund; - num price; - String productType; - num quantity; - String paymentMode; - String fundName; - FundSubscriptionModel( - {required this.accountId, - required this.amount, - required this.callbackUrl, - required this.channel, - required this.date, - required this.fund, - required this.price, - required this.productType, - required this.quantity, - required this.paymentMode, - required this.fundName}); - - FundSubscriptionModel copyWith( - {String? accountId, - num? amount, - String? callbackUrl, - String? channel, - String? date, - String? fund, - num? price, - String? productType, - num? quantity, - String? paymentMode, - String? fundName}) { - return FundSubscriptionModel( - accountId: accountId ?? this.accountId, - amount: amount ?? this.amount, - callbackUrl: callbackUrl ?? this.callbackUrl, - channel: channel ?? this.channel, - date: date ?? this.date, - fund: fund ?? this.fund, - price: price ?? this.price, - productType: productType ?? this.productType, - quantity: quantity ?? this.quantity, - paymentMode: paymentMode ?? this.paymentMode, - fundName: fundName ?? this.fundName); - } - - Map toMap() { - var map = { - 'amount': amount, - 'callback_url': callbackUrl, - 'channel': channel, - 'date': date, - 'fund': fund, - 'price': price, - 'productType': productType, - 'quantity': quantity, - }; - - if (accountId.isNotEmpty) { - map.addAll({'accountId': accountId}); - } - - return map; - } - - factory FundSubscriptionModel.fromMap(Map map) { - return FundSubscriptionModel( - accountId: map['accountId'] as String, - amount: map['amount'] as int, - callbackUrl: map['callback_url'] as String, - channel: map['channel'] as String, - date: '', - paymentMode: '', - fund: map['fund'] as String, - price: map['price'] as int, - productType: map['productType'] as String, - quantity: map['quantity'] as int, - fundName: ''); - } - - factory FundSubscriptionModel.fromJson(String source) => - FundSubscriptionModel.fromMap( - json.decode(source) as Map); - - @override - bool operator ==(covariant FundSubscriptionModel other) { - if (identical(this, other)) return true; - - return other.accountId == accountId && - other.amount == amount && - other.callbackUrl == callbackUrl && - other.channel == channel && - other.date == date && - other.fund == fund && - other.price == price && - other.productType == productType && - other.quantity == quantity; - } - - @override - int get hashCode { - return accountId.hashCode ^ - amount.hashCode ^ - callbackUrl.hashCode ^ - channel.hashCode ^ - date.hashCode ^ - fund.hashCode ^ - price.hashCode ^ - productType.hashCode ^ - quantity.hashCode; - } -} - -class DollarFundSubscriptionModel { - File paymentReceipt; - String fileName; - String fund; - num quantity; - num amount; - num price; - String? accountId; - - DollarFundSubscriptionModel( - {required this.paymentReceipt, - required this.fund, - required this.accountId, - required this.quantity, - required this.amount, - required this.price, - required this.fileName}); - - DollarFundSubscriptionModel copyWith( - {File? paymentReceipt, - String? fund, - String? accountId, - num? quantity, - num? amount, - num? price, - String? fileName}) { - return DollarFundSubscriptionModel( - paymentReceipt: paymentReceipt ?? this.paymentReceipt, - fund: fund ?? this.fund, - accountId: accountId ?? this.accountId, - quantity: quantity ?? this.quantity, - amount: amount ?? this.amount, - price: price ?? this.price, - fileName: fileName ?? this.fileName); - } -} diff --git a/lib/shared/domain/models/neulogic/mutual_funds/fund_transaction_model.dart b/lib/shared/domain/models/neulogic/mutual_funds/fund_transaction_model.dart deleted file mode 100644 index 66ecd1c..0000000 --- a/lib/shared/domain/models/neulogic/mutual_funds/fund_transaction_model.dart +++ /dev/null @@ -1,140 +0,0 @@ -import 'dart:convert'; - -MutualFundTransactionResponseModel mutualFundTransactionResponseModelFromJson( - String str) => - MutualFundTransactionResponseModel.fromJson(json.decode(str)); - -String mutualFundTransactionResponseModelToJson( - MutualFundTransactionResponseModel data) => - json.encode(data.toJson()); - -class MutualFundTransactionResponseModel { - String status; - List result; - - MutualFundTransactionResponseModel({ - required this.status, - required this.result, - }); - - factory MutualFundTransactionResponseModel.fromJson( - Map json) => - MutualFundTransactionResponseModel( - status: json["status"], - result: - List.from(json["result"].map((x) => Result.fromJson(x))), - ); - - Map toJson() => { - "status": status, - "result": List.from(result.map((x) => x.toJson())), - }; -} - -class Result { - List getFundTransactions; - - Result({ - required this.getFundTransactions, - }); - - factory Result.fromJson(Map json) => Result( - getFundTransactions: List.from( - json["GetFundTransactions"] - .map((x) => MutualFundTransaction.fromJson(x))), - ); - - Map toJson() => { - "GetFundTransactions": - List.from(getFundTransactions.map((x) => x.toJson())), - }; -} - -class MutualFundTransaction { - String fundId; - String fundDescription; - String fundCurrency; - String customerId; - String customerName; - String accountId; - String accountDescription; - num registrarAccountId; - String transactionType; - String balanceDate; - String effectiveDate; - num transactionQuantity; - num creditQuantity; - dynamic debitQuantity; - num transactionPrice; - num transactionAmount; - String transactionDescription; - String transactionReference; - num isTransfer; - - MutualFundTransaction({ - required this.fundId, - required this.fundDescription, - required this.fundCurrency, - required this.customerId, - required this.customerName, - required this.accountId, - required this.accountDescription, - required this.registrarAccountId, - required this.transactionType, - required this.balanceDate, - required this.effectiveDate, - required this.transactionQuantity, - required this.creditQuantity, - required this.debitQuantity, - required this.transactionPrice, - required this.transactionAmount, - required this.transactionDescription, - required this.transactionReference, - required this.isTransfer, - }); - - factory MutualFundTransaction.fromJson(Map json) => - MutualFundTransaction( - fundId: json["FUND_ID"] ?? '', - fundDescription: json["FUND_DESCRIPTION"] ?? '', - fundCurrency: json["FUND_CURRENCY"] ?? '', - customerId: json["CUSTOMER_ID"] ?? '', - customerName: json["CUSTOMER_NAME"] ?? '', - accountId: json["ACCOUNT_ID"] ?? '', - accountDescription: json["ACCOUNT_DESCRIPTION"] ?? '', - registrarAccountId: json["REGISTRAR_ACCOUNT_ID"] ?? 0, - transactionType: json["TRANSACTION_TYPE"] ?? '', - balanceDate: json["BALANCE_DATE"] ?? '', - effectiveDate: json["EFFECTIVE_DATE"] ?? '', - transactionQuantity: json["TRANSACTION_QUANTITY"] ?? 0, - creditQuantity: json["CREDIT_QUANTITY"] ?? 0, - debitQuantity: json["DEBIT_QUANTITY"] ?? 0, - transactionPrice: json["TRANSACTION_PRICE"] ?? 0, - transactionAmount: json["TRANSACTION_AMOUNT"] ?? 0, - transactionDescription: json["TRANSACTION_DESCRIPTION"] ?? '', - transactionReference: json["TRANSACTION_REFERENCE"] ?? '', - isTransfer: json["IS_TRANSFER"] ?? 0, - ); - - Map toJson() => { - "FUND_ID": fundId, - "FUND_DESCRIPTION": fundDescription, - "FUND_CURRENCY": fundCurrency, - "CUSTOMER_ID": customerId, - "CUSTOMER_NAME": customerName, - "ACCOUNT_ID": accountId, - "ACCOUNT_DESCRIPTION": accountDescription, - "REGISTRAR_ACCOUNT_ID": registrarAccountId, - "TRANSACTION_TYPE": transactionType, - "BALANCE_DATE": balanceDate, - "EFFECTIVE_DATE": effectiveDate, - "TRANSACTION_QUANTITY": transactionQuantity, - "CREDIT_QUANTITY": creditQuantity, - "DEBIT_QUANTITY": debitQuantity, - "TRANSACTION_PRICE": transactionPrice, - "TRANSACTION_AMOUNT": transactionAmount, - "TRANSACTION_DESCRIPTION": transactionDescription, - "TRANSACTION_REFERENCE": transactionReference, - "IS_TRANSFER": isTransfer, - }; -} diff --git a/lib/shared/domain/models/neulogic/mutual_funds/investment_values_model.dart b/lib/shared/domain/models/neulogic/mutual_funds/investment_values_model.dart deleted file mode 100644 index 0c6fcf4..0000000 --- a/lib/shared/domain/models/neulogic/mutual_funds/investment_values_model.dart +++ /dev/null @@ -1,45 +0,0 @@ -// ignore_for_file: public_member_api_docs, sort_constructors_first - -class MutualFundInvestmentValueModel { - final num portfolioValue; - final num investmentValue; - MutualFundInvestmentValueModel({ - required this.portfolioValue, - required this.investmentValue, - }); - - MutualFundInvestmentValueModel copyWith({ - num? portfolioValue, - num? investmentValue, - }) { - return MutualFundInvestmentValueModel( - portfolioValue: portfolioValue ?? this.portfolioValue, - investmentValue: investmentValue ?? this.investmentValue, - ); - } - - Map toMap() { - return { - 'portfolioValue': portfolioValue, - 'investmentValue': investmentValue, - }; - } - - factory MutualFundInvestmentValueModel.fromMap(Map map) { - return MutualFundInvestmentValueModel( - portfolioValue: map['portfolioValue'] ?? 0, - investmentValue: map['investmentValue'] ?? 0, - ); - } - - @override - bool operator ==(covariant MutualFundInvestmentValueModel other) { - if (identical(this, other)) return true; - - return other.portfolioValue == portfolioValue && - other.investmentValue == investmentValue; - } - - @override - int get hashCode => portfolioValue.hashCode ^ investmentValue.hashCode; -} diff --git a/lib/shared/domain/models/neulogic/mutual_funds/mutual_fund_account_model.dart b/lib/shared/domain/models/neulogic/mutual_funds/mutual_fund_account_model.dart deleted file mode 100644 index 1a5d1c6..0000000 --- a/lib/shared/domain/models/neulogic/mutual_funds/mutual_fund_account_model.dart +++ /dev/null @@ -1,271 +0,0 @@ -// ignore_for_file: public_member_api_docs, sort_constructors_first -import 'dart:convert'; - -class MutualFundAccountModel { - String accountDescription; - String accountId; - String accountOpenedDate; - String balanceDate; - num balanceQuantity; - String cashAccountDescription; - String cashAccountId; - num costPrice; - num costValue; - num currentBidPrice; - num currentValue; - String customerId; - String customerName; - String externalReference; - String fundCurrency; - String fundDescription; - String fundId; - num gainLossAmount; - String isMoneyMarketFund; - num outstandingAccruedInterest; - num registrarAccountId; - num totalAccruedInterest; - num totalBonusQuantity; - num totalDividendAmount; - num totalPurchaseAmount; - num totalPurchaseQuantity; - num totalSaleAmount; - num totalSaleQuantity; - MutualFundAccountModel({ - required this.accountDescription, - required this.accountId, - required this.accountOpenedDate, - required this.balanceDate, - required this.balanceQuantity, - required this.cashAccountDescription, - required this.cashAccountId, - required this.costPrice, - required this.costValue, - required this.currentBidPrice, - required this.currentValue, - required this.customerId, - required this.customerName, - required this.externalReference, - required this.fundCurrency, - required this.fundDescription, - required this.fundId, - required this.gainLossAmount, - required this.isMoneyMarketFund, - required this.outstandingAccruedInterest, - required this.registrarAccountId, - required this.totalAccruedInterest, - required this.totalBonusQuantity, - required this.totalDividendAmount, - required this.totalPurchaseAmount, - required this.totalPurchaseQuantity, - required this.totalSaleAmount, - required this.totalSaleQuantity, - }); - - MutualFundAccountModel copyWith({ - String? accountDescription, - String? accountId, - String? accountOpenedDate, - String? balanceDate, - num? balanceQuantity, - String? cashAccountDescription, - String? cashAccountId, - num? costPrice, - num? costValue, - num? currentBidPrice, - num? currentValue, - String? customerId, - String? customerName, - String? externalReference, - String? fundCurrency, - String? fundDescription, - String? fundId, - num? gainLossAmount, - String? isMoneyMarketFund, - num? outstandingAccruedInterest, - num? registrarAccountId, - num? totalAccruedInterest, - num? totalBonusQuantity, - num? totalDividendAmount, - num? totalPurchaseAmount, - num? totalPurchaseQuantity, - num? totalSaleAmount, - num? totalSaleQuantity, - }) { - return MutualFundAccountModel( - accountDescription: accountDescription ?? this.accountDescription, - accountId: accountId ?? this.accountId, - accountOpenedDate: accountOpenedDate ?? this.accountOpenedDate, - balanceDate: balanceDate ?? this.balanceDate, - balanceQuantity: balanceQuantity ?? this.balanceQuantity, - cashAccountDescription: - cashAccountDescription ?? this.cashAccountDescription, - cashAccountId: cashAccountId ?? this.cashAccountId, - costPrice: costPrice ?? this.costPrice, - costValue: costValue ?? this.costValue, - currentBidPrice: currentBidPrice ?? this.currentBidPrice, - currentValue: currentValue ?? this.currentValue, - customerId: customerId ?? this.customerId, - customerName: customerName ?? this.customerName, - externalReference: externalReference ?? this.externalReference, - fundCurrency: fundCurrency ?? this.fundCurrency, - fundDescription: fundDescription ?? this.fundDescription, - fundId: fundId ?? this.fundId, - gainLossAmount: gainLossAmount ?? this.gainLossAmount, - isMoneyMarketFund: isMoneyMarketFund ?? this.isMoneyMarketFund, - outstandingAccruedInterest: - outstandingAccruedInterest ?? this.outstandingAccruedInterest, - registrarAccountId: registrarAccountId ?? this.registrarAccountId, - totalAccruedInterest: totalAccruedInterest ?? this.totalAccruedInterest, - totalBonusQuantity: totalBonusQuantity ?? this.totalBonusQuantity, - totalDividendAmount: totalDividendAmount ?? this.totalDividendAmount, - totalPurchaseAmount: totalPurchaseAmount ?? this.totalPurchaseAmount, - totalPurchaseQuantity: - totalPurchaseQuantity ?? this.totalPurchaseQuantity, - totalSaleAmount: totalSaleAmount ?? this.totalSaleAmount, - totalSaleQuantity: totalSaleQuantity ?? this.totalSaleQuantity, - ); - } - - Map toMap() { - return { - 'accountDescription': accountDescription, - 'accountId': accountId, - 'accountOpenedDate': accountOpenedDate, - 'balanceDate': balanceDate, - 'balanceQuantity': balanceQuantity, - 'cashAccountDescription': cashAccountDescription, - 'cashAccountId': cashAccountId, - 'costPrice': costPrice, - 'costValue': costValue, - 'currentBidPrice': currentBidPrice, - 'currentValue': currentValue, - 'customerId': customerId, - 'customerName': customerName, - 'externalReference': externalReference, - 'fundCurrency': fundCurrency, - 'fundDescription': fundDescription, - 'fundId': fundId, - 'gainLossAmount': gainLossAmount, - 'isMoneyMarketFund': isMoneyMarketFund, - 'outstandingAccruedInterest': outstandingAccruedInterest, - 'registrarAccountId': registrarAccountId, - 'totalAccruedInterest': totalAccruedInterest, - 'totalBonusQuantity': totalBonusQuantity, - 'totalDividendAmount': totalDividendAmount, - 'totalPurchaseAmount': totalPurchaseAmount, - 'totalPurchaseQuantity': totalPurchaseQuantity, - 'totalSaleAmount': totalSaleAmount, - 'totalSaleQuantity': totalSaleQuantity, - }; - } - - factory MutualFundAccountModel.fromMap(Map map) { - return MutualFundAccountModel( - accountDescription: map['ACCOUNT_DESCRIPTION'] ?? '', - accountId: map['ACCOUNT_ID'] ?? '', - accountOpenedDate: map['ACCOUNT_OPENED_DATE'] ?? '', - balanceDate: map['BALANCE_DATE'] ?? '', - balanceQuantity: map['BALANCE_QUANTITY'] ?? 0, - cashAccountDescription: map['CASH_ACCOUNT_DESCRIPTION'] ?? '', - cashAccountId: map['CASH_ACCOUNT_ID'] ?? '', - costPrice: map['COST_PRICE'] ?? 0, - costValue: map['COST_VALUE'] ?? 0, - currentBidPrice: map['CURRENT_BID_PRICE'] ?? 0, - currentValue: map['CURRENT_VALUE'] ?? 0, - customerId: map['CUSTOMER_ID'] ?? '', - customerName: map['CUSTOMER_NAME'] ?? '', - externalReference: map['EXTERNAL_REFERENCE'] ?? '', - fundCurrency: map['FUND_CURRENCY'] ?? '', - fundDescription: map['FUND_DESCRIPTION'] ?? '', - fundId: map['FUND_ID'] ?? '', - gainLossAmount: map['GAIN_LOSS_AMOUNT'] ?? 0, - isMoneyMarketFund: map['IS_MONEY_MARKET_FUND'] ?? '', - outstandingAccruedInterest: map['OUTSTANDING_ACCRUED_INTEREST'] ?? 0, - registrarAccountId: map['REGISTRAR_ACCOUNT_ID'] ?? 0, - totalAccruedInterest: map['TOTAL_ACCRUED_INTEREST'] ?? 0, - totalBonusQuantity: map['TOTAL_BONUS_QUANTITY'] ?? 0, - totalDividendAmount: map['TOTAL_DIVIDEND_AMOUNT'] ?? 0, - totalPurchaseAmount: map['TOTAL_PURCHASE_AMOUNT'] ?? 0, - totalPurchaseQuantity: map['TOTAL_PURCHASE_QUANTITY'] ?? 0, - totalSaleAmount: map['TOTAL_SALE_AMOUNT'] ?? 0, - totalSaleQuantity: map['TOTAL_SALE_QUANTITY'] ?? 0, - ); - } - - String toJson() => json.encode(toMap()); - - factory MutualFundAccountModel.fromJson(String source) => - MutualFundAccountModel.fromMap( - json.decode(source) as Map); - - @override - String toString() { - return 'MutualFundAccountModel(accountDescription: $accountDescription, accountId: $accountId, accountOpenedDate: $accountOpenedDate, balanceDate: $balanceDate, balanceQuantity: $balanceQuantity, cashAccountDescription: $cashAccountDescription, cashAccountId: $cashAccountId, costPrice: $costPrice, costValue: $costValue, currentBidPrice: $currentBidPrice, currentValue: $currentValue, customerId: $customerId, customerName: $customerName, externalReference: $externalReference, fundCurrency: $fundCurrency, fundDescription: $fundDescription, fundId: $fundId, gainLossAmount: $gainLossAmount, isMoneyMarketFund: $isMoneyMarketFund, outstandingAccruedInterest: $outstandingAccruedInterest, registrarAccountId: $registrarAccountId, totalAccruedInterest: $totalAccruedInterest, totalBonusQuantity: $totalBonusQuantity, totalDividendAmount: $totalDividendAmount, totalPurchaseAmount: $totalPurchaseAmount, totalPurchaseQuantity: $totalPurchaseQuantity, totalSaleAmount: $totalSaleAmount, totalSaleQuantity: $totalSaleQuantity)'; - } - - @override - bool operator ==(covariant MutualFundAccountModel other) { - if (identical(this, other)) return true; - - return other.accountDescription == accountDescription && - other.accountId == accountId && - other.accountOpenedDate == accountOpenedDate && - other.balanceDate == balanceDate && - other.balanceQuantity == balanceQuantity && - other.cashAccountDescription == cashAccountDescription && - other.cashAccountId == cashAccountId && - other.costPrice == costPrice && - other.costValue == costValue && - other.currentBidPrice == currentBidPrice && - other.currentValue == currentValue && - other.customerId == customerId && - other.customerName == customerName && - other.externalReference == externalReference && - other.fundCurrency == fundCurrency && - other.fundDescription == fundDescription && - other.fundId == fundId && - other.gainLossAmount == gainLossAmount && - other.isMoneyMarketFund == isMoneyMarketFund && - other.outstandingAccruedInterest == outstandingAccruedInterest && - other.registrarAccountId == registrarAccountId && - other.totalAccruedInterest == totalAccruedInterest && - other.totalBonusQuantity == totalBonusQuantity && - other.totalDividendAmount == totalDividendAmount && - other.totalPurchaseAmount == totalPurchaseAmount && - other.totalPurchaseQuantity == totalPurchaseQuantity && - other.totalSaleAmount == totalSaleAmount && - other.totalSaleQuantity == totalSaleQuantity; - } - - @override - int get hashCode { - return accountDescription.hashCode ^ - accountId.hashCode ^ - accountOpenedDate.hashCode ^ - balanceDate.hashCode ^ - balanceQuantity.hashCode ^ - cashAccountDescription.hashCode ^ - cashAccountId.hashCode ^ - costPrice.hashCode ^ - costValue.hashCode ^ - currentBidPrice.hashCode ^ - currentValue.hashCode ^ - customerId.hashCode ^ - customerName.hashCode ^ - externalReference.hashCode ^ - fundCurrency.hashCode ^ - fundDescription.hashCode ^ - fundId.hashCode ^ - gainLossAmount.hashCode ^ - isMoneyMarketFund.hashCode ^ - outstandingAccruedInterest.hashCode ^ - registrarAccountId.hashCode ^ - totalAccruedInterest.hashCode ^ - totalBonusQuantity.hashCode ^ - totalDividendAmount.hashCode ^ - totalPurchaseAmount.hashCode ^ - totalPurchaseQuantity.hashCode ^ - totalSaleAmount.hashCode ^ - totalSaleQuantity.hashCode; - } -} diff --git a/lib/shared/domain/models/neulogic/mutual_funds/product_model.dart b/lib/shared/domain/models/neulogic/mutual_funds/product_model.dart deleted file mode 100644 index 2a34efa..0000000 --- a/lib/shared/domain/models/neulogic/mutual_funds/product_model.dart +++ /dev/null @@ -1,133 +0,0 @@ -// ignore_for_file: public_member_api_docs, sort_constructors_first - -class MutualFundProductModel { - String fundId; - String fundDescription; - String fundCurrency; - String fundType; - String dateOpened; - num minimumInvestmentAmount; - num subsequentMultiples; - num offerPrice; - num bidPrice; - num isMoneyMarket; - String investmentBasis; - - MutualFundProductModel({ - required this.fundId, - required this.fundDescription, - required this.fundCurrency, - required this.fundType, - required this.dateOpened, - required this.minimumInvestmentAmount, - required this.subsequentMultiples, - required this.offerPrice, - required this.bidPrice, - required this.isMoneyMarket, - required this.investmentBasis, - }); - - factory MutualFundProductModel.fromMap(Map json) => - MutualFundProductModel( - fundId: json["FUND_ID"], - fundDescription: json["FUND_DESCRIPTION"], - fundCurrency: json["FUND_CURRENCY"], - fundType: json["FUND_TYPE"], - dateOpened: json["DATE_OPENED"], - minimumInvestmentAmount: json["MINIMUM_INVESTMENT_AMOUNT"] ?? 0, - subsequentMultiples: json["SUBSEQUENT_MULTIPLES"] ?? 0, - offerPrice: json["OFFER_PRICE"] ?? 0, - bidPrice: json["BID_PRICE"] ?? 0, - isMoneyMarket: json["IS_MONEY_MARKET"] ?? 0, - investmentBasis: json["INVESTMENT_BASIS"], - ); - - factory MutualFundProductModel.initial() => MutualFundProductModel( - fundId: '', - fundDescription: '', - fundCurrency: '', - fundType: '', - dateOpened: '', - minimumInvestmentAmount: 0, - subsequentMultiples: 0, - offerPrice: 0, - bidPrice: 0, - isMoneyMarket: 0, - investmentBasis: '', - ); - - Map toMap() => { - "FUND_ID": fundId, - "FUND_DESCRIPTION": fundDescription, - "FUND_CURRENCY": fundCurrency, - "FUND_TYPE": fundType, - "DATE_OPENED": dateOpened, - "MINIMUM_INVESTMENT_AMOUNT": minimumInvestmentAmount, - "SUBSEQUENT_MULTIPLES": subsequentMultiples, - "OFFER_PRICE": offerPrice, - "BID_PRICE": bidPrice, - "IS_MONEY_MARKET": isMoneyMarket, - "INVESTMENT_BASIS": investmentBasis, - }; - - MutualFundProductModel copyWith({ - String? fundId, - String? fundDescription, - String? fundCurrency, - String? fundType, - String? dateOpened, - int? minimumInvestmentAmount, - int? subsequentMultiples, - double? offerPrice, - double? bidPrice, - int? isMoneyMarket, - String? investmentBasis, - }) { - return MutualFundProductModel( - fundId: fundId ?? this.fundId, - fundDescription: fundDescription ?? this.fundDescription, - fundCurrency: fundCurrency ?? this.fundCurrency, - fundType: fundType ?? this.fundType, - dateOpened: dateOpened ?? this.dateOpened, - minimumInvestmentAmount: - minimumInvestmentAmount ?? this.minimumInvestmentAmount, - subsequentMultiples: subsequentMultiples ?? this.subsequentMultiples, - offerPrice: offerPrice ?? this.offerPrice, - bidPrice: bidPrice ?? this.bidPrice, - isMoneyMarket: isMoneyMarket ?? this.isMoneyMarket, - investmentBasis: investmentBasis ?? this.investmentBasis, - ); - } - - @override - bool operator ==(covariant MutualFundProductModel other) { - if (identical(this, other)) return true; - - return other.fundId == fundId && - other.fundDescription == fundDescription && - other.fundCurrency == fundCurrency && - other.fundType == fundType && - other.dateOpened == dateOpened && - other.minimumInvestmentAmount == minimumInvestmentAmount && - other.subsequentMultiples == subsequentMultiples && - other.offerPrice == offerPrice && - other.bidPrice == bidPrice && - other.isMoneyMarket == isMoneyMarket && - other.investmentBasis == investmentBasis; - } - - @override - int get hashCode { - return fundId.hashCode ^ - fundDescription.hashCode ^ - fundCurrency.hashCode ^ - fundType.hashCode ^ - dateOpened.hashCode ^ - minimumInvestmentAmount.hashCode ^ - subsequentMultiples.hashCode ^ - offerPrice.hashCode ^ - bidPrice.hashCode ^ - isMoneyMarket.hashCode ^ - investmentBasis.hashCode; - } -} diff --git a/lib/shared/domain/models/neulogic/relationship_model.dart b/lib/shared/domain/models/neulogic/relationship_model.dart deleted file mode 100644 index 8abccd8..0000000 --- a/lib/shared/domain/models/neulogic/relationship_model.dart +++ /dev/null @@ -1,46 +0,0 @@ -import 'dart:convert'; - -RelationShipsResponseModel cashAccountTransactionResponseModelFromJson( - String str) => - RelationShipsResponseModel.fromJson(json.decode(str)); - -class RelationShipsResponseModel { - final String status; - final List result; - - RelationShipsResponseModel({ - required this.status, - required this.result, - }); - - factory RelationShipsResponseModel.fromJson(Map json) => - RelationShipsResponseModel( - status: json["status"], - result: - List.from(json["result"].map((x) => Result.fromJson(x))), - ); -} - -class Result { - final List items; - - Result({ - required this.items, - }); - - factory Result.fromJson(Map json) => Result( - items: List.from( - json["relation"].map((x) => RelationShipModel.fromJson(x))), - ); -} - -class RelationShipModel { - final String id; - final String code; - - RelationShipModel({required this.id, required this.code}); - - factory RelationShipModel.fromJson(Map json) => - RelationShipModel( - id: json["RELATIONSHIP_CD"], code: json["RELATIONSHIP_DSC"]); -} diff --git a/lib/shared/domain/models/neulogic/sma_individual_valuation_model.dart b/lib/shared/domain/models/neulogic/sma_individual_valuation_model.dart deleted file mode 100644 index 5ba5a41..0000000 --- a/lib/shared/domain/models/neulogic/sma_individual_valuation_model.dart +++ /dev/null @@ -1,120 +0,0 @@ -class SMAIndividualFundValuationModel { - String fundDescription; - String fundId; - String assetClassDescription; - String assetSubclassDescription; - num orderNo; - num costAmount; - dynamic costPrice; - String currencyCode; - String currencyDescription; - num currentAmount; - num accruedIncome; - String customerId; - num closePrice; - String customerName; - String effectiveDate; - num interestRate; - String maturityDate; - num rptKey; - String securityDescription; - String valuationDate; - num averageYieldRate; - num holdingsValue; - String marketSymbolId; - num gainLossAmount; - num gainLossPercent; - num portfolioPercent; - num marketValue; - - SMAIndividualFundValuationModel({ - required this.fundDescription, - required this.fundId, - required this.assetClassDescription, - required this.assetSubclassDescription, - required this.orderNo, - required this.costAmount, - required this.costPrice, - required this.currencyCode, - required this.currencyDescription, - required this.currentAmount, - required this.accruedIncome, - required this.customerId, - required this.closePrice, - required this.customerName, - required this.effectiveDate, - required this.interestRate, - required this.maturityDate, - required this.rptKey, - required this.securityDescription, - required this.valuationDate, - required this.averageYieldRate, - required this.holdingsValue, - required this.marketSymbolId, - required this.gainLossAmount, - required this.gainLossPercent, - required this.portfolioPercent, - required this.marketValue, - }); - - factory SMAIndividualFundValuationModel.fromJson(Map json) => - SMAIndividualFundValuationModel( - fundDescription: json["FUND_DESCRIPTION"] ?? '', - fundId: json["FUND_ID"] ?? '', - assetClassDescription: json["ASSET_CLASS_DESCRIPTION"] ?? '', - assetSubclassDescription: json["ASSET_SUBCLASS_DESCRIPTION"] ?? '', - orderNo: json["ORDER_NO"] ?? 0, - costAmount: json["COST_AMOUNT"] ?? 0, - costPrice: json["COST_PRICE"] ?? 0, - currencyCode: json["CURRENCY_CODE"], - currencyDescription: json["CURRENCY_DESCRIPTION"] ?? '', - currentAmount: json["CURRENT_AMOUNT"] ?? 0, - accruedIncome: json["ACCRUED_INCOME"] ?? 0, - customerId: json["CUSTOMER_ID"] ?? '', - closePrice: json["CLOSE_PRICE"] ?? 0, - customerName: json["CUSTOMER_NAME"] ?? '', - effectiveDate: json["EFFECTIVE_DATE"] ?? '', - interestRate: json["INTEREST_RATE"] ?? 0, - maturityDate: json["MATURITY_DATE"] ?? '', - rptKey: json["RPT_KEY"] ?? 0, - securityDescription: json["SECURITY_DESCRIPTION"] ?? '', - valuationDate: json["VALUATION_DATE"] ?? '', - averageYieldRate: json["AVERAGE_YIELD_RATE"] ?? 0, - holdingsValue: json["HOLDINGS_VALUE"] ?? 0, - marketSymbolId: json["MARKET_SYMBOL_ID"] ?? '', - gainLossAmount: json["GAIN_LOSS_AMOUNT"] ?? 0, - gainLossPercent: json["GAIN_LOSS_PERCENT"] ?? 0, - portfolioPercent: json["PORTFOLIO_PERCENT"] ?? 0, - marketValue: json["MARKET_VALUE"] ?? 0, - ); - - Map toJson() => { - "FUND_DESCRIPTION": fundDescription, - "FUND_ID": fundId, - "ASSET_CLASS_DESCRIPTION": assetClassDescription, - "ASSET_SUBCLASS_DESCRIPTION": assetSubclassDescription, - "ORDER_NO": orderNo, - "COST_AMOUNT": costAmount, - "COST_PRICE": costPrice, - "CURRENCY_CODE": currencyCode, - "CURRENCY_DESCRIPTION": currencyDescription, - "CURRENT_AMOUNT": currentAmount, - "ACCRUED_INCOME": accruedIncome, - "CUSTOMER_ID": customerId, - "CLOSE_PRICE": closePrice, - "CUSTOMER_NAME": customerName, - "EFFECTIVE_DATE": effectiveDate, - "INTEREST_RATE": interestRate, - "MATURITY_DATE": maturityDate, - "RPT_KEY": rptKey, - "SECURITY_DESCRIPTION": securityDescription, - "VALUATION_DATE": valuationDate, - "AVERAGE_YIELD_RATE": averageYieldRate, - "HOLDINGS_VALUE": holdingsValue, - "MARKET_SYMBOL_ID": marketSymbolId, - "GAIN_LOSS_AMOUNT": gainLossAmount, - "GAIN_LOSS_PERCENT": gainLossPercent, - "PORTFOLIO_PERCENT": portfolioPercent, - "MARKET_VALUE": marketValue, - }; -} diff --git a/lib/shared/domain/models/neulogic/sma_invesment_value_model.dart b/lib/shared/domain/models/neulogic/sma_invesment_value_model.dart deleted file mode 100644 index 931d098..0000000 --- a/lib/shared/domain/models/neulogic/sma_invesment_value_model.dart +++ /dev/null @@ -1,71 +0,0 @@ -// ignore_for_file: public_member_api_docs, sort_constructors_first -import 'dart:convert'; - -class SmaInvestmentValueModel { - final num portfolioValue; - final num investmentValue; - final num returnValue; - final num roi; - SmaInvestmentValueModel({ - required this.portfolioValue, - required this.investmentValue, - required this.returnValue, - required this.roi, - }); - - SmaInvestmentValueModel copyWith({ - num? portfolioValue, - num? investmentValue, - num? returnValue, - num? roi, - }) { - return SmaInvestmentValueModel( - portfolioValue: portfolioValue ?? this.portfolioValue, - investmentValue: investmentValue ?? this.investmentValue, - returnValue: returnValue ?? this.returnValue, - roi: roi ?? this.roi, - ); - } - - Map toMap() { - return { - 'portfolioValue': portfolioValue, - 'investmentValue': investmentValue, - 'returnValue': returnValue, - 'roi': roi, - }; - } - - factory SmaInvestmentValueModel.fromMap(Map map) { - return SmaInvestmentValueModel( - portfolioValue: map['portfolioValue'] ?? 0, - investmentValue: map['investmentValue'] ?? 0, - returnValue: map['returnValue'] ?? 0, - roi: map['roi'] ?? 0, - ); - } - - String toJson() => json.encode(toMap()); - - factory SmaInvestmentValueModel.fromJson(String source) => - SmaInvestmentValueModel.fromMap( - json.decode(source) as Map); - - @override - bool operator ==(covariant SmaInvestmentValueModel other) { - if (identical(this, other)) return true; - - return other.portfolioValue == portfolioValue && - other.investmentValue == investmentValue && - other.returnValue == returnValue && - other.roi == roi; - } - - @override - int get hashCode { - return portfolioValue.hashCode ^ - investmentValue.hashCode ^ - returnValue.hashCode ^ - roi.hashCode; - } -} diff --git a/lib/shared/domain/models/neulogic/tbills_products_model.dart b/lib/shared/domain/models/neulogic/tbills_products_model.dart deleted file mode 100644 index 3f7d7ce..0000000 --- a/lib/shared/domain/models/neulogic/tbills_products_model.dart +++ /dev/null @@ -1,284 +0,0 @@ -// ignore_for_file: public_member_api_docs, sort_constructors_first -import 'dart:convert'; - -import 'package:flutter/foundation.dart'; - -class TreasuryBillsResponse { - int? statusCode; - String? message; - List? data; - TreasuryBillsResponse({ - this.statusCode, - this.message, - this.data, - }); - - TreasuryBillsResponse copyWith({ - int? statusCode, - String? message, - List? data, - }) { - return TreasuryBillsResponse( - statusCode: statusCode ?? this.statusCode, - message: message ?? this.message, - data: data ?? this.data, - ); - } - - Map toMap() { - return { - 'statusCode': statusCode, - 'message': message, - 'data': - data == null ? [] : List.from(data!.map((x) => x.toMap())), - }; - } - - factory TreasuryBillsResponse.fromMap(Map map) { - return TreasuryBillsResponse( - statusCode: map['statusCode'] != null ? map['statusCode'] as int : null, - message: map['message'] != null ? map['message'] as String : null, - data: map['data'] != null - ? List.from( - map['data'].map((x) => TreasuryBillsProductsModel.fromMap(x))) - : null, - ); - } - - String toJson() => json.encode(toMap()); - - factory TreasuryBillsResponse.fromJson(String source) => - TreasuryBillsResponse.fromMap( - json.decode(source) as Map); - - @override - String toString() => - 'TreasuryBillsResponse(statusCode: $statusCode, message: $message, data: $data)'; - - @override - bool operator ==(covariant TreasuryBillsResponse other) { - if (identical(this, other)) return true; - - return other.statusCode == statusCode && - other.message == message && - listEquals(other.data, data); - } - - @override - int get hashCode => statusCode.hashCode ^ message.hashCode ^ data.hashCode; -} - -class TreasuryBillsProductsModel { - String? allowPurchaseYn; - String? allowSaleYn; - String? applyCommissionYn; - String? applyCustodyFeeYn; - String? applyManagementFeeYn; - String? boaId; - String? currencyDescription; - String? currencyId; - String? instrumentDescription; - String? instrumentId; - String? isMaturedYn; - String? maturityDate; - num? maximumPurchaseValue; - num? maximumSaleValue; - num? minimumPurchaseValue; - num? minimumSaleValue; - String? productDescription; - String? productId; - - TreasuryBillsProductsModel({ - this.allowPurchaseYn, - this.allowSaleYn, - this.applyCommissionYn, - this.applyCustodyFeeYn, - this.applyManagementFeeYn, - this.boaId, - this.currencyDescription, - this.currencyId, - this.instrumentDescription, - this.instrumentId, - this.isMaturedYn, - this.maturityDate, - this.maximumPurchaseValue, - this.maximumSaleValue, - this.minimumPurchaseValue, - this.minimumSaleValue, - this.productDescription, - this.productId, - }); - - TreasuryBillsProductsModel copyWith({ - String? allowPurchaseYn, - String? allowSaleYn, - String? applyCommissionYn, - String? applyCustodyFeeYn, - String? applyManagementFeeYn, - String? boaId, - String? currencyDescription, - String? currencyId, - String? instrumentDescription, - String? instrumentId, - String? isMaturedYn, - String? maturityDate, - num? maximumPurchaseValue, - num? maximumSaleValue, - num? minimumPurchaseValue, - num? minimumSaleValue, - String? productDescription, - String? productId, - }) { - return TreasuryBillsProductsModel( - allowPurchaseYn: allowPurchaseYn ?? this.allowPurchaseYn, - allowSaleYn: allowSaleYn ?? this.allowSaleYn, - applyCommissionYn: applyCommissionYn ?? this.applyCommissionYn, - applyCustodyFeeYn: applyCustodyFeeYn ?? this.applyCustodyFeeYn, - applyManagementFeeYn: applyManagementFeeYn ?? this.applyManagementFeeYn, - boaId: boaId ?? this.boaId, - currencyDescription: currencyDescription ?? this.currencyDescription, - currencyId: currencyId ?? this.currencyId, - instrumentDescription: - instrumentDescription ?? this.instrumentDescription, - instrumentId: instrumentId ?? this.instrumentId, - isMaturedYn: isMaturedYn ?? this.isMaturedYn, - maturityDate: maturityDate ?? this.maturityDate, - maximumPurchaseValue: maximumPurchaseValue ?? this.maximumPurchaseValue, - maximumSaleValue: maximumSaleValue ?? this.maximumSaleValue, - minimumPurchaseValue: minimumPurchaseValue ?? this.minimumPurchaseValue, - minimumSaleValue: minimumSaleValue ?? this.minimumSaleValue, - productDescription: productDescription ?? this.productDescription, - productId: productId ?? this.productId, - ); - } - - Map toMap() { - return { - 'allowPurchaseYn': allowPurchaseYn, - 'allowSaleYn': allowSaleYn, - 'applyCommissionYn': applyCommissionYn, - 'applyCustodyFeeYn': applyCustodyFeeYn, - 'applyManagementFeeYn': applyManagementFeeYn, - 'boaId': boaId, - 'currencyDescription': currencyDescription, - 'currencyId': currencyId, - 'instrumentDescription': instrumentDescription, - 'instrumentId': instrumentId, - 'isMaturedYn': isMaturedYn, - 'maturityDate': maturityDate, - 'maximumPurchaseValue': maximumPurchaseValue, - 'maximumSaleValue': maximumSaleValue, - 'minimumPurchaseValue': minimumPurchaseValue, - 'minimumSaleValue': minimumSaleValue, - 'productDescription': productDescription, - 'productId': productId, - }; - } - - factory TreasuryBillsProductsModel.fromMap(Map map) { - return TreasuryBillsProductsModel( - allowPurchaseYn: map['ALLOW_PURCHASE_YN'] != null - ? map['ALLOW_PURCHASE_YN'] as String - : null, - allowSaleYn: - map['ALLOW_SALE_YN'] != null ? map['ALLOW_SALE_YN'] as String : null, - applyCommissionYn: map['APPLY_COMMISSION_YN'] != null - ? map['APPLY_COMMISSION_YN'] as String - : null, - applyCustodyFeeYn: map['APPLY_CUSTODY_FEE_YN'] != null - ? map['APPLY_CUSTODY_FEE_YN'] as String - : null, - applyManagementFeeYn: map['APPLY_MANAGEMENT_FEE_YN'] != null - ? map['APPLY_MANAGEMENT_FEE_YN'] as String - : null, - boaId: map['BOA_ID'] != null ? map['BOA_ID'] as String : null, - currencyDescription: map['CURRENCY_DESCRIPTION'] != null - ? map['CURRENCY_DESCRIPTION'] as String - : null, - currencyId: - map['CURRENCY_ID'] != null ? map['CURRENCY_ID'] as String : null, - instrumentDescription: map['INSTRUMENT_DESCRIPTION'] != null - ? map['INSTRUMENT_DESCRIPTION'] as String - : null, - instrumentId: - map['INSTRUMENT_ID'] != null ? map['INSTRUMENT_ID'] as String : null, - isMaturedYn: - map['IS_MATURED_YN'] != null ? map['IS_MATURED_YN'] as String : null, - maturityDate: - map['MATURITY_DATE'] != null ? map['MATURITY_DATE'] as String : null, - maximumPurchaseValue: map['MAXIMUM_PURCHASE_VALUE'] != null - ? map['MAXIMUM_PURCHASE_VALUE'] as num - : null, - maximumSaleValue: map['MAXIMUM_SALE_VALUE'] != null - ? map['MAXIMUM_SALE_VALUE'] as num - : null, - minimumPurchaseValue: map['MINIMUM_PURCHASE_VALUE'] != null - ? map['MINIMUM_PURCHASE_VALUE'] as num - : null, - minimumSaleValue: map['MINIMUM_SALE_VALUE'] != null - ? map['MINIMUM_SALE_VALUE'] as num - : null, - productDescription: map['PRODUCT_DESCRIPTION'] != null - ? map['PRODUCT_DESCRIPTION'] as String - : null, - productId: map['PRODUCT_ID'] != null ? map['PRODUCT_ID'] as String : null, - ); - } - - String toJson() => json.encode(toMap()); - - factory TreasuryBillsProductsModel.fromJson(String source) => - TreasuryBillsProductsModel.fromMap( - json.decode(source) as Map); - - @override - String toString() { - return 'TreasuryBondsProductsModel(ALLOW_PURCHASE_YN: $allowPurchaseYn, ALLOW_SALE_YN: $allowSaleYn, APPLY_COMMISSION_YN: $applyCommissionYn, APPLY_CUSTODY_FEE_YN: $applyCustodyFeeYn, APPLY_MANAGEMENT_FEE_YN: $applyManagementFeeYn, BOA_ID: $boaId, CURRENCY_DESCRIPTION: $currencyDescription, CURRENCY_ID: $currencyId, INSTRUMENT_DESCRIPTION": $instrumentDescription, INSTRUMENT_ID: $instrumentId, IS_MATURED_YN: $isMaturedYn, MATURITY_DATE: $maturityDate, MAXIMUM_PURCHASE_VALUE: $maximumPurchaseValue, MAXIMUM_SALE_VALUE: $maximumSaleValue, MINIMUM_PURCHASE_VALUE: $minimumPurchaseValue, MINIMUM_SALE_VALUE: $minimumSaleValue, PRODUCT_DESCRIPTION: $productDescription, PRODUCT_ID: $productId)'; - } - - @override - bool operator ==(covariant TreasuryBillsProductsModel other) { - if (identical(this, other)) return true; - - return other.allowPurchaseYn == allowPurchaseYn && - other.allowSaleYn == allowSaleYn && - other.applyCommissionYn == applyCommissionYn && - other.applyCustodyFeeYn == applyCustodyFeeYn && - other.applyManagementFeeYn == applyManagementFeeYn && - other.boaId == boaId && - other.currencyDescription == currencyDescription && - other.currencyId == currencyId && - other.instrumentDescription == instrumentDescription && - other.instrumentId == instrumentId && - other.isMaturedYn == isMaturedYn && - other.maturityDate == maturityDate && - other.maximumPurchaseValue == maximumPurchaseValue && - other.maximumSaleValue == maximumSaleValue && - other.minimumPurchaseValue == minimumPurchaseValue && - other.minimumSaleValue == minimumSaleValue && - other.productDescription == productDescription && - other.productId == productId; - } - - @override - int get hashCode { - return allowPurchaseYn.hashCode ^ - allowSaleYn.hashCode ^ - applyCommissionYn.hashCode ^ - applyCustodyFeeYn.hashCode ^ - applyManagementFeeYn.hashCode ^ - boaId.hashCode ^ - currencyDescription.hashCode ^ - currencyId.hashCode ^ - instrumentDescription.hashCode ^ - instrumentId.hashCode ^ - isMaturedYn.hashCode ^ - maturityDate.hashCode ^ - maximumPurchaseValue.hashCode ^ - maximumSaleValue.hashCode ^ - minimumPurchaseValue.hashCode ^ - minimumSaleValue.hashCode ^ - productDescription.hashCode ^ - productId.hashCode; - } -} diff --git a/lib/shared/domain/models/news/news_model.dart b/lib/shared/domain/models/news/news_model.dart deleted file mode 100644 index 4c27b7e..0000000 --- a/lib/shared/domain/models/news/news_model.dart +++ /dev/null @@ -1,157 +0,0 @@ -import 'dart:convert'; - -class NewsModel { -// final Source source; - final dynamic author; - final String title; - final String description; - final String url; - final String urlToImage; - final DateTime publishedAt; - final String content; - NewsModel({ - // required this.source, - required this.author, - required this.title, - required this.description, - required this.url, - required this.urlToImage, - required this.publishedAt, - required this.content, - }); - - NewsModel copyWith({ - // Source? source, - dynamic author, - String? title, - String? description, - String? url, - String? urlToImage, - DateTime? publishedAt, - String? content, - }) { - return NewsModel( - // source: source ?? this.source, - author: author ?? this.author, - title: title ?? this.title, - description: description ?? this.description, - url: url ?? this.url, - urlToImage: urlToImage ?? this.urlToImage, - publishedAt: publishedAt ?? this.publishedAt, - content: content ?? this.content, - ); - } - - Map toMap() { - return { - // 'source': source.toMap(), - 'author': author, - 'title': title, - 'description': description, - 'url': url, - 'urlToImage': urlToImage, - 'publishedAt': publishedAt.millisecondsSinceEpoch, - 'content': content, - }; - } - - factory NewsModel.fromMap(Map map) { - return NewsModel( - // source: Source.fromMap(map['source'] as Map), - author: map['author'] ?? '', - title: map['title'] ?? '', - description: map['description'] ?? '', - url: map['url'] ?? '', - urlToImage: map['urlToImage'] ?? '', - publishedAt: map['publishedAt'] == null - ? DateTime.now() - : DateTime.parse(map['publishedAt']), - content: map['content'] ?? '', - ); - } - - String toJson() => json.encode(toMap()); - - factory NewsModel.fromJson(String source) => - NewsModel.fromMap(json.decode(source) as Map); - - @override - String toString() { - return 'NewsModel(author: $author, title: $title, description: $description, url: $url, urlToImage: $urlToImage, publishedAt: $publishedAt, content: $content)'; - } - - @override - bool operator ==(covariant NewsModel other) { - if (identical(this, other)) return true; - - return other.author == author && - other.title == title && - other.description == description && - other.url == url && - other.urlToImage == urlToImage && - other.publishedAt == publishedAt && - other.content == content; - } - - @override - int get hashCode { - return author.hashCode ^ - title.hashCode ^ - description.hashCode ^ - url.hashCode ^ - urlToImage.hashCode ^ - publishedAt.hashCode ^ - content.hashCode; - } -} - -class Source { - final String id; - final String name; - Source({ - required this.id, - required this.name, - }); - - Source copyWith({ - String? id, - String? name, - }) { - return Source( - id: id ?? this.id, - name: name ?? this.name, - ); - } - - Map toMap() { - return { - 'id': id, - 'name': name, - }; - } - - factory Source.fromMap(Map map) { - return Source( - id: map['id'] ?? '', - name: map['name'] ?? '', - ); - } - - String toJson() => json.encode(toMap()); - - factory Source.fromJson(String source) => - Source.fromMap(json.decode(source) as Map); - - @override - String toString() => 'Source(id: $id, name: $name)'; - - @override - bool operator ==(covariant Source other) { - if (identical(this, other)) return true; - - return other.id == id && other.name == name; - } - - @override - int get hashCode => id.hashCode ^ name.hashCode; -} diff --git a/lib/shared/domain/models/paginated_response.dart b/lib/shared/domain/models/paginated_response.dart index bb248d6..2c5b559 100644 --- a/lib/shared/domain/models/paginated_response.dart +++ b/lib/shared/domain/models/paginated_response.dart @@ -19,8 +19,4 @@ class PaginatedResponse { skip: json['skip'] ?? 0, data: data, ); - @override - String toString() { - return 'PaginatedResponse(total:$total, skip:$skip, data:${data.length})'; - } } diff --git a/lib/shared/domain/models/parse_response.dart b/lib/shared/domain/models/parse_response.dart index 7a92145..e27cb39 100644 --- a/lib/shared/domain/models/parse_response.dart +++ b/lib/shared/domain/models/parse_response.dart @@ -3,13 +3,7 @@ // final parseResponse = parseResponseFromMap(jsonString); class ParseResponse { - ParseResponse({ - this.status, - this.message, - this.data, - this.success = false, - }); - final bool success; + ParseResponse({this.status, this.message, this.data}); final String? status; final String? message; final T? data; @@ -17,7 +11,6 @@ class ParseResponse { factory ParseResponse.fromMap(dynamic json, {required T Function(dynamic) modifier}) { return ParseResponse( - success: json['status'] == 'success', status: json['status'], message: json['message'], data: modifier(json), diff --git a/lib/shared/domain/models/pdf_generator/generate_pdf_model.dart b/lib/shared/domain/models/pdf_generator/generate_pdf_model.dart deleted file mode 100644 index 49174c0..0000000 --- a/lib/shared/domain/models/pdf_generator/generate_pdf_model.dart +++ /dev/null @@ -1,76 +0,0 @@ -// ignore_for_file: public_member_api_docs, sort_constructors_first - -import 'dart:convert'; - -import 'package:projectr/shared/domain/models/kyc_be/embassy_model.dart'; -import 'package:flutter/foundation.dart'; - -import 'package:projectr/shared/domain/models/authentication/login_model.dart'; -import 'package:projectr/shared/domain/models/zanibal/investment_account_model.dart'; - -class GenerateReportModel { - List accounts; - String businessDate; - String baseURL; - String token; - LoginUser user; - EmbassyModel? letterDetails; - GenerateReportModel( - {required this.accounts, - required this.businessDate, - required this.baseURL, - required this.token, - required this.user, - this.letterDetails}); - - GenerateReportModel copyWith( - {List? accounts, - String? businessDate, - String? baseURL, - String? token, - LoginUser? user, - EmbassyModel? letterDetails}) { - return GenerateReportModel( - accounts: accounts ?? this.accounts, - businessDate: businessDate ?? this.businessDate, - baseURL: baseURL ?? this.baseURL, - token: token ?? this.token, - user: user ?? this.user, - letterDetails: letterDetails ?? this.letterDetails); - } - - Map toMap() { - var map = { - 'accounts': json.decode(investmentAccountModelToJson(accounts)), - 'businessDate': businessDate, - 'baseURL': baseURL, - 'token': token, - 'user': user.toMap(), - }; - if (letterDetails != null && letterDetails!.id != 0) { - map.addAll({'letterDetails': letterDetails!.toMap()}); - } - - return map; - } - - @override - bool operator ==(covariant GenerateReportModel other) { - if (identical(this, other)) return true; - - return listEquals(other.accounts, accounts) && - other.businessDate == businessDate && - other.baseURL == baseURL && - other.token == token && - other.user == user; - } - - @override - int get hashCode { - return accounts.hashCode ^ - businessDate.hashCode ^ - baseURL.hashCode ^ - token.hashCode ^ - user.hashCode; - } -} diff --git a/lib/shared/domain/models/performing_assets/perfoming_asset_model.dart b/lib/shared/domain/models/performing_assets/perfoming_asset_model.dart deleted file mode 100644 index 96c64ea..0000000 --- a/lib/shared/domain/models/performing_assets/perfoming_asset_model.dart +++ /dev/null @@ -1,177 +0,0 @@ -// ignore_for_file: public_member_api_docs, sort_constructors_first -import 'dart:convert'; - -class PerformingAssetModel { - num id; - num calculateChangePercent; - String symbol; - num prevClosingPrice; - num openingPrice; - num highPrice; - num lowPrice; - num closePrice; - num change; - num percChange; - num trades; - num volume; - num value; - String market; - String sector; - String company2; - DateTime tradeDate; - PerformingAssetModel({ - required this.id, - required this.calculateChangePercent, - required this.symbol, - required this.prevClosingPrice, - required this.openingPrice, - required this.highPrice, - required this.lowPrice, - required this.closePrice, - required this.change, - required this.percChange, - required this.trades, - required this.volume, - required this.value, - required this.market, - required this.sector, - required this.company2, - required this.tradeDate, - }); - - PerformingAssetModel copyWith({ - num? id, - num? calculateChangePercent, - String? symbol, - num? prevClosingPrice, - num? openingPrice, - num? highPrice, - num? lowPrice, - num? closePrice, - num? change, - num? percChange, - num? trades, - num? volume, - num? value, - String? market, - String? sector, - String? company2, - DateTime? tradeDate, - }) { - return PerformingAssetModel( - id: id ?? this.id, - calculateChangePercent: - calculateChangePercent ?? this.calculateChangePercent, - symbol: symbol ?? this.symbol, - prevClosingPrice: prevClosingPrice ?? this.prevClosingPrice, - openingPrice: openingPrice ?? this.openingPrice, - highPrice: highPrice ?? this.highPrice, - lowPrice: lowPrice ?? this.lowPrice, - closePrice: closePrice ?? this.closePrice, - change: change ?? this.change, - percChange: percChange ?? this.percChange, - trades: trades ?? this.trades, - volume: volume ?? this.volume, - value: value ?? this.value, - market: market ?? this.market, - sector: sector ?? this.sector, - company2: company2 ?? this.company2, - tradeDate: tradeDate ?? this.tradeDate, - ); - } - - Map toMap() { - return { - 'id': id, - 'calculateChangePercent': calculateChangePercent, - 'symbol': symbol, - 'prevClosingPrice': prevClosingPrice, - 'openingPrice': openingPrice, - 'highPrice': highPrice, - 'lowPrice': lowPrice, - 'closePrice': closePrice, - 'change': change, - 'percChange': percChange, - 'trades': trades, - 'volume': volume, - 'value': value, - 'market': market, - 'sector': sector, - 'company2': company2, - 'tradeDate': tradeDate.millisecondsSinceEpoch, - }; - } - - factory PerformingAssetModel.fromMap(Map map) { - return PerformingAssetModel( - id: map['Id'] ?? 0, - calculateChangePercent: map['CalculateChangePercent'] ?? 0, - symbol: map['Symbol'] ?? '', - prevClosingPrice: map['PrevClosingPrice'] ?? 0, - openingPrice: map['OpeningPrice'] ?? 0, - highPrice: map['HighPrice'] ?? 0, - lowPrice: map['LowPrice'] ?? 0, - closePrice: map['ClosePrice'] ?? 0, - change: map['Change'] ?? 0, - percChange: map['PercChange'] ?? 0, - trades: map['Trades'] ?? 0, - volume: map['Volume'] ?? 0, - value: map['Value'] ?? 0, - market: map['Market'] ?? '', - sector: map['Sector'] ?? '', - company2: map['Company2'] ?? '', - tradeDate: map['TradeDate'] == null - ? DateTime.now() - : DateTime.parse(map['TradeDate']), - ); - } - - String toJson() => json.encode(toMap()); - - factory PerformingAssetModel.fromJson(String source) => - PerformingAssetModel.fromMap(json.decode(source) as Map); - - @override - bool operator ==(covariant PerformingAssetModel other) { - if (identical(this, other)) return true; - - return other.id == id && - other.calculateChangePercent == calculateChangePercent && - other.symbol == symbol && - other.prevClosingPrice == prevClosingPrice && - other.openingPrice == openingPrice && - other.highPrice == highPrice && - other.lowPrice == lowPrice && - other.closePrice == closePrice && - other.change == change && - other.percChange == percChange && - other.trades == trades && - other.volume == volume && - other.value == value && - other.market == market && - other.sector == sector && - other.company2 == company2 && - other.tradeDate == tradeDate; - } - - @override - int get hashCode { - return id.hashCode ^ - calculateChangePercent.hashCode ^ - symbol.hashCode ^ - prevClosingPrice.hashCode ^ - openingPrice.hashCode ^ - highPrice.hashCode ^ - lowPrice.hashCode ^ - closePrice.hashCode ^ - change.hashCode ^ - percChange.hashCode ^ - trades.hashCode ^ - volume.hashCode ^ - value.hashCode ^ - market.hashCode ^ - sector.hashCode ^ - company2.hashCode ^ - tradeDate.hashCode; - } -} diff --git a/lib/shared/domain/models/reporting/all_ledgers_dashboard_investment_value_model.dart b/lib/shared/domain/models/reporting/all_ledgers_dashboard_investment_value_model.dart deleted file mode 100644 index f8152c4..0000000 --- a/lib/shared/domain/models/reporting/all_ledgers_dashboard_investment_value_model.dart +++ /dev/null @@ -1,50 +0,0 @@ -class AllLedgersDashboardInvestmentValueModel { - InvestmentValue ngn; - InvestmentValue usd; - InvestmentValue gbp; - InvestmentValue eur; - - AllLedgersDashboardInvestmentValueModel({ - required this.ngn, - required this.usd, - required this.gbp, - required this.eur, - }); - - factory AllLedgersDashboardInvestmentValueModel.fromJson( - Map json) => - AllLedgersDashboardInvestmentValueModel( - ngn: InvestmentValue.fromJson(json["NGN"]), - usd: InvestmentValue.fromJson(json["USD"]), - gbp: InvestmentValue.fromJson(json["GBP"]), - eur: InvestmentValue.fromJson(json["EUR"]), - ); - - Map toJson() => { - "NGN": ngn.toJson(), - "USD": usd.toJson(), - "GBP": gbp.toJson(), - "EUR": eur.toJson(), - }; -} - -class InvestmentValue { - num totalCashBalance; - num totalInvestmentValue; - - InvestmentValue({ - required this.totalCashBalance, - required this.totalInvestmentValue, - }); - - factory InvestmentValue.fromJson(Map json) => - InvestmentValue( - totalCashBalance: json["totalCashBalance"] ?? 0, - totalInvestmentValue: json["totalInvestmentValue"] ?? 0, - ); - - Map toJson() => { - "totalCashBalance": totalCashBalance, - "totalInvestmentValue": totalInvestmentValue, - }; -} diff --git a/lib/shared/domain/models/reporting/business_investment_summary_model.dart b/lib/shared/domain/models/reporting/business_investment_summary_model.dart deleted file mode 100644 index 700fef2..0000000 --- a/lib/shared/domain/models/reporting/business_investment_summary_model.dart +++ /dev/null @@ -1,80 +0,0 @@ -// ignore_for_file: public_member_api_docs, sort_constructors_first -import 'dart:convert'; - -class BusinessesInvestmentSummaryModel { - final num treasuryBill; - final num commercialPaper; - final num securitiesTrading; - final num mutualFund; - final num separatelyManagedAccounts; - BusinessesInvestmentSummaryModel({ - required this.treasuryBill, - required this.commercialPaper, - required this.securitiesTrading, - required this.mutualFund, - required this.separatelyManagedAccounts, - }); - - BusinessesInvestmentSummaryModel copyWith({ - num? treasuryBill, - num? commercialPaper, - num? securitiesTrading, - num? mutualFund, - num? separatelyManagedAccounts, - }) { - return BusinessesInvestmentSummaryModel( - treasuryBill: treasuryBill ?? this.treasuryBill, - commercialPaper: commercialPaper ?? this.commercialPaper, - securitiesTrading: securitiesTrading ?? this.securitiesTrading, - mutualFund: mutualFund ?? this.mutualFund, - separatelyManagedAccounts: - separatelyManagedAccounts ?? this.separatelyManagedAccounts, - ); - } - - Map toMap() { - return { - 'Treasury Bill': treasuryBill, - 'Commercial Paper': commercialPaper, - 'Securities Trading': securitiesTrading, - 'Mutual Fund': mutualFund, - 'Separately Managed Accounts': separatelyManagedAccounts, - }; - } - - factory BusinessesInvestmentSummaryModel.fromMap(Map map) { - return BusinessesInvestmentSummaryModel( - treasuryBill: map['Treasury Bill'] ?? 0, - commercialPaper: map['Commercial Paper'] ?? 0, - securitiesTrading: map['Securities Trading'] ?? 0, - mutualFund: map['Mutual Fund'] ?? 0, - separatelyManagedAccounts: map['Separately Managed Accounts'] ?? 0, - ); - } - - String toJson() => json.encode(toMap()); - - factory BusinessesInvestmentSummaryModel.fromJson(String source) => - BusinessesInvestmentSummaryModel.fromMap( - json.decode(source) as Map); - - @override - bool operator ==(covariant BusinessesInvestmentSummaryModel other) { - if (identical(this, other)) return true; - - return other.treasuryBill == treasuryBill && - other.commercialPaper == commercialPaper && - other.securitiesTrading == securitiesTrading && - other.mutualFund == mutualFund && - other.separatelyManagedAccounts == separatelyManagedAccounts; - } - - @override - int get hashCode { - return treasuryBill.hashCode ^ - commercialPaper.hashCode ^ - securitiesTrading.hashCode ^ - mutualFund.hashCode ^ - separatelyManagedAccounts.hashCode; - } -} diff --git a/lib/shared/domain/models/reporting/investment_values_model.dart b/lib/shared/domain/models/reporting/investment_values_model.dart deleted file mode 100644 index a9c2294..0000000 --- a/lib/shared/domain/models/reporting/investment_values_model.dart +++ /dev/null @@ -1,367 +0,0 @@ -// ignore_for_file: public_member_api_docs, sort_constructors_first -import 'dart:convert'; - -class InvestmentValuesData { - final num totalCashBalance; - final num totalInvestmentValue; - final CashBreakdown cashBreakdown; - final InvestmentBreakdownModel investmentBreakdown; - InvestmentValuesData({ - required this.totalCashBalance, - required this.totalInvestmentValue, - required this.cashBreakdown, - required this.investmentBreakdown, - }); - - InvestmentValuesData copyWith({ - num? totalCashBalance, - num? totalInvestmentValue, - CashBreakdown? cashBreakdown, - InvestmentBreakdownModel? investmentBreakdown, - }) { - return InvestmentValuesData( - totalCashBalance: totalCashBalance ?? this.totalCashBalance, - totalInvestmentValue: totalInvestmentValue ?? this.totalInvestmentValue, - cashBreakdown: cashBreakdown ?? this.cashBreakdown, - investmentBreakdown: investmentBreakdown ?? this.investmentBreakdown, - ); - } - - factory InvestmentValuesData.fromMap(Map map) { - return InvestmentValuesData( - totalCashBalance: map['totalCashBalance'] ?? 0, - totalInvestmentValue: map['totalInvestmentValue'] ?? 0, - cashBreakdown: CashBreakdown.fromMap(map['cashBreakdown']), - investmentBreakdown: - InvestmentBreakdownModel.fromMap(map['investmentBreakdown']), - ); - } - - factory InvestmentValuesData.fromJson(String source) => - InvestmentValuesData.fromMap(json.decode(source) as Map); - - @override - String toString() { - return 'InvestmentValuesData(totalCashBalance: $totalCashBalance, totalInvestmentValue: $totalInvestmentValue, cashBreakdown: $cashBreakdown, investmentBreakdown: $investmentBreakdown)'; - } - - @override - bool operator ==(covariant InvestmentValuesData other) { - if (identical(this, other)) return true; - - return other.totalCashBalance == totalCashBalance && - other.totalInvestmentValue == totalInvestmentValue && - other.cashBreakdown == cashBreakdown && - other.investmentBreakdown == investmentBreakdown; - } - - @override - int get hashCode { - return totalCashBalance.hashCode ^ - totalInvestmentValue.hashCode ^ - cashBreakdown.hashCode ^ - investmentBreakdown.hashCode; - } -} - -class CashBreakdown { - final num securitiesTrading; - final num cardinalStoneSeparatelyManagedAccount; - final num ngnCustomerWallet; - final num fixedIncomeNote; - final num cardinalStoneEquityFund; - final num cardinalStoneFixedIncomeAlphaFund; - - CashBreakdown( - {required this.securitiesTrading, - required this.cardinalStoneSeparatelyManagedAccount, - required this.ngnCustomerWallet, - required this.fixedIncomeNote, - required this.cardinalStoneEquityFund, - required this.cardinalStoneFixedIncomeAlphaFund}); - - CashBreakdown copyWith({ - num? securitiesTrading, - num? cardinalStoneSeparatelyManagedAccount, - num? fixedIncomeNote, - num? ngnCustomerWallet, - num? cardinalStoneFixedIncomeAlphaFund, - num? cardinalStoneEquityFund, - }) { - return CashBreakdown( - securitiesTrading: securitiesTrading ?? this.securitiesTrading, - ngnCustomerWallet: ngnCustomerWallet ?? this.ngnCustomerWallet, - fixedIncomeNote: fixedIncomeNote ?? this.fixedIncomeNote, - cardinalStoneEquityFund: - cardinalStoneEquityFund ?? this.cardinalStoneEquityFund, - cardinalStoneFixedIncomeAlphaFund: cardinalStoneFixedIncomeAlphaFund ?? - this.cardinalStoneFixedIncomeAlphaFund, - cardinalStoneSeparatelyManagedAccount: - cardinalStoneSeparatelyManagedAccount ?? - this.cardinalStoneSeparatelyManagedAccount, - ); - } - - factory CashBreakdown.fromMap(Map map) { - return CashBreakdown( - securitiesTrading: map['Securities Trading'] ?? 0, - cardinalStoneSeparatelyManagedAccount: - map['CardinalStone Separately Managed Account - NGN'] ?? 0, - fixedIncomeNote: map['Fixed Income Note'] ?? 0, - ngnCustomerWallet: map['NGN Customer Wallet'] ?? 0, - cardinalStoneFixedIncomeAlphaFund: - map['CardinalStone Fixed Income Alpha Fund'] ?? 0, - cardinalStoneEquityFund: map['CardinalStone Equity Fund'] ?? 0, - ); - } - - Map toMap() => { - "Securities Trading": securitiesTrading, - "CardinalStone Separately Managed Account - NGN": - cardinalStoneSeparatelyManagedAccount, - "Fixed Income Note": fixedIncomeNote, - "NGN Customer Wallet": ngnCustomerWallet, - "CardinalStone Fixed Income Alpha Fund": - cardinalStoneFixedIncomeAlphaFund, - "CardinalStone Equity Fund": cardinalStoneEquityFund, - }; - - factory CashBreakdown.fromJson(String source) => - CashBreakdown.fromMap(json.decode(source) as Map); - - @override - String toString() { - return 'CashBreakdown(securitiesTrading: $securitiesTrading, ngnCustomerWallet: $ngnCustomerWallet, fixedIncomeNote: $fixedIncomeNote, cardinalStoneEquityFund: $cardinalStoneEquityFund, cardinalStoneFixedIncomeAlphaFund: $cardinalStoneFixedIncomeAlphaFund, cardinalstoneMoneyMarketFund: $cardinalStoneSeparatelyManagedAccount)'; - } - - @override - bool operator ==(covariant CashBreakdown other) { - if (identical(this, other)) return true; - - return other.securitiesTrading == securitiesTrading && - other.ngnCustomerWallet == ngnCustomerWallet && - other.fixedIncomeNote == fixedIncomeNote && - other.cardinalStoneEquityFund == cardinalStoneEquityFund && - other.cardinalStoneFixedIncomeAlphaFund == - cardinalStoneFixedIncomeAlphaFund && - other.cardinalStoneSeparatelyManagedAccount == - cardinalStoneSeparatelyManagedAccount; - } - - @override - int get hashCode { - return securitiesTrading.hashCode ^ - ngnCustomerWallet.hashCode ^ - fixedIncomeNote.hashCode ^ - cardinalStoneEquityFund.hashCode ^ - cardinalStoneFixedIncomeAlphaFund.hashCode ^ - cardinalStoneSeparatelyManagedAccount.hashCode; - } -} - -class InvestmentBreakdownModel { - final num securitiesTrading; - final num mutualFund; - final num treasuryBill; - final num commercialPaper; - final num eurobond; - final num eurobondInvestmentNotes; - final num fixedIncomeInvestmentNote; - final SeparatelyManagedAccounts separatelyManagedAccounts; - InvestmentBreakdownModel({ - required this.eurobond, - required this.eurobondInvestmentNotes, - required this.securitiesTrading, - required this.mutualFund, - required this.commercialPaper, - required this.treasuryBill, - required this.fixedIncomeInvestmentNote, - required this.separatelyManagedAccounts, - }); - - InvestmentBreakdownModel copyWith({ - num? securitiesTrading, - num? mutualFund, - num? treasuryBill, - num? commercialPaper, - num? eurobond, - num? eurobondInvestmentNotes, - num? fixedIncomeInvestmentNote, - SeparatelyManagedAccounts? separatelyManagedAccounts, - }) { - return InvestmentBreakdownModel( - securitiesTrading: securitiesTrading ?? this.securitiesTrading, - eurobondInvestmentNotes: - eurobondInvestmentNotes ?? this.eurobondInvestmentNotes, - eurobond: eurobond ?? this.eurobond, - mutualFund: mutualFund ?? this.mutualFund, - commercialPaper: commercialPaper ?? this.commercialPaper, - fixedIncomeInvestmentNote: - fixedIncomeInvestmentNote ?? this.fixedIncomeInvestmentNote, - treasuryBill: treasuryBill ?? this.treasuryBill, - separatelyManagedAccounts: - separatelyManagedAccounts ?? this.separatelyManagedAccounts, - ); - } - - factory InvestmentBreakdownModel.fromMap(Map map) { - return InvestmentBreakdownModel( - securitiesTrading: map['Securities Trading'] ?? 0, - eurobond: map['Eurobond'] ?? 0, - eurobondInvestmentNotes: map['Eurobond Investment Notes'] ?? 0, - mutualFund: map['Mutual Fund'] ?? 0, - treasuryBill: map['Treasury Bill'] ?? 0, - commercialPaper: map['Commercial Paper'] ?? 0, - fixedIncomeInvestmentNote: map['Fixed Income Investment Note'] ?? 0, - separatelyManagedAccounts: - SeparatelyManagedAccounts.fromMap(map['Separately Managed Accounts']), - ); - } - - Map toMap() => { - "Securities Trading": securitiesTrading, - "Treasury Bill": treasuryBill, - "Commercial Paper": commercialPaper, - "Mutual Fund": mutualFund, - "Eurobond": eurobond, - "Eurobond Investment Notes": eurobondInvestmentNotes, - "Fixed Income Investment Note": fixedIncomeInvestmentNote, - "Separately Managed Accounts": separatelyManagedAccounts, - }; - - factory InvestmentBreakdownModel.fromJson(String source) => - InvestmentBreakdownModel.fromMap( - json.decode(source) as Map); - - @override - String toString() => - 'InvestmentBreakdown(securitiesTrading: $securitiesTrading, mutualFund: $mutualFund, separatelyManagedAccounts: $separatelyManagedAccounts)'; - - @override - bool operator ==(covariant InvestmentBreakdownModel other) { - if (identical(this, other)) return true; - - return other.securitiesTrading == securitiesTrading && - other.mutualFund == mutualFund && - other.separatelyManagedAccounts == separatelyManagedAccounts; - } - - @override - int get hashCode => - securitiesTrading.hashCode ^ - mutualFund.hashCode ^ - separatelyManagedAccounts.hashCode; -} - -class SeparatelyManagedAccounts { - final num total; - final Breakdown breakdown; - SeparatelyManagedAccounts({ - required this.total, - required this.breakdown, - }); - - SeparatelyManagedAccounts copyWith({ - num? total, - Breakdown? breakdown, - }) { - return SeparatelyManagedAccounts( - total: total ?? this.total, - breakdown: breakdown ?? this.breakdown, - ); - } - - factory SeparatelyManagedAccounts.fromMap(Map map) { - return SeparatelyManagedAccounts( - total: map['total'] ?? 0, - breakdown: Breakdown.fromMap(map['breakdown'] as Map), - ); - } - - factory SeparatelyManagedAccounts.fromJson(String source) => - SeparatelyManagedAccounts.fromMap( - json.decode(source) as Map); - - @override - String toString() => - 'SeparatelyManagedAccounts(total: $total, breakdown: $breakdown)'; - - @override - bool operator ==(covariant SeparatelyManagedAccounts other) { - if (identical(this, other)) return true; - - return other.total == total && other.breakdown == breakdown; - } - - @override - int get hashCode => total.hashCode ^ breakdown.hashCode; -} - -class Breakdown { - final num smaEquities; - final num smaTreasuryBill; - final num smaCommercialPaper; - final num fixedIncomeSma; - Breakdown({ - required this.smaEquities, - required this.smaTreasuryBill, - required this.smaCommercialPaper, - required this.fixedIncomeSma, - }); - - Breakdown copyWith({ - num? smaEquities, - num? smaTreasuryBill, - num? smaCommercialPaper, - num? fixedIncomeSma, - }) { - return Breakdown( - smaEquities: smaEquities ?? this.smaEquities, - smaTreasuryBill: smaTreasuryBill ?? this.smaTreasuryBill, - smaCommercialPaper: smaCommercialPaper ?? this.smaCommercialPaper, - fixedIncomeSma: fixedIncomeSma ?? this.fixedIncomeSma, - ); - } - - factory Breakdown.fromMap(Map map) { - return Breakdown( - smaEquities: map['SMA Equities'] ?? 0, - smaTreasuryBill: map['SMA Treasury Bill'] ?? 0, - smaCommercialPaper: map['SMA Commercial Paper'] ?? 0, - fixedIncomeSma: map['Fixed Income - SMA'] ?? 0, - ); - } - - Map toMap() => { - "SMA Equities": smaEquities, - "SMA Treasury Bill": smaTreasuryBill, - "SMA Commercial Paper": smaCommercialPaper, - "Fixed Income - SMA": fixedIncomeSma, - }; - - factory Breakdown.fromJson(String source) => - Breakdown.fromMap(json.decode(source) as Map); - - @override - String toString() { - return 'Breakdown(smaEquities: $smaEquities, smaTreasuryBill: $smaTreasuryBill, smaCommercialPaper: $smaCommercialPaper, fixedIncomeSma: $fixedIncomeSma)'; - } - - @override - bool operator ==(covariant Breakdown other) { - if (identical(this, other)) return true; - - return other.smaEquities == smaEquities && - other.smaTreasuryBill == smaTreasuryBill && - other.smaCommercialPaper == smaCommercialPaper && - other.fixedIncomeSma == fixedIncomeSma; - } - - @override - int get hashCode { - return smaEquities.hashCode ^ - smaTreasuryBill.hashCode ^ - smaCommercialPaper.hashCode ^ - fixedIncomeSma.hashCode; - } -} diff --git a/lib/shared/domain/models/response.dart b/lib/shared/domain/models/response.dart index e07fc60..5e1f8f1 100644 --- a/lib/shared/domain/models/response.dart +++ b/lib/shared/domain/models/response.dart @@ -1,22 +1,16 @@ // ignore_for_file: public_member_api_docs, sort_constructors_first import 'dart:convert'; -import 'package:projectr/shared/domain/models/either.dart'; -import 'package:projectr/shared/exceptions/app_exception.dart'; - class BaseResponse { - final int statusCode; + final bool status; final String? message; final dynamic data; BaseResponse({ - required this.statusCode, + required this.status, this.message, required this.data, }); - @override - String toString() => - 'BaseResponse(statusCode: $statusCode, message: $message, data: $data)'; BaseResponse copyWith({ int? statusCode, @@ -24,7 +18,7 @@ class BaseResponse { dynamic data, }) { return BaseResponse( - statusCode: statusCode ?? this.statusCode, + status: status, message: message ?? this.message, data: data ?? this.data, ); @@ -32,7 +26,7 @@ class BaseResponse { Map toMap() { return { - 'statusCode': statusCode, + 'status': status, 'message': message, 'data': data, }; @@ -40,7 +34,7 @@ class BaseResponse { factory BaseResponse.fromMap(Map map) { return BaseResponse( - statusCode: map['statusCode'] as int, + status: map['status'] ?? false, message: map['message'] != null ? map['message'] as String : null, data: map['data'] as dynamic, ); @@ -55,15 +49,11 @@ class BaseResponse { bool operator ==(covariant BaseResponse other) { if (identical(this, other)) return true; - return other.statusCode == statusCode && + return other.status == status && other.message == message && other.data == data; } @override - int get hashCode => statusCode.hashCode ^ message.hashCode ^ data.hashCode; -} - -extension ResponseExtension on BaseResponse { - Right get toRight => Right(this); + int get hashCode => status.hashCode ^ message.hashCode ^ data.hashCode; } diff --git a/lib/shared/domain/models/risk_profile_assessment/risk_profile_assessment_model.dart b/lib/shared/domain/models/risk_profile_assessment/risk_profile_assessment_model.dart deleted file mode 100644 index e74b849..0000000 --- a/lib/shared/domain/models/risk_profile_assessment/risk_profile_assessment_model.dart +++ /dev/null @@ -1,269 +0,0 @@ -// ignore_for_file: public_member_api_docs, sort_constructors_first -import 'dart:convert'; - -class Section { - final String title; - final String description; - final List questions; - - Section({ - required this.questions, - required this.title, - required this.description, - }); - - Map toJson() { - return { - 'title': title, - 'description': description, - 'questions': questions.map((question) => question.toJson()).toList(), - }; - } -} - -class Question { - final String questionText; - final String? questionDescription; - final List options; - - Question({ - required this.questionText, - this.questionDescription, - required this.options, - }); - Map toJson() { - return { - 'questionText': questionText, - 'questionDescription': questionDescription, - 'options': options, - }; - } -} - -class RiskProfileAssessmentModel { - int? ageRange; - int? investmentDuration; - int? investmentVolume; - int? objective; - int? tolerance; - int? experience; - int? impact; - int? need; - int? willingnessToTakeRisk; - int? acceptFluctuations; - int? investmentPreference; - int? acceptShortTermLosses; - int? experienceDuringRecession; - int? alternativeIncomeSource; - int? willingnessToLockInvestment; - int? incomeSourceStability; - int? longTermNeed; - - RiskProfileAssessmentModel({ - this.ageRange, - this.investmentDuration, - this.investmentVolume, - this.objective, - this.tolerance, - this.experience, - this.impact, - this.need, - this.willingnessToTakeRisk, - this.acceptFluctuations, - this.investmentPreference, - this.acceptShortTermLosses, - this.experienceDuringRecession, - this.alternativeIncomeSource, - this.willingnessToLockInvestment, - this.incomeSourceStability, - this.longTermNeed, - }); - - RiskProfileAssessmentModel copyWith({ - int? ageRange, - int? investmentDuration, - int? investmentVolume, - int? objective, - int? tolerance, - int? experience, - int? impact, - int? need, - int? willingnessToTakeRisk, - int? acceptFluctuations, - int? investmentPreference, - int? acceptShortTermLosses, - int? experienceDuringRecession, - int? alternativeIncomeSource, - int? willingnessToLockInvestment, - int? incomeSourceStability, - int? longTermNeed, - }) { - return RiskProfileAssessmentModel( - ageRange: ageRange ?? this.ageRange, - investmentDuration: investmentDuration ?? this.investmentDuration, - investmentVolume: investmentVolume ?? this.investmentVolume, - objective: objective ?? this.objective, - tolerance: tolerance ?? this.tolerance, - experience: experience ?? this.experience, - impact: impact ?? this.impact, - need: need ?? this.need, - willingnessToTakeRisk: - willingnessToTakeRisk ?? this.willingnessToTakeRisk, - acceptFluctuations: acceptFluctuations ?? this.acceptFluctuations, - investmentPreference: investmentPreference ?? this.investmentPreference, - acceptShortTermLosses: - acceptShortTermLosses ?? this.acceptShortTermLosses, - experienceDuringRecession: - experienceDuringRecession ?? this.experienceDuringRecession, - alternativeIncomeSource: - alternativeIncomeSource ?? this.alternativeIncomeSource, - willingnessToLockInvestment: - willingnessToLockInvestment ?? this.willingnessToLockInvestment, - incomeSourceStability: - incomeSourceStability ?? this.incomeSourceStability, - longTermNeed: longTermNeed ?? this.longTermNeed, - ); - } - - Map toMap() { - return { - 'ageRange': ageRange, - 'investmentDuration': investmentDuration, - 'investmentVolume': investmentVolume, - 'objective': objective, - 'tolerance': tolerance, - 'experience': experience, - 'impact': impact, - 'need': need, - 'willingnessToTakeRisk': willingnessToTakeRisk, - 'acceptFluctuations': acceptFluctuations, - 'investmentPreference': investmentPreference, - 'acceptShortTermLosses': acceptShortTermLosses, - 'experienceDuringRecession': experienceDuringRecession, - 'alternativeIncomeSource': alternativeIncomeSource, - 'willingnessToLockInvestment': willingnessToLockInvestment, - 'incomeSourceStability': incomeSourceStability, - 'longTermNeed': longTermNeed, - }; - } - - factory RiskProfileAssessmentModel.fromMap(Map map) { - return RiskProfileAssessmentModel( - ageRange: map['ageRange'] != null ? map['ageRange'] as int : null, - investmentDuration: map['investmentDuration'] != null - ? map['investmentDuration'] as int - : null, - investmentVolume: map['investmentVolume'] != null - ? map['investmentVolume'] as int - : null, - objective: map['objective'] != null ? map['objective'] as int : null, - tolerance: map['tolerance'] != null ? map['tolerance'] as int : null, - experience: map['experience'] != null ? map['experience'] as int : null, - impact: map['impact'] != null ? map['impact'] as int : null, - need: map['need'] != null ? map['need'] as int : null, - willingnessToTakeRisk: map['willingnessToTakeRisk'] != null - ? map['willingnessToTakeRisk'] as int - : null, - acceptFluctuations: map['acceptFluctuations'] != null - ? map['acceptFluctuations'] as int - : null, - investmentPreference: map['investmentPreference'] != null - ? map['investmentPreference'] as int - : null, - acceptShortTermLosses: map['acceptShortTermLosses'] != null - ? map['acceptShortTermLosses'] as int - : null, - experienceDuringRecession: map['experienceDuringRecession'] != null - ? map['experienceDuringRecession'] as int - : null, - alternativeIncomeSource: map['alternativeIncomeSource'] != null - ? map['alternativeIncomeSource'] as int - : null, - willingnessToLockInvestment: map['willingnessToLockInvestment'] != null - ? map['willingnessToLockInvestment'] as int - : null, - incomeSourceStability: map['incomeSourceStability'] != null - ? map['incomeSourceStability'] as int - : null, - longTermNeed: - map['longTermNeed'] != null ? map['longTermNeed'] as int : null, - ); - } - - String toJson() => json.encode(toMap()); - - factory RiskProfileAssessmentModel.fromJson(String source) => - RiskProfileAssessmentModel.fromMap( - json.decode(source) as Map); - - @override - String toString() { - return 'RiskProfileAssessmentModel(ageRange: $ageRange, investmentDuration: $investmentDuration, investmentVolume: $investmentVolume, objective: $objective, tolerance: $tolerance, experience: $experience, impact: $impact, need: $need, willingnessToTakeRisk: $willingnessToTakeRisk, acceptFluctuations: $acceptFluctuations, investmentPreference: $investmentPreference, acceptShortTermLosses: $acceptShortTermLosses, experienceDuringRecession: $experienceDuringRecession, alternativeIncomeSource: $alternativeIncomeSource, willingnessToLockInvestment: $willingnessToLockInvestment, incomeSourceStability: $incomeSourceStability, longTermNeed: $longTermNeed)'; - } - - @override - bool operator ==(covariant RiskProfileAssessmentModel other) { - if (identical(this, other)) return true; - - return other.ageRange == ageRange && - other.investmentDuration == investmentDuration && - other.investmentVolume == investmentVolume && - other.objective == objective && - other.tolerance == tolerance && - other.experience == experience && - other.impact == impact && - other.need == need && - other.willingnessToTakeRisk == willingnessToTakeRisk && - other.acceptFluctuations == acceptFluctuations && - other.investmentPreference == investmentPreference && - other.acceptShortTermLosses == acceptShortTermLosses && - other.experienceDuringRecession == experienceDuringRecession && - other.alternativeIncomeSource == alternativeIncomeSource && - other.willingnessToLockInvestment == willingnessToLockInvestment && - other.incomeSourceStability == incomeSourceStability && - other.longTermNeed == longTermNeed; - } - - @override - int get hashCode { - return ageRange.hashCode ^ - investmentDuration.hashCode ^ - investmentVolume.hashCode ^ - objective.hashCode ^ - tolerance.hashCode ^ - experience.hashCode ^ - impact.hashCode ^ - need.hashCode ^ - willingnessToTakeRisk.hashCode ^ - acceptFluctuations.hashCode ^ - investmentPreference.hashCode ^ - acceptShortTermLosses.hashCode ^ - experienceDuringRecession.hashCode ^ - alternativeIncomeSource.hashCode ^ - willingnessToLockInvestment.hashCode ^ - incomeSourceStability.hashCode ^ - longTermNeed.hashCode; - } - - bool hasNullValues() { - return [ - ageRange, - investmentDuration, - investmentVolume, - objective, - tolerance, - experience, - impact, - need, - willingnessToTakeRisk, - acceptFluctuations, - investmentPreference, - acceptShortTermLosses, - experienceDuringRecession, - alternativeIncomeSource, - willingnessToLockInvestment, - incomeSourceStability, - longTermNeed, - ].any((value) => value == null); - } -} diff --git a/lib/shared/domain/models/securities_stat_model/securities_stat_model.dart b/lib/shared/domain/models/securities_stat_model/securities_stat_model.dart deleted file mode 100644 index 6d91e08..0000000 --- a/lib/shared/domain/models/securities_stat_model/securities_stat_model.dart +++ /dev/null @@ -1,573 +0,0 @@ -// ignore_for_file: public_member_api_docs, sort_constructors_first -import 'dart:convert'; - -import 'package:flutter/foundation.dart'; - -class SecuritiesStatModel { - final String id; - final String tenant; - final String marketCode; - final String marketSegmentId; - final String secId; - final String symbol; - final String isin; - final String secDesc; - final String secText; - final String secType; - final String secSubType; - final String underLyingSecId; - final List boards; - // final DateTime tradeDate; - final num volume; - final num price; - final num openQty; - final num proposals; - final num numOfOrders; - final num open; - final num setlPrice; - final num high; - final num low; - final num close; - final num vwap; - final num prevClose; - final num refPx; - final num delta; - final num high52; - final num low52; - final num valTraded; - final num volTraded; - final num openInt; - final num netChgPrevDay; - final num netChgPrevDayPerc; - final num bestBidPx; - final num bestBidQty; - final num bestOfferPx; - final num bestOfferQty; - final num lastPx; - final num lastQty; - final num bidDepth; - final num offerDepth; - final num tradeCnt; - final num dailyForeignBuy; - final num dailyForeignSell; - final num marketCap; - final List bids; - final List offers; - final List trades; - SecuritiesStatModel({ - required this.id, - required this.tenant, - required this.marketCode, - required this.marketSegmentId, - required this.secId, - required this.symbol, - required this.isin, - required this.secDesc, - required this.secText, - required this.secType, - required this.secSubType, - required this.underLyingSecId, - required this.boards, - // required this.tradeDate, - required this.volume, - required this.price, - required this.openQty, - required this.proposals, - required this.numOfOrders, - required this.open, - required this.setlPrice, - required this.high, - required this.low, - required this.close, - required this.vwap, - required this.prevClose, - required this.refPx, - required this.delta, - required this.high52, - required this.low52, - required this.valTraded, - required this.volTraded, - required this.openInt, - required this.netChgPrevDay, - required this.netChgPrevDayPerc, - required this.bestBidPx, - required this.bestBidQty, - required this.bestOfferPx, - required this.bestOfferQty, - required this.lastPx, - required this.lastQty, - required this.bidDepth, - required this.offerDepth, - required this.tradeCnt, - required this.dailyForeignBuy, - required this.dailyForeignSell, - required this.marketCap, - required this.bids, - required this.offers, - required this.trades, - }); - - SecuritiesStatModel copyWith({ - String? id, - String? tenant, - String? marketCode, - String? marketSegmentId, - String? secId, - String? symbol, - String? isin, - String? secDesc, - String? secText, - String? secType, - String? secSubType, - String? underLyingSecId, - List? boards, - // DateTime? tradeDate, - num? volume, - num? price, - num? openQty, - num? proposals, - num? numOfOrders, - num? open, - num? setlPrice, - num? high, - num? low, - num? close, - num? vwap, - num? prevClose, - num? refPx, - num? delta, - num? high52, - num? low52, - num? valTraded, - num? volTraded, - num? openInt, - num? netChgPrevDay, - num? netChgPrevDayPerc, - num? bestBidPx, - num? bestBidQty, - num? bestOfferPx, - num? bestOfferQty, - num? lastPx, - num? lastQty, - num? bidDepth, - num? offerDepth, - num? tradeCnt, - num? dailyForeignBuy, - num? dailyForeignSell, - num? marketCap, - List? bids, - List? offers, - List? trades, - }) { - return SecuritiesStatModel( - id: id ?? this.id, - tenant: tenant ?? this.tenant, - marketCode: marketCode ?? this.marketCode, - marketSegmentId: marketSegmentId ?? this.marketSegmentId, - secId: secId ?? this.secId, - symbol: symbol ?? this.symbol, - isin: isin ?? this.isin, - secDesc: secDesc ?? this.secDesc, - secText: secText ?? this.secText, - secType: secType ?? this.secType, - secSubType: secSubType ?? this.secSubType, - underLyingSecId: underLyingSecId ?? this.underLyingSecId, - boards: boards ?? this.boards, - // tradeDate: tradeDate ?? this.tradeDate, - volume: volume ?? this.volume, - price: price ?? this.price, - openQty: openQty ?? this.openQty, - proposals: proposals ?? this.proposals, - numOfOrders: numOfOrders ?? this.numOfOrders, - open: open ?? this.open, - setlPrice: setlPrice ?? this.setlPrice, - high: high ?? this.high, - low: low ?? this.low, - close: close ?? this.close, - vwap: vwap ?? this.vwap, - prevClose: prevClose ?? this.prevClose, - refPx: refPx ?? this.refPx, - delta: delta ?? this.delta, - high52: high52 ?? this.high52, - low52: low52 ?? this.low52, - valTraded: valTraded ?? this.valTraded, - volTraded: volTraded ?? this.volTraded, - openInt: openInt ?? this.openInt, - netChgPrevDay: netChgPrevDay ?? this.netChgPrevDay, - netChgPrevDayPerc: netChgPrevDayPerc ?? this.netChgPrevDayPerc, - bestBidPx: bestBidPx ?? this.bestBidPx, - bestBidQty: bestBidQty ?? this.bestBidQty, - bestOfferPx: bestOfferPx ?? this.bestOfferPx, - bestOfferQty: bestOfferQty ?? this.bestOfferQty, - lastPx: lastPx ?? this.lastPx, - lastQty: lastQty ?? this.lastQty, - bidDepth: bidDepth ?? this.bidDepth, - offerDepth: offerDepth ?? this.offerDepth, - tradeCnt: tradeCnt ?? this.tradeCnt, - dailyForeignBuy: dailyForeignBuy ?? this.dailyForeignBuy, - dailyForeignSell: dailyForeignSell ?? this.dailyForeignSell, - marketCap: marketCap ?? this.marketCap, - bids: bids ?? this.bids, - offers: offers ?? this.offers, - trades: trades ?? this.trades, - ); - } - - Map toMap() { - return { - 'id': id, - 'tenant': tenant, - 'marketCode': marketCode, - 'marketSegmentId': marketSegmentId, - 'secId': secId, - 'symbol': symbol, - 'isin': isin, - 'secDesc': secDesc, - 'secText': secText, - 'secType': secType, - 'secSubType': secSubType, - 'underLyingSecId': underLyingSecId, - 'boards': boards, - // 'tradeDate': tradeDate.millisecondsSinceEpoch, - 'volume': volume, - 'price': price, - 'openQty': openQty, - 'proposals': proposals, - 'numOfOrders': numOfOrders, - 'open': open, - 'setlPrice': setlPrice, - 'high': high, - 'low': low, - 'close': close, - 'vwap': vwap, - 'prevClose': prevClose, - 'refPx': refPx, - 'delta': delta, - 'high52': high52, - 'low52': low52, - 'valTraded': valTraded, - 'volTraded': volTraded, - 'openInt': openInt, - 'netChgPrevDay': netChgPrevDay, - 'netChgPrevDayPerc': netChgPrevDayPerc, - 'bestBidPx': bestBidPx, - 'bestBidQty': bestBidQty, - 'bestOfferPx': bestOfferPx, - 'bestOfferQty': bestOfferQty, - 'lastPx': lastPx, - 'lastQty': lastQty, - 'bidDepth': bidDepth, - 'offerDepth': offerDepth, - 'tradeCnt': tradeCnt, - 'dailyForeignBuy': dailyForeignBuy, - 'dailyForeignSell': dailyForeignSell, - 'marketCap': marketCap, - 'bids': bids.map((x) => x.toMap()).toList(), - 'offers': offers.map((x) => x.toJson()).toList(), - 'trades': trades.map((x) => x.toJson()).toList(), - }; - } - - factory SecuritiesStatModel.fromMap(Map map) { - return SecuritiesStatModel( - id: map['id'] ?? '', - tenant: map['tenant'] ?? '', - marketCode: map['marketCode'] ?? '', - marketSegmentId: map['marketSegmentId'] ?? '', - secId: map['secId'] ?? '', - symbol: map['symbol'] ?? '', - isin: map['isin'] ?? '', - secDesc: map['secDesc'] ?? '', - secText: map['secText'] ?? '', - secType: map['secType'] ?? '', - secSubType: map['secSubType'] ?? '', - underLyingSecId: map['underLyingSecId'] ?? '', - boards: map['boards'] == null - ? [] - : List.from((map['boards'] as List)), - // tradeDate: map['tradeDate'] == null - // ? DateTime.now() - // : DateTime.parse(map['tradeDate']), - volume: map['volume'] ?? 0, - price: map['price'] ?? 0, - openQty: map['openQty'] ?? 0, - proposals: map['proposals'] ?? 0, - numOfOrders: map['numOfOrders'] ?? 0, - open: map['open'] ?? 0, - setlPrice: map['setlPrice'] ?? 0, - high: map['high'] ?? 0, - low: map['low'] ?? 0, - close: map['close'] ?? 0, - vwap: map['vwap'] ?? 0, - prevClose: map['prevClose'] ?? 0, - refPx: map['refPx'] ?? 0, - delta: map['delta'] ?? 0, - high52: map['high52'] ?? 0, - low52: map['low52'] ?? 0, - valTraded: map['valTraded'] ?? 0, - volTraded: map['volTraded'] ?? 0, - openInt: map['openInt'] ?? 0, - netChgPrevDay: map['netChgPrevDay'] ?? 0, - netChgPrevDayPerc: map['netChgPrevDayPerc'] ?? 0, - bestBidPx: map['bestBidPx'] ?? 0, - bestBidQty: map['bestBidQty'] ?? 0, - bestOfferPx: map['bestOfferPx'] ?? 0, - bestOfferQty: map['bestOfferQty'] ?? 0, - lastPx: map['lastPx'] ?? 0, - lastQty: map['lastQty'] ?? 0, - bidDepth: map['bidDepth'] ?? 0, - offerDepth: map['offerDepth'] ?? 0, - tradeCnt: map['tradeCnt'] ?? 0, - dailyForeignBuy: map['dailyForeignBuy'] ?? 0, - dailyForeignSell: map['dailyForeignSell'] ?? 0, - marketCap: map['marketCap'] ?? 0, - bids: map['bids'] == null - ? [] - : List.from( - (map['bids'] as List).map( - (x) => Bid.fromMap(x as Map), - ), - ), - offers: map['offers'] == null - ? [] - : List.from( - (map['offers'] as List).map( - (x) => Offers.fromJson(x as Map), - ), - ), - trades: map['trades'] == null - ? [] - : List.from( - (map['trades'] as List).map( - (x) => Trade.fromJson(x as Map), - ), - ), - ); - } - - @override - String toString() { - return ''; - } - - @override - bool operator ==(covariant SecuritiesStatModel other) { - if (identical(this, other)) return true; - - return other.id == id && - other.tenant == tenant && - other.marketCode == marketCode && - other.marketSegmentId == marketSegmentId && - other.secId == secId && - other.symbol == symbol && - other.isin == isin && - other.secDesc == secDesc && - other.secText == secText && - other.secType == secType && - other.secSubType == secSubType && - other.underLyingSecId == underLyingSecId && - listEquals(other.boards, boards) && - // other.tradeDate == tradeDate && - other.volume == volume && - other.price == price && - other.openQty == openQty && - other.proposals == proposals && - other.numOfOrders == numOfOrders && - other.open == open && - other.setlPrice == setlPrice && - other.high == high && - other.low == low && - other.close == close && - other.vwap == vwap && - other.prevClose == prevClose && - other.refPx == refPx && - other.delta == delta && - other.high52 == high52 && - other.low52 == low52 && - other.valTraded == valTraded && - other.volTraded == volTraded && - other.openInt == openInt && - other.netChgPrevDay == netChgPrevDay && - other.netChgPrevDayPerc == netChgPrevDayPerc && - other.bestBidPx == bestBidPx && - other.bestBidQty == bestBidQty && - other.bestOfferPx == bestOfferPx && - other.bestOfferQty == bestOfferQty && - other.lastPx == lastPx && - other.bidDepth == bidDepth && - other.offerDepth == offerDepth && - other.tradeCnt == tradeCnt && - other.dailyForeignBuy == dailyForeignBuy && - other.dailyForeignSell == dailyForeignSell && - other.marketCap == marketCap && - listEquals(other.bids, bids) && - listEquals(other.offers, offers) && - listEquals(other.trades, trades); - } - - @override - int get hashCode { - return id.hashCode ^ - tenant.hashCode ^ - marketCode.hashCode ^ - marketSegmentId.hashCode ^ - secId.hashCode ^ - symbol.hashCode ^ - isin.hashCode ^ - secDesc.hashCode ^ - secText.hashCode ^ - secType.hashCode ^ - secSubType.hashCode ^ - underLyingSecId.hashCode ^ - boards.hashCode ^ - // tradeDate.hashCode ^ - volume.hashCode ^ - price.hashCode ^ - openQty.hashCode ^ - proposals.hashCode ^ - numOfOrders.hashCode ^ - open.hashCode ^ - setlPrice.hashCode ^ - high.hashCode ^ - low.hashCode ^ - close.hashCode ^ - vwap.hashCode ^ - prevClose.hashCode ^ - refPx.hashCode ^ - delta.hashCode ^ - high52.hashCode ^ - low52.hashCode ^ - valTraded.hashCode ^ - volTraded.hashCode ^ - openInt.hashCode ^ - netChgPrevDay.hashCode ^ - netChgPrevDayPerc.hashCode ^ - bestBidPx.hashCode ^ - bestBidQty.hashCode ^ - bestOfferPx.hashCode ^ - bestOfferQty.hashCode ^ - lastPx.hashCode ^ - lastQty.hashCode ^ - bidDepth.hashCode ^ - offerDepth.hashCode ^ - tradeCnt.hashCode ^ - dailyForeignBuy.hashCode ^ - dailyForeignSell.hashCode ^ - marketCap.hashCode ^ - bids.hashCode ^ - offers.hashCode ^ - trades.hashCode; - } - - String toJson() => json.encode(toMap()); - - factory SecuritiesStatModel.fromJson(String source) => - SecuritiesStatModel.fromMap(json.decode(source) as Map); -} - -class Bid { - final num price; - final num qty; - final num orderCount; - - Bid({ - required this.price, - required this.qty, - required this.orderCount, - }); - - factory Bid.fromJson(Map json) => Bid( - price: json["price"] ?? 0, - qty: json["qty"] ?? 0, - orderCount: json["orderCount"] ?? 0, - ); - - Map toJson() => { - "price": price, - "qty": qty, - "orderCount": orderCount, - }; - - Map toMap() { - return { - 'price': price, - 'qty': qty, - 'orderCount': orderCount, - }; - } - - factory Bid.fromMap(Map map) { - return Bid( - price: map['price'] as num, - qty: map['qty'] as num, - orderCount: map['orderCount'] as num, - ); - } - - String toJsonString() => json.encode(toMap()); - - factory Bid.fromJsonString(String source) => - Bid.fromMap(json.decode(source) as Map); -} - -class Offers { - final num price; - final num qty; - final num orderCount; - - Offers({ - required this.price, - required this.qty, - required this.orderCount, - }); - - factory Offers.fromJson(Map json) => Offers( - price: json["price"] ?? 0, - qty: json["qty"] ?? 0, - orderCount: json["orderCount"] ?? 0, - ); - - Map toJson() => { - "price": price, - "qty": qty, - "orderCount": orderCount, - }; -} - -class Trade { - final DateTime time; - final String mdEntryId; - final num tradePrice; - final num size; - final num volume; - final num lastPx; - - Trade({ - required this.time, - required this.mdEntryId, - required this.tradePrice, - required this.size, - required this.volume, - required this.lastPx, - }); - - factory Trade.fromJson(Map json) => Trade( - time: json["time"] == null - ? DateTime.now() - : DateTime.parse(json['time']), - mdEntryId: json["mdEntryId"] ?? '', - tradePrice: json["tradePrice"] ?? 0, - size: json["size"] ?? 0, - volume: json["volume"] ?? 0, - lastPx: json["lastPx"] ?? 0, - ); - - Map toJson() => { - "time": time.toIso8601String(), - "mdEntryId": mdEntryId, - "tradePrice": tradePrice, - "size": size, - "volume": volume, - "lastPx": lastPx, - }; -} diff --git a/lib/shared/domain/models/transaction/transaction_model.dart b/lib/shared/domain/models/transaction/transaction_model.dart deleted file mode 100644 index b728a7e..0000000 --- a/lib/shared/domain/models/transaction/transaction_model.dart +++ /dev/null @@ -1,306 +0,0 @@ -// ignore_for_file: public_member_api_docs, sort_constructors_first -import 'dart:convert'; - -import 'package:flutter/foundation.dart'; - -class TransactionModel { - final int pageCount; - final int pageSize; - final int pageNumber; - final String clientId; - final String clientLabel; - final String clientCode; - final String accountId; - final String accountNo; - final String accountLabel; - final String currency; - final num openingBalance; - final num closingBalance; - final String subAccountType; - final DateTime startDate; - final DateTime endDate; - final List statementLines; - TransactionModel({ - required this.pageCount, - required this.pageSize, - required this.pageNumber, - required this.clientId, - required this.clientLabel, - required this.clientCode, - required this.accountId, - required this.accountNo, - required this.accountLabel, - required this.currency, - required this.openingBalance, - required this.closingBalance, - required this.subAccountType, - required this.startDate, - required this.endDate, - required this.statementLines, - }); - - TransactionModel copyWith({ - int? pageCount, - int? pageSize, - int? pageNumber, - String? clientId, - String? clientLabel, - String? clientCode, - String? accountId, - String? accountNo, - String? accountLabel, - String? currency, - num? openingBalance, - num? closingBalance, - String? subAccountType, - DateTime? startDate, - DateTime? endDate, - List? statementLines, - }) { - return TransactionModel( - pageCount: pageCount ?? this.pageCount, - pageSize: pageSize ?? this.pageSize, - pageNumber: pageNumber ?? this.pageNumber, - clientId: clientId ?? this.clientId, - clientLabel: clientLabel ?? this.clientLabel, - clientCode: clientCode ?? this.clientCode, - accountId: accountId ?? this.accountId, - accountNo: accountNo ?? this.accountNo, - accountLabel: accountLabel ?? this.accountLabel, - currency: currency ?? this.currency, - openingBalance: openingBalance ?? this.openingBalance, - closingBalance: closingBalance ?? this.closingBalance, - subAccountType: subAccountType ?? this.subAccountType, - startDate: startDate ?? this.startDate, - endDate: endDate ?? this.endDate, - statementLines: statementLines ?? this.statementLines, - ); - } - - Map toMap() { - return { - 'pageCount': pageCount, - 'pageSize': pageSize, - 'pageNumber': pageNumber, - 'clientId': clientId, - 'clientLabel': clientLabel, - 'clientCode': clientCode, - 'accountId': accountId, - 'accountNo': accountNo, - 'accountLabel': accountLabel, - 'currency': currency, - 'openingBalance': openingBalance, - 'closingBalance': closingBalance, - 'subAccountType': subAccountType, - 'startDate': startDate.millisecondsSinceEpoch, - 'endDate': endDate.millisecondsSinceEpoch, - 'statementLines': statementLines.map((x) => x.toMap()).toList(), - }; - } - - factory TransactionModel.fromMap(Map map) { - return TransactionModel( - pageCount: map['pageCount'] ?? 0, - pageSize: map['pageSize'] ?? 0, - pageNumber: map['pageNumber'] ?? 0, - clientId: map['clientId'] ?? '', - clientLabel: map['clientLabel'] ?? '', - clientCode: map['clientCode'] ?? '', - accountId: map['accountId'] ?? '', - accountNo: map['accountNo'] ?? '', - accountLabel: map['accountLabel'] ?? '', - currency: map['currency'] ?? '', - openingBalance: map['openingBalance'] ?? 0, - closingBalance: map['closingBalance'] ?? 0, - subAccountType: map['subAccountType'] ?? '', - startDate: map['startDate'] == null - ? DateTime.now() - : DateTime.parse(map['startDate']), - endDate: map['endDate'] == null - ? DateTime.now() - : DateTime.parse(map['endDate']), - statementLines: List.from( - map['statementLines'].map((x) => StatementLine.fromMap(x)))); - } - - factory TransactionModel.initial() { - return TransactionModel( - pageCount: 0, - pageSize: 0, - pageNumber: 0, - clientId: '', - clientLabel: '', - clientCode: '', - accountId: '', - accountNo: '', - accountLabel: '', - currency: '', - openingBalance: 0, - closingBalance: 0, - subAccountType: '', - startDate: DateTime.now(), - endDate: DateTime.now(), - statementLines: []); - } - - String toJson() => json.encode(toMap()); - - factory TransactionModel.fromJson(String source) => - TransactionModel.fromMap(json.decode(source) as Map); - - @override - String toString() { - return 'TransactionModel(pageCount: $pageCount, pageSize: $pageSize, pageNumber: $pageNumber, clientId: $clientId, clientLabel: $clientLabel, clientCode: $clientCode, accountId: $accountId, accountNo: $accountNo, accountLabel: $accountLabel, currency: $currency, openingBalance: $openingBalance, closingBalance: $closingBalance, subAccountType: $subAccountType, startDate: $startDate, endDate: $endDate, statementLines: $statementLines)'; - } - - @override - bool operator ==(covariant TransactionModel other) { - if (identical(this, other)) return true; - - return other.pageCount == pageCount && - other.pageSize == pageSize && - other.pageNumber == pageNumber && - other.clientId == clientId && - other.clientLabel == clientLabel && - other.clientCode == clientCode && - other.accountId == accountId && - other.accountNo == accountNo && - other.accountLabel == accountLabel && - other.currency == currency && - other.openingBalance == openingBalance && - other.closingBalance == closingBalance && - other.subAccountType == subAccountType && - other.startDate == startDate && - other.endDate == endDate && - listEquals(other.statementLines, statementLines); - } - - @override - int get hashCode { - return pageCount.hashCode ^ - pageSize.hashCode ^ - pageNumber.hashCode ^ - clientId.hashCode ^ - clientLabel.hashCode ^ - clientCode.hashCode ^ - accountId.hashCode ^ - accountNo.hashCode ^ - accountLabel.hashCode ^ - currency.hashCode ^ - openingBalance.hashCode ^ - closingBalance.hashCode ^ - subAccountType.hashCode ^ - startDate.hashCode ^ - endDate.hashCode ^ - statementLines.hashCode; - } -} - -class StatementLine { - final DateTime tranDate; - final DateTime valueDate; - final String label; - final String refNo; - final String entryType; - final num debit; - final num credit; - final num balance; - StatementLine({ - required this.tranDate, - required this.valueDate, - required this.label, - required this.refNo, - required this.entryType, - required this.debit, - required this.credit, - required this.balance, - }); - - StatementLine copyWith({ - DateTime? tranDate, - DateTime? valueDate, - String? label, - String? refNo, - String? entryType, - num? debit, - num? credit, - num? balance, - }) { - return StatementLine( - tranDate: tranDate ?? this.tranDate, - valueDate: valueDate ?? this.valueDate, - label: label ?? this.label, - refNo: refNo ?? this.refNo, - entryType: entryType ?? this.entryType, - debit: debit ?? this.debit, - credit: credit ?? this.credit, - balance: balance ?? this.balance, - ); - } - - Map toMap() { - return { - 'tranDate': tranDate.millisecondsSinceEpoch, - 'valueDate': valueDate.millisecondsSinceEpoch, - 'label': label, - 'refNo': refNo, - 'entryType': entryType, - 'debit': debit, - 'credit': credit, - 'balance': balance, - }; - } - - factory StatementLine.fromMap(Map map) { - return StatementLine( - tranDate: map['tranDate'] == null - ? DateTime.now() - : DateTime.parse(map['tranDate']), - valueDate: map['valueDate'] == null - ? DateTime.now() - : DateTime.parse(map['valueDate']), - label: map['label'] ?? '', - refNo: map['refNo'] ?? '', - entryType: map['entryType'] ?? '', - debit: map['debit'] ?? 0, - credit: map['credit'] ?? 0, - balance: map['balance'] ?? 0, - ); - } - - String toJson() => json.encode(toMap()); - - factory StatementLine.fromJson(String source) => - StatementLine.fromMap(json.decode(source) as Map); - - @override - String toString() { - return 'StatementLine(tranDate: $tranDate, valueDate: $valueDate, label: $label, refNo: $refNo, entryType: $entryType, debit: $debit, credit: $credit, balance: $balance)'; - } - - @override - bool operator ==(covariant StatementLine other) { - if (identical(this, other)) return true; - - return other.tranDate == tranDate && - other.valueDate == valueDate && - other.label == label && - other.refNo == refNo && - other.entryType == entryType && - other.debit == debit && - other.credit == credit && - other.balance == balance; - } - - @override - int get hashCode { - return tranDate.hashCode ^ - valueDate.hashCode ^ - label.hashCode ^ - refNo.hashCode ^ - entryType.hashCode ^ - debit.hashCode ^ - credit.hashCode ^ - balance.hashCode; - } -} diff --git a/lib/shared/domain/models/user/user_model.dart b/lib/shared/domain/models/user/user_model.dart deleted file mode 100644 index dee4e18..0000000 --- a/lib/shared/domain/models/user/user_model.dart +++ /dev/null @@ -1,87 +0,0 @@ -import 'package:equatable/equatable.dart'; - -class User extends Equatable { - final int id; - final String username; - final String password; - final String email; - final String firstName; - final String lastName; - final String gender; - final String image; - final String token; - const User({ - this.id = 0, - this.username = '', - this.password = '', - this.email = '', - this.firstName = '', - this.lastName = '', - this.gender = '', - this.image = '', - this.token = '', - }); - - @override - List get props => [ - id, - username, - password, - email, - firstName, - lastName, - gender, - image, - token, - ]; - - Map toJson() { - return { - 'id': id, - 'username': username, - 'password': password, - 'email': email, - 'firstName': firstName, - 'lastName': lastName, - 'gender': gender, - 'image': image, - 'token': token, - }; - } - - factory User.fromJson(Map map) => User( - id: map['id'] ?? 0, - username: map['username'] ?? '', - password: map['password'] ?? '', - email: map['email'] ?? '', - firstName: map['firstName'] ?? '', - lastName: map['lastName'] ?? '', - gender: map['gender'] ?? '', - image: map['image'] ?? '', - token: map['token'] ?? '', - ); - - User copyWith({ - int? id, - String? username, - String? password, - String? email, - String? firstName, - String? lastName, - String? gender, - String? image, - String? token, - }) { - return User( - id: id ?? this.id, - username: username ?? this.username, - password: password ?? this.password, - email: email ?? this.email, - firstName: firstName ?? this.firstName, - lastName: lastName ?? this.lastName, - gender: gender ?? this.gender, - image: image ?? this.image, - token: token ?? this.token, - ); - } -} diff --git a/lib/shared/domain/models/user_profile/user_profile_model.dart b/lib/shared/domain/models/user_profile/user_profile_model.dart deleted file mode 100644 index 863807a..0000000 --- a/lib/shared/domain/models/user_profile/user_profile_model.dart +++ /dev/null @@ -1,593 +0,0 @@ -// ignore_for_file: public_member_api_docs, sort_constructors_first -import 'dart:convert'; -import 'dart:io'; - -class UserProfileModel { - int? id; - // DateTime? updatedAt; - // DateTime? createdAt; - bool? deleted; - bool? suspended; - String? titleCd; - String? lastName; - String? firstName; - String? middleName; - String? otherNames; - int? genderCd; - String? maritalStatusCd; - String? birthDate; - String? motherMaidenName; - String? weddingAnniversaryDate; - String? nationalityCd; - String? originState; - String? alternatePhoneNo; - String? primaryEmailAddress; - String? primaryPhoneNo; - String? alternateEmailAddress; - String? occupation; - String? politicallyExposed; - String? corporateTypeDm; - String? organizationName; - String? registrationNumber; - String? registrationDate; - String? registrationCountryCd; - String? taxIdentificationNumber; - String? businessSectorCd; - bool? usMarket; - String? dormAccountCurrency; - String? customerRemarks; - int? userType; - bool? isVerified; - String? referrer; - String? referrerSource; - String? previousChn; - String? product; - String? businessInvolvement; - String? involvementType; - String? authorisedSignatureName; - String? accountOpeningProduct; - String? rejectionReasons; - String? customerReference; - String? custId; - String? camId; - String? secId; - bool? isEmailVerified; - bool? sentToNeulogic; - bool? sentToZanibal; - bool? isCsrl; - String? lastLogonDate; - String? userName; - String? fullName; - String? adminName; - String? profilePicture; - UserProfileModel({ - this.id, - this.deleted, - this.suspended, - this.titleCd, - this.lastName, - this.firstName, - this.middleName, - this.otherNames, - this.genderCd, - this.maritalStatusCd, - this.birthDate, - this.motherMaidenName, - this.weddingAnniversaryDate, - this.nationalityCd, - this.originState, - this.alternatePhoneNo, - this.primaryEmailAddress, - this.primaryPhoneNo, - this.alternateEmailAddress, - this.occupation, - this.politicallyExposed, - this.corporateTypeDm, - this.organizationName, - this.registrationNumber, - this.registrationDate, - this.registrationCountryCd, - this.taxIdentificationNumber, - this.businessSectorCd, - this.usMarket, - this.dormAccountCurrency, - this.customerRemarks, - this.userType, - this.isVerified, - this.referrer, - this.referrerSource, - this.previousChn, - this.product, - this.businessInvolvement, - this.involvementType, - this.authorisedSignatureName, - this.accountOpeningProduct, - this.rejectionReasons, - this.customerReference, - this.custId, - this.camId, - this.secId, - this.isEmailVerified, - this.sentToNeulogic, - this.sentToZanibal, - this.isCsrl, - this.lastLogonDate, - this.userName, - this.fullName, - this.adminName, - this.profilePicture, - }); - - UserProfileModel copyWith({ - int? id, - bool? deleted, - bool? suspended, - String? titleCd, - String? lastName, - String? firstName, - String? middleName, - String? otherNames, - int? genderCd, - String? maritalStatusCd, - String? birthDate, - String? motherMaidenName, - String? weddingAnniversaryDate, - String? nationalityCd, - String? originState, - String? alternatePhoneNo, - String? primaryEmailAddress, - String? primaryPhoneNo, - String? alternateEmailAddress, - String? occupation, - String? politicallyExposed, - String? corporateTypeDm, - String? organizationName, - String? registrationNumber, - String? registrationDate, - String? registrationCountryCd, - String? taxIdentificationNumber, - String? businessSectorCd, - bool? usMarket, - String? dormAccountCurrency, - String? customerRemarks, - int? userType, - bool? isVerified, - String? referrer, - String? referrerSource, - String? previousChn, - String? product, - String? businessInvolvement, - String? involvementType, - String? authorisedSignatureName, - String? accountOpeningProduct, - String? rejectionReasons, - String? customerReference, - String? custId, - String? camId, - String? secId, - bool? isEmailVerified, - bool? sentToNeulogic, - bool? sentToZanibal, - bool? isCsrl, - String? lastLogonDate, - String? userName, - String? fullName, - String? adminName, - String? profilePicture, - }) { - return UserProfileModel( - id: id ?? this.id, - deleted: deleted ?? this.deleted, - suspended: suspended ?? this.suspended, - titleCd: titleCd ?? this.titleCd, - lastName: lastName ?? this.lastName, - firstName: firstName ?? this.firstName, - middleName: middleName ?? this.middleName, - otherNames: otherNames ?? this.otherNames, - genderCd: genderCd ?? this.genderCd, - maritalStatusCd: maritalStatusCd ?? this.maritalStatusCd, - birthDate: birthDate ?? this.birthDate, - motherMaidenName: motherMaidenName ?? this.motherMaidenName, - weddingAnniversaryDate: - weddingAnniversaryDate ?? this.weddingAnniversaryDate, - nationalityCd: nationalityCd ?? this.nationalityCd, - originState: originState ?? this.originState, - alternatePhoneNo: alternatePhoneNo ?? this.alternatePhoneNo, - primaryEmailAddress: primaryEmailAddress ?? this.primaryEmailAddress, - primaryPhoneNo: primaryPhoneNo ?? this.primaryPhoneNo, - alternateEmailAddress: - alternateEmailAddress ?? this.alternateEmailAddress, - occupation: occupation ?? this.occupation, - politicallyExposed: politicallyExposed ?? this.politicallyExposed, - corporateTypeDm: corporateTypeDm ?? this.corporateTypeDm, - organizationName: organizationName ?? this.organizationName, - registrationNumber: registrationNumber ?? this.registrationNumber, - registrationDate: registrationDate ?? this.registrationDate, - registrationCountryCd: - registrationCountryCd ?? this.registrationCountryCd, - taxIdentificationNumber: - taxIdentificationNumber ?? this.taxIdentificationNumber, - businessSectorCd: businessSectorCd ?? this.businessSectorCd, - usMarket: usMarket ?? this.usMarket, - dormAccountCurrency: dormAccountCurrency ?? this.dormAccountCurrency, - customerRemarks: customerRemarks ?? this.customerRemarks, - userType: userType ?? this.userType, - isVerified: isVerified ?? this.isVerified, - referrer: referrer ?? this.referrer, - referrerSource: referrerSource ?? this.referrerSource, - previousChn: previousChn ?? this.previousChn, - product: product ?? this.product, - businessInvolvement: businessInvolvement ?? this.businessInvolvement, - involvementType: involvementType ?? this.involvementType, - authorisedSignatureName: - authorisedSignatureName ?? this.authorisedSignatureName, - accountOpeningProduct: - accountOpeningProduct ?? this.accountOpeningProduct, - rejectionReasons: rejectionReasons ?? this.rejectionReasons, - customerReference: customerReference ?? this.customerReference, - custId: custId ?? this.custId, - camId: camId ?? this.camId, - secId: secId ?? this.secId, - isEmailVerified: isEmailVerified ?? this.isEmailVerified, - sentToNeulogic: sentToNeulogic ?? this.sentToNeulogic, - sentToZanibal: sentToZanibal ?? this.sentToZanibal, - isCsrl: isCsrl ?? this.isCsrl, - lastLogonDate: lastLogonDate ?? this.lastLogonDate, - userName: userName ?? this.userName, - fullName: fullName ?? this.fullName, - adminName: adminName ?? this.adminName, - profilePicture: profilePicture ?? this.profilePicture, - ); - } - - Map toMap() { - return { - 'id': id, - 'deleted': deleted, - 'suspended': suspended, - 'titleCd': titleCd, - 'lastName': lastName, - 'firstName': firstName, - 'middleName': middleName, - 'otherNames': otherNames, - 'genderCd': genderCd, - 'maritalStatusCd': maritalStatusCd, - 'birthDate': birthDate, - 'motherMaidenName': motherMaidenName, - 'weddingAnniversaryDate': weddingAnniversaryDate, - 'nationalityCd': nationalityCd, - 'originState': originState, - 'alternatePhoneNo': alternatePhoneNo, - 'primaryEmailAddress': primaryEmailAddress, - 'primaryPhoneNo': primaryPhoneNo, - 'alternateEmailAddress': alternateEmailAddress, - 'occupation': occupation, - 'politicallyExposed': politicallyExposed, - 'corporateTypeDm': corporateTypeDm, - 'organizationName': organizationName, - 'registrationNumber': registrationNumber, - 'registrationDate': registrationDate, - 'registrationCountryCd': registrationCountryCd, - 'taxIdentificationNumber': taxIdentificationNumber, - 'businessSectorCd': businessSectorCd, - 'usMarket': usMarket, - 'dormAccountCurrency': dormAccountCurrency, - 'customerRemarks': customerRemarks, - 'userType': userType, - 'isVerified': isVerified, - 'referrer': referrer, - 'referrerSource': referrerSource, - 'previousChn': previousChn, - 'product': product, - 'businessInvolvement': businessInvolvement, - 'involvementType': involvementType, - 'authorisedSignatureName': authorisedSignatureName, - 'accountOpeningProduct': accountOpeningProduct, - 'rejectionReasons': rejectionReasons, - 'customerReference': customerReference, - 'custId': custId, - 'camId': camId, - 'secId': secId, - 'isEmailVerified': isEmailVerified, - 'sentToNeulogic': sentToNeulogic, - 'sentToZanibal': sentToZanibal, - 'isCsrl': isCsrl, - 'lastLogonDate': lastLogonDate, - 'userName': userName, - 'fullName': fullName, - 'adminName': adminName, - 'profilePicture': profilePicture, - }; - } - - factory UserProfileModel.fromMap(Map map) { - return UserProfileModel( - id: map['id'] != null ? map['id'] as int : null, - deleted: map['deleted'] != null ? map['deleted'] as bool : null, - suspended: map['suspended'] != null ? map['suspended'] as bool : null, - titleCd: map['title_cd'] != null ? map['title_cd'] as String : null, - lastName: map['last_name'] != null ? map['last_name'] as String : null, - firstName: map['first_name'] != null ? map['first_name'] as String : null, - middleName: - map['middle_name'] != null ? map['middle_name'] as String : null, - otherNames: - map['other_names'] != null ? map['other_names'] as String : null, - genderCd: map['gender_cd'] != null ? map['gender_cd'] as int : null, - maritalStatusCd: map['marital_status_cd'] != null - ? map['marital_status_cd'] as String - : null, - birthDate: map['birth_date'] != null ? map['birth_date'] as String : null, - motherMaidenName: map['mother_maiden_name'] != null - ? map['mother_maiden_name'] as String - : null, - weddingAnniversaryDate: map['wedding_anniversary_date'] != null - ? map['wedding_anniversary_date'] as String - : null, - nationalityCd: map['nationality_cd'] != null - ? map['nationality_cd'] as String - : null, - originState: - map['origin_state'] != null ? map['origin_state'] as String : null, - alternatePhoneNo: map['alternate_phone_no'] != null - ? map['alternate_phone_no'] as String - : null, - primaryEmailAddress: map['primary_email_address'] != null - ? map['primary_email_address'] as String - : null, - primaryPhoneNo: map['primary_phone_no'] != null - ? map['primary_phone_no'] as String - : null, - alternateEmailAddress: map['alternate_email_address'] != null - ? map['alternate_email_address'] as String - : null, - occupation: - map['occupation'] != null ? map['occupation'] as String : null, - politicallyExposed: map['politically_exposed'] != null - ? map['politically_exposed'] as String - : null, - corporateTypeDm: map['corporate_type_dm'] != null - ? map['corporate_type_dm'] as String - : null, - organizationName: map['organization_name'] != null - ? map['organization_name'] as String - : null, - registrationNumber: map['registration_number'] != null - ? map['registration_number'] as String - : null, - registrationDate: map['registration_date'] != null - ? map['registration_date'] as String - : null, - registrationCountryCd: map['registration_country_cd'] != null - ? map['registration_country_cd'] as String - : null, - taxIdentificationNumber: map['tax_identification_number'] != null - ? map['tax_identification_number'] as String - : null, - businessSectorCd: map['business_sector_cd'] != null - ? map['business_sector_cd'] as String - : null, - usMarket: map['us_market'] != null ? map['us_market'] as bool : null, - dormAccountCurrency: map['dorm_account_currency'] != null - ? map['dorm_account_currency'] as String - : null, - customerRemarks: map['customer_remarks'] != null - ? map['customer_remarks'] as String - : null, - userType: map['user_type'] != null ? map['user_type'] as int : null, - isVerified: - map['is_verified'] != null ? map['is_verified'] as bool : null, - referrer: map['referrer'] != null ? map['referrer'] as String : null, - referrerSource: map['referrer_source'] != null - ? map['referrer_source'] as String - : null, - previousChn: - map['previous_chn'] != null ? map['previous_chn'] as String : null, - product: map['product'] != null ? map['product'] as String : null, - businessInvolvement: map['business_involvement'] != null - ? map['business_involvement'] as String - : null, - involvementType: map['involvement_type'] != null - ? map['involvement_type'] as String - : null, - authorisedSignatureName: map['authorised_signature_name'] != null - ? map['authorised_signature_name'] as String - : null, - accountOpeningProduct: map['account_opening_product'] != null - ? map['account_opening_product'] as String - : null, - rejectionReasons: map['rejectionReasons'] != null - ? map['rejectionReasons'] as String - : null, - customerReference: map['customerReference'] != null - ? map['customerReference'] as String - : null, - custId: map['CustID'] != null ? map['CustID'] as String : null, - camId: map['CAM_ID'] != null ? map['CAM_ID'] as String : null, - secId: map['SEC_ID'] != null ? map['SEC_ID'] as String : null, - isEmailVerified: map['is_email_verified'] != null - ? map['is_email_verified'] as bool - : null, - sentToNeulogic: map['sent_to_neulogic'] != null - ? map['sent_to_neulogic'] as bool - : null, - sentToZanibal: map['sent_to_zanibal'] != null - ? map['sent_to_zanibal'] as bool - : null, - isCsrl: map['isCSRL'] != null ? map['isCSRL'] as bool : null, - lastLogonDate: - map['lastLogonDate'] != null ? map['lastLogonDate'] as String : null, - userName: map['userName'] != null ? map['userName'] as String : null, - fullName: map['fullName'] != null ? map['fullName'] as String : null, - adminName: map['adminName'] != null ? map['adminName'] as String : null, - profilePicture: map['profilePicture'] != null - ? map['profilePicture'] as String - : null, - ); - } - - String toJson() => json.encode(toMap()); - - factory UserProfileModel.fromJson(String source) => - UserProfileModel.fromMap(json.decode(source) as Map); - - @override - String toString() { - return 'UserProfileModel(id: $id, deleted: $deleted, suspended: $suspended, titleCd: $titleCd, lastName: $lastName, firstName: $firstName, middleName: $middleName, otherNames: $otherNames, genderCd: $genderCd, maritalStatusCd: $maritalStatusCd, birthDate: $birthDate, motherMaidenName: $motherMaidenName, weddingAnniversaryDate: $weddingAnniversaryDate, nationalityCd: $nationalityCd, originState: $originState, alternatePhoneNo: $alternatePhoneNo, primaryEmailAddress: $primaryEmailAddress, primaryPhoneNo: $primaryPhoneNo, alternateEmailAddress: $alternateEmailAddress, occupation: $occupation, politicallyExposed: $politicallyExposed, corporateTypeDm: $corporateTypeDm, organizationName: $organizationName, registrationNumber: $registrationNumber, registrationDate: $registrationDate, registrationCountryCd: $registrationCountryCd, taxIdentificationNumber: $taxIdentificationNumber, businessSectorCd: $businessSectorCd, usMarket: $usMarket, dormAccountCurrency: $dormAccountCurrency, customerRemarks: $customerRemarks, userType: $userType, isVerified: $isVerified, referrer: $referrer, referrerSource: $referrerSource, previousChn: $previousChn, product: $product, businessInvolvement: $businessInvolvement, involvementType: $involvementType, authorisedSignatureName: $authorisedSignatureName, accountOpeningProduct: $accountOpeningProduct, rejectionReasons: $rejectionReasons, customerReference: $customerReference, custId: $custId, camId: $camId, secId: $secId, isEmailVerified: $isEmailVerified, sentToNeulogic: $sentToNeulogic, sentToZanibal: $sentToZanibal, isCsrl: $isCsrl, lastLogonDate: $lastLogonDate, userName: $userName, fullName: $fullName, adminName: $adminName, profilePicture: $profilePicture)'; - } - - @override - bool operator ==(covariant UserProfileModel other) { - if (identical(this, other)) return true; - - return other.id == id && - other.deleted == deleted && - other.suspended == suspended && - other.titleCd == titleCd && - other.lastName == lastName && - other.firstName == firstName && - other.middleName == middleName && - other.otherNames == otherNames && - other.genderCd == genderCd && - other.maritalStatusCd == maritalStatusCd && - other.birthDate == birthDate && - other.motherMaidenName == motherMaidenName && - other.weddingAnniversaryDate == weddingAnniversaryDate && - other.nationalityCd == nationalityCd && - other.originState == originState && - other.alternatePhoneNo == alternatePhoneNo && - other.primaryEmailAddress == primaryEmailAddress && - other.primaryPhoneNo == primaryPhoneNo && - other.alternateEmailAddress == alternateEmailAddress && - other.occupation == occupation && - other.politicallyExposed == politicallyExposed && - other.corporateTypeDm == corporateTypeDm && - other.organizationName == organizationName && - other.registrationNumber == registrationNumber && - other.registrationDate == registrationDate && - other.registrationCountryCd == registrationCountryCd && - other.taxIdentificationNumber == taxIdentificationNumber && - other.businessSectorCd == businessSectorCd && - other.usMarket == usMarket && - other.dormAccountCurrency == dormAccountCurrency && - other.customerRemarks == customerRemarks && - other.userType == userType && - other.isVerified == isVerified && - other.referrer == referrer && - other.referrerSource == referrerSource && - other.previousChn == previousChn && - other.product == product && - other.businessInvolvement == businessInvolvement && - other.involvementType == involvementType && - other.authorisedSignatureName == authorisedSignatureName && - other.accountOpeningProduct == accountOpeningProduct && - other.rejectionReasons == rejectionReasons && - other.customerReference == customerReference && - other.custId == custId && - other.camId == camId && - other.secId == secId && - other.isEmailVerified == isEmailVerified && - other.sentToNeulogic == sentToNeulogic && - other.sentToZanibal == sentToZanibal && - other.isCsrl == isCsrl && - other.lastLogonDate == lastLogonDate && - other.userName == userName && - other.fullName == fullName && - other.adminName == adminName && - other.profilePicture == profilePicture; - } - - @override - int get hashCode { - return id.hashCode ^ - deleted.hashCode ^ - suspended.hashCode ^ - titleCd.hashCode ^ - lastName.hashCode ^ - firstName.hashCode ^ - middleName.hashCode ^ - otherNames.hashCode ^ - genderCd.hashCode ^ - maritalStatusCd.hashCode ^ - birthDate.hashCode ^ - motherMaidenName.hashCode ^ - weddingAnniversaryDate.hashCode ^ - nationalityCd.hashCode ^ - originState.hashCode ^ - alternatePhoneNo.hashCode ^ - primaryEmailAddress.hashCode ^ - primaryPhoneNo.hashCode ^ - alternateEmailAddress.hashCode ^ - occupation.hashCode ^ - politicallyExposed.hashCode ^ - corporateTypeDm.hashCode ^ - organizationName.hashCode ^ - registrationNumber.hashCode ^ - registrationDate.hashCode ^ - registrationCountryCd.hashCode ^ - taxIdentificationNumber.hashCode ^ - businessSectorCd.hashCode ^ - usMarket.hashCode ^ - dormAccountCurrency.hashCode ^ - customerRemarks.hashCode ^ - userType.hashCode ^ - isVerified.hashCode ^ - referrer.hashCode ^ - referrerSource.hashCode ^ - previousChn.hashCode ^ - product.hashCode ^ - businessInvolvement.hashCode ^ - involvementType.hashCode ^ - authorisedSignatureName.hashCode ^ - accountOpeningProduct.hashCode ^ - rejectionReasons.hashCode ^ - customerReference.hashCode ^ - custId.hashCode ^ - camId.hashCode ^ - secId.hashCode ^ - isEmailVerified.hashCode ^ - sentToNeulogic.hashCode ^ - sentToZanibal.hashCode ^ - isCsrl.hashCode ^ - lastLogonDate.hashCode ^ - userName.hashCode ^ - fullName.hashCode ^ - adminName.hashCode ^ - profilePicture.hashCode; - } -} - -class UpdateUserProfileModel { - File? profilePicture; - String fileName; - String username; - String otherName; - String maritalStatus; - String gender; - - UpdateUserProfileModel({ - required this.profilePicture, - required this.fileName, - required this.username, - required this.otherName, - required this.maritalStatus, - required this.gender, - }); - - UpdateUserProfileModel copyWith({ - File? profilePicture, - String? fileName, - String? username, - String? otherName, - String? maritalStatus, - String? gender, - }) { - return UpdateUserProfileModel( - profilePicture: profilePicture ?? this.profilePicture, - fileName: fileName ?? this.fileName, - username: username ?? this.username, - otherName: otherName ?? this.otherName, - maritalStatus: maritalStatus ?? this.maritalStatus, - gender: gender ?? this.gender, - ); - } -} diff --git a/lib/shared/domain/models/user_profile/user_withdrawal_bank_model.dart b/lib/shared/domain/models/user_profile/user_withdrawal_bank_model.dart deleted file mode 100644 index 112a8f9..0000000 --- a/lib/shared/domain/models/user_profile/user_withdrawal_bank_model.dart +++ /dev/null @@ -1,222 +0,0 @@ -// ignore_for_file: public_member_api_docs, sort_constructors_first -import 'dart:convert'; - -class UserWithdrawalBankDetails { - int? id; - String? updatedAt; - String? createdAt; - bool? deleted; - bool? suspended; - String? bankCd; - String? bankAccountName; - String? bankAccountNo; - String? bankBranchName; - String? bankAddressDetails; - String? bankCode; - String? swiftCode; - String? sortCode; - String? sortCode2; - String? bankBvnNo; - String? bvnFirstName; - String? bvnLastName; - String? bvnMiddleName; - String? transferRecipient; - bool? hasRecipientCode; - UserWithdrawalBankDetails({ - this.id, - this.updatedAt, - this.createdAt, - this.deleted, - this.suspended, - this.bankCd, - this.bankAccountName, - this.bankAccountNo, - this.bankBranchName, - this.bankAddressDetails, - this.bankCode, - this.swiftCode, - this.sortCode, - this.sortCode2, - this.bankBvnNo, - this.bvnFirstName, - this.bvnLastName, - this.bvnMiddleName, - this.transferRecipient, - this.hasRecipientCode, - }); - - UserWithdrawalBankDetails copyWith({ - int? id, - String? updatedAt, - String? createdAt, - bool? deleted, - bool? suspended, - String? bankCd, - String? bankAccountName, - String? bankAccountNo, - String? bankBranchName, - String? bankAddressDetails, - String? bankCode, - String? swiftCode, - String? sortCode, - String? sortCode2, - String? bankBvnNo, - String? bvnFirstName, - String? bvnLastName, - String? bvnMiddleName, - String? transferRecipient, - bool? hasRecipientCode, - }) { - return UserWithdrawalBankDetails( - id: id ?? this.id, - updatedAt: updatedAt ?? this.updatedAt, - createdAt: createdAt ?? this.createdAt, - deleted: deleted ?? this.deleted, - suspended: suspended ?? this.suspended, - bankCd: bankCd ?? this.bankCd, - bankAccountName: bankAccountName ?? this.bankAccountName, - bankAccountNo: bankAccountNo ?? this.bankAccountNo, - bankBranchName: bankBranchName ?? this.bankBranchName, - bankAddressDetails: bankAddressDetails ?? this.bankAddressDetails, - bankCode: bankCode ?? this.bankCode, - swiftCode: swiftCode ?? this.swiftCode, - sortCode: sortCode ?? this.sortCode, - sortCode2: sortCode2 ?? this.sortCode2, - bankBvnNo: bankBvnNo ?? this.bankBvnNo, - bvnFirstName: bvnFirstName ?? this.bvnFirstName, - bvnLastName: bvnLastName ?? this.bvnLastName, - bvnMiddleName: bvnMiddleName ?? this.bvnMiddleName, - transferRecipient: transferRecipient ?? this.transferRecipient, - hasRecipientCode: hasRecipientCode ?? this.hasRecipientCode, - ); - } - - Map toMap() { - return { - 'id': id, - 'updatedAt': updatedAt, - 'createdAt': createdAt, - 'deleted': deleted, - 'suspended': suspended, - 'bankCd': bankCd, - 'bankAccountName': bankAccountName, - 'bankAccountNo': bankAccountNo, - 'bankBranchName': bankBranchName, - 'bankAddressDetails': bankAddressDetails, - 'bankCode': bankCode, - 'swiftCode': swiftCode, - 'sortCode': sortCode, - 'sortCode2': sortCode2, - 'bankBvnNo': bankBvnNo, - 'bvnFirstName': bvnFirstName, - 'bvnLastName': bvnLastName, - 'bvnMiddleName': bvnMiddleName, - 'transferRecipient': transferRecipient, - 'hasRecipientCode': hasRecipientCode, - }; - } - - factory UserWithdrawalBankDetails.fromMap(Map map) { - return UserWithdrawalBankDetails( - id: map['id'] != null ? map['id'] as int : null, - updatedAt: map['updatedAt'] != null ? map['updatedAt'] as String : null, - createdAt: map['createdAt'] != null ? map['createdAt'] as String : null, - deleted: map['deleted'] != null ? map['deleted'] as bool : null, - suspended: map['suspended'] != null ? map['suspended'] as bool : null, - bankCd: map['bank_cd'] != null ? map['bank_cd'] as String : null, - bankAccountName: map['bank_account_name'] != null - ? map['bank_account_name'] as String - : null, - bankAccountNo: map['bank_account_no'] != null - ? map['bank_account_no'] as String - : null, - bankBranchName: map['bank_branch_name'] != null - ? map['bank_branch_name'] as String - : null, - bankAddressDetails: map['bank_address_details'] != null - ? map['bank_address_details'] as String - : null, - bankCode: map['bank_code'] != null ? map['bank_code'] as String : null, - swiftCode: map['swift_code'] != null ? map['swift_code'] as String : null, - sortCode: map['sort_code'] != null ? map['sort_code'] as String : null, - sortCode2: map['sort_code2'] != null ? map['sort_code2'] as String : null, - bankBvnNo: - map['bank_bvn_no'] != null ? map['bank_bvn_no'] as String : null, - bvnFirstName: map['bvn_first_name'] != null - ? map['bvn_first_name'] as String - : null, - bvnLastName: - map['bvn_last_name'] != null ? map['bvn_last_name'] as String : null, - bvnMiddleName: map['bvn_middle_name'] != null - ? map['bvn_middle_name'] as String - : null, - transferRecipient: map['transfer_recipient'] != null - ? map['transfer_recipient'] as String - : null, - hasRecipientCode: map['has_recipient_code'] != null - ? map['has_recipient_code'] as bool - : null, - ); - } - - String toJson() => json.encode(toMap()); - - factory UserWithdrawalBankDetails.fromJson(String source) => - UserWithdrawalBankDetails.fromMap( - json.decode(source) as Map); - - @override - String toString() { - return 'UserWithdrawalBankDetails(id: $id, updatedAt: $updatedAt, createdAt: $createdAt, deleted: $deleted, suspended: $suspended, bankCd: $bankCd, bankAccountName: $bankAccountName, bankAccountNo: $bankAccountNo, bankBranchName: $bankBranchName, bankAddressDetails: $bankAddressDetails, bankCode: $bankCode, swiftCode: $swiftCode, sortCode: $sortCode, sortCode2: $sortCode2, bankBvnNo: $bankBvnNo, bvnFirstName: $bvnFirstName, bvnLastName: $bvnLastName, bvnMiddleName: $bvnMiddleName, transferRecipient: $transferRecipient, hasRecipientCode: $hasRecipientCode)'; - } - - @override - bool operator ==(covariant UserWithdrawalBankDetails other) { - if (identical(this, other)) return true; - - return other.id == id && - other.updatedAt == updatedAt && - other.createdAt == createdAt && - other.deleted == deleted && - other.suspended == suspended && - other.bankCd == bankCd && - other.bankAccountName == bankAccountName && - other.bankAccountNo == bankAccountNo && - other.bankBranchName == bankBranchName && - other.bankAddressDetails == bankAddressDetails && - other.bankCode == bankCode && - other.swiftCode == swiftCode && - other.sortCode == sortCode && - other.sortCode2 == sortCode2 && - other.bankBvnNo == bankBvnNo && - other.bvnFirstName == bvnFirstName && - other.bvnLastName == bvnLastName && - other.bvnMiddleName == bvnMiddleName && - other.transferRecipient == transferRecipient && - other.hasRecipientCode == hasRecipientCode; - } - - @override - int get hashCode { - return id.hashCode ^ - updatedAt.hashCode ^ - createdAt.hashCode ^ - deleted.hashCode ^ - suspended.hashCode ^ - bankCd.hashCode ^ - bankAccountName.hashCode ^ - bankAccountNo.hashCode ^ - bankBranchName.hashCode ^ - bankAddressDetails.hashCode ^ - bankCode.hashCode ^ - swiftCode.hashCode ^ - sortCode.hashCode ^ - sortCode2.hashCode ^ - bankBvnNo.hashCode ^ - bvnFirstName.hashCode ^ - bvnLastName.hashCode ^ - bvnMiddleName.hashCode ^ - transferRecipient.hashCode ^ - hasRecipientCode.hashCode; - } -} diff --git a/lib/shared/domain/models/utility/bank_model.dart b/lib/shared/domain/models/utility/bank_model.dart deleted file mode 100644 index abac88d..0000000 --- a/lib/shared/domain/models/utility/bank_model.dart +++ /dev/null @@ -1,117 +0,0 @@ -// ignore_for_file: public_member_api_docs, sort_constructors_first -import 'dart:convert'; - -class BankModel { - final int id; - final String bankName; - final String bankName1; - final String bankName2; - final String bankCode; - final String sortCode; - final String iCode; - final DateTime createDate; - final DateTime modifiedDate; - BankModel({ - required this.id, - required this.bankName, - required this.bankName1, - required this.bankName2, - required this.bankCode, - required this.sortCode, - required this.iCode, - required this.createDate, - required this.modifiedDate, - }); - - BankModel copyWith({ - int? id, - String? bankName, - String? bankName1, - String? bankName2, - String? bankCode, - String? sortCode, - String? iCode, - DateTime? createDate, - DateTime? modifiedDate, - }) { - return BankModel( - id: id ?? this.id, - bankName: bankName ?? this.bankName, - bankName1: bankName1 ?? this.bankName1, - bankName2: bankName2 ?? this.bankName2, - bankCode: bankCode ?? this.bankCode, - sortCode: sortCode ?? this.sortCode, - iCode: iCode ?? this.iCode, - createDate: createDate ?? this.createDate, - modifiedDate: modifiedDate ?? this.modifiedDate, - ); - } - - Map toMap() { - return { - 'id': id, - 'bankName': bankName, - 'bankName1': bankName1, - 'bankName2': bankName2, - 'bankCode': bankCode, - 'sortCode': sortCode, - 'iCode': iCode, - 'createDate': createDate.millisecondsSinceEpoch, - 'modifiedDate': modifiedDate.millisecondsSinceEpoch, - }; - } - - factory BankModel.fromMap(Map map) { - return BankModel( - id: map['ID'] ?? 0, - bankName: map['bankName'] ?? '', - bankName1: map['bankName1'] ?? '', - bankName2: map['bankName2'] ?? '', - bankCode: map['bankCode'] ?? '', - sortCode: map['sortCode'] ?? '', - iCode: map['iCode'] ?? '', - createDate: - DateTime.parse(map['createDate'] ?? DateTime.now().toIso8601String()), - modifiedDate: DateTime.parse( - map['modifiedDate'] ?? DateTime.now().toIso8601String()), - ); - } - - String toJson() => json.encode(toMap()); - - factory BankModel.fromJson(String source) => - BankModel.fromMap(json.decode(source) as Map); - - @override - String toString() { - return 'BankModel(id: $id, bankName: $bankName, bankName1: $bankName1, bankName2: $bankName2, bankCode: $bankCode, sortCode: $sortCode, iCode: $iCode, createDate: $createDate, modifiedDate: $modifiedDate)'; - } - - @override - bool operator ==(covariant BankModel other) { - if (identical(this, other)) return true; - - return other.id == id && - other.bankName == bankName && - other.bankName1 == bankName1 && - other.bankName2 == bankName2 && - other.bankCode == bankCode && - other.sortCode == sortCode && - other.iCode == iCode && - other.createDate == createDate && - other.modifiedDate == modifiedDate; - } - - @override - int get hashCode { - return id.hashCode ^ - bankName.hashCode ^ - bankName1.hashCode ^ - bankName2.hashCode ^ - bankCode.hashCode ^ - sortCode.hashCode ^ - iCode.hashCode ^ - createDate.hashCode ^ - modifiedDate.hashCode; - } -} diff --git a/lib/shared/domain/models/utility/country_model.dart b/lib/shared/domain/models/utility/country_model.dart deleted file mode 100644 index 10ca68b..0000000 --- a/lib/shared/domain/models/utility/country_model.dart +++ /dev/null @@ -1,105 +0,0 @@ -// ignore_for_file: public_member_api_docs, sort_constructors_first -import 'dart:convert'; - -class CountryModel { - final int id; - final String name; - final String shortName; - final String isoName; - final DateTime createDate; - final DateTime modifyDate; - CountryModel({ - required this.id, - required this.name, - required this.shortName, - required this.isoName, - required this.createDate, - required this.modifyDate, - }); - - CountryModel copyWith({ - int? id, - String? name, - String? shortName, - String? isoName, - DateTime? createDate, - DateTime? modifyDate, - }) { - return CountryModel( - id: id ?? this.id, - name: name ?? this.name, - shortName: shortName ?? this.shortName, - isoName: isoName ?? this.isoName, - createDate: createDate ?? this.createDate, - modifyDate: modifyDate ?? this.modifyDate, - ); - } - - Map toMap() { - return { - 'id': id, - 'name': name, - 'short_name': shortName, - 'iso_name': isoName, - 'createDate': createDate.millisecondsSinceEpoch, - 'modifyDate': modifyDate.millisecondsSinceEpoch, - }; - } - - factory CountryModel.fromMap(Map map) { - return CountryModel( - id: map['ID'] ?? 0, - name: map['name'] ?? '', - shortName: map['short_name'] ?? '', - isoName: map['iso_name'] ?? '', - createDate: map['createDate'] == null - ? DateTime.now() - : DateTime.parse(map['createDate']), - modifyDate: map['modifyDate'] == null - ? DateTime.now() - : DateTime.parse(map['modifyDate']), - ); - } - - factory CountryModel.initial() { - return CountryModel( - id: 0, - name: '', - shortName: '', - isoName: '', - createDate: DateTime.now(), - modifyDate: DateTime.now()); - } - - String toJson() => json.encode(toMap()); - - factory CountryModel.fromJson(String source) => - CountryModel.fromMap(json.decode(source) as Map); - - @override - String toString() { - return 'CountryModel(id: $id, name: $name, shortName: $shortName, isoName: $isoName, createDate: $createDate, modifyDate: $modifyDate)'; - } - - @override - bool operator ==(covariant CountryModel other) { - if (identical(this, other)) return true; - - return other.id == id && - other.name == name && - other.shortName == shortName && - other.isoName == isoName && - other.createDate == createDate && - other.modifyDate == modifyDate; - } - - @override - int get hashCode { - return id.hashCode ^ - name.hashCode ^ - shortName.hashCode ^ - isoName.hashCode ^ - createDate.hashCode ^ - modifyDate.hashCode; - } -} diff --git a/lib/shared/domain/models/utility/states_model.dart b/lib/shared/domain/models/utility/states_model.dart deleted file mode 100644 index ed9ecb4..0000000 --- a/lib/shared/domain/models/utility/states_model.dart +++ /dev/null @@ -1,95 +0,0 @@ -import 'dart:convert'; - -class StatesModel { - final int id; - final String name; - final int countryId; - final DateTime createDate; - final DateTime modifyDate; - StatesModel({ - required this.id, - required this.name, - required this.countryId, - required this.createDate, - required this.modifyDate, - }); - - StatesModel copyWith({ - int? id, - String? name, - int? countryId, - DateTime? createDate, - DateTime? modifyDate, - }) { - return StatesModel( - id: id ?? this.id, - name: name ?? this.name, - countryId: countryId ?? this.countryId, - createDate: createDate ?? this.createDate, - modifyDate: modifyDate ?? this.modifyDate, - ); - } - - Map toMap() { - return { - 'id': id, - 'name': name, - 'countryId': countryId, - 'createDate': createDate.millisecondsSinceEpoch, - 'modifyDate': modifyDate.millisecondsSinceEpoch, - }; - } - - factory StatesModel.fromMap(Map map) { - return StatesModel( - id: map['ID'] ?? 0, - name: map['name'] ?? 0, - countryId: map['countryID'] ?? 0, - createDate: map['createDate'] == null - ? DateTime.now() - : DateTime.parse(map['createDate']), - modifyDate: map['modifyDate'] == null - ? DateTime.now() - : DateTime.parse(map['modifyDate']), - ); - } - - factory StatesModel.initial() { - return StatesModel( - id: 0, - name: '', - countryId: 0, - createDate: DateTime.now(), - modifyDate: DateTime.now()); - } - - String toJson() => json.encode(toMap()); - - factory StatesModel.fromJson(String source) => - StatesModel.fromMap(json.decode(source) as Map); - - @override - String toString() { - return 'StatesModel(id: $id, name: $name, countryId: $countryId, createDate: $createDate, modifyDate: $modifyDate)'; - } - - @override - bool operator ==(covariant StatesModel other) { - if (identical(this, other)) return true; - - return other.id == id && - other.name == name && - other.countryId == countryId && - other.createDate == createDate && - other.modifyDate == modifyDate; - } - - @override - int get hashCode { - return id.hashCode ^ - name.hashCode ^ - countryId.hashCode ^ - createDate.hashCode ^ - modifyDate.hashCode; - } -} diff --git a/lib/shared/domain/models/verification/bvn/verify_bvn_req_model.dart b/lib/shared/domain/models/verification/bvn/verify_bvn_req_model.dart deleted file mode 100644 index f75f59f..0000000 --- a/lib/shared/domain/models/verification/bvn/verify_bvn_req_model.dart +++ /dev/null @@ -1,62 +0,0 @@ -// ignore_for_file: public_member_api_docs, sort_constructors_first -import 'dart:convert'; - -import 'package:equatable/equatable.dart'; - -///Bvn verification Request Model -class VerifyBvnRequestModel extends Equatable { - final String firstName; - final String lastName; - final int bvnNumber; - final String dob; - const VerifyBvnRequestModel({ - required this.firstName, - required this.lastName, - required this.bvnNumber, - required this.dob, - }); - - @override - List get props => [firstName, lastName, bvnNumber, dob]; - - VerifyBvnRequestModel copyWith({ - String? firstName, - String? lastName, - int? bvnNumber, - String? dob, - }) { - return VerifyBvnRequestModel( - firstName: firstName ?? this.firstName, - lastName: lastName ?? this.lastName, - bvnNumber: bvnNumber ?? this.bvnNumber, - dob: dob ?? this.dob, - ); - } - - Map toMap() { - return { - 'firstName': firstName, - 'lastName': lastName, - 'bvnNumber': bvnNumber, - 'dob': dob, - }; - } - - factory VerifyBvnRequestModel.fromMap(Map map) { - return VerifyBvnRequestModel( - firstName: map['firstName'] as String, - lastName: map['lastName'] as String, - bvnNumber: map['bvnNumber'] as int, - dob: map['dob'] as String, - ); - } - - String toJson() => json.encode(toMap()); - - factory VerifyBvnRequestModel.fromJson(String source) => - VerifyBvnRequestModel.fromMap( - json.decode(source) as Map); - - @override - bool get stringify => true; -} diff --git a/lib/shared/domain/models/verification/bvn/verify_bvn_res_model.dart b/lib/shared/domain/models/verification/bvn/verify_bvn_res_model.dart deleted file mode 100644 index bd993c0..0000000 --- a/lib/shared/domain/models/verification/bvn/verify_bvn_res_model.dart +++ /dev/null @@ -1,28 +0,0 @@ -import 'dart:convert'; - -class BvnData { - bool? isBvnVerified; - - BvnData({ - this.isBvnVerified, - }); - - BvnData copyWith({ - bool? isBvnVerified, - }) => - BvnData( - isBvnVerified: isBvnVerified ?? this.isBvnVerified, - ); - - factory BvnData.fromRawJson(String str) => BvnData.fromJson(json.decode(str)); - - String toRawJson() => json.encode(toJson()); - - factory BvnData.fromJson(Map json) => BvnData( - isBvnVerified: json["isBVNVerified"], - ); - - Map toJson() => { - "isBVNVerified": isBvnVerified, - }; -} diff --git a/lib/shared/domain/models/verification/cac/verify_cac_req_model.dart b/lib/shared/domain/models/verification/cac/verify_cac_req_model.dart deleted file mode 100644 index 1c6d474..0000000 --- a/lib/shared/domain/models/verification/cac/verify_cac_req_model.dart +++ /dev/null @@ -1,55 +0,0 @@ -// ignore_for_file: public_member_api_docs, sort_constructors_first -import 'dart:convert'; - -import 'package:equatable/equatable.dart'; - -class VerifyCacRequestModel extends Equatable { - final String companyName; - final String regNumber; - final String registrationDate; - const VerifyCacRequestModel({ - required this.companyName, - required this.regNumber, - required this.registrationDate, - }); - - @override - List get props => [companyName, regNumber, registrationDate]; - - VerifyCacRequestModel copyWith({ - String? companyName, - String? regNumber, - String? registrationDate, - }) { - return VerifyCacRequestModel( - companyName: companyName ?? this.companyName, - regNumber: regNumber ?? this.regNumber, - registrationDate: registrationDate ?? this.registrationDate, - ); - } - - Map toMap() { - return { - 'companyName': companyName, - 'regNumber': regNumber, - 'registrationDate': registrationDate, - }; - } - - factory VerifyCacRequestModel.fromMap(Map map) { - return VerifyCacRequestModel( - companyName: map['companyName'] as String, - regNumber: map['regNumber'] as String, - registrationDate: map['registrationDate'] as String, - ); - } - - String toJson() => json.encode(toMap()); - - factory VerifyCacRequestModel.fromJson(String source) => - VerifyCacRequestModel.fromMap( - json.decode(source) as Map); - - @override - bool get stringify => true; -} diff --git a/lib/shared/domain/models/verification/id_document/verify_id_document.dart b/lib/shared/domain/models/verification/id_document/verify_id_document.dart deleted file mode 100644 index ff75f09..0000000 --- a/lib/shared/domain/models/verification/id_document/verify_id_document.dart +++ /dev/null @@ -1,48 +0,0 @@ -import 'package:equatable/equatable.dart'; - -///Bvn verification Request Model -class VerifyIdDocumentModel extends Equatable { - final String firstName; - final String lastName; - final String docId; - final String dob; - final String docType; - const VerifyIdDocumentModel({ - required this.firstName, - required this.lastName, - required this.docId, - required this.docType, - required this.dob, - }); - - @override - List get props => [firstName, lastName, docId, docType, dob]; - - VerifyIdDocumentModel copyWith( - {String? firstName, - String? lastName, - String? docId, - String? dob, - String? docType}) { - return VerifyIdDocumentModel( - firstName: firstName ?? this.firstName, - lastName: lastName ?? this.lastName, - docId: docId ?? this.docId, - docType: docType ?? this.docType, - dob: dob ?? this.dob, - ); - } - - Map toMap() { - return { - 'firstName': firstName, - 'lastName': lastName, - 'docId': docId, - 'docType': docType, - 'dob': dob, - }; - } - - @override - bool get stringify => true; -} diff --git a/lib/shared/domain/models/wallet/bank_account_model.dart b/lib/shared/domain/models/wallet/bank_account_model.dart deleted file mode 100644 index 3a19490..0000000 --- a/lib/shared/domain/models/wallet/bank_account_model.dart +++ /dev/null @@ -1,96 +0,0 @@ -class BankAccountModel { - int id; - DateTime updatedAt; - DateTime createdAt; - bool deleted; - bool suspended; - dynamic bankCd; - String bankAccountName; - String bankAccountNo; - String bankBranchName; - dynamic bankAddressDetails; - String bankCode; - dynamic swiftCode; - String sortCode; - String sortCode2; - String bankBvnNo; - String bvnFirstName; - String bvnLastName; - dynamic bvnMiddleName; - dynamic transferRecipient; - bool hasRecipientCode; - - BankAccountModel({ - required this.id, - required this.updatedAt, - required this.createdAt, - required this.deleted, - required this.suspended, - required this.bankCd, - required this.bankAccountName, - required this.bankAccountNo, - required this.bankBranchName, - required this.bankAddressDetails, - required this.bankCode, - required this.swiftCode, - required this.sortCode, - required this.sortCode2, - required this.bankBvnNo, - required this.bvnFirstName, - required this.bvnLastName, - required this.bvnMiddleName, - required this.transferRecipient, - required this.hasRecipientCode, - }); - - factory BankAccountModel.fromJson(Map json) => - BankAccountModel( - id: json["id"] ?? 0, - updatedAt: json['updatedAt'] == null - ? DateTime.now() - : DateTime.parse(json['updatedAt']), - createdAt: json['createdAt'] == null - ? DateTime.now() - : DateTime.parse(json['createdAt']), - deleted: json["deleted"] ?? false, - suspended: json["suspended"] ?? false, - bankCd: json["bank_cd"] ?? '', - bankAccountName: json["bank_account_name"] ?? '', - bankAccountNo: json["bank_account_no"] ?? '', - bankBranchName: json["bank_branch_name"] ?? '', - bankAddressDetails: json["bank_address_details"] ?? '', - bankCode: json["bank_code"] ?? '', - swiftCode: json["swift_code"] ?? '', - sortCode: json["sort_code"] ?? '', - sortCode2: json["sort_code2"] ?? '', - bankBvnNo: json["bank_bvn_no"] ?? '', - bvnFirstName: json["bvn_first_name"] ?? '', - bvnLastName: json["bvn_last_name"] ?? '', - bvnMiddleName: json["bvn_middle_name"] ?? '', - transferRecipient: json["transferRecipient"] ?? '', - hasRecipientCode: json["has_recipient_code"] ?? '', - ); - - Map toJson() => { - "id": id, - "updatedAt": updatedAt.toIso8601String(), - "createdAt": createdAt.toIso8601String(), - "deleted": deleted, - "suspended": suspended, - "bank_cd": bankCd, - "bank_account_name": bankAccountName, - "bank_account_no": bankAccountNo, - "bank_branch_name": bankBranchName, - "bank_address_details": bankAddressDetails, - "bank_code": bankCode, - "swift_code": swiftCode, - "sort_code": sortCode, - "sort_code2": sortCode2, - "bank_bvn_no": bankBvnNo, - "bvn_first_name": bvnFirstName, - "bvn_last_name": bvnLastName, - "bvn_middle_name": bvnMiddleName, - "transferRecipient": transferRecipient, - "has_recipient_code": hasRecipientCode, - }; -} diff --git a/lib/shared/domain/models/wallet/nuban_account_model.dart b/lib/shared/domain/models/wallet/nuban_account_model.dart deleted file mode 100644 index ea7efcb..0000000 --- a/lib/shared/domain/models/wallet/nuban_account_model.dart +++ /dev/null @@ -1,253 +0,0 @@ -// ignore_for_file: public_member_api_docs, sort_constructors_first -import 'dart:convert'; - -class NubanAccountModel { - final num id; - final DateTime updatedAt; - final DateTime createdAt; - final String accountName; - final String accountNumber; - final String customerCode; - final String bankName; - final String bankSlug; - final String bankId; - final String currency; - final String description; - final NubanProduct nubanProduct; - NubanAccountModel({ - required this.id, - required this.updatedAt, - required this.createdAt, - required this.accountName, - required this.accountNumber, - required this.customerCode, - required this.bankName, - required this.bankSlug, - required this.bankId, - required this.currency, - required this.description, - required this.nubanProduct, - }); - - NubanAccountModel copyWith({ - num? id, - DateTime? updatedAt, - DateTime? createdAt, - String? accountName, - String? accountNumber, - String? customerCode, - String? bankName, - String? bankSlug, - String? bankId, - String? currency, - String? description, - NubanProduct? nubanProduct, - }) { - return NubanAccountModel( - id: id ?? this.id, - updatedAt: updatedAt ?? this.updatedAt, - createdAt: createdAt ?? this.createdAt, - accountName: accountName ?? this.accountName, - accountNumber: accountNumber ?? this.accountNumber, - customerCode: customerCode ?? this.customerCode, - bankName: bankName ?? this.bankName, - bankSlug: bankSlug ?? this.bankSlug, - bankId: bankId ?? this.bankId, - currency: currency ?? this.currency, - description: description ?? this.description, - nubanProduct: nubanProduct ?? this.nubanProduct, - ); - } - - Map toMap() { - return { - 'id': id, - 'updatedAt': updatedAt.millisecondsSinceEpoch, - 'createdAt': createdAt.millisecondsSinceEpoch, - 'accountName': accountName, - 'accountNumber': accountNumber, - 'customerCode': customerCode, - 'bankName': bankName, - 'bankSlug': bankSlug, - 'bankId': bankId, - 'currency': currency, - 'description': description, - 'nubanProduct': nubanProduct.toMap(), - }; - } - - factory NubanAccountModel.fromMap(Map map) { - return NubanAccountModel( - id: map['id'] ?? 0, - updatedAt: map['updatedAt'] == null - ? DateTime.now() - : DateTime.parse(map['updatedAt']), - createdAt: map['createdAt'] == null - ? DateTime.now() - : DateTime.parse(map['createdAt']), - accountName: map['accountName'] ?? '', - accountNumber: map['accountNumber'] ?? '', - customerCode: map['customerCode'] ?? '', - bankName: map['bankName'] ?? '', - bankSlug: map['bankSlug'] ?? '', - bankId: map['bankId'] ?? '', - currency: map['currency'] ?? '', - description: map['description'] ?? '', - nubanProduct: NubanProduct.fromMap(map['nubanProduct']), - ); - } - - factory NubanAccountModel.initial() { - return NubanAccountModel( - id: 0, - updatedAt: DateTime.now(), - createdAt: DateTime.now(), - accountName: '', - accountNumber: '', - customerCode: '', - bankName: '', - bankSlug: '', - bankId: '', - currency: '', - description: '', - nubanProduct: NubanProduct.initial()); - } - - factory NubanAccountModel.fromJson(String source) => - NubanAccountModel.fromMap(json.decode(source) as Map); - - @override - bool operator ==(covariant NubanAccountModel other) { - if (identical(this, other)) return true; - - return other.id == id && - other.updatedAt == updatedAt && - other.createdAt == createdAt && - other.accountName == accountName && - other.accountNumber == accountNumber && - other.customerCode == customerCode && - other.bankName == bankName && - other.bankSlug == bankSlug && - other.bankId == bankId && - other.currency == currency && - other.description == description && - other.nubanProduct == nubanProduct; - } - - @override - int get hashCode { - return id.hashCode ^ - updatedAt.hashCode ^ - createdAt.hashCode ^ - accountName.hashCode ^ - accountNumber.hashCode ^ - customerCode.hashCode ^ - bankName.hashCode ^ - bankSlug.hashCode ^ - bankId.hashCode ^ - currency.hashCode ^ - description.hashCode ^ - nubanProduct.hashCode; - } -} - -class NubanProduct { - final int id; - final DateTime updatedAt; - final DateTime createdAt; - - final String name; - final String description; - final String company; - NubanProduct({ - required this.id, - required this.updatedAt, - required this.createdAt, - required this.name, - required this.description, - required this.company, - }); - - NubanProduct copyWith({ - int? id, - DateTime? updatedAt, - DateTime? createdAt, - bool? deleted, - String? name, - String? description, - String? company, - }) { - return NubanProduct( - id: id ?? this.id, - updatedAt: updatedAt ?? this.updatedAt, - createdAt: createdAt ?? this.createdAt, - name: name ?? this.name, - description: description ?? this.description, - company: company ?? this.company, - ); - } - - Map toMap() { - return { - 'id': id, - 'updatedAt': updatedAt.millisecondsSinceEpoch, - 'createdAt': createdAt.millisecondsSinceEpoch, - 'name': name, - 'description': description, - 'company': company, - }; - } - - factory NubanProduct.fromMap(Map map) { - return NubanProduct( - id: map['id'] ?? 0, - updatedAt: map['updatedAt'] == null - ? DateTime.now() - : DateTime.parse(map['updatedAt']), - createdAt: map['createdAt'] == null - ? DateTime.now() - : DateTime.parse(map['createdAt']), - name: map['name'] ?? '', - description: map['description'] ?? '', - company: map['company'] ?? '', - ); - } - - factory NubanProduct.initial() { - return NubanProduct( - id: 0, - updatedAt: DateTime.now(), - createdAt: DateTime.now(), - name: '', - description: '', - company: '', - ); - } - - String toJson() => json.encode(toMap()); - - factory NubanProduct.fromJson(String source) => - NubanProduct.fromMap(json.decode(source) as Map); - - @override - bool operator ==(covariant NubanProduct other) { - if (identical(this, other)) return true; - - return other.id == id && - other.updatedAt == updatedAt && - other.createdAt == createdAt && - other.name == name && - other.description == description && - other.company == company; - } - - @override - int get hashCode { - return id.hashCode ^ - updatedAt.hashCode ^ - createdAt.hashCode ^ - name.hashCode ^ - description.hashCode ^ - company.hashCode; - } -} diff --git a/lib/shared/domain/models/wallet/product_type_detail_model.dart b/lib/shared/domain/models/wallet/product_type_detail_model.dart deleted file mode 100644 index 3811a02..0000000 --- a/lib/shared/domain/models/wallet/product_type_detail_model.dart +++ /dev/null @@ -1,55 +0,0 @@ -// ignore_for_file: public_member_api_docs, sort_constructors_first -import 'dart:convert'; - -class ProductTypeDetailModel { - String accountNumber; - num balance; - String destinationAccountNumber; - ProductTypeDetailModel( - {required this.accountNumber, - required this.balance, - required this.destinationAccountNumber}); - - ProductTypeDetailModel copyWith( - {String? accountNumber, num? balance, String? destinationAccountNumber}) { - return ProductTypeDetailModel( - accountNumber: accountNumber ?? this.accountNumber, - balance: balance ?? this.balance, - destinationAccountNumber: - destinationAccountNumber ?? this.destinationAccountNumber); - } - - Map toMap() { - return { - 'accountNumber': accountNumber, - 'balance': balance, - }; - } - - factory ProductTypeDetailModel.fromMap(Map map) { - return ProductTypeDetailModel( - accountNumber: map['accountNumber'] ?? '', - balance: map['balance'] ?? '', - destinationAccountNumber: map['accountNumber'] ?? ''); - } - - String toJson() => json.encode(toMap()); - - factory ProductTypeDetailModel.fromJson(String source) => - ProductTypeDetailModel.fromMap( - json.decode(source) as Map); - - @override - String toString() => - 'ProductTypeDetailModel(accountNumber: $accountNumber, balance: $balance)'; - - @override - bool operator ==(covariant ProductTypeDetailModel other) { - if (identical(this, other)) return true; - - return other.accountNumber == accountNumber && other.balance == balance; - } - - @override - int get hashCode => accountNumber.hashCode ^ balance.hashCode; -} diff --git a/lib/shared/domain/models/wallet/product_type_model.dart b/lib/shared/domain/models/wallet/product_type_model.dart deleted file mode 100644 index f73e612..0000000 --- a/lib/shared/domain/models/wallet/product_type_model.dart +++ /dev/null @@ -1,123 +0,0 @@ -// ignore_for_file: public_member_api_docs, sort_constructors_first -import 'dart:convert'; - -class ProductTypeModel { - bool? hasSecurities; - bool? hasNGNWallet; - bool? hasFixedIncomeNGN; - bool? hasFixedincomeMMIUSD; - bool? hasFixedincomeMMIGBP; - bool? hasAlphaFund; - bool? hasEquityFund; - bool? hasDollarFund; - bool? hasMMFFund; - bool? hasSMANGN; - ProductTypeModel({ - this.hasSecurities = false, - this.hasNGNWallet = false, - this.hasFixedIncomeNGN = false, - this.hasFixedincomeMMIUSD = false, - this.hasFixedincomeMMIGBP = false, - this.hasAlphaFund = false, - this.hasEquityFund = false, - this.hasDollarFund = false, - this.hasMMFFund = false, - this.hasSMANGN = false, - }); - - ProductTypeModel copyWith({ - bool? hasSecurities, - bool? hasNGNWallet, - bool? hasFixedIncomeNGN, - bool? hasFixedincomeMMIUSD, - bool? hasFixedincomeMMIGBP, - bool? hasAlphaFund, - bool? hasEquityFund, - bool? hasDollarFund, - bool? hasMMFFund, - bool? hasSMANGN, - }) { - return ProductTypeModel( - hasSecurities: hasSecurities ?? this.hasSecurities, - hasNGNWallet: hasNGNWallet ?? this.hasNGNWallet, - hasFixedIncomeNGN: hasFixedIncomeNGN ?? this.hasFixedIncomeNGN, - hasFixedincomeMMIUSD: hasFixedincomeMMIUSD ?? this.hasFixedincomeMMIUSD, - hasFixedincomeMMIGBP: hasFixedincomeMMIGBP ?? this.hasFixedincomeMMIGBP, - hasAlphaFund: hasAlphaFund ?? this.hasAlphaFund, - hasEquityFund: hasEquityFund ?? this.hasEquityFund, - hasDollarFund: hasDollarFund ?? this.hasDollarFund, - hasMMFFund: hasMMFFund ?? this.hasMMFFund, - hasSMANGN: hasSMANGN ?? this.hasSMANGN, - ); - } - - Map toMap() { - return { - 'Securities Trading': hasSecurities, - 'NGN Wallet': hasNGNWallet, - 'Fixed Income NGN': hasFixedIncomeNGN, - 'Fixed Income/MMI USD': hasFixedincomeMMIUSD, - 'Fixed Income/MMI GBP': hasFixedincomeMMIGBP, - 'Alpha Fund': hasAlphaFund, - 'Equity Fund': hasEquityFund, - 'Dollar Fund': hasDollarFund, - 'MMF Fund': hasMMFFund, - 'SMA NGN': hasSMANGN, - }; - } - - factory ProductTypeModel.fromMap(Map map) { - return ProductTypeModel( - hasSecurities: map['Securities Trading'] ?? false, - hasNGNWallet: map['NGN Wallet'] ?? false, - hasFixedIncomeNGN: map['Fixed Income NGN'] ?? false, - hasFixedincomeMMIUSD: map['Fixed Income/MMI USD'] ?? false, - hasFixedincomeMMIGBP: map['Fixed Income/MMI GBP'] ?? false, - hasAlphaFund: map['Alpha Fund'] ?? false, - hasEquityFund: map['Equity Fund'] ?? false, - hasDollarFund: map['Dollar Fund'] ?? false, - hasMMFFund: map['MMF Fund'] ?? false, - hasSMANGN: map['SMA NGN'] ?? false, - ); - } - - String toJson() => json.encode(toMap()); - - factory ProductTypeModel.fromJson(String source) => - ProductTypeModel.fromMap(json.decode(source) as Map); - - @override - String toString() { - return 'ProductTypeModel(hasSecurities: $hasSecurities, hasNGNWallet: $hasNGNWallet, hasFixedIncomeNGN: $hasFixedIncomeNGN, hasFixedincomeMMIUSD: $hasFixedincomeMMIUSD, hasFixedincomeMMIGBP: $hasFixedincomeMMIGBP, hasAlphaFund: $hasAlphaFund, hasEquityFund: $hasEquityFund, hasDollarFund: $hasDollarFund, hasMMFFund: $hasMMFFund, hasSMANGN: $hasSMANGN)'; - } - - @override - bool operator ==(covariant ProductTypeModel other) { - if (identical(this, other)) return true; - - return other.hasSecurities == hasSecurities && - other.hasNGNWallet == hasNGNWallet && - other.hasFixedIncomeNGN == hasFixedIncomeNGN && - other.hasFixedincomeMMIUSD == hasFixedincomeMMIUSD && - other.hasFixedincomeMMIGBP == hasFixedincomeMMIGBP && - other.hasAlphaFund == hasAlphaFund && - other.hasEquityFund == hasEquityFund && - other.hasDollarFund == hasDollarFund && - other.hasMMFFund == hasMMFFund && - other.hasSMANGN == hasSMANGN; - } - - @override - int get hashCode { - return hasSecurities.hashCode ^ - hasNGNWallet.hashCode ^ - hasFixedIncomeNGN.hashCode ^ - hasFixedincomeMMIUSD.hashCode ^ - hasFixedincomeMMIGBP.hashCode ^ - hasAlphaFund.hashCode ^ - hasEquityFund.hashCode ^ - hasDollarFund.hashCode ^ - hasMMFFund.hashCode ^ - hasSMANGN.hashCode; - } -} diff --git a/lib/shared/domain/models/wallet/transfer_funds_model.dart b/lib/shared/domain/models/wallet/transfer_funds_model.dart deleted file mode 100644 index 01491de..0000000 --- a/lib/shared/domain/models/wallet/transfer_funds_model.dart +++ /dev/null @@ -1,135 +0,0 @@ -// ignore_for_file: public_member_api_docs, sort_constructors_first -import 'dart:convert'; - -class TransferFundsModel { - String sourceType; - String destinationType; - String destinationAccountId; - num amount; - String sourceAccountId; - //Mutual Funds subscription Related models - String? accountId; - String? businessDate; - String? fundId; - num? price; - num? quantity; - - ///this is used in the case of mutual fund subscription using wallet - TransferFundsModel( - {required this.sourceType, - required this.destinationType, - required this.destinationAccountId, - required this.amount, - required this.sourceAccountId, - this.accountId, - this.businessDate, - this.fundId, - this.price, - this.quantity}); - - TransferFundsModel copyWith( - {String? sourceType, - String? destinationType, - String? destinationAccountId, - num? amount, - String? sourceAccountId, - String? accountId, - String? businessDate, - String? fundId, - num? price, - num? quantity}) { - return TransferFundsModel( - sourceType: sourceType ?? this.sourceType, - destinationType: destinationType ?? this.destinationType, - destinationAccountId: destinationAccountId ?? this.destinationAccountId, - amount: amount ?? this.amount, - sourceAccountId: sourceAccountId ?? this.sourceAccountId, - accountId: accountId ?? this.accountId, - businessDate: businessDate ?? this.businessDate, - fundId: fundId ?? this.fundId, - price: price ?? this.price, - quantity: quantity ?? this.quantity); - } - - Map toMap() { - var map = { - 'sourceType': sourceType, - 'destinationType': destinationType, - 'amount': amount, - 'sourceAccountId': sourceAccountId, - }; - - if (destinationAccountId.isNotEmpty) { - map.addAll({'destinationAccountId': destinationAccountId}); - } - - if (accountId != null && accountId!.isNotEmpty) { - map.addAll({'accountId': accountId}); - } - - if (businessDate != null && businessDate!.isNotEmpty) { - map.addAll({'date': businessDate}); - } - - if (fundId != null && fundId!.isNotEmpty) { - map.addAll({'fund': fundId}); - } - - if (price != null && price! > 0) { - map.addAll({'price': price}); - } - - if (quantity != null) { - map.addAll({'quantity': quantity}); - } - - return map; - } - - factory TransferFundsModel.fromMap(Map map) { - return TransferFundsModel( - sourceType: map['sourceType'] ?? '', - destinationType: map['destinationType'] ?? '', - destinationAccountId: map['destinationAccountId'] ?? '', - amount: map['amount'] ?? 0, - sourceAccountId: map['sourceAccountId'] ?? '', - ); - } - - factory TransferFundsModel.initial() { - return TransferFundsModel( - amount: 0, - destinationType: '', - destinationAccountId: '', - sourceAccountId: '', - sourceType: ''); - } - - factory TransferFundsModel.fromJson(String source) => - TransferFundsModel.fromMap(json.decode(source) as Map); - - @override - String toString() { - return 'TransferFundsModel(sourceType: $sourceType, destinationType: $destinationType, destinationAccountId: $destinationAccountId, amount: $amount, sourceAccountId: $sourceAccountId)'; - } - - @override - bool operator ==(covariant TransferFundsModel other) { - if (identical(this, other)) return true; - - return other.sourceType == sourceType && - other.destinationType == destinationType && - other.destinationAccountId == destinationAccountId && - other.amount == amount && - other.sourceAccountId == sourceAccountId; - } - - @override - int get hashCode { - return sourceType.hashCode ^ - destinationType.hashCode ^ - destinationAccountId.hashCode ^ - amount.hashCode ^ - sourceAccountId.hashCode; - } -} diff --git a/lib/shared/domain/models/watchlist/create_watchlist_model.dart b/lib/shared/domain/models/watchlist/create_watchlist_model.dart deleted file mode 100644 index 6a22018..0000000 --- a/lib/shared/domain/models/watchlist/create_watchlist_model.dart +++ /dev/null @@ -1,88 +0,0 @@ -// ignore_for_file: public_member_api_docs, sort_constructors_first -import 'dart:convert'; - -class CreateWatchlistModel { - String? name; - String? notifyPrice; - String? condition; - String? conditionName; - String? watchlistName; - CreateWatchlistModel({ - this.name, - this.notifyPrice, - this.condition, - this.conditionName, - this.watchlistName, - }); - - CreateWatchlistModel copyWith({ - String? name, - String? notify_price, - String? condition, - String? condition_name, - String? watchlist_name, - }) { - return CreateWatchlistModel( - name: name ?? this.name, - notifyPrice: notifyPrice ?? notifyPrice, - condition: condition ?? this.condition, - conditionName: condition_name ?? conditionName, - watchlistName: watchlist_name ?? watchlistName, - ); - } - - Map toMap() { - return { - 'name': name, - 'notify_price': notifyPrice, - 'condition': condition, - 'condition_name': conditionName, - 'watchlist_name': watchlistName, - }; - } - - factory CreateWatchlistModel.fromMap(Map map) { - return CreateWatchlistModel( - name: map['name'] != null ? map['name'] as String : null, - notifyPrice: - map['notify_price'] != null ? map['notify_price'] as String : null, - condition: map['condition'] != null ? map['condition'] as String : null, - conditionName: map['condition_name'] != null - ? map['condition_name'] as String - : null, - watchlistName: map['watchlist_name'] != null - ? map['watchlist_name'] as String - : null, - ); - } - - String toJson() => json.encode(toMap()); - - factory CreateWatchlistModel.fromJson(String source) => - CreateWatchlistModel.fromMap(json.decode(source) as Map); - - @override - String toString() { - return 'CreateWatchlistModel(name: $name, notify_price: $notifyPrice, condition: $condition, condition_name: $conditionName, watchlist_name: $watchlistName)'; - } - - @override - bool operator ==(covariant CreateWatchlistModel other) { - if (identical(this, other)) return true; - - return other.name == name && - other.notifyPrice == notifyPrice && - other.condition == condition && - other.conditionName == conditionName && - other.watchlistName == watchlistName; - } - - @override - int get hashCode { - return name.hashCode ^ - notifyPrice.hashCode ^ - condition.hashCode ^ - conditionName.hashCode ^ - watchlistName.hashCode; - } -} diff --git a/lib/shared/domain/models/watchlist/watchlist_model.dart b/lib/shared/domain/models/watchlist/watchlist_model.dart deleted file mode 100644 index fe8bf18..0000000 --- a/lib/shared/domain/models/watchlist/watchlist_model.dart +++ /dev/null @@ -1,140 +0,0 @@ -// ignore_for_file: public_member_api_docs, sort_constructors_first -import 'dart:convert'; - -class WatchlistModel { - int? id; - // DateTime? updatedAt; - // DateTime? createdAt; - bool? deleted; - bool? suspended; - String? name; - String? notifyPrice; - String? condition; - String? conditionName; - bool? status; - String? watchlistName; - WatchlistModel({ - this.id, - // this.updatedAt, - // this.createdAt, - this.deleted, - this.suspended, - this.name, - this.notifyPrice, - this.condition, - this.conditionName, - this.status, - this.watchlistName, - }); - - WatchlistModel copyWith({ - int? id, - // DateTime? updatedAt, - // DateTime? createdAt, - bool? deleted, - bool? suspended, - String? name, - String? notifyPrice, - String? condition, - String? conditionName, - bool? status, - String? watchlistName, - }) { - return WatchlistModel( - id: id ?? this.id, - // updatedAt: updatedAt ?? this.updatedAt, - // createdAt: createdAt ?? this.createdAt, - deleted: deleted ?? this.deleted, - suspended: suspended ?? this.suspended, - name: name ?? this.name, - notifyPrice: notifyPrice ?? this.notifyPrice, - condition: condition ?? this.condition, - conditionName: conditionName ?? this.conditionName, - status: status ?? this.status, - watchlistName: watchlistName ?? this.watchlistName, - ); - } - - Map toMap() { - return { - 'id': id, - // 'updatedAt': updatedAt?.millisecondsSinceEpoch, - // 'createdAt': createdAt?.millisecondsSinceEpoch, - 'deleted': deleted, - 'suspended': suspended, - 'name': name, - 'notifyPrice': notifyPrice, - 'condition': condition, - 'conditionName': conditionName, - 'status': status, - 'watchlistName': watchlistName, - }; - } - - factory WatchlistModel.fromMap(Map map) { - return WatchlistModel( - id: map['id'] != null ? map['id'] as int : null, - // updatedAt: map['updatedAt'] != null - // ? DateTime.fromMillisecondsSinceEpoch(map['updatedAt'] as int) - // : null, - // createdAt: map['createdAt'] != null - // ? DateTime.fromMillisecondsSinceEpoch(map['createdAt'] as int) - // : null, - deleted: map['deleted'] != null ? map['deleted'] as bool : null, - suspended: map['suspended'] != null ? map['suspended'] as bool : null, - name: map['name'] != null ? map['name'] as String : null, - notifyPrice: - map['notify_price'] != null ? map['notify_price'] as String : null, - condition: map['condition'] != null ? map['condition'] as String : null, - conditionName: map['condition_name'] != null - ? map['condition_name'] as String - : null, - status: map['status'] != null ? map['status'] as bool : null, - watchlistName: map['watchlist_name'] != null - ? map['watchlist_name'] as String - : null, - ); - } - - String toJson() => json.encode(toMap()); - - factory WatchlistModel.fromJson(String source) => - WatchlistModel.fromMap(json.decode(source) as Map); - - @override - String toString() { - return 'WatchlistModel(id: $id, deleted: $deleted, suspended: $suspended, name: $name, notifyPrice: $notifyPrice, condition: $condition, conditionName: $conditionName, status: $status, watchlistName: $watchlistName)'; - } - - @override - bool operator ==(covariant WatchlistModel other) { - if (identical(this, other)) return true; - - return other.id == id && - // other.updatedAt == updatedAt && - // other.createdAt == createdAt && - other.deleted == deleted && - other.suspended == suspended && - other.name == name && - other.notifyPrice == notifyPrice && - other.condition == condition && - other.conditionName == conditionName && - other.status == status && - other.watchlistName == watchlistName; - } - - @override - int get hashCode { - return id.hashCode ^ - // updatedAt.hashCode ^ - // createdAt.hashCode ^ - deleted.hashCode ^ - suspended.hashCode ^ - name.hashCode ^ - notifyPrice.hashCode ^ - condition.hashCode ^ - conditionName.hashCode ^ - status.hashCode ^ - watchlistName.hashCode; - } -} diff --git a/lib/shared/domain/models/zanibal/equities_model.dart b/lib/shared/domain/models/zanibal/equities_model.dart deleted file mode 100644 index 69bb97b..0000000 --- a/lib/shared/domain/models/zanibal/equities_model.dart +++ /dev/null @@ -1,430 +0,0 @@ -import 'dart:convert'; - -class EquitiesResponse { - final int? page; - final int? size; - final int? totalPages; - final int? totalCount; - final String? sort; - final String? order; - final List? content; - - EquitiesResponse({ - this.page, - this.size, - this.totalPages, - this.totalCount, - this.sort, - this.order, - this.content, - }); - - EquitiesResponse copyWith({ - int? page, - int? size, - int? totalPages, - int? totalCount, - String? sort, - String? order, - List? content, - }) { - return EquitiesResponse( - page: page ?? this.page, - size: size ?? this.size, - totalPages: totalPages ?? this.totalPages, - totalCount: totalCount ?? this.totalCount, - sort: sort ?? this.sort, - order: order ?? this.order, - content: content ?? this.content, - ); - } - - Map toMap() { - return { - 'page': page, - 'size': size, - 'totalPages': totalPages, - 'totalCount': totalCount, - 'sort': sort, - 'order': order, - 'content': content?.map((x) => x.toMap()).toList(), - }; - } - - factory EquitiesResponse.fromMap(Map map) { - return EquitiesResponse( - page: map['page'], - size: map['size'], - totalPages: map['totalPages'], - totalCount: map['totalCount'], - sort: map['sort'], - order: map['order'], - content: map['content'] != null - ? List.from(map['content'].map((x) => Equities.fromMap(x))) - : [], - ); - } - - String toJson() => json.encode(toMap()); - - factory EquitiesResponse.fromJson(String source) => - EquitiesResponse.fromMap(json.decode(source)); - - @override - String toString() { - return 'Data(page: $page, size: $size, totalPages: $totalPages, totalCount: $totalCount, sort: $sort, order: $order, content: $content)'; - } - - @override - bool operator ==(covariant EquitiesResponse other) { - if (identical(this, other)) return true; - - return other.page == page && - other.size == size && - other.totalPages == totalPages && - other.totalCount == totalCount && - other.sort == sort && - other.order == order && - other.content == content; - } - - @override - int get hashCode { - return page.hashCode ^ - size.hashCode ^ - totalPages.hashCode ^ - totalCount.hashCode ^ - sort.hashCode ^ - order.hashCode ^ - content.hashCode; - } -} - -class Equities { - final String? id; - - final bool? deleted; - final DateTime? issueDate; - final String? secId; - final String? isin; - final String? secDesc; - final String? secNotes; - final dynamic imageUrl; - final num? settlementDays; - final String? status; - final String? type; - final bool? allowShorts; - final dynamic logo; - final dynamic logoFileName; - final dynamic logoMimeType; - final num? price; - final String? currency; - final num? parValue; - final num? priceConvRatio; - final num? longMarginReq; - final num? shortMarginReq; - final num? minOrderQuantity; - final num? maxOrderQuantity; - final num? orderSizeStep; - final bool? allowFractions; - final bool? allowMargin; - final dynamic industry; - final dynamic superSector; - final dynamic sector; - final dynamic subSector; - final dynamic classificationId; - final String? marketCode; - final String? marketId; - - Equities({ - this.id, - // this.createdBy, - // this.createdAt, - // this.updatedBy, - // this.updatedAt, - this.deleted, - this.issueDate, - this.secId, - this.isin, - this.secDesc, - this.secNotes, - this.imageUrl, - this.settlementDays, - this.status, - this.type, - this.allowShorts, - this.logo, - this.logoFileName, - this.logoMimeType, - this.price, - this.currency, - this.parValue, - this.priceConvRatio, - this.longMarginReq, - this.shortMarginReq, - this.minOrderQuantity, - this.maxOrderQuantity, - this.orderSizeStep, - this.allowFractions, - this.allowMargin, - this.industry, - this.superSector, - this.sector, - this.subSector, - this.classificationId, - this.marketCode, - this.marketId, - }); - - Equities copyWith({ - String? id, - String? createdBy, - DateTime? createdAt, - String? updatedBy, - DateTime? updatedAt, - bool? deleted, - DateTime? issueDate, - String? secId, - String? isin, - String? secDesc, - String? secNotes, - dynamic imageUrl, - num? settlementDays, - String? status, - String? type, - bool? allowShorts, - dynamic logo, - dynamic logoFileName, - dynamic logoMimeType, - num? price, - String? currency, - num? parValue, - num? priceConvRatio, - num? longMarginReq, - num? shortMarginReq, - num? minOrderQuantity, - num? maxOrderQuantity, - num? orderSizeStep, - bool? allowFractions, - bool? allowMargin, - dynamic industry, - dynamic superSector, - dynamic sector, - dynamic subSector, - dynamic classificationId, - String? marketCode, - String? marketId, - }) { - return Equities( - id: id ?? this.id, - // createdBy: createdBy ?? this.createdBy, - // createdAt: createdAt ?? this.createdAt, - // updatedBy: updatedBy ?? this.updatedBy, - // updatedAt: updatedAt ?? this.updatedAt, - deleted: deleted ?? this.deleted, - issueDate: issueDate ?? this.issueDate, - secId: secId ?? this.secId, - isin: isin ?? this.isin, - secDesc: secDesc ?? this.secDesc, - secNotes: secNotes ?? this.secNotes, - imageUrl: imageUrl ?? this.imageUrl, - settlementDays: settlementDays ?? this.settlementDays, - status: status ?? this.status, - type: type ?? this.type, - allowShorts: allowShorts ?? this.allowShorts, - logo: logo ?? this.logo, - logoFileName: logoFileName ?? this.logoFileName, - logoMimeType: logoMimeType ?? this.logoMimeType, - price: price ?? this.price, - currency: currency ?? this.currency, - parValue: parValue ?? this.parValue, - priceConvRatio: priceConvRatio ?? this.priceConvRatio, - longMarginReq: longMarginReq ?? this.longMarginReq, - shortMarginReq: shortMarginReq ?? this.shortMarginReq, - minOrderQuantity: minOrderQuantity ?? this.minOrderQuantity, - maxOrderQuantity: maxOrderQuantity ?? this.maxOrderQuantity, - orderSizeStep: orderSizeStep ?? this.orderSizeStep, - allowFractions: allowFractions ?? this.allowFractions, - allowMargin: allowMargin ?? this.allowMargin, - industry: industry ?? this.industry, - superSector: superSector ?? this.superSector, - sector: sector ?? this.sector, - subSector: subSector ?? this.subSector, - classificationId: classificationId ?? this.classificationId, - marketCode: marketCode ?? this.marketCode, - marketId: marketId ?? this.marketId, - ); - } - - Map toMap() { - return { - 'id': id, - 'deleted': deleted, - 'issueDate': issueDate?.toIso8601String(), - 'secId': secId, - 'isin': isin, - 'secDesc': secDesc, - 'secNotes': secNotes, - 'imageUrl': imageUrl, - 'settlementDays': settlementDays, - 'status': status, - 'type': type, - 'allowShorts': allowShorts, - 'logo': logo, - 'logoFileName': logoFileName, - 'logoMimeType': logoMimeType, - 'price': price, - 'currency': currency, - 'parValue': parValue, - 'priceConvRatio': priceConvRatio, - 'longMarginReq': longMarginReq, - 'shortMarginReq': shortMarginReq, - 'minOrderQuantity': minOrderQuantity, - 'maxOrderQuantity': maxOrderQuantity, - 'orderSizeStep': orderSizeStep, - 'allowFractions': allowFractions, - 'allowMargin': allowMargin, - 'industry': industry, - 'superSector': superSector, - 'sector': sector, - 'subSector': subSector, - 'classificationId': classificationId, - 'marketCode': marketCode, - 'marketId': marketId, - }; - } - - factory Equities.fromMap(Map map) { - return Equities( - id: map['id'], - deleted: map['deleted'], - issueDate: map['issueDate'] != null - ? DateTime.parse(map['issueDate']) - : DateTime.now(), - secId: map['secId'] ?? '', - isin: map['isin'] ?? '', - secDesc: map['secDesc'] ?? '', - secNotes: map['secNotes'] ?? '', - imageUrl: map['imageUrl'] ?? '', - settlementDays: map['settlementDays'] ?? 0, - status: map['status'] ?? '', - type: map['type'] ?? '', - allowShorts: map['allowShorts'] ?? false, - logo: map['logo'] ?? '', - logoFileName: map['logoFileName'] ?? '', - logoMimeType: map['logoMimeType'] ?? '', - price: map['price'] ?? 0, - currency: map['currency'] ?? '', - parValue: map['parValue'] ?? 0, - priceConvRatio: map['priceConvRatio'] ?? 0, - longMarginReq: map['longMarginReq'] ?? 0, - shortMarginReq: map['shortMarginReq'] ?? 0, - minOrderQuantity: map['minOrderQuantity'] ?? 0, - maxOrderQuantity: map['maxOrderQuantity'] ?? 0, - orderSizeStep: map['orderSizeStep'] ?? 0, - allowFractions: map['allowFractions'] ?? false, - allowMargin: map['allowMargin'] ?? false, - industry: map['industry'] ?? '', - superSector: map['superSector'] ?? '', - sector: map['sector'] ?? '', - subSector: map['subSector'] ?? '', - classificationId: map['classificationId'] ?? '', - marketCode: map['marketCode'] ?? '', - marketId: map['marketId'] ?? '', - ); - } - - String toJson() => json.encode(toMap()); - - factory Equities.fromJson(String source) => - Equities.fromMap(json.decode(source)); - - @override - String toString() { - return 'Content(id: $id, deleted: $deleted, issueDate: $issueDate, secId: $secId, isin: $isin, secDesc: $secDesc, secNotes: $secNotes, imageUrl: $imageUrl, settlementDays: $settlementDays, status: $status, type: $type, allowShorts: $allowShorts, logo: $logo, logoFileName: $logoFileName, logoMimeType: $logoMimeType, price: $price, currency: $currency, parValue: $parValue, priceConvRatio: $priceConvRatio, longMarginReq: $longMarginReq, shortMarginReq: $shortMarginReq, minOrderQuantity: $minOrderQuantity, maxOrderQuantity: $maxOrderQuantity, orderSizeStep: $orderSizeStep, allowFractions: $allowFractions, allowMargin: $allowMargin, industry: $industry, superSector: $superSector, sector: $sector, subSector: $subSector, classificationId: $classificationId, marketCode: $marketCode, marketId: $marketId)'; - } - - @override - bool operator ==(covariant Equities other) { - if (identical(this, other)) return true; - - return other.id == id && - // other.createdBy == createdBy && - // other.createdAt == createdAt && - // other.updatedBy == updatedBy && - // other.updatedAt == updatedAt && - other.deleted == deleted && - other.issueDate == issueDate && - other.secId == secId && - other.isin == isin && - other.secDesc == secDesc && - other.secNotes == secNotes && - other.imageUrl == imageUrl && - other.settlementDays == settlementDays && - other.status == status && - other.type == type && - other.allowShorts == allowShorts && - other.logo == logo && - other.logoFileName == logoFileName && - other.logoMimeType == logoMimeType && - other.price == price && - other.currency == currency && - other.parValue == parValue && - other.priceConvRatio == priceConvRatio && - other.longMarginReq == longMarginReq && - other.shortMarginReq == shortMarginReq && - other.minOrderQuantity == minOrderQuantity && - other.maxOrderQuantity == maxOrderQuantity && - other.orderSizeStep == orderSizeStep && - other.allowFractions == allowFractions && - other.allowMargin == allowMargin && - other.industry == industry && - other.superSector == superSector && - other.sector == sector && - other.subSector == subSector && - other.classificationId == classificationId && - other.marketCode == marketCode && - other.marketId == marketId; - } - - @override - int get hashCode { - return id.hashCode ^ - // createdBy.hashCode ^ - // createdAt.hashCode ^ - // updatedBy.hashCode ^ - // updatedAt.hashCode ^ - deleted.hashCode ^ - issueDate.hashCode ^ - secId.hashCode ^ - isin.hashCode ^ - secDesc.hashCode ^ - secNotes.hashCode ^ - imageUrl.hashCode ^ - settlementDays.hashCode ^ - status.hashCode ^ - type.hashCode ^ - allowShorts.hashCode ^ - logo.hashCode ^ - logoFileName.hashCode ^ - logoMimeType.hashCode ^ - price.hashCode ^ - currency.hashCode ^ - parValue.hashCode ^ - priceConvRatio.hashCode ^ - longMarginReq.hashCode ^ - shortMarginReq.hashCode ^ - minOrderQuantity.hashCode ^ - maxOrderQuantity.hashCode ^ - orderSizeStep.hashCode ^ - allowFractions.hashCode ^ - allowMargin.hashCode ^ - industry.hashCode ^ - superSector.hashCode ^ - sector.hashCode ^ - subSector.hashCode ^ - classificationId.hashCode ^ - marketCode.hashCode ^ - marketId.hashCode; - } -} diff --git a/lib/shared/domain/models/zanibal/investment_account_model.dart b/lib/shared/domain/models/zanibal/investment_account_model.dart deleted file mode 100644 index aaf5317..0000000 --- a/lib/shared/domain/models/zanibal/investment_account_model.dart +++ /dev/null @@ -1,420 +0,0 @@ -// ignore_for_file: public_member_api_docs, sort_constructors_first -import 'dart:convert'; -import 'package:flutter/foundation.dart'; - -String investmentAccountModelToJson(List data) => - json.encode(List.from(data.map((x) => x.toMap()))); - -// List jsonData = (String jsonString); - -class InvestmentAccountModel { - final String id; - final num totalValue; - final String clientId; - final String mgmtType; - final String status; - final String accountUsage; - final String tradingAccountNo; - final dynamic tradingSubAccountNo; - final String accountNo; - final String accountLabel; - final String clientCode; - final String clientLabel; - final String currency; - final double cashBalance; - final DateTime balanceTime; - final num marginInterestRate; - final num marginLimit; - final String refCode; - final String dividendDistribution; - final bool directCashSettlement; - final String clearingAccountNo; - final num maxOpenBuyLimit; - final num maxDailyBuyLimit; - final num cashInterestRate; - final List tradingAccounts; - final String groupId; - final bool marginAvailable; - final String productCode; - final String productId; - final String branchId; - final String glAccountId; - final num effectiveCommissionRate; - InvestmentAccountModel({ - required this.id, - required this.totalValue, - required this.clientId, - required this.mgmtType, - required this.status, - required this.accountUsage, - required this.tradingAccountNo, - required this.tradingSubAccountNo, - required this.accountNo, - required this.accountLabel, - required this.clientCode, - required this.clientLabel, - required this.currency, - required this.cashBalance, - required this.balanceTime, - required this.marginInterestRate, - required this.marginLimit, - required this.refCode, - required this.dividendDistribution, - required this.directCashSettlement, - required this.clearingAccountNo, - required this.maxOpenBuyLimit, - required this.maxDailyBuyLimit, - required this.cashInterestRate, - required this.tradingAccounts, - required this.groupId, - required this.marginAvailable, - required this.productCode, - required this.productId, - required this.branchId, - required this.glAccountId, - required this.effectiveCommissionRate, - }); - - InvestmentAccountModel copyWith({ - String? id, - num? totalValue, - String? clientId, - String? mgmtType, - String? status, - String? accountUsage, - String? tradingAccountNo, - String? tradingSubAccountNo, - String? accountNo, - String? accountLabel, - String? clientCode, - String? clientLabel, - String? currency, - double? cashBalance, - DateTime? balanceTime, - num? marginInterestRate, - num? marginLimit, - String? refCode, - String? dividendDistribution, - bool? directCashSettlement, - String? clearingAccountNo, - num? maxOpenBuyLimit, - num? maxDailyBuyLimit, - num? cashInterestRate, - List? tradingAccounts, - String? groupId, - bool? marginAvailable, - String? productCode, - String? productId, - String? branchId, - String? glAccountId, - num? effectiveCommissionRate, - }) { - return InvestmentAccountModel( - id: id ?? this.id, - totalValue: totalValue ?? this.totalValue, - clientId: clientId ?? this.clientId, - mgmtType: mgmtType ?? this.mgmtType, - status: status ?? this.status, - accountUsage: accountUsage ?? this.accountUsage, - tradingAccountNo: tradingAccountNo ?? this.tradingAccountNo, - tradingSubAccountNo: tradingSubAccountNo ?? this.tradingSubAccountNo, - accountNo: accountNo ?? this.accountNo, - accountLabel: accountLabel ?? this.accountLabel, - clientCode: clientCode ?? this.clientCode, - clientLabel: clientLabel ?? this.clientLabel, - currency: currency ?? this.currency, - cashBalance: cashBalance ?? this.cashBalance, - balanceTime: balanceTime ?? this.balanceTime, - marginInterestRate: marginInterestRate ?? this.marginInterestRate, - marginLimit: marginLimit ?? this.marginLimit, - refCode: refCode ?? this.refCode, - dividendDistribution: dividendDistribution ?? this.dividendDistribution, - directCashSettlement: directCashSettlement ?? this.directCashSettlement, - clearingAccountNo: clearingAccountNo ?? this.clearingAccountNo, - maxOpenBuyLimit: maxOpenBuyLimit ?? this.maxOpenBuyLimit, - maxDailyBuyLimit: maxDailyBuyLimit ?? this.maxDailyBuyLimit, - cashInterestRate: cashInterestRate ?? this.cashInterestRate, - tradingAccounts: tradingAccounts ?? this.tradingAccounts, - groupId: groupId ?? this.groupId, - marginAvailable: marginAvailable ?? this.marginAvailable, - productCode: productCode ?? this.productCode, - productId: productId ?? this.productId, - branchId: branchId ?? this.branchId, - glAccountId: glAccountId ?? this.glAccountId, - effectiveCommissionRate: - effectiveCommissionRate ?? this.effectiveCommissionRate, - ); - } - - Map toMap() { - return { - 'id': id, - 'totalValue': totalValue, - 'clientId': clientId, - 'mgmtType': mgmtType, - 'status': status, - 'accountUsage': accountUsage, - 'tradingAccountNo': tradingAccountNo, - 'tradingSubAccountNo': tradingSubAccountNo, - 'accountNo': accountNo, - 'accountLabel': accountLabel, - 'clientCode': clientCode, - 'clientLabel': clientLabel, - 'currency': currency, - 'cashBalance': cashBalance, - 'balanceTime': balanceTime.millisecondsSinceEpoch, - 'marginInterestRate': marginInterestRate, - 'marginLimit': marginLimit, - 'refCode': refCode, - 'dividendDistribution': dividendDistribution, - 'directCashSettlement': directCashSettlement, - 'clearingAccountNo': clearingAccountNo, - 'maxOpenBuyLimit': maxOpenBuyLimit, - 'maxDailyBuyLimit': maxDailyBuyLimit, - 'cashInterestRate': cashInterestRate, - 'tradingAccounts': tradingAccounts.map((x) => x.toMap()).toList(), - 'groupId': groupId, - 'marginAvailable': marginAvailable, - 'productCode': productCode, - 'productId': productId, - 'branchId': branchId, - 'glAccountId': glAccountId, - 'effectiveCommissionRate': effectiveCommissionRate, - }; - } - - factory InvestmentAccountModel.fromMap(Map map) { - return InvestmentAccountModel( - id: map['id'] ?? '', - totalValue: map['totalValue'] ?? 0, - clientId: map['clientId'] ?? '', - mgmtType: map['mgmtType'] ?? '', - status: map['status'] ?? '', - accountUsage: map['accountUsage'] ?? '', - tradingAccountNo: map['tradingAccountNo'] ?? '', - tradingSubAccountNo: map['tradingSubAccountNo'] ?? '', - accountNo: map['accountNo'] ?? '', - accountLabel: map['accountLabel'] ?? '', - clientCode: map['clientCode'] ?? '', - clientLabel: map['clientLabel'] ?? '', - currency: map['currency'] ?? '', - cashBalance: map['cashBalance'] ?? 0, - balanceTime: map['balanceTime'] == null - ? DateTime.now() - : DateTime.parse(map['balanceTime']), - marginInterestRate: map['marginInterestRate'] ?? 0, - marginLimit: map['marginLimit'] ?? 0, - refCode: map['refCode'] ?? '', - dividendDistribution: map['dividendDistribution'] ?? '', - directCashSettlement: map['directCashSettlement'] ?? false, - clearingAccountNo: map['clearingAccountNo'] ?? '', - maxOpenBuyLimit: map['maxOpenBuyLimit'] ?? 0, - maxDailyBuyLimit: map['maxDailyBuyLimit'] ?? 0, - cashInterestRate: map['cashInterestRate'] ?? 0, - tradingAccounts: map['tradingAccounts'] == null - ? [] - : List.from( - map['tradingAccounts'].map( - (x) => TradingAccount.fromMap(x), - ), - ), - groupId: map['groupId'] ?? '', - marginAvailable: map['marginAvailable'] ?? false, - productCode: map['productCode'] ?? '', - productId: map['productId'] ?? '', - branchId: map['branchId'] ?? '', - glAccountId: map['glAccountId'] ?? '', - effectiveCommissionRate: map['effectiveCommissionRate'] ?? 0, - ); - } - - factory InvestmentAccountModel.initial() { - return InvestmentAccountModel( - id: '', - totalValue: 0, - clientId: '', - mgmtType: '', - status: '', - accountUsage: '', - tradingAccountNo: '', - tradingSubAccountNo: '', - accountNo: '', - accountLabel: '', - clientCode: '', - clientLabel: '', - currency: '', - cashBalance: 0, - balanceTime: DateTime.now(), - marginInterestRate: 0, - marginLimit: 0, - refCode: '', - dividendDistribution: '', - directCashSettlement: false, - clearingAccountNo: '', - maxOpenBuyLimit: 0, - maxDailyBuyLimit: 0, - cashInterestRate: 0, - tradingAccounts: [], - groupId: '', - marginAvailable: false, - productCode: '', - productId: '', - branchId: '', - glAccountId: '', - effectiveCommissionRate: 0, - ); - } - - String toJson() => json.encode(toMap()); - - factory InvestmentAccountModel.fromJson(String source) => - InvestmentAccountModel.fromMap( - json.decode(source) as Map); - - @override - bool operator ==(covariant InvestmentAccountModel other) { - if (identical(this, other)) return true; - - return other.id == id && - other.totalValue == totalValue && - other.clientId == clientId && - other.mgmtType == mgmtType && - other.status == status && - other.accountUsage == accountUsage && - other.tradingAccountNo == tradingAccountNo && - other.tradingSubAccountNo == tradingSubAccountNo && - other.accountNo == accountNo && - other.accountLabel == accountLabel && - other.clientCode == clientCode && - other.clientLabel == clientLabel && - other.currency == currency && - other.cashBalance == cashBalance && - other.balanceTime == balanceTime && - other.marginInterestRate == marginInterestRate && - other.marginLimit == marginLimit && - other.refCode == refCode && - other.dividendDistribution == dividendDistribution && - other.directCashSettlement == directCashSettlement && - other.clearingAccountNo == clearingAccountNo && - other.maxOpenBuyLimit == maxOpenBuyLimit && - other.maxDailyBuyLimit == maxDailyBuyLimit && - other.cashInterestRate == cashInterestRate && - listEquals(other.tradingAccounts, tradingAccounts) && - other.groupId == groupId && - other.marginAvailable == marginAvailable && - other.productCode == productCode && - other.productId == productId && - other.branchId == branchId && - other.glAccountId == glAccountId && - other.effectiveCommissionRate == effectiveCommissionRate; - } - - @override - int get hashCode { - return id.hashCode ^ - totalValue.hashCode ^ - clientId.hashCode ^ - mgmtType.hashCode ^ - status.hashCode ^ - accountUsage.hashCode ^ - tradingAccountNo.hashCode ^ - tradingSubAccountNo.hashCode ^ - accountNo.hashCode ^ - accountLabel.hashCode ^ - clientCode.hashCode ^ - clientLabel.hashCode ^ - currency.hashCode ^ - cashBalance.hashCode ^ - balanceTime.hashCode ^ - marginInterestRate.hashCode ^ - marginLimit.hashCode ^ - refCode.hashCode ^ - dividendDistribution.hashCode ^ - directCashSettlement.hashCode ^ - clearingAccountNo.hashCode ^ - maxOpenBuyLimit.hashCode ^ - maxDailyBuyLimit.hashCode ^ - cashInterestRate.hashCode ^ - tradingAccounts.hashCode ^ - groupId.hashCode ^ - marginAvailable.hashCode ^ - productCode.hashCode ^ - productId.hashCode ^ - branchId.hashCode ^ - glAccountId.hashCode ^ - effectiveCommissionRate.hashCode; - } -} - -class TradingAccount { - final String id; - final String tradingAccountLabel; - final String tradingAccountNo; - final String clearingAccountNo; - TradingAccount({ - required this.id, - required this.tradingAccountLabel, - required this.tradingAccountNo, - required this.clearingAccountNo, - }); - - TradingAccount copyWith({ - String? id, - String? tradingAccountLabel, - String? tradingAccountNo, - String? clearingAccountNo, - }) { - return TradingAccount( - id: id ?? this.id, - tradingAccountLabel: tradingAccountLabel ?? this.tradingAccountLabel, - tradingAccountNo: tradingAccountNo ?? this.tradingAccountNo, - clearingAccountNo: clearingAccountNo ?? this.clearingAccountNo, - ); - } - - Map toMap() { - return { - 'id': id, - 'tradingAccountLabel': tradingAccountLabel, - 'tradingAccountNo': tradingAccountNo, - 'clearingAccountNo': clearingAccountNo, - }; - } - - factory TradingAccount.fromMap(Map map) { - return TradingAccount( - id: map['id'] ?? '', - tradingAccountLabel: map['tradingAccountLabel'] ?? '', - tradingAccountNo: map['tradingAccountNo'] ?? '', - clearingAccountNo: map['clearingAccountNo'] ?? '', - ); - } - - String toJson() => json.encode(toMap()); - - factory TradingAccount.fromJson(String source) => - TradingAccount.fromMap(json.decode(source) as Map); - - @override - String toString() { - return 'TradingAccount(id: $id, tradingAccountLabel: $tradingAccountLabel, tradingAccountNo: $tradingAccountNo, clearingAccountNo: $clearingAccountNo)'; - } - - @override - bool operator ==(covariant TradingAccount other) { - if (identical(this, other)) return true; - - return other.id == id && - other.tradingAccountLabel == tradingAccountLabel && - other.tradingAccountNo == tradingAccountNo && - other.clearingAccountNo == clearingAccountNo; - } - - @override - int get hashCode { - return id.hashCode ^ - tradingAccountLabel.hashCode ^ - tradingAccountNo.hashCode ^ - clearingAccountNo.hashCode; - } -} diff --git a/lib/shared/domain/models/zanibal/order_book_model.dart b/lib/shared/domain/models/zanibal/order_book_model.dart deleted file mode 100644 index 370e0f2..0000000 --- a/lib/shared/domain/models/zanibal/order_book_model.dart +++ /dev/null @@ -1,410 +0,0 @@ -// ignore_for_file: public_member_api_docs, sort_constructors_first -import 'dart:convert'; - -class OrderBookModel { - final String id; - final DateTime createdAt; - final dynamic idemPotencyId; - final String marketCode; - final String secId; - final String clientId; - final String instrumentId; - final String clientCode; - final String clientLabel; - final String side; - final String tif; - final String orderStatus; - final String routingStatus; - final String routingMessage; - final dynamic executionMessage; - final String orderNo; - final dynamic marketOrderId; - final String orderDesc; - final num requestedQty; - final num filledQty; - final DateTime requestTime; - final DateTime expires; - final num limitPrice; - final String currency; - final num numberOfLegs; - final String assetType; - final dynamic orderStrategy; - final num consideration; - final num commission; - final num fees; - final num totalValue; - final dynamic faceValue; - final String notes; - final bool autoApprove; - final bool allOrNone; - final bool contractNoteReversed; - final String channel; - final String tradingAccountNo; - final dynamic tradingSubAccountNo; - final dynamic avgCost; - final String accountId; - final String accountLabel; - final String accountNo; - final DateTime tradeDate; - final num openQuantity; - OrderBookModel({ - required this.id, - required this.createdAt, - required this.idemPotencyId, - required this.marketCode, - required this.secId, - required this.clientId, - required this.instrumentId, - required this.clientCode, - required this.clientLabel, - required this.side, - required this.tif, - required this.orderStatus, - required this.routingStatus, - required this.routingMessage, - required this.executionMessage, - required this.orderNo, - required this.marketOrderId, - required this.orderDesc, - required this.requestedQty, - required this.filledQty, - required this.requestTime, - required this.expires, - required this.limitPrice, - required this.currency, - required this.numberOfLegs, - required this.assetType, - required this.orderStrategy, - required this.consideration, - required this.commission, - required this.fees, - required this.totalValue, - required this.faceValue, - required this.notes, - required this.autoApprove, - required this.allOrNone, - required this.contractNoteReversed, - required this.channel, - required this.tradingAccountNo, - required this.tradingSubAccountNo, - required this.avgCost, - required this.accountId, - required this.accountLabel, - required this.accountNo, - required this.tradeDate, - required this.openQuantity, - }); - - OrderBookModel copyWith({ - String? id, - String? createdBy, - DateTime? createdAt, - String? updatedBy, - DateTime? updatedAt, - bool? deleted, - dynamic idemPotencyId, - String? marketCode, - String? secId, - String? clientId, - String? instrumentId, - String? clientCode, - String? clientLabel, - String? side, - String? tif, - String? orderStatus, - String? routingStatus, - String? routingMessage, - dynamic executionMessage, - String? orderNo, - dynamic marketOrderId, - String? orderDesc, - num? requestedQty, - num? filledQty, - DateTime? requestTime, - DateTime? expires, - double? limitPrice, - String? currency, - num? numberOfLegs, - String? assetType, - dynamic orderStrategy, - num? consideration, - num? commission, - num? fees, - num? totalValue, - dynamic faceValue, - String? notes, - bool? autoApprove, - bool? allOrNone, - bool? contractNoteReversed, - String? channel, - String? tradingAccountNo, - dynamic tradingSubAccountNo, - dynamic avgCost, - String? accountId, - String? accountLabel, - String? accountNo, - DateTime? tradeDate, - num? openQuantity, - }) { - return OrderBookModel( - id: id ?? this.id, - createdAt: createdAt ?? this.createdAt, - idemPotencyId: idemPotencyId ?? this.idemPotencyId, - marketCode: marketCode ?? this.marketCode, - secId: secId ?? this.secId, - clientId: clientId ?? this.clientId, - instrumentId: instrumentId ?? this.instrumentId, - clientCode: clientCode ?? this.clientCode, - clientLabel: clientLabel ?? this.clientLabel, - side: side ?? this.side, - tif: tif ?? this.tif, - orderStatus: orderStatus ?? this.orderStatus, - routingStatus: routingStatus ?? this.routingStatus, - routingMessage: routingMessage ?? this.routingMessage, - executionMessage: executionMessage ?? this.executionMessage, - orderNo: orderNo ?? this.orderNo, - marketOrderId: marketOrderId ?? this.marketOrderId, - orderDesc: orderDesc ?? this.orderDesc, - requestedQty: requestedQty ?? this.requestedQty, - filledQty: filledQty ?? this.filledQty, - requestTime: requestTime ?? this.requestTime, - expires: expires ?? this.expires, - limitPrice: limitPrice ?? this.limitPrice, - currency: currency ?? this.currency, - numberOfLegs: numberOfLegs ?? this.numberOfLegs, - assetType: assetType ?? this.assetType, - orderStrategy: orderStrategy ?? this.orderStrategy, - consideration: consideration ?? this.consideration, - commission: commission ?? this.commission, - fees: fees ?? this.fees, - totalValue: totalValue ?? this.totalValue, - faceValue: faceValue ?? this.faceValue, - notes: notes ?? this.notes, - autoApprove: autoApprove ?? this.autoApprove, - allOrNone: allOrNone ?? this.allOrNone, - contractNoteReversed: contractNoteReversed ?? this.contractNoteReversed, - channel: channel ?? this.channel, - tradingAccountNo: tradingAccountNo ?? this.tradingAccountNo, - tradingSubAccountNo: tradingSubAccountNo ?? this.tradingSubAccountNo, - avgCost: avgCost ?? this.avgCost, - accountId: accountId ?? this.accountId, - accountLabel: accountLabel ?? this.accountLabel, - accountNo: accountNo ?? this.accountNo, - tradeDate: tradeDate ?? this.tradeDate, - openQuantity: openQuantity ?? this.openQuantity, - ); - } - - Map toMap() { - return { - 'id': id, - 'createdAt': createdAt.millisecondsSinceEpoch, - 'idemPotencyId': idemPotencyId, - 'marketCode': marketCode, - 'secId': secId, - 'clientId': clientId, - 'instrumentId': instrumentId, - 'clientCode': clientCode, - 'clientLabel': clientLabel, - 'side': side, - 'tif': tif, - 'orderStatus': orderStatus, - 'routingStatus': routingStatus, - 'routingMessage': routingMessage, - 'executionMessage': executionMessage, - 'orderNo': orderNo, - 'marketOrderId': marketOrderId, - 'orderDesc': orderDesc, - 'requestedQty': requestedQty, - 'filledQty': filledQty, - 'requestTime': requestTime.millisecondsSinceEpoch, - 'expires': expires.millisecondsSinceEpoch, - 'limitPrice': limitPrice, - 'currency': currency, - 'numberOfLegs': numberOfLegs, - 'assetType': assetType, - 'orderStrategy': orderStrategy, - 'consideration': consideration, - 'commission': commission, - 'fees': fees, - 'totalValue': totalValue, - 'faceValue': faceValue, - 'notes': notes, - 'autoApprove': autoApprove, - 'allOrNone': allOrNone, - 'contractNoteReversed': contractNoteReversed, - 'channel': channel, - 'tradingAccountNo': tradingAccountNo, - 'tradingSubAccountNo': tradingSubAccountNo, - 'avgCost': avgCost, - 'accountId': accountId, - 'accountLabel': accountLabel, - 'accountNo': accountNo, - 'tradeDate': tradeDate.millisecondsSinceEpoch, - 'openQuantity': openQuantity, - }; - } - - factory OrderBookModel.fromMap(Map map) { - return OrderBookModel( - id: map['id'] ?? '', - createdAt: map['createdAt'] != null - ? DateTime.parse(map['createdAt']) - : DateTime.now(), - idemPotencyId: map['idemPotencyId'] ?? '', - marketCode: map['marketCode'] ?? '', - secId: map['secId'] ?? '', - clientId: map['clientId'] ?? '', - instrumentId: map['instrumentId'] ?? '', - clientCode: map['clientCode'] ?? '', - clientLabel: map['clientLabel'] ?? '', - side: map['side'] ?? '', - tif: map['tif'] ?? '', - orderStatus: map['orderStatus'] ?? '', - routingStatus: map['routingStatus'] ?? '', - routingMessage: map['routingMessage'] ?? '', - executionMessage: map['executionMessage'] ?? '', - orderNo: map['orderNo'] ?? '', - marketOrderId: map['marketOrderId'] ?? '', - orderDesc: map['orderDesc'] ?? '', - requestedQty: map['requestedQty'] ?? 0, - filledQty: map['filledQty'] ?? 0, - requestTime: map['requestTime'] == null - ? DateTime.now() - : DateTime.parse(map['requestTime']), - expires: map['expires'] == null - ? DateTime.now() - : DateTime.parse(map['expires']), - limitPrice: map['limitPrice'] ?? 0, - currency: map['currency'] ?? '', - numberOfLegs: map['numberOfLegs'] ?? 0, - assetType: map['assetType'] ?? '', - orderStrategy: map['orderStrategy'] ?? '', - consideration: map['consideration'] ?? 0, - commission: map['commission'] ?? 0, - fees: map['fees'] ?? 0, - totalValue: map['totalValue'] ?? 0, - faceValue: map['faceValue'] ?? 0, - notes: map['notes'] ?? '', - autoApprove: map['autoApprove'] ?? false, - allOrNone: map['allOrNone'] ?? false, - contractNoteReversed: map['contractNoteReversed'] ?? false, - channel: map['channel'] ?? '', - tradingAccountNo: map['tradingAccountNo'] ?? '', - tradingSubAccountNo: map['tradingSubAccountNo'] ?? '', - avgCost: map['avgCost'] ?? 0, - accountId: map['accountId'] ?? '', - accountLabel: map['accountLabel'] ?? '', - accountNo: map['accountNo'] ?? '', - tradeDate: map['tradeDate'] == null - ? DateTime.now() - : DateTime.parse(map['tradeDate']), - openQuantity: map['openQuantity'] ?? 0, - ); - } - - String toJson() => json.encode(toMap()); - - factory OrderBookModel.fromJson(String source) => - OrderBookModel.fromMap(json.decode(source) as Map); - - @override - bool operator ==(covariant OrderBookModel other) { - if (identical(this, other)) return true; - - return other.id == id && - other.createdAt == createdAt && - other.idemPotencyId == idemPotencyId && - other.marketCode == marketCode && - other.secId == secId && - other.clientId == clientId && - other.instrumentId == instrumentId && - other.clientCode == clientCode && - other.clientLabel == clientLabel && - other.side == side && - other.tif == tif && - other.orderStatus == orderStatus && - other.routingStatus == routingStatus && - other.routingMessage == routingMessage && - other.executionMessage == executionMessage && - other.orderNo == orderNo && - other.marketOrderId == marketOrderId && - other.orderDesc == orderDesc && - other.requestedQty == requestedQty && - other.filledQty == filledQty && - other.requestTime == requestTime && - other.expires == expires && - other.limitPrice == limitPrice && - other.currency == currency && - other.numberOfLegs == numberOfLegs && - other.assetType == assetType && - other.orderStrategy == orderStrategy && - other.consideration == consideration && - other.commission == commission && - other.fees == fees && - other.totalValue == totalValue && - other.faceValue == faceValue && - other.notes == notes && - other.autoApprove == autoApprove && - other.allOrNone == allOrNone && - other.contractNoteReversed == contractNoteReversed && - other.channel == channel && - other.tradingAccountNo == tradingAccountNo && - other.tradingSubAccountNo == tradingSubAccountNo && - other.avgCost == avgCost && - other.accountId == accountId && - other.accountLabel == accountLabel && - other.accountNo == accountNo && - other.tradeDate == tradeDate && - other.openQuantity == openQuantity; - } - - @override - int get hashCode { - return id.hashCode ^ - createdAt.hashCode ^ - idemPotencyId.hashCode ^ - marketCode.hashCode ^ - secId.hashCode ^ - clientId.hashCode ^ - instrumentId.hashCode ^ - clientCode.hashCode ^ - clientLabel.hashCode ^ - side.hashCode ^ - tif.hashCode ^ - orderStatus.hashCode ^ - routingStatus.hashCode ^ - routingMessage.hashCode ^ - executionMessage.hashCode ^ - orderNo.hashCode ^ - marketOrderId.hashCode ^ - orderDesc.hashCode ^ - requestedQty.hashCode ^ - filledQty.hashCode ^ - requestTime.hashCode ^ - expires.hashCode ^ - limitPrice.hashCode ^ - currency.hashCode ^ - numberOfLegs.hashCode ^ - assetType.hashCode ^ - orderStrategy.hashCode ^ - consideration.hashCode ^ - commission.hashCode ^ - fees.hashCode ^ - totalValue.hashCode ^ - faceValue.hashCode ^ - notes.hashCode ^ - autoApprove.hashCode ^ - allOrNone.hashCode ^ - contractNoteReversed.hashCode ^ - channel.hashCode ^ - tradingAccountNo.hashCode ^ - tradingSubAccountNo.hashCode ^ - avgCost.hashCode ^ - accountId.hashCode ^ - accountLabel.hashCode ^ - accountNo.hashCode ^ - tradeDate.hashCode ^ - openQuantity.hashCode; - } -} diff --git a/lib/shared/domain/models/zanibal/portfolio_position_report_model.dart b/lib/shared/domain/models/zanibal/portfolio_position_report_model.dart deleted file mode 100644 index bc1a8e4..0000000 --- a/lib/shared/domain/models/zanibal/portfolio_position_report_model.dart +++ /dev/null @@ -1,395 +0,0 @@ -// ignore_for_file: public_member_api_docs, sort_constructors_first -import 'dart:convert'; - -import 'package:flutter/foundation.dart'; - -class PortfolioPositionReportModel { - final String accountId; - final String accountLabel; - final String accountNo; - final DateTime positionDate; - final String reportCurrency; - final num totalValue; - final num totalCost; - final List positionInstruments; - final num gainLoss; - final num gainLossPercent; - PortfolioPositionReportModel({ - required this.accountId, - required this.accountLabel, - required this.accountNo, - required this.positionDate, - required this.reportCurrency, - required this.totalValue, - required this.totalCost, - required this.positionInstruments, - required this.gainLoss, - required this.gainLossPercent, - }); - - PortfolioPositionReportModel copyWith({ - String? accountId, - String? accountLabel, - String? accountNo, - DateTime? positionDate, - String? reportCurrency, - num? totalValue, - num? totalCost, - List? positionInstruments, - num? gainLoss, - num? gainLossPercent, - }) { - return PortfolioPositionReportModel( - accountId: accountId ?? this.accountId, - accountLabel: accountLabel ?? this.accountLabel, - accountNo: accountNo ?? this.accountNo, - positionDate: positionDate ?? this.positionDate, - reportCurrency: reportCurrency ?? this.reportCurrency, - totalValue: totalValue ?? this.totalValue, - totalCost: totalCost ?? this.totalCost, - positionInstruments: positionInstruments ?? this.positionInstruments, - gainLoss: gainLoss ?? this.gainLoss, - gainLossPercent: gainLossPercent ?? this.gainLossPercent, - ); - } - - Map toMap() { - return { - 'accountId': accountId, - 'accountLabel': accountLabel, - 'accountNo': accountNo, - 'positionDate': positionDate.millisecondsSinceEpoch, - 'reportCurrency': reportCurrency, - 'totalValue': totalValue, - 'totalCost': totalCost, - 'positionInstruments': positionInstruments.map((x) => x.toMap()).toList(), - 'gainLoss': gainLoss, - 'gainLossPercent': gainLossPercent, - }; - } - - factory PortfolioPositionReportModel.fromMap(Map map) { - return PortfolioPositionReportModel( - accountId: map['accountId'] ?? '', - accountLabel: map['accountLabel'] ?? '', - accountNo: map['accountNo'] ?? '', - positionDate: map['positionDate'] == null - ? DateTime.now() - : DateTime.parse(map['positionDate']), - reportCurrency: map['reportCurrency'] ?? '', - totalValue: map['totalValue'] ?? 0, - totalCost: map['totalCost'] ?? 0, - positionInstruments: map['positionInstruments'] == null - ? [] - : List.from( - map['positionInstruments'].map( - (x) => PositionInstrument.fromMap(x), - ), - ), - gainLoss: map['gainLoss'] ?? 0, - gainLossPercent: map['gainLossPercent'] ?? 0, - ); - } - - factory PortfolioPositionReportModel.initial() { - return PortfolioPositionReportModel( - accountId: '', - accountLabel: '', - accountNo: '', - positionDate: DateTime.now(), - reportCurrency: '', - totalValue: 0, - totalCost: 0, - positionInstruments: [], - gainLoss: 0, - gainLossPercent: 0, - ); - } - - String toJson() => json.encode(toMap()); - - factory PortfolioPositionReportModel.fromJson(String source) => - PortfolioPositionReportModel.fromMap( - json.decode(source) as Map); - - @override - String toString() { - return 'PortfolioPositionReportModel(accountId: $accountId, accountLabel: $accountLabel, accountNo: $accountNo, positionDate: $positionDate, reportCurrency: $reportCurrency, totalValue: $totalValue, totalCost: $totalCost, positionInstruments: $positionInstruments, gainLoss: $gainLoss, gainLossPercent: $gainLossPercent)'; - } - - @override - bool operator ==(covariant PortfolioPositionReportModel other) { - if (identical(this, other)) return true; - - return other.accountId == accountId && - other.accountLabel == accountLabel && - other.accountNo == accountNo && - other.positionDate == positionDate && - other.reportCurrency == reportCurrency && - other.totalValue == totalValue && - other.totalCost == totalCost && - listEquals(other.positionInstruments, positionInstruments) && - other.gainLoss == gainLoss && - other.gainLossPercent == gainLossPercent; - } - - @override - int get hashCode { - return accountId.hashCode ^ - accountLabel.hashCode ^ - accountNo.hashCode ^ - positionDate.hashCode ^ - reportCurrency.hashCode ^ - totalValue.hashCode ^ - totalCost.hashCode ^ - positionInstruments.hashCode ^ - gainLoss.hashCode ^ - gainLossPercent.hashCode; - } -} - -class PositionInstrument { - final String instrumentId; - final String instrumentType; - final String secId; - final String secDesc; - final String secNotes; - final String isin; - final String marketCode; - final String instrumentCurrency; - final num currencyRate; - final num currentPrice; - final num priceConvRatio; - final num parValue; - final num quantity; - final num avgCost; - final num totalCost; - final num currentValue; - final DateTime positionStartDate; - final num interest; - final String tradingAccountNo; - final String assetAllocation; - final String gainLossPercentage; - final String gainLoss; - PositionInstrument({ - required this.instrumentId, - required this.instrumentType, - required this.secId, - required this.secDesc, - required this.secNotes, - required this.isin, - required this.marketCode, - required this.instrumentCurrency, - required this.currencyRate, - required this.currentPrice, - required this.priceConvRatio, - required this.parValue, - required this.quantity, - required this.avgCost, - required this.totalCost, - required this.currentValue, - required this.positionStartDate, - required this.interest, - required this.tradingAccountNo, - required this.assetAllocation, - required this.gainLossPercentage, - required this.gainLoss, - }); - - PositionInstrument copyWith({ - String? instrumentId, - String? instrumentType, - String? secId, - String? secDesc, - String? secNotes, - String? isin, - String? marketCode, - String? instrumentCurrency, - num? currencyRate, - num? currentPrice, - num? priceConvRatio, - num? parValue, - num? quantity, - num? avgCost, - num? totalCost, - num? currentValue, - DateTime? positionStartDate, - num? interest, - String? tradingAccountNo, - String? assetAllocation, - String? gainLossPercentage, - String? gainLoss, - }) { - return PositionInstrument( - instrumentId: instrumentId ?? this.instrumentId, - instrumentType: instrumentType ?? this.instrumentType, - secId: secId ?? this.secId, - secDesc: secDesc ?? this.secDesc, - secNotes: secNotes ?? this.secNotes, - isin: isin ?? this.isin, - marketCode: marketCode ?? this.marketCode, - instrumentCurrency: instrumentCurrency ?? this.instrumentCurrency, - currencyRate: currencyRate ?? this.currencyRate, - currentPrice: currentPrice ?? this.currentPrice, - priceConvRatio: priceConvRatio ?? this.priceConvRatio, - parValue: parValue ?? this.parValue, - quantity: quantity ?? this.quantity, - avgCost: avgCost ?? this.avgCost, - totalCost: totalCost ?? this.totalCost, - currentValue: currentValue ?? this.currentValue, - positionStartDate: positionStartDate ?? this.positionStartDate, - interest: interest ?? this.interest, - tradingAccountNo: tradingAccountNo ?? this.tradingAccountNo, - assetAllocation: assetAllocation ?? this.assetAllocation, - gainLossPercentage: gainLossPercentage ?? this.gainLossPercentage, - gainLoss: gainLoss ?? this.gainLoss, - ); - } - - Map toMap() { - return { - 'instrumentId': instrumentId, - 'instrumentType': instrumentType, - 'secId': secId, - 'secDesc': secDesc, - 'secNotes': secNotes, - 'isin': isin, - 'marketCode': marketCode, - 'instrumentCurrency': instrumentCurrency, - 'currencyRate': currencyRate, - 'currentPrice': currentPrice, - 'priceConvRatio': priceConvRatio, - 'parValue': parValue, - 'quantity': quantity, - 'avgCost': avgCost, - 'totalCost': totalCost, - 'currentValue': currentValue, - 'positionStartDate': positionStartDate.millisecondsSinceEpoch, - 'interest': interest, - 'tradingAccountNo': tradingAccountNo, - 'assetAllocation': assetAllocation, - 'gainLossPercentage': gainLossPercentage, - 'gainLoss': gainLoss, - }; - } - - factory PositionInstrument.fromMap(Map map) { - return PositionInstrument( - instrumentId: map['instrumentId'] ?? '', - instrumentType: map['instrumentType'] ?? '', - secId: map['secId'] ?? '', - secDesc: map['secDesc'] ?? '', - secNotes: map['secNotes'] ?? '', - isin: map['isin'] ?? '', - marketCode: map['marketCode'] ?? '', - instrumentCurrency: map['instrumentCurrency'] ?? '', - currencyRate: map['currencyRate'] ?? 0, - currentPrice: map['currentPrice'] ?? 0, - priceConvRatio: map['priceConvRatio'] ?? 0, - parValue: map['parValue'] ?? 0, - quantity: map['quantity'] ?? 0, - avgCost: map['avgCost'] ?? 0, - totalCost: map['totalCost'] ?? 0, - currentValue: map['currentValue'] ?? 0, - positionStartDate: map['positionStartDate'] == null - ? DateTime.now() - : DateTime.parse(map['positionStartDate']), - interest: map['interest'] ?? 0, - tradingAccountNo: map['tradingAccountNo'] ?? '', - assetAllocation: map['assetAllocation'] ?? '', - gainLossPercentage: map['gainLossPercentage'] ?? '', - gainLoss: map['gainLoss'] ?? '', - ); - } - - factory PositionInstrument.initial() { - return PositionInstrument( - instrumentId: '', - instrumentType: '', - secId: '', - secDesc: '', - secNotes: '', - isin: '', - marketCode: '', - instrumentCurrency: '', - currencyRate: 0, - currentPrice: 0, - priceConvRatio: 0, - parValue: 0, - quantity: 0, - avgCost: 0, - totalCost: 0, - currentValue: 0, - positionStartDate: DateTime.now(), - interest: 0, - tradingAccountNo: '', - assetAllocation: '', - gainLossPercentage: '', - gainLoss: '', - ); - } - - String toJson() => json.encode(toMap()); - - factory PositionInstrument.fromJson(String source) => - PositionInstrument.fromMap(json.decode(source) as Map); - - @override - String toString() { - return 'PositionInstrument(instrumentId: $instrumentId, instrumentType: $instrumentType, secId: $secId, secDesc: $secDesc, secNotes: $secNotes, isin: $isin, marketCode: $marketCode, instrumentCurrency: $instrumentCurrency, currencyRate: $currencyRate, currentPrice: $currentPrice, priceConvRatio: $priceConvRatio, parValue: $parValue, quantity: $quantity, avgCost: $avgCost, totalCost: $totalCost, currentValue: $currentValue, positionStartDate: $positionStartDate, interest: $interest, tradingAccountNo: $tradingAccountNo, assetAllocation: $assetAllocation, gainLossPercentage: $gainLossPercentage, gainLoss: $gainLoss)'; - } - - @override - bool operator ==(covariant PositionInstrument other) { - if (identical(this, other)) return true; - - return other.instrumentId == instrumentId && - other.instrumentType == instrumentType && - other.secId == secId && - other.secDesc == secDesc && - other.secNotes == secNotes && - other.isin == isin && - other.marketCode == marketCode && - other.instrumentCurrency == instrumentCurrency && - other.currencyRate == currencyRate && - other.currentPrice == currentPrice && - other.priceConvRatio == priceConvRatio && - other.parValue == parValue && - other.quantity == quantity && - other.avgCost == avgCost && - other.totalCost == totalCost && - other.currentValue == currentValue && - other.positionStartDate == positionStartDate && - other.interest == interest && - other.tradingAccountNo == tradingAccountNo && - other.assetAllocation == assetAllocation && - other.gainLossPercentage == gainLossPercentage && - other.gainLoss == gainLoss; - } - - @override - int get hashCode { - return instrumentId.hashCode ^ - instrumentType.hashCode ^ - secId.hashCode ^ - secDesc.hashCode ^ - secNotes.hashCode ^ - isin.hashCode ^ - marketCode.hashCode ^ - instrumentCurrency.hashCode ^ - currencyRate.hashCode ^ - currentPrice.hashCode ^ - priceConvRatio.hashCode ^ - parValue.hashCode ^ - quantity.hashCode ^ - avgCost.hashCode ^ - totalCost.hashCode ^ - currentValue.hashCode ^ - positionStartDate.hashCode ^ - interest.hashCode ^ - tradingAccountNo.hashCode ^ - assetAllocation.hashCode ^ - gainLossPercentage.hashCode ^ - gainLoss.hashCode; - } -} diff --git a/lib/shared/domain/models/zanibal/position_report_model.dart b/lib/shared/domain/models/zanibal/position_report_model.dart deleted file mode 100644 index 411c24f..0000000 --- a/lib/shared/domain/models/zanibal/position_report_model.dart +++ /dev/null @@ -1,40 +0,0 @@ -class PostionReportModel { - final PostionReportData data; - final DateTime date; - - PostionReportModel({ - required this.data, - required this.date, - }); - - factory PostionReportModel.fromJson(Map json) => - PostionReportModel( - data: PostionReportData.fromJson(json["data"]), - date: DateTime.parse(json["date"]), - ); -} - -class PostionReportData { - final num totalValue; - final num gainLoss; - final num gainLossPercent; - - PostionReportData({ - required this.totalValue, - required this.gainLoss, - required this.gainLossPercent, - }); - - factory PostionReportData.fromJson(Map json) => - PostionReportData( - totalValue: json["totalValue"], - gainLoss: json["gainLoss"], - gainLossPercent: json["gainLossPercent"], - ); - - Map toJson() => { - "totalValue": totalValue, - "gainLoss": gainLoss, - "gainLossPercent": gainLossPercent, - }; -} diff --git a/lib/shared/domain/models/zanibal/rolling_average_model.dart b/lib/shared/domain/models/zanibal/rolling_average_model.dart deleted file mode 100644 index 0334694..0000000 --- a/lib/shared/domain/models/zanibal/rolling_average_model.dart +++ /dev/null @@ -1,55 +0,0 @@ -// ignore_for_file: public_member_api_docs, sort_constructors_first -import 'dart:convert'; - -class RollingAverageModel { - final DateTime month; - final num totalValue; - RollingAverageModel({ - required this.month, - required this.totalValue, - }); - - RollingAverageModel copyWith({ - DateTime? month, - num? totalValue, - }) { - return RollingAverageModel( - month: month ?? this.month, - totalValue: totalValue ?? this.totalValue, - ); - } - - Map toMap() { - return { - 'MONTH': month.millisecondsSinceEpoch, - 'TOTAL VALUE': totalValue, - }; - } - - factory RollingAverageModel.fromMap(Map map) { - return RollingAverageModel( - month: - map['MONTH'] == null ? DateTime.now() : DateTime.parse(map['MONTH']), - totalValue: map['TOTAL VALUE'] ?? 0, - ); - } - - String toJson() => json.encode(toMap()); - - factory RollingAverageModel.fromJson(String source) => - RollingAverageModel.fromMap(json.decode(source) as Map); - - @override - String toString() => - 'RollingAverageModel(month: $month, totalValue: $totalValue)'; - - @override - bool operator ==(covariant RollingAverageModel other) { - if (identical(this, other)) return true; - - return other.month == month && other.totalValue == totalValue; - } - - @override - int get hashCode => month.hashCode ^ totalValue.hashCode; -} diff --git a/lib/shared/domain/models/zanibal/stock_recommendation_model.dart b/lib/shared/domain/models/zanibal/stock_recommendation_model.dart deleted file mode 100644 index 2118bff..0000000 --- a/lib/shared/domain/models/zanibal/stock_recommendation_model.dart +++ /dev/null @@ -1,135 +0,0 @@ -// ignore_for_file: public_member_api_docs, sort_constructors_first -import 'dart:convert'; - -class StockRecommendationModel { - final int id; - final String company; - final String recommendation; - final String targetPrice; - final String dividendYield; - final String pCapital; - final String aReturnOnEquity; - final num currentPrice; - final dynamic admin; - final DateTime createdDate; - final DateTime modifiedDate; - StockRecommendationModel({ - required this.id, - required this.company, - required this.recommendation, - required this.targetPrice, - required this.dividendYield, - required this.pCapital, - required this.aReturnOnEquity, - required this.admin, - required this.currentPrice, - required this.createdDate, - required this.modifiedDate, - }); - - StockRecommendationModel copyWith({ - int? id, - String? company, - String? recommendation, - String? targetPrice, - String? dividendYield, - String? pCapital, - String? aReturnOnEquity, - num? currentPrice, - dynamic admin, - DateTime? createdDate, - DateTime? modifiedDate, - }) { - return StockRecommendationModel( - id: id ?? this.id, - company: company ?? this.company, - recommendation: recommendation ?? this.recommendation, - targetPrice: targetPrice ?? this.targetPrice, - dividendYield: dividendYield ?? this.dividendYield, - pCapital: pCapital ?? this.pCapital, - aReturnOnEquity: aReturnOnEquity ?? this.aReturnOnEquity, - currentPrice: currentPrice ?? this.currentPrice, - admin: admin ?? this.admin, - createdDate: createdDate ?? this.createdDate, - modifiedDate: modifiedDate ?? this.modifiedDate, - ); - } - - Map toMap() { - return { - 'id': id, - 'company': company, - 'recommendation': recommendation, - 'targetPrice': targetPrice, - 'dividendYield': dividendYield, - 'pCapital': pCapital, - 'aReturnOnEquity': aReturnOnEquity, - 'admin': admin, - 'createdDate': createdDate.millisecondsSinceEpoch, - 'currentPrice': currentPrice, - 'modifiedDate': modifiedDate.millisecondsSinceEpoch, - }; - } - - factory StockRecommendationModel.fromMap(Map map) { - return StockRecommendationModel( - id: map['id'] ?? 0, - company: map['company'] ?? '', - recommendation: map['recommendation'] ?? '', - targetPrice: map['targetPrice'] ?? '', - dividendYield: map['dividendYield'] ?? '', - pCapital: map['pCapital'] ?? '', - aReturnOnEquity: map['aReturnOnEquity'] ?? '', - currentPrice: map['currentPrice'] ?? 0, - admin: map['admin'] as dynamic, - createdDate: map['createdDate'] == null - ? DateTime.now() - : DateTime.parse(map['createdDate']), - modifiedDate: map['modifiedDate'] == null - ? DateTime.now() - : DateTime.parse( - map['modifiedDate'], - )); - } - - String toJson() => json.encode(toMap()); - - factory StockRecommendationModel.fromJson(String source) => - StockRecommendationModel.fromMap( - json.decode(source) as Map); - - @override - String toString() { - return 'StockRecommendationModel(id: $id, company: $company, recommendation: $recommendation, targetPrice: $targetPrice, dividendYield: $dividendYield, pCapital: $pCapital, aReturnOnEquity: $aReturnOnEquity, admin: $admin, createdDate: $createdDate, modifiedDate: $modifiedDate)'; - } - - @override - bool operator ==(covariant StockRecommendationModel other) { - if (identical(this, other)) return true; - - return other.id == id && - other.company == company && - other.recommendation == recommendation && - other.targetPrice == targetPrice && - other.dividendYield == dividendYield && - other.pCapital == pCapital && - other.aReturnOnEquity == aReturnOnEquity && - other.admin == admin && - other.createdDate == createdDate && - other.modifiedDate == modifiedDate; - } - - @override - int get hashCode { - return id.hashCode ^ - company.hashCode ^ - recommendation.hashCode ^ - targetPrice.hashCode ^ - dividendYield.hashCode ^ - pCapital.hashCode ^ - aReturnOnEquity.hashCode ^ - admin.hashCode ^ - createdDate.hashCode ^ - modifiedDate.hashCode; - } -} diff --git a/lib/shared/domain/models/zanibal/validate_order_model.dart b/lib/shared/domain/models/zanibal/validate_order_model.dart deleted file mode 100644 index 85ec2cb..0000000 --- a/lib/shared/domain/models/zanibal/validate_order_model.dart +++ /dev/null @@ -1,507 +0,0 @@ -// ignore_for_file: public_member_api_docs, sort_constructors_first -import 'dart:convert'; - -class ValidateOrderModel { - final String accountId; - final String side; - final String secId; - final int requestedQty; - final double limitPrice; - final String assetType; - final String expires; - final String tif; - final String notes; - final String? tradingAccountNo; - ValidateOrderModel({ - required this.accountId, - required this.side, - required this.secId, - required this.requestedQty, - required this.limitPrice, - required this.assetType, - required this.expires, - required this.tif, - required this.notes, - required this.tradingAccountNo, - }); - - ValidateOrderModel copyWith( - {String? accountId, - String? side, - String? secId, - int? requestedQty, - double? limitPrice, - String? assetType, - String? expires, - String? tif, - String? notes, - String? tradingAccountNo}) { - return ValidateOrderModel( - accountId: accountId ?? this.accountId, - side: side ?? this.side, - secId: secId ?? this.secId, - requestedQty: requestedQty ?? this.requestedQty, - limitPrice: limitPrice ?? this.limitPrice, - assetType: assetType ?? this.assetType, - expires: expires ?? this.expires, - tif: tif ?? this.tif, - notes: notes ?? this.notes, - tradingAccountNo: tradingAccountNo ?? this.tradingAccountNo, - ); - } - - Map toMap() { - return { - 'accountId': accountId, - 'side': side, - 'secId': secId, - 'requestedQty': requestedQty, - 'limitPrice': limitPrice == 0 ? null : limitPrice, - 'assetType': assetType, - 'expires': expires.isEmpty ? null : expires, - 'tif': tif, - 'notes': notes, - 'tradingAccountNo': tradingAccountNo, - }; - } - - factory ValidateOrderModel.fromMap(Map map) { - return ValidateOrderModel( - accountId: map['accountId'] as String, - side: map['side'] as String, - secId: map['secId'] as String, - requestedQty: map['requestedQty'] as int, - limitPrice: map['limitPrice'] as double, - assetType: map['assetType'] as String, - expires: 'expires', - tif: map['tif'] as String, - tradingAccountNo: map['tradingAccountNo'] as String?, - notes: map['notes'] as String, - ); - } - - String toJson() => json.encode(toMap()); - - factory ValidateOrderModel.fromJson(String source) => - ValidateOrderModel.fromMap(json.decode(source) as Map); - - @override - String toString() { - return 'ValidateOrderModel(accountId: $accountId, side: $side, secId: $secId, requestedQty: $requestedQty, limitPrice: $limitPrice, assetType: $assetType, expires: $expires, tif: $tif, notes: $notes)'; - } - - @override - bool operator ==(covariant ValidateOrderModel other) { - if (identical(this, other)) return true; - - return other.accountId == accountId && - other.side == side && - other.secId == secId && - other.requestedQty == requestedQty && - other.limitPrice == limitPrice && - other.assetType == assetType && - other.expires == expires && - other.tif == tif && - other.notes == notes; - } - - @override - int get hashCode { - return accountId.hashCode ^ - side.hashCode ^ - secId.hashCode ^ - requestedQty.hashCode ^ - limitPrice.hashCode ^ - assetType.hashCode ^ - expires.hashCode ^ - tif.hashCode ^ - notes.hashCode; - } -} - -class ValidateOrderData { - final dynamic id; - - final dynamic idemPotencyId; - final String marketCode; - final String secId; - final String clientId; - final String instrumentId; - final String clientCode; - final String clientLabel; - final String side; - final String tif; - final String orderStatus; - final String routingStatus; - final dynamic routingMessage; - final dynamic executionMessage; - final dynamic orderNo; - final dynamic marketOrderId; - final String orderDesc; - final num requestedQty; - final num filledQty; - // final DateTime requestTime; - // final DateTime expires; - final num limitPrice; - final String currency; - final num numberOfLegs; - final String assetType; - final dynamic orderStrategy; - final num consideration; - final num commission; - final num fees; - final num totalValue; - final dynamic faceValue; - final String notes; - // final bool autoApprove; - // final bool allOrNone; - final bool contractNoteReversed; - final String channel; - final String tradingAccountNo; - final dynamic tradingSubAccountNo; - final dynamic avgCost; - final String accountId; - final String accountLabel; - final String accountNo; - //final DateTime tradeDate; - final num openQuantity; - ValidateOrderData({ - required this.id, - required this.idemPotencyId, - required this.marketCode, - required this.secId, - required this.clientId, - required this.instrumentId, - required this.clientCode, - required this.clientLabel, - required this.side, - required this.tif, - required this.orderStatus, - required this.routingStatus, - required this.routingMessage, - required this.executionMessage, - required this.orderNo, - required this.marketOrderId, - required this.orderDesc, - required this.requestedQty, - required this.filledQty, - // required this.requestTime, - // required this.expires, - required this.limitPrice, - required this.currency, - required this.numberOfLegs, - required this.assetType, - required this.orderStrategy, - required this.consideration, - required this.commission, - required this.fees, - required this.totalValue, - required this.faceValue, - required this.notes, - // required this.autoApprove, - // required this.allOrNone, - required this.contractNoteReversed, - required this.channel, - required this.tradingAccountNo, - required this.tradingSubAccountNo, - required this.avgCost, - required this.accountId, - required this.accountLabel, - required this.accountNo, - // required this.tradeDate, - required this.openQuantity, - }); - - ValidateOrderData copyWith({ - dynamic id, - dynamic idemPotencyId, - String? marketCode, - String? secId, - String? clientId, - String? instrumentId, - String? clientCode, - String? clientLabel, - String? side, - String? tif, - String? orderStatus, - String? routingStatus, - dynamic routingMessage, - dynamic executionMessage, - dynamic orderNo, - dynamic marketOrderId, - String? orderDesc, - num? requestedQty, - num? filledQty, - DateTime? requestTime, - DateTime? expires, - double? limitPrice, - String? currency, - num? numberOfLegs, - String? assetType, - dynamic orderStrategy, - num? consideration, - double? commission, - double? fees, - double? totalValue, - dynamic faceValue, - String? notes, - // bool? autoApprove, - // bool? allOrNone, - bool? contractNoteReversed, - String? channel, - String? tradingAccountNo, - dynamic tradingSubAccountNo, - dynamic avgCost, - String? accountId, - String? accountLabel, - String? accountNo, - //DateTime? tradeDate, - num? openQuantity, - }) { - return ValidateOrderData( - id: id ?? this.id, - idemPotencyId: idemPotencyId ?? this.idemPotencyId, - marketCode: marketCode ?? this.marketCode, - secId: secId ?? this.secId, - clientId: clientId ?? this.clientId, - instrumentId: instrumentId ?? this.instrumentId, - clientCode: clientCode ?? this.clientCode, - clientLabel: clientLabel ?? this.clientLabel, - side: side ?? this.side, - tif: tif ?? this.tif, - orderStatus: orderStatus ?? this.orderStatus, - routingStatus: routingStatus ?? this.routingStatus, - routingMessage: routingMessage ?? this.routingMessage, - executionMessage: executionMessage ?? this.executionMessage, - orderNo: orderNo ?? this.orderNo, - marketOrderId: marketOrderId ?? this.marketOrderId, - orderDesc: orderDesc ?? this.orderDesc, - requestedQty: requestedQty ?? this.requestedQty, - filledQty: filledQty ?? this.filledQty, - // requestTime: requestTime ?? this.requestTime, - // expires: expires ?? this.expires, - limitPrice: limitPrice ?? this.limitPrice, - currency: currency ?? this.currency, - numberOfLegs: numberOfLegs ?? this.numberOfLegs, - assetType: assetType ?? this.assetType, - orderStrategy: orderStrategy ?? this.orderStrategy, - consideration: consideration ?? this.consideration, - commission: commission ?? this.commission, - fees: fees ?? this.fees, - totalValue: totalValue ?? this.totalValue, - faceValue: faceValue ?? this.faceValue, - notes: notes ?? this.notes, - // autoApprove: autoApprove ?? this.autoApprove, - // allOrNone: allOrNone ?? this.allOrNone, - contractNoteReversed: contractNoteReversed ?? this.contractNoteReversed, - channel: channel ?? this.channel, - tradingAccountNo: tradingAccountNo ?? this.tradingAccountNo, - tradingSubAccountNo: tradingSubAccountNo ?? this.tradingSubAccountNo, - avgCost: avgCost ?? this.avgCost, - accountId: accountId ?? this.accountId, - accountLabel: accountLabel ?? this.accountLabel, - accountNo: accountNo ?? this.accountNo, - // tradeDate: tradeDate ?? this.tradeDate, - openQuantity: openQuantity ?? this.openQuantity, - ); - } - - factory ValidateOrderData.fromMap(Map map) { - return ValidateOrderData( - id: map['id'] ?? '', - idemPotencyId: map['idemPotencyId'] ?? '', - marketCode: map['marketCode'] ?? '', - secId: map['secId'] ?? '', - clientId: map['clientId'] ?? '', - instrumentId: map['instrumentId'] ?? '', - clientCode: map['clientCode'] ?? '', - clientLabel: map['clientLabel'] ?? '', - side: map['side'] ?? '', - tif: map['tif'] ?? '', - orderStatus: map['orderStatus'] ?? '', - routingStatus: map['routingStatus'] ?? '', - routingMessage: map['routingMessage'] ?? '', - executionMessage: map['executionMessage'] ?? '', - orderNo: map['orderNo'] ?? '', - marketOrderId: map['marketOrderId'] ?? '', - orderDesc: map['orderDesc'] ?? '', - requestedQty: map['requestedQty'] ?? 0, - filledQty: map['filledQty'] ?? 0, - // requestTime: - // DateTime.fromMillisecondsSinceEpoch(map['requestTime'] as int), - // expires: DateTime.fromMillisecondsSinceEpoch(map['expires'] as int), - limitPrice: map['limitPrice'] ?? 0, - currency: map['currency'] ?? '', - numberOfLegs: map['numberOfLegs'] ?? 0, - assetType: map['assetType'] ?? '', - orderStrategy: map['orderStrategy'] ?? '', - consideration: map['consideration'] ?? 0, - commission: map['commission'] ?? 0, - fees: map['fees'] ?? 0, - totalValue: map['totalValue'] ?? 0, - faceValue: map['faceValue'] ?? '', - notes: map['notes'] ?? '', - // allOrNone: map['allOrNone'] ?? false, - contractNoteReversed: map['contractNoteReversed'] ?? false, - channel: map['channel'] ?? '', - tradingAccountNo: map['tradingAccountNo'] ?? '', - tradingSubAccountNo: map['tradingSubAccountNo'] ?? '', - avgCost: map['avgCost'] ?? 0, - accountId: map['accountId'] ?? '', - accountLabel: map['accountLabel'] ?? '', - accountNo: map['accountNo'] ?? '', - // tradeDate: DateTime.fromMillisecondsSinceEpoch(map['tradeDate'] as int), - openQuantity: map['openQuantity'] ?? 0, - ); - } - - factory ValidateOrderData.fromJson(String source) => - ValidateOrderData.fromMap(json.decode(source) as Map); - - @override - bool operator ==(covariant ValidateOrderData other) { - if (identical(this, other)) return true; - - return other.id == id && - other.idemPotencyId == idemPotencyId && - other.marketCode == marketCode && - other.secId == secId && - other.clientId == clientId && - other.instrumentId == instrumentId && - other.clientCode == clientCode && - other.clientLabel == clientLabel && - other.side == side && - other.tif == tif && - other.orderStatus == orderStatus && - other.routingStatus == routingStatus && - other.routingMessage == routingMessage && - other.executionMessage == executionMessage && - other.orderNo == orderNo && - other.marketOrderId == marketOrderId && - other.orderDesc == orderDesc && - other.requestedQty == requestedQty && - other.filledQty == filledQty && - // other.requestTime == requestTime && - // other.expires == expires && - other.limitPrice == limitPrice && - other.currency == currency && - other.numberOfLegs == numberOfLegs && - other.assetType == assetType && - other.orderStrategy == orderStrategy && - other.consideration == consideration && - other.commission == commission && - other.fees == fees && - other.totalValue == totalValue && - other.faceValue == faceValue && - other.notes == notes && - // other.autoApprove == autoApprove && - // other.allOrNone == allOrNone && - other.contractNoteReversed == contractNoteReversed && - other.channel == channel && - other.tradingAccountNo == tradingAccountNo && - other.tradingSubAccountNo == tradingSubAccountNo && - other.avgCost == avgCost && - other.accountId == accountId && - other.accountLabel == accountLabel && - other.accountNo == accountNo && - // other.tradeDate == tradeDate && - other.openQuantity == openQuantity; - } - - @override - int get hashCode { - return id.hashCode ^ - idemPotencyId.hashCode ^ - marketCode.hashCode ^ - secId.hashCode ^ - clientId.hashCode ^ - instrumentId.hashCode ^ - clientCode.hashCode ^ - clientLabel.hashCode ^ - side.hashCode ^ - tif.hashCode ^ - orderStatus.hashCode ^ - routingStatus.hashCode ^ - routingMessage.hashCode ^ - executionMessage.hashCode ^ - orderNo.hashCode ^ - marketOrderId.hashCode ^ - orderDesc.hashCode ^ - requestedQty.hashCode ^ - filledQty.hashCode ^ - // requestTime.hashCode ^ - // expires.hashCode ^ - limitPrice.hashCode ^ - currency.hashCode ^ - numberOfLegs.hashCode ^ - assetType.hashCode ^ - orderStrategy.hashCode ^ - consideration.hashCode ^ - commission.hashCode ^ - fees.hashCode ^ - totalValue.hashCode ^ - faceValue.hashCode ^ - notes.hashCode ^ - // autoApprove.hashCode ^ - // allOrNone.hashCode ^ - contractNoteReversed.hashCode ^ - channel.hashCode ^ - tradingAccountNo.hashCode ^ - tradingSubAccountNo.hashCode ^ - avgCost.hashCode ^ - accountId.hashCode ^ - accountLabel.hashCode ^ - accountNo.hashCode ^ - //tradeDate.hashCode ^ - openQuantity.hashCode; - } - - factory ValidateOrderData.initial() { - return ValidateOrderData( - id: '', - idemPotencyId: '', - marketCode: '', - secId: '', - clientId: '', - instrumentId: '', - clientCode: '', - clientLabel: '', - side: '', - tif: '', - orderStatus: '', - routingStatus: '', - routingMessage: '', - executionMessage: '', - orderNo: '', - marketOrderId: '', - orderDesc: '', - requestedQty: 0, - filledQty: 0, - // requestTime: - // DateTime.fromMillisecondsSinceEpoch(map['requestTime'] as int), - // expires: DateTime.fromMillisecondsSinceEpoch(map['expires'] as int), - limitPrice: 0, - currency: '', - numberOfLegs: 0, - assetType: '', - orderStrategy: '', - consideration: 0, - commission: 0, - fees: 0, - totalValue: 0, - faceValue: '', - notes: '', - // allOrNone: map['allOrNone'] ?? false, - contractNoteReversed: false, - channel: '', - tradingAccountNo: '', - tradingSubAccountNo: '', - avgCost: 0, - accountId: '', - accountLabel: '', - accountNo: '', - // tradeDate: DateTime.fromMillisecondsSinceEpoch(map['tradeDate'] as int), - openQuantity: 0, - ); - } -} diff --git a/lib/shared/mixins/exception_handler_mixin.dart b/lib/shared/mixins/exception_handler_mixin.dart index c222907..71b2e88 100644 --- a/lib/shared/mixins/exception_handler_mixin.dart +++ b/lib/shared/mixins/exception_handler_mixin.dart @@ -18,9 +18,7 @@ mixin ExceptionHandlerMixin on NetworkService { if (res.statusCode == 200 || res.statusCode == 201) { return Right( BaseResponse( - statusCode: res.statusCode ?? 200, - message: res.statusMessage, - data: res.data), + status: true, message: res.statusMessage, data: res.data), ); } else { ///return the raw error response and deserialize according to endpoint requirement. Because multiple base urls may be used and their error responses may not be uniform. This allows the specific endpoint to handle the error as they wish From 96e2a6fe5d74c0e756e4efbd9cc9d68a9a60ff1b Mon Sep 17 00:00:00 2001 From: Faith Sodipe Date: Tue, 2 Sep 2025 17:17:16 +0100 Subject: [PATCH 2/4] Added clientIds for google auth --- .env | 6 +++--- lib/main/app.dart | 16 ---------------- lib/shared/helpers/helper.dart | 7 +++---- 3 files changed, 6 insertions(+), 23 deletions(-) diff --git a/.env b/.env index de58010..6e79f09 100644 --- a/.env +++ b/.env @@ -1,3 +1,3 @@ -TEST_KEY = 'PROJECTR' -BASE_URL = 'https://projectr.linkpc.net/api/' -GOOGLE_KEY = '' \ No newline at end of file +GOOGLE_ANDRIOD = '965635034713-3of98rpd2em067nqsg8t8bdhei0b2nc6.apps.googleusercontent.com', +GOOGLE_IOS = '965635034713-1fua9ldvo87qnil81gic5n4eusb9jv6q.apps.googleusercontent.com', +BASE_URL_DEV = 'http://20.125.114.94:5000/api/' diff --git a/lib/main/app.dart b/lib/main/app.dart index 04a83ba..81c0cd8 100644 --- a/lib/main/app.dart +++ b/lib/main/app.dart @@ -33,9 +33,6 @@ class _MyAppState extends ConsumerState { return GestureDetector( behavior: HitTestBehavior.translucent, - // onTap: () => _initializeTimer(), - // onPanDown: (_) => _initializeTimer(), - // onPanUpdate: (_) => _initializeTimer(), child: DismissKeyboard( child: ScreenUtilInit( designSize: const Size(390, 844), @@ -53,19 +50,6 @@ class _MyAppState extends ConsumerState { ), ); } - - // void _initializeTimer() { - // if (_timer != null) { - // _timer!.cancel(); - // } - // // setup action after 10 minutes - // _timer = Timer(const Duration(minutes: 10), () { - // _timer?.cancel(); - // _timer = null; - // ref.read(themeProvider.notifier).switchModule(AppModule.general); - // appRouter.replaceAll([const LoginRoute()]); - // }); - // } } Future loadApp(F appFlavour) async { diff --git a/lib/shared/helpers/helper.dart b/lib/shared/helpers/helper.dart index 95c9218..1083371 100644 --- a/lib/shared/helpers/helper.dart +++ b/lib/shared/helpers/helper.dart @@ -1,3 +1,4 @@ +import 'package:projectr/shared/configs/app_configs.dart'; import 'package:projectr/shared/constants.dart'; import 'package:projectr/shared/enums.dart'; import 'package:flutter/material.dart'; @@ -25,16 +26,14 @@ class AppHelper { await dotenv.load(); switch (flavour) { case Flavor.dev: + AppConfigs.baseUrl = dotenv.env['BASE_URL_DEV']!; + break; default: // AppConfigs.baseUrl = dotenv.env['BASE_URL_PROD']!; } } - static List getRelationships() { - return ['Father', 'Mother', 'Sibling', 'Friend']; - } - static String formatCurrency(dynamic x) { if (x == 'null') { return '0.00'; From c1b16f83aa56101d2475f57fdf5e47458663ae46 Mon Sep 17 00:00:00 2001 From: Faith Sodipe Date: Tue, 2 Sep 2025 17:21:09 +0100 Subject: [PATCH 3/4] added market for google auth --- lib/modules/authentication/views/authentication_screen.dart | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/modules/authentication/views/authentication_screen.dart b/lib/modules/authentication/views/authentication_screen.dart index b36bce2..8541477 100644 --- a/lib/modules/authentication/views/authentication_screen.dart +++ b/lib/modules/authentication/views/authentication_screen.dart @@ -55,7 +55,9 @@ class _AuthenticationScreenState extends ConsumerState { ).paddingOnly(bottom: 40.h), Button( fontWeight: FontWeight.normal, - onPressed: () async {}, + onPressed: () async { + //TODO: Implement Google Sign-In + }, color: AppColors.transparent, borderColor: currentTheme.textTheme.bodyLarge!.color, fontSize: 12.sp, From 54442bd033e88d2da9310bcb0545b9ea174c1a71 Mon Sep 17 00:00:00 2001 From: DamisolaTaiwo Date: Sun, 28 Sep 2025 14:54:01 +0100 Subject: [PATCH 4/4] feat:phone number auth --- .../.cmake/api/v1/query/client-agp/cache-v2 | 0 .../api/v1/query/client-agp/cmakeFiles-v1 | 0 .../api/v1/query/client-agp/codemodel-v2 | 0 .../reply/cache-v2-9467ac7e022aa3468081.json | 1367 +++++++++++++++++ .../cmakeFiles-v1-3ae65f3ca15d24c03f27.json | 799 ++++++++++ .../codemodel-v2-ddf3c3f71ae905bd8d02.json | 43 + ...irectory-.-Debug-d0094a50bb2071803777.json | 14 + .../reply/index-2025-07-08T09-39-05-0007.json | 92 ++ .../Debug/4z1t2ab1/arm64-v8a/CMakeCache.txt | 401 +++++ .../CMakeCCompiler.cmake | 72 + .../CMakeCXXCompiler.cmake | 83 + .../CMakeDetermineCompilerABI_C.bin | Bin 0 -> 8040 bytes .../CMakeDetermineCompilerABI_CXX.bin | Bin 0 -> 8208 bytes .../3.22.1-g37088a8-dirty/CMakeSystem.cmake | 15 + .../CompilerIdC/CMakeCCompilerId.c | 803 ++++++++++ .../CompilerIdC/CMakeCCompilerId.o | Bin 0 -> 5992 bytes .../CompilerIdCXX/CMakeCXXCompilerId.cpp | 791 ++++++++++ .../CompilerIdCXX/CMakeCXXCompilerId.o | Bin 0 -> 6008 bytes .../CMakeFiles/TargetDirectories.txt | 2 + .../arm64-v8a/CMakeFiles/cmake.check_cache | 1 + .../4z1t2ab1/arm64-v8a/CMakeFiles/rules.ninja | 45 + .../arm64-v8a/additional_project_files.txt | 0 .../arm64-v8a/android_gradle_build.json | 28 + .../arm64-v8a/android_gradle_build_mini.json | 20 + .../.cxx/Debug/4z1t2ab1/arm64-v8a/build.ninja | 111 ++ .../4z1t2ab1/arm64-v8a/build_file_index.txt | 1 + .../4z1t2ab1/arm64-v8a/cmake_install.cmake | 54 + .../arm64-v8a/configure_fingerprint.bin | 28 + .../arm64-v8a/metadata_generation_command.txt | 20 + .../4z1t2ab1/arm64-v8a/prefab_config.json | 4 + .../arm64-v8a/symbol_folder_index.txt | 1 + .../.cmake/api/v1/query/client-agp/cache-v2 | 0 .../api/v1/query/client-agp/cmakeFiles-v1 | 0 .../api/v1/query/client-agp/codemodel-v2 | 0 .../reply/cache-v2-345b6446397a2cf66bdc.json | 1367 +++++++++++++++++ .../cmakeFiles-v1-08dce1a987f66e8c81d6.json | 799 ++++++++++ .../codemodel-v2-50bd19c07389d45abd4f.json | 43 + ...irectory-.-Debug-d0094a50bb2071803777.json | 14 + .../reply/index-2025-07-08T09-39-23-0280.json | 92 ++ .../Debug/4z1t2ab1/armeabi-v7a/CMakeCache.txt | 401 +++++ .../CMakeCCompiler.cmake | 72 + .../CMakeCXXCompiler.cmake | 83 + .../CMakeDetermineCompilerABI_C.bin | Bin 0 -> 5884 bytes .../CMakeDetermineCompilerABI_CXX.bin | Bin 0 -> 6040 bytes .../3.22.1-g37088a8-dirty/CMakeSystem.cmake | 15 + .../CompilerIdC/CMakeCCompilerId.c | 803 ++++++++++ .../CompilerIdC/CMakeCCompilerId.o | Bin 0 -> 4092 bytes .../CompilerIdCXX/CMakeCXXCompilerId.cpp | 791 ++++++++++ .../CompilerIdCXX/CMakeCXXCompilerId.o | Bin 0 -> 4128 bytes .../CMakeFiles/TargetDirectories.txt | 2 + .../armeabi-v7a/CMakeFiles/cmake.check_cache | 1 + .../armeabi-v7a/CMakeFiles/rules.ninja | 45 + .../armeabi-v7a/additional_project_files.txt | 0 .../armeabi-v7a/android_gradle_build.json | 28 + .../android_gradle_build_mini.json | 20 + .../Debug/4z1t2ab1/armeabi-v7a/build.ninja | 111 ++ .../4z1t2ab1/armeabi-v7a/build_file_index.txt | 1 + .../4z1t2ab1/armeabi-v7a/cmake_install.cmake | 54 + .../armeabi-v7a/configure_fingerprint.bin | 28 + .../metadata_generation_command.txt | 20 + .../4z1t2ab1/armeabi-v7a/prefab_config.json | 4 + .../armeabi-v7a/symbol_folder_index.txt | 1 + android/app/.cxx/Debug/4z1t2ab1/hash_key.txt | 27 + .../.cmake/api/v1/query/client-agp/cache-v2 | 0 .../api/v1/query/client-agp/cmakeFiles-v1 | 0 .../api/v1/query/client-agp/codemodel-v2 | 0 .../reply/cache-v2-edfebe82dc825d025b3f.json | 1367 +++++++++++++++++ .../cmakeFiles-v1-3bce2d3e3c394d7745cc.json | 799 ++++++++++ .../codemodel-v2-0c0eefad106b1f5f73df.json | 43 + ...irectory-.-Debug-d0094a50bb2071803777.json | 14 + .../reply/index-2025-07-08T09-39-28-0397.json | 92 ++ .../.cxx/Debug/4z1t2ab1/x86/CMakeCache.txt | 401 +++++ .../CMakeCCompiler.cmake | 72 + .../CMakeCXXCompiler.cmake | 83 + .../CMakeDetermineCompilerABI_C.bin | Bin 0 -> 5836 bytes .../CMakeDetermineCompilerABI_CXX.bin | Bin 0 -> 5972 bytes .../3.22.1-g37088a8-dirty/CMakeSystem.cmake | 15 + .../CompilerIdC/CMakeCCompilerId.c | 803 ++++++++++ .../CompilerIdC/CMakeCCompilerId.o | Bin 0 -> 3876 bytes .../CompilerIdCXX/CMakeCXXCompilerId.cpp | 791 ++++++++++ .../CompilerIdCXX/CMakeCXXCompilerId.o | Bin 0 -> 3908 bytes .../x86/CMakeFiles/TargetDirectories.txt | 2 + .../4z1t2ab1/x86/CMakeFiles/cmake.check_cache | 1 + .../Debug/4z1t2ab1/x86/CMakeFiles/rules.ninja | 45 + .../4z1t2ab1/x86/additional_project_files.txt | 0 .../4z1t2ab1/x86/android_gradle_build.json | 28 + .../x86/android_gradle_build_mini.json | 20 + .../app/.cxx/Debug/4z1t2ab1/x86/build.ninja | 111 ++ .../Debug/4z1t2ab1/x86/build_file_index.txt | 1 + .../Debug/4z1t2ab1/x86/cmake_install.cmake | 54 + .../4z1t2ab1/x86/configure_fingerprint.bin | 28 + .../x86/metadata_generation_command.txt | 20 + .../Debug/4z1t2ab1/x86/prefab_config.json | 4 + .../4z1t2ab1/x86/symbol_folder_index.txt | 1 + .../.cmake/api/v1/query/client-agp/cache-v2 | 0 .../api/v1/query/client-agp/cmakeFiles-v1 | 0 .../api/v1/query/client-agp/codemodel-v2 | 0 .../reply/cache-v2-003cb96b926ebe51d039.json | 1367 +++++++++++++++++ .../cmakeFiles-v1-d55e042c6badf3a969dc.json | 799 ++++++++++ .../codemodel-v2-4e692b141b2b5d38c121.json | 43 + ...irectory-.-Debug-d0094a50bb2071803777.json | 14 + .../reply/index-2025-07-08T09-39-34-0185.json | 92 ++ .../.cxx/Debug/4z1t2ab1/x86_64/CMakeCache.txt | 401 +++++ .../CMakeCCompiler.cmake | 72 + .../CMakeCXXCompiler.cmake | 83 + .../CMakeDetermineCompilerABI_C.bin | Bin 0 -> 7056 bytes .../CMakeDetermineCompilerABI_CXX.bin | Bin 0 -> 7216 bytes .../3.22.1-g37088a8-dirty/CMakeSystem.cmake | 15 + .../CompilerIdC/CMakeCCompilerId.c | 803 ++++++++++ .../CompilerIdC/CMakeCCompilerId.o | Bin 0 -> 5368 bytes .../CompilerIdCXX/CMakeCXXCompilerId.cpp | 791 ++++++++++ .../CompilerIdCXX/CMakeCXXCompilerId.o | Bin 0 -> 5424 bytes .../x86_64/CMakeFiles/TargetDirectories.txt | 2 + .../x86_64/CMakeFiles/cmake.check_cache | 1 + .../4z1t2ab1/x86_64/CMakeFiles/rules.ninja | 45 + .../x86_64/additional_project_files.txt | 0 .../4z1t2ab1/x86_64/android_gradle_build.json | 28 + .../x86_64/android_gradle_build_mini.json | 20 + .../.cxx/Debug/4z1t2ab1/x86_64/build.ninja | 111 ++ .../4z1t2ab1/x86_64/build_file_index.txt | 1 + .../Debug/4z1t2ab1/x86_64/cmake_install.cmake | 54 + .../4z1t2ab1/x86_64/configure_fingerprint.bin | 28 + .../x86_64/metadata_generation_command.txt | 20 + .../Debug/4z1t2ab1/x86_64/prefab_config.json | 4 + .../4z1t2ab1/x86_64/symbol_folder_index.txt | 1 + android/app/src/main/AndroidManifest.xml | 4 + .../gradle/wrapper/gradle-wrapper.properties | 3 +- android/settings.gradle | 4 +- .../views/authentication_screen.dart | 69 +- macos/Flutter/GeneratedPluginRegistrant.swift | 4 + pubspec.lock | 297 +++- pubspec.yaml | 11 +- .../flutter/generated_plugin_registrant.cc | 3 + windows/flutter/generated_plugins.cmake | 1 + 134 files changed, 19507 insertions(+), 96 deletions(-) create mode 100644 android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/.cmake/api/v1/query/client-agp/cache-v2 create mode 100644 android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/.cmake/api/v1/query/client-agp/cmakeFiles-v1 create mode 100644 android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/.cmake/api/v1/query/client-agp/codemodel-v2 create mode 100644 android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/.cmake/api/v1/reply/cache-v2-9467ac7e022aa3468081.json create mode 100644 android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-3ae65f3ca15d24c03f27.json create mode 100644 android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-ddf3c3f71ae905bd8d02.json create mode 100644 android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/.cmake/api/v1/reply/directory-.-Debug-d0094a50bb2071803777.json create mode 100644 android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/.cmake/api/v1/reply/index-2025-07-08T09-39-05-0007.json create mode 100644 android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/CMakeCache.txt create mode 100644 android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeCCompiler.cmake create mode 100644 android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeCXXCompiler.cmake create mode 100644 android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_C.bin create mode 100644 android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_CXX.bin create mode 100644 android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeSystem.cmake create mode 100644 android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdC/CMakeCCompilerId.c create mode 100644 android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdC/CMakeCCompilerId.o create mode 100644 android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdCXX/CMakeCXXCompilerId.cpp create mode 100644 android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdCXX/CMakeCXXCompilerId.o create mode 100644 android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/CMakeFiles/TargetDirectories.txt create mode 100644 android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/CMakeFiles/cmake.check_cache create mode 100644 android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/CMakeFiles/rules.ninja create mode 100644 android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/additional_project_files.txt create mode 100644 android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/android_gradle_build.json create mode 100644 android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/android_gradle_build_mini.json create mode 100644 android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/build.ninja create mode 100644 android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/build_file_index.txt create mode 100644 android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/cmake_install.cmake create mode 100644 android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/configure_fingerprint.bin create mode 100644 android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/metadata_generation_command.txt create mode 100644 android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/prefab_config.json create mode 100644 android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/symbol_folder_index.txt create mode 100644 android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/.cmake/api/v1/query/client-agp/cache-v2 create mode 100644 android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/.cmake/api/v1/query/client-agp/cmakeFiles-v1 create mode 100644 android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/.cmake/api/v1/query/client-agp/codemodel-v2 create mode 100644 android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/.cmake/api/v1/reply/cache-v2-345b6446397a2cf66bdc.json create mode 100644 android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-08dce1a987f66e8c81d6.json create mode 100644 android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-50bd19c07389d45abd4f.json create mode 100644 android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/.cmake/api/v1/reply/directory-.-Debug-d0094a50bb2071803777.json create mode 100644 android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/.cmake/api/v1/reply/index-2025-07-08T09-39-23-0280.json create mode 100644 android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/CMakeCache.txt create mode 100644 android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeCCompiler.cmake create mode 100644 android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeCXXCompiler.cmake create mode 100644 android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_C.bin create mode 100644 android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_CXX.bin create mode 100644 android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeSystem.cmake create mode 100644 android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdC/CMakeCCompilerId.c create mode 100644 android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdC/CMakeCCompilerId.o create mode 100644 android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdCXX/CMakeCXXCompilerId.cpp create mode 100644 android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdCXX/CMakeCXXCompilerId.o create mode 100644 android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/CMakeFiles/TargetDirectories.txt create mode 100644 android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/CMakeFiles/cmake.check_cache create mode 100644 android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/CMakeFiles/rules.ninja create mode 100644 android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/additional_project_files.txt create mode 100644 android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/android_gradle_build.json create mode 100644 android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/android_gradle_build_mini.json create mode 100644 android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/build.ninja create mode 100644 android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/build_file_index.txt create mode 100644 android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/cmake_install.cmake create mode 100644 android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/configure_fingerprint.bin create mode 100644 android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/metadata_generation_command.txt create mode 100644 android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/prefab_config.json create mode 100644 android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/symbol_folder_index.txt create mode 100644 android/app/.cxx/Debug/4z1t2ab1/hash_key.txt create mode 100644 android/app/.cxx/Debug/4z1t2ab1/x86/.cmake/api/v1/query/client-agp/cache-v2 create mode 100644 android/app/.cxx/Debug/4z1t2ab1/x86/.cmake/api/v1/query/client-agp/cmakeFiles-v1 create mode 100644 android/app/.cxx/Debug/4z1t2ab1/x86/.cmake/api/v1/query/client-agp/codemodel-v2 create mode 100644 android/app/.cxx/Debug/4z1t2ab1/x86/.cmake/api/v1/reply/cache-v2-edfebe82dc825d025b3f.json create mode 100644 android/app/.cxx/Debug/4z1t2ab1/x86/.cmake/api/v1/reply/cmakeFiles-v1-3bce2d3e3c394d7745cc.json create mode 100644 android/app/.cxx/Debug/4z1t2ab1/x86/.cmake/api/v1/reply/codemodel-v2-0c0eefad106b1f5f73df.json create mode 100644 android/app/.cxx/Debug/4z1t2ab1/x86/.cmake/api/v1/reply/directory-.-Debug-d0094a50bb2071803777.json create mode 100644 android/app/.cxx/Debug/4z1t2ab1/x86/.cmake/api/v1/reply/index-2025-07-08T09-39-28-0397.json create mode 100644 android/app/.cxx/Debug/4z1t2ab1/x86/CMakeCache.txt create mode 100644 android/app/.cxx/Debug/4z1t2ab1/x86/CMakeFiles/3.22.1-g37088a8-dirty/CMakeCCompiler.cmake create mode 100644 android/app/.cxx/Debug/4z1t2ab1/x86/CMakeFiles/3.22.1-g37088a8-dirty/CMakeCXXCompiler.cmake create mode 100644 android/app/.cxx/Debug/4z1t2ab1/x86/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_C.bin create mode 100644 android/app/.cxx/Debug/4z1t2ab1/x86/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_CXX.bin create mode 100644 android/app/.cxx/Debug/4z1t2ab1/x86/CMakeFiles/3.22.1-g37088a8-dirty/CMakeSystem.cmake create mode 100644 android/app/.cxx/Debug/4z1t2ab1/x86/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdC/CMakeCCompilerId.c create mode 100644 android/app/.cxx/Debug/4z1t2ab1/x86/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdC/CMakeCCompilerId.o create mode 100644 android/app/.cxx/Debug/4z1t2ab1/x86/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdCXX/CMakeCXXCompilerId.cpp create mode 100644 android/app/.cxx/Debug/4z1t2ab1/x86/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdCXX/CMakeCXXCompilerId.o create mode 100644 android/app/.cxx/Debug/4z1t2ab1/x86/CMakeFiles/TargetDirectories.txt create mode 100644 android/app/.cxx/Debug/4z1t2ab1/x86/CMakeFiles/cmake.check_cache create mode 100644 android/app/.cxx/Debug/4z1t2ab1/x86/CMakeFiles/rules.ninja create mode 100644 android/app/.cxx/Debug/4z1t2ab1/x86/additional_project_files.txt create mode 100644 android/app/.cxx/Debug/4z1t2ab1/x86/android_gradle_build.json create mode 100644 android/app/.cxx/Debug/4z1t2ab1/x86/android_gradle_build_mini.json create mode 100644 android/app/.cxx/Debug/4z1t2ab1/x86/build.ninja create mode 100644 android/app/.cxx/Debug/4z1t2ab1/x86/build_file_index.txt create mode 100644 android/app/.cxx/Debug/4z1t2ab1/x86/cmake_install.cmake create mode 100644 android/app/.cxx/Debug/4z1t2ab1/x86/configure_fingerprint.bin create mode 100644 android/app/.cxx/Debug/4z1t2ab1/x86/metadata_generation_command.txt create mode 100644 android/app/.cxx/Debug/4z1t2ab1/x86/prefab_config.json create mode 100644 android/app/.cxx/Debug/4z1t2ab1/x86/symbol_folder_index.txt create mode 100644 android/app/.cxx/Debug/4z1t2ab1/x86_64/.cmake/api/v1/query/client-agp/cache-v2 create mode 100644 android/app/.cxx/Debug/4z1t2ab1/x86_64/.cmake/api/v1/query/client-agp/cmakeFiles-v1 create mode 100644 android/app/.cxx/Debug/4z1t2ab1/x86_64/.cmake/api/v1/query/client-agp/codemodel-v2 create mode 100644 android/app/.cxx/Debug/4z1t2ab1/x86_64/.cmake/api/v1/reply/cache-v2-003cb96b926ebe51d039.json create mode 100644 android/app/.cxx/Debug/4z1t2ab1/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-d55e042c6badf3a969dc.json create mode 100644 android/app/.cxx/Debug/4z1t2ab1/x86_64/.cmake/api/v1/reply/codemodel-v2-4e692b141b2b5d38c121.json create mode 100644 android/app/.cxx/Debug/4z1t2ab1/x86_64/.cmake/api/v1/reply/directory-.-Debug-d0094a50bb2071803777.json create mode 100644 android/app/.cxx/Debug/4z1t2ab1/x86_64/.cmake/api/v1/reply/index-2025-07-08T09-39-34-0185.json create mode 100644 android/app/.cxx/Debug/4z1t2ab1/x86_64/CMakeCache.txt create mode 100644 android/app/.cxx/Debug/4z1t2ab1/x86_64/CMakeFiles/3.22.1-g37088a8-dirty/CMakeCCompiler.cmake create mode 100644 android/app/.cxx/Debug/4z1t2ab1/x86_64/CMakeFiles/3.22.1-g37088a8-dirty/CMakeCXXCompiler.cmake create mode 100644 android/app/.cxx/Debug/4z1t2ab1/x86_64/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_C.bin create mode 100644 android/app/.cxx/Debug/4z1t2ab1/x86_64/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_CXX.bin create mode 100644 android/app/.cxx/Debug/4z1t2ab1/x86_64/CMakeFiles/3.22.1-g37088a8-dirty/CMakeSystem.cmake create mode 100644 android/app/.cxx/Debug/4z1t2ab1/x86_64/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdC/CMakeCCompilerId.c create mode 100644 android/app/.cxx/Debug/4z1t2ab1/x86_64/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdC/CMakeCCompilerId.o create mode 100644 android/app/.cxx/Debug/4z1t2ab1/x86_64/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdCXX/CMakeCXXCompilerId.cpp create mode 100644 android/app/.cxx/Debug/4z1t2ab1/x86_64/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdCXX/CMakeCXXCompilerId.o create mode 100644 android/app/.cxx/Debug/4z1t2ab1/x86_64/CMakeFiles/TargetDirectories.txt create mode 100644 android/app/.cxx/Debug/4z1t2ab1/x86_64/CMakeFiles/cmake.check_cache create mode 100644 android/app/.cxx/Debug/4z1t2ab1/x86_64/CMakeFiles/rules.ninja create mode 100644 android/app/.cxx/Debug/4z1t2ab1/x86_64/additional_project_files.txt create mode 100644 android/app/.cxx/Debug/4z1t2ab1/x86_64/android_gradle_build.json create mode 100644 android/app/.cxx/Debug/4z1t2ab1/x86_64/android_gradle_build_mini.json create mode 100644 android/app/.cxx/Debug/4z1t2ab1/x86_64/build.ninja create mode 100644 android/app/.cxx/Debug/4z1t2ab1/x86_64/build_file_index.txt create mode 100644 android/app/.cxx/Debug/4z1t2ab1/x86_64/cmake_install.cmake create mode 100644 android/app/.cxx/Debug/4z1t2ab1/x86_64/configure_fingerprint.bin create mode 100644 android/app/.cxx/Debug/4z1t2ab1/x86_64/metadata_generation_command.txt create mode 100644 android/app/.cxx/Debug/4z1t2ab1/x86_64/prefab_config.json create mode 100644 android/app/.cxx/Debug/4z1t2ab1/x86_64/symbol_folder_index.txt diff --git a/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/.cmake/api/v1/query/client-agp/cache-v2 b/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/.cmake/api/v1/query/client-agp/cache-v2 new file mode 100644 index 0000000..e69de29 diff --git a/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/.cmake/api/v1/query/client-agp/cmakeFiles-v1 b/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/.cmake/api/v1/query/client-agp/cmakeFiles-v1 new file mode 100644 index 0000000..e69de29 diff --git a/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/.cmake/api/v1/query/client-agp/codemodel-v2 b/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/.cmake/api/v1/query/client-agp/codemodel-v2 new file mode 100644 index 0000000..e69de29 diff --git a/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/.cmake/api/v1/reply/cache-v2-9467ac7e022aa3468081.json b/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/.cmake/api/v1/reply/cache-v2-9467ac7e022aa3468081.json new file mode 100644 index 0000000..a86a792 --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/.cmake/api/v1/reply/cache-v2-9467ac7e022aa3468081.json @@ -0,0 +1,1367 @@ +{ + "entries" : + [ + { + "name" : "ANDROID_ABI", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "UNINITIALIZED", + "value" : "arm64-v8a" + }, + { + "name" : "ANDROID_NDK", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "UNINITIALIZED", + "value" : "C:\\Users\\840 G3\\AppData\\Local\\Android\\sdk\\ndk\\26.3.11579264" + }, + { + "name" : "ANDROID_PLATFORM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "UNINITIALIZED", + "value" : "android-21" + }, + { + "name" : "CMAKE_ADDR2LINE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-addr2line.exe" + }, + { + "name" : "CMAKE_ANDROID_ARCH_ABI", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "UNINITIALIZED", + "value" : "arm64-v8a" + }, + { + "name" : "CMAKE_ANDROID_NDK", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "UNINITIALIZED", + "value" : "C:\\Users\\840 G3\\AppData\\Local\\Android\\sdk\\ndk\\26.3.11579264" + }, + { + "name" : "CMAKE_AR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Archiver" + } + ], + "type" : "FILEPATH", + "value" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-ar.exe" + }, + { + "name" : "CMAKE_ASM_FLAGS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Flags used by the compiler during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_ASM_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Flags used by the compiler during debug builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_ASM_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Flags used by the compiler during release builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_BUILD_TYPE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Choose the type of build, options are: None Debug Release RelWithDebInfo MinSizeRel ..." + } + ], + "type" : "STRING", + "value" : "Debug" + }, + { + "name" : "CMAKE_CACHEFILE_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "This is the directory where this CMakeCache.txt was created" + } + ], + "type" : "INTERNAL", + "value" : "c:/Users/840 G3/ProjectR.Mobile/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a" + }, + { + "name" : "CMAKE_CACHE_MAJOR_VERSION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Major version of cmake used to create the current loaded cache" + } + ], + "type" : "INTERNAL", + "value" : "3" + }, + { + "name" : "CMAKE_CACHE_MINOR_VERSION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Minor version of cmake used to create the current loaded cache" + } + ], + "type" : "INTERNAL", + "value" : "22" + }, + { + "name" : "CMAKE_CACHE_PATCH_VERSION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Patch version of cmake used to create the current loaded cache" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "CMAKE_COMMAND", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to CMake executable." + } + ], + "type" : "INTERNAL", + "value" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/bin/cmake.exe" + }, + { + "name" : "CMAKE_CPACK_COMMAND", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to cpack program executable." + } + ], + "type" : "INTERNAL", + "value" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/bin/cpack.exe" + }, + { + "name" : "CMAKE_CTEST_COMMAND", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to ctest program executable." + } + ], + "type" : "INTERNAL", + "value" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/bin/ctest.exe" + }, + { + "name" : "CMAKE_CXX_COMPILER", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "(This variable does not exist and should not be used)" + } + ], + "type" : "UNINITIALIZED", + "value" : "" + }, + { + "name" : "CMAKE_CXX_COMPILER_AR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "LLVM archiver" + } + ], + "type" : "FILEPATH", + "value" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-ar.exe" + }, + { + "name" : "CMAKE_CXX_COMPILER_RANLIB", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Generate index for LLVM archive" + } + ], + "type" : "FILEPATH", + "value" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-ranlib.exe" + }, + { + "name" : "CMAKE_CXX_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the compiler during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_CXX_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the compiler during debug builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_CXX_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the CXX compiler during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "-Os -DNDEBUG" + }, + { + "name" : "CMAKE_CXX_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the compiler during release builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_CXX_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the CXX compiler during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "-O2 -g -DNDEBUG" + }, + { + "name" : "CMAKE_CXX_STANDARD_LIBRARIES", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Libraries linked by default with all C++ applications." + } + ], + "type" : "STRING", + "value" : "-latomic -lm" + }, + { + "name" : "CMAKE_C_COMPILER", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "(This variable does not exist and should not be used)" + } + ], + "type" : "UNINITIALIZED", + "value" : "" + }, + { + "name" : "CMAKE_C_COMPILER_AR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "LLVM archiver" + } + ], + "type" : "FILEPATH", + "value" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-ar.exe" + }, + { + "name" : "CMAKE_C_COMPILER_RANLIB", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Generate index for LLVM archive" + } + ], + "type" : "FILEPATH", + "value" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-ranlib.exe" + }, + { + "name" : "CMAKE_C_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the compiler during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_C_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the compiler during debug builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_C_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the C compiler during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "-Os -DNDEBUG" + }, + { + "name" : "CMAKE_C_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the compiler during release builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_C_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the C compiler during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "-O2 -g -DNDEBUG" + }, + { + "name" : "CMAKE_C_STANDARD_LIBRARIES", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Libraries linked by default with all C applications." + } + ], + "type" : "STRING", + "value" : "-latomic -lm" + }, + { + "name" : "CMAKE_DLLTOOL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "CMAKE_DLLTOOL-NOTFOUND" + }, + { + "name" : "CMAKE_ERROR_DEPRECATED", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Whether to issue deprecation errors for macros and functions." + } + ], + "type" : "INTERNAL", + "value" : "FALSE" + }, + { + "name" : "CMAKE_EXECUTABLE_FORMAT", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Executable file format" + } + ], + "type" : "INTERNAL", + "value" : "ELF" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_EXPORT_COMPILE_COMMANDS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "UNINITIALIZED", + "value" : "ON" + }, + { + "name" : "CMAKE_EXTRA_GENERATOR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Name of external makefile project generator." + } + ], + "type" : "INTERNAL", + "value" : "" + }, + { + "name" : "CMAKE_GENERATOR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Name of generator." + } + ], + "type" : "INTERNAL", + "value" : "Ninja" + }, + { + "name" : "CMAKE_GENERATOR_INSTANCE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Generator instance identifier." + } + ], + "type" : "INTERNAL", + "value" : "" + }, + { + "name" : "CMAKE_GENERATOR_PLATFORM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Name of generator platform." + } + ], + "type" : "INTERNAL", + "value" : "" + }, + { + "name" : "CMAKE_GENERATOR_TOOLSET", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Name of generator toolset." + } + ], + "type" : "INTERNAL", + "value" : "" + }, + { + "name" : "CMAKE_HOME_DIRECTORY", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Source directory with the top level CMakeLists.txt file for this project" + } + ], + "type" : "INTERNAL", + "value" : "C:/Users/840 G3/flutter/packages/flutter_tools/gradle/src/main/groovy" + }, + { + "name" : "CMAKE_INSTALL_PREFIX", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Install path prefix, prepended onto install directories." + } + ], + "type" : "PATH", + "value" : "C:/Program Files (x86)/Project" + }, + { + "name" : "CMAKE_INSTALL_SO_NO_EXE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Install .so files without execute permission." + } + ], + "type" : "INTERNAL", + "value" : "0" + }, + { + "name" : "CMAKE_LIBRARY_OUTPUT_DIRECTORY", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "UNINITIALIZED", + "value" : "C:\\Users\\840 G3\\ProjectR.Mobile\\build\\app\\intermediates\\cxx\\Debug\\4z1t2ab1\\obj\\arm64-v8a" + }, + { + "name" : "CMAKE_LINKER", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/ld.lld.exe" + }, + { + "name" : "CMAKE_MAKE_PROGRAM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "make program" + } + ], + "type" : "FILEPATH", + "value" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/bin/ninja.exe" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_NM", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-nm.exe" + }, + { + "name" : "CMAKE_NUMBER_OF_MAKEFILES", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "number of local generators" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "CMAKE_OBJCOPY", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-objcopy.exe" + }, + { + "name" : "CMAKE_OBJDUMP", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-objdump.exe" + }, + { + "name" : "CMAKE_PLATFORM_INFO_INITIALIZED", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Platform information initialized" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "CMAKE_PROJECT_DESCRIPTION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "" + }, + { + "name" : "CMAKE_PROJECT_HOMEPAGE_URL", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "" + }, + { + "name" : "CMAKE_PROJECT_NAME", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "Project" + }, + { + "name" : "CMAKE_RANLIB", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Ranlib" + } + ], + "type" : "FILEPATH", + "value" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-ranlib.exe" + }, + { + "name" : "CMAKE_READELF", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-readelf.exe" + }, + { + "name" : "CMAKE_ROOT", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to CMake installation." + } + ], + "type" : "INTERNAL", + "value" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22" + }, + { + "name" : "CMAKE_RUNTIME_OUTPUT_DIRECTORY", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "UNINITIALIZED", + "value" : "C:\\Users\\840 G3\\ProjectR.Mobile\\build\\app\\intermediates\\cxx\\Debug\\4z1t2ab1\\obj\\arm64-v8a" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of dll's." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of shared libraries during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of shared libraries during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of shared libraries during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of shared libraries during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_SKIP_INSTALL_RPATH", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "If set, runtime paths are not added when installing shared libraries, but are added when building." + } + ], + "type" : "BOOL", + "value" : "NO" + }, + { + "name" : "CMAKE_SKIP_RPATH", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "If set, runtime paths are not added when using shared libraries." + } + ], + "type" : "BOOL", + "value" : "NO" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STRIP", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Strip" + } + ], + "type" : "FILEPATH", + "value" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-strip.exe" + }, + { + "name" : "CMAKE_SUPPRESS_DEVELOPER_ERRORS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Suppress errors that are meant for the author of the CMakeLists.txt files." + } + ], + "type" : "INTERNAL", + "value" : "TRUE" + }, + { + "name" : "CMAKE_SUPPRESS_DEVELOPER_WARNINGS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Suppress Warnings that are meant for the author of the CMakeLists.txt files." + } + ], + "type" : "INTERNAL", + "value" : "TRUE" + }, + { + "name" : "CMAKE_SYSTEM_NAME", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "UNINITIALIZED", + "value" : "Android" + }, + { + "name" : "CMAKE_SYSTEM_VERSION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "UNINITIALIZED", + "value" : "21" + }, + { + "name" : "CMAKE_TOOLCHAIN_FILE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The CMake toolchain file" + } + ], + "type" : "FILEPATH", + "value" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/android.toolchain.cmake" + }, + { + "name" : "CMAKE_VERBOSE_MAKEFILE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "If this value is on, makefiles will be generated without the .SILENT directive, and all commands will be echoed to the console during the make. This is useful for debugging only. With Visual Studio IDE projects all commands are done without /nologo." + } + ], + "type" : "BOOL", + "value" : "FALSE" + }, + { + "name" : "CMAKE_WARN_DEPRECATED", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Whether to issue warnings for deprecated functionality." + } + ], + "type" : "INTERNAL", + "value" : "FALSE" + }, + { + "name" : "Project_BINARY_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "C:/Users/840 G3/ProjectR.Mobile/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a" + }, + { + "name" : "Project_IS_TOP_LEVEL", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "ON" + }, + { + "name" : "Project_SOURCE_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "C:/Users/840 G3/flutter/packages/flutter_tools/gradle/src/main/groovy" + } + ], + "kind" : "cache", + "version" : + { + "major" : 2, + "minor" : 0 + } +} diff --git a/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-3ae65f3ca15d24c03f27.json b/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-3ae65f3ca15d24c03f27.json new file mode 100644 index 0000000..59b0f3c --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-3ae65f3ca15d24c03f27.json @@ -0,0 +1,799 @@ +{ + "inputs" : + [ + { + "path" : "CMakeLists.txt" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/android.toolchain.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/android-legacy.toolchain.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/platforms.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/hooks/pre/Android-Determine.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in" + }, + { + "isGenerated" : true, + "path" : "C:/Users/840 G3/ProjectR.Mobile/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeSystem.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/android.toolchain.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/hooks/pre/Android-Initialize.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/hooks/pre/Determine-Compiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in" + }, + { + "isGenerated" : true, + "path" : "C:/Users/840 G3/ProjectR.Mobile/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeCCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in" + }, + { + "isGenerated" : true, + "path" : "C:/Users/840 G3/ProjectR.Mobile/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeCXXCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/hooks/pre/Android.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/hooks/pre/Android-Clang.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/flags.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in" + }, + { + "isGenerated" : true, + "path" : "C:/Users/840 G3/ProjectR.Mobile/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeCCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in" + }, + { + "isGenerated" : true, + "path" : "C:/Users/840 G3/ProjectR.Mobile/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeCXXCompiler.cmake" + } + ], + "kind" : "cmakeFiles", + "paths" : + { + "build" : "C:/Users/840 G3/ProjectR.Mobile/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a", + "source" : "C:/Users/840 G3/flutter/packages/flutter_tools/gradle/src/main/groovy" + }, + "version" : + { + "major" : 1, + "minor" : 0 + } +} diff --git a/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-ddf3c3f71ae905bd8d02.json b/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-ddf3c3f71ae905bd8d02.json new file mode 100644 index 0000000..7ea8044 --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-ddf3c3f71ae905bd8d02.json @@ -0,0 +1,43 @@ +{ + "configurations" : + [ + { + "directories" : + [ + { + "build" : ".", + "jsonFile" : "directory-.-Debug-d0094a50bb2071803777.json", + "minimumCMakeVersion" : + { + "string" : "3.6.0" + }, + "projectIndex" : 0, + "source" : "." + } + ], + "name" : "Debug", + "projects" : + [ + { + "directoryIndexes" : + [ + 0 + ], + "name" : "Project" + } + ], + "targets" : [] + } + ], + "kind" : "codemodel", + "paths" : + { + "build" : "C:/Users/840 G3/ProjectR.Mobile/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a", + "source" : "C:/Users/840 G3/flutter/packages/flutter_tools/gradle/src/main/groovy" + }, + "version" : + { + "major" : 2, + "minor" : 3 + } +} diff --git a/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/.cmake/api/v1/reply/directory-.-Debug-d0094a50bb2071803777.json b/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/.cmake/api/v1/reply/directory-.-Debug-d0094a50bb2071803777.json new file mode 100644 index 0000000..3a67af9 --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/.cmake/api/v1/reply/directory-.-Debug-d0094a50bb2071803777.json @@ -0,0 +1,14 @@ +{ + "backtraceGraph" : + { + "commands" : [], + "files" : [], + "nodes" : [] + }, + "installers" : [], + "paths" : + { + "build" : ".", + "source" : "." + } +} diff --git a/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/.cmake/api/v1/reply/index-2025-07-08T09-39-05-0007.json b/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/.cmake/api/v1/reply/index-2025-07-08T09-39-05-0007.json new file mode 100644 index 0000000..9900779 --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/.cmake/api/v1/reply/index-2025-07-08T09-39-05-0007.json @@ -0,0 +1,92 @@ +{ + "cmake" : + { + "generator" : + { + "multiConfig" : false, + "name" : "Ninja" + }, + "paths" : + { + "cmake" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/bin/cmake.exe", + "cpack" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/bin/cpack.exe", + "ctest" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/bin/ctest.exe", + "root" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22" + }, + "version" : + { + "isDirty" : true, + "major" : 3, + "minor" : 22, + "patch" : 1, + "string" : "3.22.1-g37088a8-dirty", + "suffix" : "g37088a8" + } + }, + "objects" : + [ + { + "jsonFile" : "codemodel-v2-ddf3c3f71ae905bd8d02.json", + "kind" : "codemodel", + "version" : + { + "major" : 2, + "minor" : 3 + } + }, + { + "jsonFile" : "cache-v2-9467ac7e022aa3468081.json", + "kind" : "cache", + "version" : + { + "major" : 2, + "minor" : 0 + } + }, + { + "jsonFile" : "cmakeFiles-v1-3ae65f3ca15d24c03f27.json", + "kind" : "cmakeFiles", + "version" : + { + "major" : 1, + "minor" : 0 + } + } + ], + "reply" : + { + "client-agp" : + { + "cache-v2" : + { + "jsonFile" : "cache-v2-9467ac7e022aa3468081.json", + "kind" : "cache", + "version" : + { + "major" : 2, + "minor" : 0 + } + }, + "cmakeFiles-v1" : + { + "jsonFile" : "cmakeFiles-v1-3ae65f3ca15d24c03f27.json", + "kind" : "cmakeFiles", + "version" : + { + "major" : 1, + "minor" : 0 + } + }, + "codemodel-v2" : + { + "jsonFile" : "codemodel-v2-ddf3c3f71ae905bd8d02.json", + "kind" : "codemodel", + "version" : + { + "major" : 2, + "minor" : 3 + } + } + } + } +} diff --git a/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/CMakeCache.txt b/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/CMakeCache.txt new file mode 100644 index 0000000..a011388 --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/CMakeCache.txt @@ -0,0 +1,401 @@ +# This is the CMakeCache file. +# For build in directory: c:/Users/840 G3/ProjectR.Mobile/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a +# It was generated by CMake: C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/bin/cmake.exe +# You can edit this file to change values found and used by cmake. +# If you do not want to change any of the values, simply exit the editor. +# If you do want to change a value, simply edit, save, and exit the editor. +# The syntax for the file is as follows: +# KEY:TYPE=VALUE +# KEY is the name of a variable in the cache. +# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. +# VALUE is the current value for the KEY. + +######################## +# EXTERNAL cache entries +######################## + +//No help, variable specified on the command line. +ANDROID_ABI:UNINITIALIZED=arm64-v8a + +//No help, variable specified on the command line. +ANDROID_NDK:UNINITIALIZED=C:\Users\840 G3\AppData\Local\Android\sdk\ndk\26.3.11579264 + +//No help, variable specified on the command line. +ANDROID_PLATFORM:UNINITIALIZED=android-21 + +//Path to a program. +CMAKE_ADDR2LINE:FILEPATH=C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-addr2line.exe + +//No help, variable specified on the command line. +CMAKE_ANDROID_ARCH_ABI:UNINITIALIZED=arm64-v8a + +//No help, variable specified on the command line. +CMAKE_ANDROID_NDK:UNINITIALIZED=C:\Users\840 G3\AppData\Local\Android\sdk\ndk\26.3.11579264 + +//Archiver +CMAKE_AR:FILEPATH=C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-ar.exe + +//Flags used by the compiler during all build types. +CMAKE_ASM_FLAGS:STRING= + +//Flags used by the compiler during debug builds. +CMAKE_ASM_FLAGS_DEBUG:STRING= + +//Flags used by the compiler during release builds. +CMAKE_ASM_FLAGS_RELEASE:STRING= + +//Choose the type of build, options are: None Debug Release RelWithDebInfo +// MinSizeRel ... +CMAKE_BUILD_TYPE:STRING=Debug + +//LLVM archiver +CMAKE_CXX_COMPILER_AR:FILEPATH=C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-ar.exe + +//Generate index for LLVM archive +CMAKE_CXX_COMPILER_RANLIB:FILEPATH=C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-ranlib.exe + +//Flags used by the compiler during all build types. +CMAKE_CXX_FLAGS:STRING= + +//Flags used by the compiler during debug builds. +CMAKE_CXX_FLAGS_DEBUG:STRING= + +//Flags used by the CXX compiler during MINSIZEREL builds. +CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the compiler during release builds. +CMAKE_CXX_FLAGS_RELEASE:STRING= + +//Flags used by the CXX compiler during RELWITHDEBINFO builds. +CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Libraries linked by default with all C++ applications. +CMAKE_CXX_STANDARD_LIBRARIES:STRING=-latomic -lm + +//LLVM archiver +CMAKE_C_COMPILER_AR:FILEPATH=C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-ar.exe + +//Generate index for LLVM archive +CMAKE_C_COMPILER_RANLIB:FILEPATH=C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-ranlib.exe + +//Flags used by the compiler during all build types. +CMAKE_C_FLAGS:STRING= + +//Flags used by the compiler during debug builds. +CMAKE_C_FLAGS_DEBUG:STRING= + +//Flags used by the C compiler during MINSIZEREL builds. +CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the compiler during release builds. +CMAKE_C_FLAGS_RELEASE:STRING= + +//Flags used by the C compiler during RELWITHDEBINFO builds. +CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Libraries linked by default with all C applications. +CMAKE_C_STANDARD_LIBRARIES:STRING=-latomic -lm + +//Path to a program. +CMAKE_DLLTOOL:FILEPATH=CMAKE_DLLTOOL-NOTFOUND + +//Flags used by the linker. +CMAKE_EXE_LINKER_FLAGS:STRING= + +//Flags used by the linker during DEBUG builds. +CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during MINSIZEREL builds. +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during RELEASE builds. +CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during RELWITHDEBINFO builds. +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//No help, variable specified on the command line. +CMAKE_EXPORT_COMPILE_COMMANDS:UNINITIALIZED=ON + +//Install path prefix, prepended onto install directories. +CMAKE_INSTALL_PREFIX:PATH=C:/Program Files (x86)/Project + +//No help, variable specified on the command line. +CMAKE_LIBRARY_OUTPUT_DIRECTORY:UNINITIALIZED=C:\Users\840 G3\ProjectR.Mobile\build\app\intermediates\cxx\Debug\4z1t2ab1\obj\arm64-v8a + +//Path to a program. +CMAKE_LINKER:FILEPATH=C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/ld.lld.exe + +//make program +CMAKE_MAKE_PROGRAM:FILEPATH=C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/bin/ninja.exe + +//Flags used by the linker during the creation of modules. +CMAKE_MODULE_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of modules during +// DEBUG builds. +CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of modules during +// MINSIZEREL builds. +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of modules during +// RELEASE builds. +CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of modules during +// RELWITHDEBINFO builds. +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_NM:FILEPATH=C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-nm.exe + +//Path to a program. +CMAKE_OBJCOPY:FILEPATH=C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-objcopy.exe + +//Path to a program. +CMAKE_OBJDUMP:FILEPATH=C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-objdump.exe + +//Value Computed by CMake +CMAKE_PROJECT_DESCRIPTION:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_HOMEPAGE_URL:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_NAME:STATIC=Project + +//Ranlib +CMAKE_RANLIB:FILEPATH=C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-ranlib.exe + +//Path to a program. +CMAKE_READELF:FILEPATH=C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-readelf.exe + +//No help, variable specified on the command line. +CMAKE_RUNTIME_OUTPUT_DIRECTORY:UNINITIALIZED=C:\Users\840 G3\ProjectR.Mobile\build\app\intermediates\cxx\Debug\4z1t2ab1\obj\arm64-v8a + +//Flags used by the linker during the creation of dll's. +CMAKE_SHARED_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of shared libraries +// during DEBUG builds. +CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of shared libraries +// during MINSIZEREL builds. +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELEASE builds. +CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELWITHDEBINFO builds. +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//If set, runtime paths are not added when installing shared libraries, +// but are added when building. +CMAKE_SKIP_INSTALL_RPATH:BOOL=NO + +//If set, runtime paths are not added when using shared libraries. +CMAKE_SKIP_RPATH:BOOL=NO + +//Flags used by the linker during the creation of static libraries +// during all build types. +CMAKE_STATIC_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of static libraries +// during DEBUG builds. +CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of static libraries +// during MINSIZEREL builds. +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELEASE builds. +CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELWITHDEBINFO builds. +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Strip +CMAKE_STRIP:FILEPATH=C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-strip.exe + +//No help, variable specified on the command line. +CMAKE_SYSTEM_NAME:UNINITIALIZED=Android + +//No help, variable specified on the command line. +CMAKE_SYSTEM_VERSION:UNINITIALIZED=21 + +//The CMake toolchain file +CMAKE_TOOLCHAIN_FILE:FILEPATH=C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/android.toolchain.cmake + +//If this value is on, makefiles will be generated without the +// .SILENT directive, and all commands will be echoed to the console +// during the make. This is useful for debugging only. With Visual +// Studio IDE projects all commands are done without /nologo. +CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE + +//Value Computed by CMake +Project_BINARY_DIR:STATIC=C:/Users/840 G3/ProjectR.Mobile/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a + +//Value Computed by CMake +Project_IS_TOP_LEVEL:STATIC=ON + +//Value Computed by CMake +Project_SOURCE_DIR:STATIC=C:/Users/840 G3/flutter/packages/flutter_tools/gradle/src/main/groovy + + +######################## +# INTERNAL cache entries +######################## + +//ADVANCED property for variable: CMAKE_ADDR2LINE +CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_AR +CMAKE_AR-ADVANCED:INTERNAL=1 +//This is the directory where this CMakeCache.txt was created +CMAKE_CACHEFILE_DIR:INTERNAL=c:/Users/840 G3/ProjectR.Mobile/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a +//Major version of cmake used to create the current loaded cache +CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 +//Minor version of cmake used to create the current loaded cache +CMAKE_CACHE_MINOR_VERSION:INTERNAL=22 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=1 +//Path to CMake executable. +CMAKE_COMMAND:INTERNAL=C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/bin/cmake.exe +//Path to cpack program executable. +CMAKE_CPACK_COMMAND:INTERNAL=C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/bin/cpack.exe +//Path to ctest program executable. +CMAKE_CTEST_COMMAND:INTERNAL=C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/bin/ctest.exe +//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR +CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB +CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS +CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG +CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL +CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE +CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO +CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_STANDARD_LIBRARIES +CMAKE_CXX_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_AR +CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB +CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS +CMAKE_C_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG +CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL +CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE +CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO +CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_STANDARD_LIBRARIES +CMAKE_C_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_DLLTOOL +CMAKE_DLLTOOL-ADVANCED:INTERNAL=1 +//Whether to issue deprecation errors for macros and functions. +CMAKE_ERROR_DEPRECATED:INTERNAL=FALSE +//Executable file format +CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS +CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG +CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE +CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//Name of external makefile project generator. +CMAKE_EXTRA_GENERATOR:INTERNAL= +//Name of generator. +CMAKE_GENERATOR:INTERNAL=Ninja +//Generator instance identifier. +CMAKE_GENERATOR_INSTANCE:INTERNAL= +//Name of generator platform. +CMAKE_GENERATOR_PLATFORM:INTERNAL= +//Name of generator toolset. +CMAKE_GENERATOR_TOOLSET:INTERNAL= +//Source directory with the top level CMakeLists.txt file for this +// project +CMAKE_HOME_DIRECTORY:INTERNAL=C:/Users/840 G3/flutter/packages/flutter_tools/gradle/src/main/groovy +//Install .so files without execute permission. +CMAKE_INSTALL_SO_NO_EXE:INTERNAL=0 +//ADVANCED property for variable: CMAKE_LINKER +CMAKE_LINKER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS +CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG +CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE +CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_NM +CMAKE_NM-ADVANCED:INTERNAL=1 +//number of local generators +CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJCOPY +CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJDUMP +CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 +//Platform information initialized +CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RANLIB +CMAKE_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_READELF +CMAKE_READELF-ADVANCED:INTERNAL=1 +//Path to CMake installation. +CMAKE_ROOT:INTERNAL=C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS +CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG +CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE +CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH +CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_RPATH +CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS +CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG +CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE +CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STRIP +CMAKE_STRIP-ADVANCED:INTERNAL=1 +//Suppress errors that are meant for the author of the CMakeLists.txt +// files. +CMAKE_SUPPRESS_DEVELOPER_ERRORS:INTERNAL=TRUE +//Suppress Warnings that are meant for the author of the CMakeLists.txt +// files. +CMAKE_SUPPRESS_DEVELOPER_WARNINGS:INTERNAL=TRUE +//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 +//Whether to issue warnings for deprecated functionality. +CMAKE_WARN_DEPRECATED:INTERNAL=FALSE + diff --git a/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeCCompiler.cmake b/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeCCompiler.cmake new file mode 100644 index 0000000..c23cee5 --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeCCompiler.cmake @@ -0,0 +1,72 @@ +set(CMAKE_C_COMPILER "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/clang.exe") +set(CMAKE_C_COMPILER_ARG1 "") +set(CMAKE_C_COMPILER_ID "Clang") +set(CMAKE_C_COMPILER_VERSION "17.0.2") +set(CMAKE_C_COMPILER_VERSION_INTERNAL "") +set(CMAKE_C_COMPILER_WRAPPER "") +set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "17") +set(CMAKE_C_EXTENSIONS_COMPUTED_DEFAULT "ON") +set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert;c_std_17;c_std_23") +set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes") +set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros") +set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert") +set(CMAKE_C17_COMPILE_FEATURES "c_std_17") +set(CMAKE_C23_COMPILE_FEATURES "c_std_23") + +set(CMAKE_C_PLATFORM_ID "Linux") +set(CMAKE_C_SIMULATE_ID "") +set(CMAKE_C_COMPILER_FRONTEND_VARIANT "GNU") +set(CMAKE_C_SIMULATE_VERSION "") + + + + +set(CMAKE_AR "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-ar.exe") +set(CMAKE_C_COMPILER_AR "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-ar.exe") +set(CMAKE_RANLIB "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-ranlib.exe") +set(CMAKE_C_COMPILER_RANLIB "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-ranlib.exe") +set(CMAKE_LINKER "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/ld.lld.exe") +set(CMAKE_MT "") +set(CMAKE_COMPILER_IS_GNUCC ) +set(CMAKE_C_COMPILER_LOADED 1) +set(CMAKE_C_COMPILER_WORKS TRUE) +set(CMAKE_C_ABI_COMPILED TRUE) + +set(CMAKE_C_COMPILER_ENV_VAR "CC") + +set(CMAKE_C_COMPILER_ID_RUN 1) +set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m) +set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_C_LINKER_PREFERENCE 10) + +# Save compiler ABI information. +set(CMAKE_C_SIZEOF_DATA_PTR "8") +set(CMAKE_C_COMPILER_ABI "ELF") +set(CMAKE_C_BYTE_ORDER "LITTLE_ENDIAN") +set(CMAKE_C_LIBRARY_ARCHITECTURE "") + +if(CMAKE_C_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_C_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}") +endif() + +if(CMAKE_C_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "") +endif() + +set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_C_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/lib/clang/17/include;C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/include/aarch64-linux-android;C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/include") +set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "-l:libunwind.a;dl;c;-l:libunwind.a;dl") +set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/lib/clang/17/lib/linux/aarch64;C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/aarch64-linux-android/21;C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/aarch64-linux-android;C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib") +set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeCXXCompiler.cmake b/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeCXXCompiler.cmake new file mode 100644 index 0000000..a9cdb9f --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeCXXCompiler.cmake @@ -0,0 +1,83 @@ +set(CMAKE_CXX_COMPILER "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/clang++.exe") +set(CMAKE_CXX_COMPILER_ARG1 "") +set(CMAKE_CXX_COMPILER_ID "Clang") +set(CMAKE_CXX_COMPILER_VERSION "17.0.2") +set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") +set(CMAKE_CXX_COMPILER_WRAPPER "") +set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "17") +set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON") +set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23") +set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") +set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") +set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") +set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") +set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20") +set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23") + +set(CMAKE_CXX_PLATFORM_ID "Linux") +set(CMAKE_CXX_SIMULATE_ID "") +set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU") +set(CMAKE_CXX_SIMULATE_VERSION "") + + + + +set(CMAKE_AR "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-ar.exe") +set(CMAKE_CXX_COMPILER_AR "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-ar.exe") +set(CMAKE_RANLIB "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-ranlib.exe") +set(CMAKE_CXX_COMPILER_RANLIB "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-ranlib.exe") +set(CMAKE_LINKER "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/ld.lld.exe") +set(CMAKE_MT "") +set(CMAKE_COMPILER_IS_GNUCXX ) +set(CMAKE_CXX_COMPILER_LOADED 1) +set(CMAKE_CXX_COMPILER_WORKS TRUE) +set(CMAKE_CXX_ABI_COMPILED TRUE) + +set(CMAKE_CXX_COMPILER_ENV_VAR "CXX") + +set(CMAKE_CXX_COMPILER_ID_RUN 1) +set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm) +set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) + +foreach (lang C OBJC OBJCXX) + if (CMAKE_${lang}_COMPILER_ID_RUN) + foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS) + list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension}) + endforeach() + endif() +endforeach() + +set(CMAKE_CXX_LINKER_PREFERENCE 30) +set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) + +# Save compiler ABI information. +set(CMAKE_CXX_SIZEOF_DATA_PTR "8") +set(CMAKE_CXX_COMPILER_ABI "ELF") +set(CMAKE_CXX_BYTE_ORDER "LITTLE_ENDIAN") +set(CMAKE_CXX_LIBRARY_ARCHITECTURE "") + +if(CMAKE_CXX_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_CXX_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") +endif() + +if(CMAKE_CXX_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "") +endif() + +set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/include/c++/v1;C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/lib/clang/17/include;C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/include/aarch64-linux-android;C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/include") +set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "c++;m;-l:libunwind.a;dl;c;-l:libunwind.a;dl") +set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/lib/clang/17/lib/linux/aarch64;C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/aarch64-linux-android/21;C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/aarch64-linux-android;C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib") +set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_C.bin b/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_C.bin new file mode 100644 index 0000000000000000000000000000000000000000..020b7c1d2cf7ab27ff77b461d5e8dcfd1bfff709 GIT binary patch literal 8040 zcmd5>eQX@X6@RJNV)%CPN;vuADSCR4{y;SNkWe{{k)>DrI;Bm1XHAnqTNq?qfe@uTP2gH=^r~l%bG%p|I=dv{5d6|-S zm&wTq(u2}brqltM|D4(*N{v@f= zaPGxS;~6QNj$JT;etW04-$e3}QzCI_V6fNgzs(EZULCg z+;Aj2iF6lI7ikjdw~+Ghq}(wL%3XVv&ZaK7jPx)sU`}I( zbWgfDKHjva^-=W^Y?N$Lm>{g@%$tf^<3sV36*_lI8D z1E*i!i+MQ&OX$`m*X|3wvibtN^zNPNWAEMrOSs3*;W2h@J7%2AbAR3kORt5x9&cDm zuN?SJdgZ$BrB^Qe7#@401y)8MPOl6CJg8&4Cjox?RtO#kwd>XALi($Oy@q_37J3C% zS6hjyyOq`i_PKfwytLW{=a)O-{A&?dS#5#yuXmn4PdfRFtF4WNLh3@x@c9O%F>=8t z>%O=;)woz#*i1G~c3a3cYjYXfM?aRx*SGF`_A#92b8U~OS6WA}T+(n1yZ29yJ1`^Mx-6BM@oDb|5M6w zZHdI~|LZ+(d{0R^`}JGNYf_)jlglNKzk^89E#PydGa%=A<@1I24BNjY=i`3a-+PjO zNb>k=^8Cw|KOV9yCyuGS)3okHqAxkv+nYM5eXcTVW0|#!E|Q{)Oi!suSk|aore>El zCz%=;NDf#Bv|Q0B&ua6QQ!OB#7>LHBy;^tPbt~1OSj_Nl%;>Cb&lat!J?G@CXwELh zT-z?@@&;YD#raZC#j$U-a;|0$&ZGusl4hd6zrW8s6i@V8hjQ`3E_&g~bYz#HYjb8Jh85;fmD)yV$tlH9s<#u&x*Sw!=y;E>> zX-3qgrlZ)X+D@8Ke-X=YUDF;UO*A6FnVv*N*nZMktZg4IWH+XU25&n4QHo_^gQ;l}ap{TUdytt?b-vEO|%5?KQHA znBkQAlRfh(!|VG9+DJE!mntwgVHWb^TP+5b9KDRC%j}T9xp&?f(dOT_0|)zb+hkI((r1 z=UhEltM06ShSBZyzX*rwBiE@7I4RiPrb%=Je_ss>n*`9Z_C3$?Hms=70)LSEIxPiz z1Z@Mpk6Hf;QE6YhhZ*F@e8zufQ2Rc$f@jQ+A!2muhaZSbpg2kdD@v{N_yCl9Gz`udxQPmdE zv)T0tlN}S`9A0n=(wfW(=?%UXY-6p@|4@AE$YgdF|vG@^Y1)6|QdyX%kmpC8n z8uFC>gqigDJm)Wn3qslieA5UP3%Z5yWL|4uuvlCal_uc!8UMG$xqZg}D=Hk#F^az6 zJZ$`e#d|^Eoj{kQKScz-as9LkeB=7LRNy@8wU#;s-Ui(qAWM-Z@ODTA@GAx00pkJu zvxqBD>sQ{RkP`YeoO>4UJ?bUE??8-y9`)OCKk~a9ub(vHZTQFgk=Mx=1zy{aj9UV) z?MKF4**>2`6k|CK}_Tbx2)LblA7fTQ&RED+d7~S#Myiv_V)GNuxMclE91~njSl_GZG*e2eS5Vi99 zjAN86J#V5Wa}dP`4%8B=7005d58ZGaV-e8tT73o?#<2sVRLG$lHd`1?g%A2Mb`&l2SJ`-}&rDN-4vA`us*&qUXcOphEB4>uUOph{BC z6-G8w(_@**%yAjv=!gW^Bgn5w#oVrc4f9^Y^gK={22A?x4#qh+A@YGt*UhReh3lWr zHbioI`sT@zW0}MLUG>rHxb5(qp&QIgTfLV{vC!o@QF?Ss@r z8HFfp&+jcvX@32Q=Fp#t$WWVX&+kc0PfBI(m;LAYpO^NdQjg!0m~#JQ|0&Et`_qW| z*DuEzOtUEWC-#%EGg$H4Z}tBT*5`3B|J{H+$C*q|v!bNzKf`CSLjChP<9nJZecJj{ zuzxR3tJ(9r5Yu75G1glH{7)ptVJgQ1{C}dLe$fA?(Vk*Gw&(Y>I2{U@KFIz>)M>%Y z_8jjIe@Oe6(U#_p?K%G8|Bvzi!T3Fs{b#>^kG3?$Y|sCX(4>KeGJj%w#+I?-x99iH zVQJsZijoHHUq_rU?w`MF`2T`I{UHB0w59&znEi?EZw;&;W|>l4&2_*1%kshX5kI(z zZWxU>v$yF`#H%7Xue(H#&5SRi@uOrR#t x(W1okklb)xSU-T7=bz87INI}XNBW$`WuQG8=rF*-&=&Uh$pH9w0fPVw{{w~99moIx literal 0 HcmV?d00001 diff --git a/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_CXX.bin b/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_CXX.bin new file mode 100644 index 0000000000000000000000000000000000000000..b1ef4158415b6f30b4403071613767efdce992a6 GIT binary patch literal 8208 zcmd5>YiwNA5uUy4^&^}38Jd70-hiP_iTCA=y*4e_@j7@@+qfpEfwaBe-Fs~>+1xv!^1`z~(kng(8RUxQ?OZ@M2yxhic>s1m zEy^_tbLs~jhP4ibwe`H7aW8VRD{{S?U%`69#Y5uk8f&a);W|ea4$Y2CcI2zz;ccwP z{2==w+--NP!O=gqYdv=)02!CqQFGMaH2X8n{Rm&?0SOoTskh1o&C8|ye1#2UUMAVD zlPAZ`ceA6ysSlzrp&j}8zY^I~I>z(n<}YxA!ll1ZX|Yr`^PzOM5Xxl>hfTXTMyfQN z2Qkrjh6;vlWeuQjZ%2C#WS^KKkv)C=QKyej(g^vz6%(!3TPN;-Uw{9hXWzNe`}~VP z`uDNlJ=WJ6e`(zRaqZH0S}&roWdj^Q!#|n_4_t+umoH?t(1+FFTFi;4UGj-I=~WZq zl!%H{dvEGOPD4I}X%JHlIya4cJMuE}81jda%lGo!GX7UOR=y*{MyKa4t{%={i_?)7$ZM z{ga86T~8%e_Mc3wy!}Hs`EC=e?0qJ&audL#I<`9v@bmLtcp9{h*UxzM*9m(Q<&J>& z9IUQ36F+;Ur@06FTzvpuUG0F=%k6ObO+T!xHo@t4+K-+low@f`n;Wv(_}fi`r|Ufp z{^7*oSewh(KKijlzVh_I`FnqP66gC=%X5j9=Cju?1#m3n zlO$F564w3EsZ;V#;Wz`bx58{M=g2hgKUtsBuiPD@tSE;ety3bo ztKa8(Tyu(Oy%YW8BWHZS;Ck`vw=4&g7T$;K=uVdLyC`C}K+cx+0ODSbsDc-yOKIIBQ{^wsK`;xiSjf`5a;C zRLL{~Rv}==;(dLwK66(flS>t514m4|ltnz!7YqlZfv&l7xmX$qg;LIq8l1JP*_>Ij z=Ix9b%vkwQ*|Kt(xfET-xg+`RqHW!6X37DheM(tfxy^Ug69NJ^A^wbjcq<}WAnE5#uiU2eh4iF z-o|9xfd3}Hw!MIdsn_F4w&5Ya6OwIxxTJkIU;zWVPSm^E??N{#n*eD#f7!AvR~fC8o3jXV~utP0>fDF z)HHa{@Gd!vnD;gWYYt&{1^5miQwyu!Q+E<8>+7^f5xN(XXG??kb+(%!yN3`|c1_@; zo2zyd_kNwG<+1z>8MHQd-)Dnwtutr_?c1pEDk<%5@NVTj{>D0Q8lk@0e~Lw^OZW;5qA40?9 zs5N}>;INf1W^<-Jv^N>d6pN58%vkzbq<~>lxtud~vtVRX1*aC{gbUQt*;&!C&9BdA zZSzyUPt-W8qA1Ys8jJS2M_)B8s_%E#ub&-VADWsPx>LVBdDn=3;LgbrU5AuCo1wNN zPTQ^?rnT3T=!c5Q4hGO?b%F$Fh5=zNfq|*YQPPW9@#Q|2f~T+UKRX zd#$*w_60#V)xPNS*82Br^*Alq+Qy{%g1@c0H8v}tsq(%c^(|P?pb7rWhe?7fu2HXv&2RQyvB4$O#Pq_5&V|>|#{{+XQX-&|@afZZg zFEjpm#w8y54dNbcZGI$ivl6dtD<8lQ_oV(1p z+%y4{iM-?wwj-B|{K9EQ9IDzUiRcQ(rF{p*-^Pqf`+|2cF6|56sc?xZ1qIlpaET_@ z@Swum@zrcS^(g$pbro0mh3o1I3YV|3*4D7XTOclhI#-P*s!jukBO8A5r+)J{9~4 zZeNZlihYQlRJc>F&VRoF4naK3O}hxef>kzy5&&ln6VG@Dn=Q--)AQM!(T#6SL1VE{ zTFgU`P!6Nl3A*iwbE(oC1f860%81)$E=3J+shGnqY|Fri1cK(AK4Yiyraot&rbrOP z2N%>*szuwRrx-nD+o?rze62i#g5cOeDxb}u8x~q(=2)joC7@V7uSRCj9jK?$Y1=%4 zgHjS*t5R0}Ixs%JnGnQ5ms4rvb6Dk+91a<~oHl2(grax=cKk)u+)5^ZB%i0pA7z z8afuKm+o#dBWp^f{b%3}E$d*ccY!#PP$Pt{WwbE7w2y>4`fh zhQ^ch)8cXvZbv+4=w@?hqj!C-R=QFqPVW`;wjlQIcV)S6NtZ~@F-HQRc%j-}?or{L zqR8BBA4VL1(^dMHcZ~{XJMxppDd(2FchI{Ay%~uA@~$A9uic8@q9=R=?dc6dWO;`W z9>97c>EG=?{YLs{mA$;H2$vg1?8JZ7C}v;7L?Ms#FYhqI16W5S_HJ%q9fdAp|31et z!fAf0iRQ4Hawt%nVlVGn!lzkT`W63W{*SQzUe=R$E#dTiiOBvlnB4Y95vyLmXSgHb zX{@g%@l&v4Sg5w&=>IUHFXIsTF_*o>pTdudB6IOy;1gJ&{$-uXJuRHxtEN)7(}YRv<#)j3 ze`)_3+S1&Ky~ID$Y`@I&C-17_zxeeBv?Ud>m;aXxvOxgrs!8kxTgF1Qy}Y|lvwfE+ zGI!g*gE(Q*zx>{j|6jWG-SS`2miiB4swT0&o5wG8A`1T(R!CWNh`+}VzYkY~Sa$3B z5O8B;az7o)NKRbslqq-Xwy?e1|DQQOJYm|kVZ~nf)oj1kgHvjuMTPV^QFO!$`lmN6 xR~JfikQd0~yx}^iEle{1a(;!;UcMc7q1YQ7Xz#s5{{tJ?Uqy!<()ml+{|8DOSpNV3 literal 0 HcmV?d00001 diff --git a/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeSystem.cmake b/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeSystem.cmake new file mode 100644 index 0000000..d3ec303 --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeSystem.cmake @@ -0,0 +1,15 @@ +set(CMAKE_HOST_SYSTEM "Windows-10.0.19045") +set(CMAKE_HOST_SYSTEM_NAME "Windows") +set(CMAKE_HOST_SYSTEM_VERSION "10.0.19045") +set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64") + +include("C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/android.toolchain.cmake") + +set(CMAKE_SYSTEM "Android-1") +set(CMAKE_SYSTEM_NAME "Android") +set(CMAKE_SYSTEM_VERSION "1") +set(CMAKE_SYSTEM_PROCESSOR "aarch64") + +set(CMAKE_CROSSCOMPILING "TRUE") + +set(CMAKE_SYSTEM_LOADED 1) diff --git a/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdC/CMakeCCompilerId.c b/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdC/CMakeCCompilerId.c new file mode 100644 index 0000000..41b99d7 --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdC/CMakeCCompilerId.c @@ -0,0 +1,803 @@ +#ifdef __cplusplus +# error "A C++ compiler has been selected for C." +#endif + +#if defined(__18CXX) +# define ID_VOID_MAIN +#endif +#if defined(__CLASSIC_C__) +/* cv-qualifiers did not exist in K&R C */ +# define const +# define volatile +#endif + +#if !defined(__has_include) +/* If the compiler does not have __has_include, pretend the answer is + always no. */ +# define __has_include(x) 0 +#endif + + +/* Version number components: V=Version, R=Revision, P=Patch + Version date components: YYYY=Year, MM=Month, DD=Day */ + +#if defined(__INTEL_COMPILER) || defined(__ICC) +# define COMPILER_ID "Intel" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# if defined(__GNUC__) +# define SIMULATE_ID "GNU" +# endif + /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, + except that a few beta releases use the old format with V=2021. */ +# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) +# if defined(__INTEL_COMPILER_UPDATE) +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) +# else +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) +# endif +# else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) + /* The third version component from --version is an update index, + but no macro is provided for it. */ +# define COMPILER_VERSION_PATCH DEC(0) +# endif +# if defined(__INTEL_COMPILER_BUILD_DATE) + /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ +# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) +# endif +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) +# define COMPILER_ID "IntelLLVM" +#if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +#endif +#if defined(__GNUC__) +# define SIMULATE_ID "GNU" +#endif +/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and + * later. Look for 6 digit vs. 8 digit version number to decide encoding. + * VVVV is no smaller than the current year when a version is released. + */ +#if __INTEL_LLVM_COMPILER < 1000000L +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) +#else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) +#endif +#if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +#endif +#if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +#elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +#endif +#if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +#endif +#if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +#endif + +#elif defined(__PATHCC__) +# define COMPILER_ID "PathScale" +# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) +# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) +# if defined(__PATHCC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) +# endif + +#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) +# define COMPILER_ID "Embarcadero" +# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_C) +# define COMPILER_ID "SunPro" +# if __SUNPRO_C >= 0x5100 + /* __SUNPRO_C = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) +# endif + +#elif defined(__HP_cc) +# define COMPILER_ID "HP" + /* __HP_cc = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100) + +#elif defined(__DECC) +# define COMPILER_ID "Compaq" + /* __DECC_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000) + +#elif defined(__IBMC__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__ibmxl__) && defined(__clang__) +# define COMPILER_ID "XLClang" +# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) +# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) +# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) + + +#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800 +# define COMPILER_ID "XL" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__NVCOMPILER) +# define COMPILER_ID "NVHPC" +# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) +# if defined(__NVCOMPILER_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) +# endif + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__CLANG_FUJITSU) +# define COMPILER_ID "FujitsuClang" +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(__FUJITSU) +# define COMPILER_ID "Fujitsu" +# if defined(__FCC_version__) +# define COMPILER_VERSION __FCC_version__ +# elif defined(__FCC_major__) +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# endif +# if defined(__fcc_version) +# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) +# elif defined(__FCC_VERSION) +# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) +# endif + + +#elif defined(__ghs__) +# define COMPILER_ID "GHS" +/* __GHS_VERSION_NUMBER = VVVVRP */ +# ifdef __GHS_VERSION_NUMBER +# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) +# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) +# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) +# endif + +#elif defined(__TINYC__) +# define COMPILER_ID "TinyCC" + +#elif defined(__BCC__) +# define COMPILER_ID "Bruce" + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__ARMCC_VERSION) && !defined(__clang__) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) +# define COMPILER_ID "ARMClang" + # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) + +#elif defined(__clang__) +# define COMPILER_ID "Clang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__GNUC__) +# define COMPILER_ID "GNU" +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# if defined(__GNUC_MINOR__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) +# define COMPILER_ID "ADSP" +#if defined(__VISUALDSPVERSION__) + /* __VISUALDSPVERSION__ = 0xVVRRPP00 */ +# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24) +# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF) +#endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# define COMPILER_ID "IAR" +# if defined(__VER__) && defined(__ICCARM__) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) +# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) +# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) +# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) +# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# endif + +#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC) +# define COMPILER_ID "SDCC" +# if defined(__SDCC_VERSION_MAJOR) +# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR) +# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR) +# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH) +# else + /* SDCC = VRP */ +# define COMPILER_VERSION_MAJOR DEC(SDCC/100) +# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10) +# define COMPILER_VERSION_PATCH DEC(SDCC % 10) +# endif + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; +#ifdef SIMULATE_ID +char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; +#endif + +#ifdef __QNXNTO__ +char const* qnxnto = "INFO" ":" "qnxnto[]"; +#endif + +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) +char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; +#endif + +#define STRINGIFY_HELPER(X) #X +#define STRINGIFY(X) STRINGIFY_HELPER(X) + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__MSYS__) +# define PLATFORM_ID "MSYS" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU__) +# define PLATFORM_ID "Haiku" + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#elif defined(__WATCOMC__) +# if defined(__LINUX__) +# define PLATFORM_ID "Linux" + +# elif defined(__DOS__) +# define PLATFORM_ID "DOS" + +# elif defined(__OS2__) +# define PLATFORM_ID "OS2" + +# elif defined(__WINDOWS__) +# define PLATFORM_ID "Windows3x" + +# elif defined(__VXWORKS__) +# define PLATFORM_ID "VxWorks" + +# else /* unknown platform */ +# define PLATFORM_ID +# endif + +#elif defined(__INTEGRITY) +# if defined(INT_178B) +# define PLATFORM_ID "Integrity178" + +# else /* regular Integrity */ +# define PLATFORM_ID "Integrity" +# endif + +#else /* unknown platform */ +# define PLATFORM_ID + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_ARM64EC) +# define ARCHITECTURE_ID "ARM64EC" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM64) +# define ARCHITECTURE_ID "ARM64" + +# elif defined(_M_ARM) +# if _M_ARM == 4 +# define ARCHITECTURE_ID "ARMV4I" +# elif _M_ARM == 5 +# define ARCHITECTURE_ID "ARMV5I" +# else +# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) +# endif + +# elif defined(_M_MIPS) +# define ARCHITECTURE_ID "MIPS" + +# elif defined(_M_SH) +# define ARCHITECTURE_ID "SHx" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__WATCOMC__) +# if defined(_M_I86) +# define ARCHITECTURE_ID "I86" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# if defined(__ICCARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__ICCRX__) +# define ARCHITECTURE_ID "RX" + +# elif defined(__ICCRH850__) +# define ARCHITECTURE_ID "RH850" + +# elif defined(__ICCRL78__) +# define ARCHITECTURE_ID "RL78" + +# elif defined(__ICCRISCV__) +# define ARCHITECTURE_ID "RISCV" + +# elif defined(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# elif defined(__ICC430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__ICCV850__) +# define ARCHITECTURE_ID "V850" + +# elif defined(__ICC8051__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__ICCSTM8__) +# define ARCHITECTURE_ID "STM8" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__ghs__) +# if defined(__PPC64__) +# define ARCHITECTURE_ID "PPC64" + +# elif defined(__ppc__) +# define ARCHITECTURE_ID "PPC" + +# elif defined(__ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__x86_64__) +# define ARCHITECTURE_ID "x64" + +# elif defined(__i386__) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__TI_COMPILER_VERSION__) +# if defined(__TI_ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__MSP430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__TMS320C28XX__) +# define ARCHITECTURE_ID "TMS320C28x" + +# elif defined(__TMS320C6X__) || defined(_TMS320C6X) +# define ARCHITECTURE_ID "TMS320C6x" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#else +# define ARCHITECTURE_ID +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number. */ +#ifdef COMPILER_VERSION +char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; + +/* Construct a string literal encoding the version number components. */ +#elif defined(COMPILER_VERSION_MAJOR) +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the internal version number. */ +#ifdef COMPILER_VERSION_INTERNAL +char const info_version_internal[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', + 'i','n','t','e','r','n','a','l','[', + COMPILER_VERSION_INTERNAL,']','\0'}; +#elif defined(COMPILER_VERSION_INTERNAL_STR) +char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + +#if !defined(__STDC__) && !defined(__clang__) +# if defined(_MSC_VER) || defined(__ibmxl__) || defined(__IBMC__) +# define C_VERSION "90" +# else +# define C_VERSION +# endif +#elif __STDC_VERSION__ > 201710L +# define C_VERSION "23" +#elif __STDC_VERSION__ >= 201710L +# define C_VERSION "17" +#elif __STDC_VERSION__ >= 201000L +# define C_VERSION "11" +#elif __STDC_VERSION__ >= 199901L +# define C_VERSION "99" +#else +# define C_VERSION "90" +#endif +const char* info_language_standard_default = + "INFO" ":" "standard_default[" C_VERSION "]"; + +const char* info_language_extensions_default = "INFO" ":" "extensions_default[" +/* !defined(_MSC_VER) to exclude Clang's MSVC compatibility mode. */ +#if (defined(__clang__) || defined(__GNUC__) || \ + defined(__TI_COMPILER_VERSION__)) && \ + !defined(__STRICT_ANSI__) && !defined(_MSC_VER) + "ON" +#else + "OFF" +#endif +"]"; + +/*--------------------------------------------------------------------------*/ + +#ifdef ID_VOID_MAIN +void main() {} +#else +# if defined(__CLASSIC_C__) +int main(argc, argv) int argc; char *argv[]; +# else +int main(int argc, char* argv[]) +# endif +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; + require += info_arch[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif +#ifdef COMPILER_VERSION_INTERNAL + require += info_version_internal[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) + require += info_cray[argc]; +#endif + require += info_language_standard_default[argc]; + require += info_language_extensions_default[argc]; + (void)argv; + return require; +} +#endif diff --git a/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdC/CMakeCCompilerId.o b/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdC/CMakeCCompilerId.o new file mode 100644 index 0000000000000000000000000000000000000000..54abf829a66bed2c96649cf7fb89d5e06786a545 GIT binary patch literal 5992 zcmd5=U2GiH6+W};-K@Q46UPk%9KzD3kRUw!8}Hh!z>!IULx`h5gn~(z@$T4OvOi{a z?3$=5sPIrKR3+k}ktzz}M-9qLTU9Nl1x4^c+6R7G2~i1Dcp^xBX;B4;s_8j*?%BC} zXIw>XA9|y`_nhy3_ndQo=Qt1VJ-9Do7{JAVUxTkP3b44zmnVfd3EPl)=}~y+(si)* z;RvjKl!PxXZG^Q1z^Q~W`NbzAkF53A>*b3ZC)W~2fAZpg(MPsCyKwq{W%EOf3*$e1 zK3aKq`p~|aiE6vKRBzbM>{P>QEgS~{E;TH7zU?$;57t}Ds}i)F>f)@FJFeBLSx&7| zv*)elhC7=p$sT*vwOgHfyVdFT%^W)JFC#YxL!oTdY8=F>YDU3aN7 zk;&jaAsgmGyS>n`JMCqsYMXfJGH$!ws4iOdR;JNdX^t*A?Fa0to34$|m&fOewcOa) zSfRE%o6Fm~tJ(45`0n|_Tp?>$?LsYI7|ZX1sXMI`_SBTTztc6d3R4rAqaD0YnQ}3k z-e1TZ_KY4e?`+TECFfu=*3weOtgfzRZnNi>7c#|@IX7?3~z7NNA zG6gfAH*=#4g;KU$w#uWmy5l~S@%>H#PQ!spWzUf#dyZA^n!a~$_6@5Hz#5N3k8cW>~+ZO*`EOj83JP=F8f1_zzyL}_^-(o+~UdASxdO0@Q?V@3s zt~P+gXgql!lE9eQU!c7iyZYd-mjWFW9RAbGbHY>*CtlRMzCA-87ku$#_Tb+YxOhW* z@Q%O}Js2sA0`CvtRe|FtLo44B_!Sxoa7^GE12_Ru7z*Hb3w{uv5%}f+-?Q_T0REKV z2k}P*z9qn475G&F+_R4#JFPSYKZyShd7G7e6z3PQAK-5Y{PpJ*|C7M|b!I$*_J_b< zXU2an_^bisQKxbge?#D}KQnd-++Tmjd1Z#t&y{3A7QT1eH9RZ(iLb6wQR2i`@q-GV zZ4z`?;j1`(NvV*1byb%<7`ABmV-hF+HBzSL`%bd>Bf|DKI$3JU!9*}naqVU!8{7(fZJG}37{;2Re zxKdBcmgdEKM7+F$lO0~){Ss$8PfFc;KfQCMp6BC=9d&briW!=$Eul?yZ4_rx8ivS%XVb?2WRE^VGo)r-bTXs z9cA7m3tCHeN-eLW^6$o9P{}Ck<6o87q{iDc-~oKk>2A_I`FqT7#}Cmt`RDJtH;VrL z^(6jIGA>~;hOo!*N0`2bUVh{IBQ6#8?`Z%Jqd;?-WI(oAnTl|n6hEyok7xWv#K^yT zr%{DRWT5)IIDX<#`6K?q;(tjJ*`FX|rR#4Z78d{QA@Nhz#p5~te;^j-|NLe8|7;!q z_lNi=NcTUpj{ggn>Hokw{#Qf%Q?{u4|JpkK-@Z)$lt+ZE|EUoFl*j1)$&GY{l3(7F z;E#PsNILf^M0Jda9eE&srFCj5oI!3_{AXqS7o{CK|CD>_@wHZ`+G)?*XPCa=keF#;IQ>O z<^B2I{kxvlkMb@a&-ZUg`e%FGUXcEO%7APsR<#VS>24 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_CC) +# define COMPILER_ID "SunPro" +# if __SUNPRO_CC >= 0x5100 + /* __SUNPRO_CC = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# endif + +#elif defined(__HP_aCC) +# define COMPILER_ID "HP" + /* __HP_aCC = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100) + +#elif defined(__DECCXX) +# define COMPILER_ID "Compaq" + /* __DECCXX_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000) + +#elif defined(__IBMCPP__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__ibmxl__) && defined(__clang__) +# define COMPILER_ID "XLClang" +# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) +# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) +# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) + + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800 +# define COMPILER_ID "XL" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__NVCOMPILER) +# define COMPILER_ID "NVHPC" +# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) +# if defined(__NVCOMPILER_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) +# endif + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__CLANG_FUJITSU) +# define COMPILER_ID "FujitsuClang" +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(__FUJITSU) +# define COMPILER_ID "Fujitsu" +# if defined(__FCC_version__) +# define COMPILER_VERSION __FCC_version__ +# elif defined(__FCC_major__) +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# endif +# if defined(__fcc_version) +# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) +# elif defined(__FCC_VERSION) +# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) +# endif + + +#elif defined(__ghs__) +# define COMPILER_ID "GHS" +/* __GHS_VERSION_NUMBER = VVVVRP */ +# ifdef __GHS_VERSION_NUMBER +# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) +# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) +# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) +# endif + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__ARMCC_VERSION) && !defined(__clang__) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) +# define COMPILER_ID "ARMClang" + # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) + +#elif defined(__clang__) +# define COMPILER_ID "Clang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__GNUC__) || defined(__GNUG__) +# define COMPILER_ID "GNU" +# if defined(__GNUC__) +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# else +# define COMPILER_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) +# define COMPILER_ID "ADSP" +#if defined(__VISUALDSPVERSION__) + /* __VISUALDSPVERSION__ = 0xVVRRPP00 */ +# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24) +# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF) +#endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# define COMPILER_ID "IAR" +# if defined(__VER__) && defined(__ICCARM__) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) +# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) +# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) +# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) +# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# endif + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; +#ifdef SIMULATE_ID +char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; +#endif + +#ifdef __QNXNTO__ +char const* qnxnto = "INFO" ":" "qnxnto[]"; +#endif + +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) +char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; +#endif + +#define STRINGIFY_HELPER(X) #X +#define STRINGIFY(X) STRINGIFY_HELPER(X) + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__MSYS__) +# define PLATFORM_ID "MSYS" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU__) +# define PLATFORM_ID "Haiku" + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#elif defined(__WATCOMC__) +# if defined(__LINUX__) +# define PLATFORM_ID "Linux" + +# elif defined(__DOS__) +# define PLATFORM_ID "DOS" + +# elif defined(__OS2__) +# define PLATFORM_ID "OS2" + +# elif defined(__WINDOWS__) +# define PLATFORM_ID "Windows3x" + +# elif defined(__VXWORKS__) +# define PLATFORM_ID "VxWorks" + +# else /* unknown platform */ +# define PLATFORM_ID +# endif + +#elif defined(__INTEGRITY) +# if defined(INT_178B) +# define PLATFORM_ID "Integrity178" + +# else /* regular Integrity */ +# define PLATFORM_ID "Integrity" +# endif + +#else /* unknown platform */ +# define PLATFORM_ID + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_ARM64EC) +# define ARCHITECTURE_ID "ARM64EC" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM64) +# define ARCHITECTURE_ID "ARM64" + +# elif defined(_M_ARM) +# if _M_ARM == 4 +# define ARCHITECTURE_ID "ARMV4I" +# elif _M_ARM == 5 +# define ARCHITECTURE_ID "ARMV5I" +# else +# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) +# endif + +# elif defined(_M_MIPS) +# define ARCHITECTURE_ID "MIPS" + +# elif defined(_M_SH) +# define ARCHITECTURE_ID "SHx" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__WATCOMC__) +# if defined(_M_I86) +# define ARCHITECTURE_ID "I86" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# if defined(__ICCARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__ICCRX__) +# define ARCHITECTURE_ID "RX" + +# elif defined(__ICCRH850__) +# define ARCHITECTURE_ID "RH850" + +# elif defined(__ICCRL78__) +# define ARCHITECTURE_ID "RL78" + +# elif defined(__ICCRISCV__) +# define ARCHITECTURE_ID "RISCV" + +# elif defined(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# elif defined(__ICC430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__ICCV850__) +# define ARCHITECTURE_ID "V850" + +# elif defined(__ICC8051__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__ICCSTM8__) +# define ARCHITECTURE_ID "STM8" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__ghs__) +# if defined(__PPC64__) +# define ARCHITECTURE_ID "PPC64" + +# elif defined(__ppc__) +# define ARCHITECTURE_ID "PPC" + +# elif defined(__ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__x86_64__) +# define ARCHITECTURE_ID "x64" + +# elif defined(__i386__) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__TI_COMPILER_VERSION__) +# if defined(__TI_ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__MSP430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__TMS320C28XX__) +# define ARCHITECTURE_ID "TMS320C28x" + +# elif defined(__TMS320C6X__) || defined(_TMS320C6X) +# define ARCHITECTURE_ID "TMS320C6x" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#else +# define ARCHITECTURE_ID +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number. */ +#ifdef COMPILER_VERSION +char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; + +/* Construct a string literal encoding the version number components. */ +#elif defined(COMPILER_VERSION_MAJOR) +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the internal version number. */ +#ifdef COMPILER_VERSION_INTERNAL +char const info_version_internal[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', + 'i','n','t','e','r','n','a','l','[', + COMPILER_VERSION_INTERNAL,']','\0'}; +#elif defined(COMPILER_VERSION_INTERNAL_STR) +char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + +#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) && _MSVC_LANG < 201403L +# if defined(__INTEL_CXX11_MODE__) +# if defined(__cpp_aggregate_nsdmi) +# define CXX_STD 201402L +# else +# define CXX_STD 201103L +# endif +# else +# define CXX_STD 199711L +# endif +#elif defined(_MSC_VER) && defined(_MSVC_LANG) +# define CXX_STD _MSVC_LANG +#else +# define CXX_STD __cplusplus +#endif + +const char* info_language_standard_default = "INFO" ":" "standard_default[" +#if CXX_STD > 202002L + "23" +#elif CXX_STD > 201703L + "20" +#elif CXX_STD >= 201703L + "17" +#elif CXX_STD >= 201402L + "14" +#elif CXX_STD >= 201103L + "11" +#else + "98" +#endif +"]"; + +const char* info_language_extensions_default = "INFO" ":" "extensions_default[" +/* !defined(_MSC_VER) to exclude Clang's MSVC compatibility mode. */ +#if (defined(__clang__) || defined(__GNUC__) || \ + defined(__TI_COMPILER_VERSION__)) && \ + !defined(__STRICT_ANSI__) && !defined(_MSC_VER) + "ON" +#else + "OFF" +#endif +"]"; + +/*--------------------------------------------------------------------------*/ + +int main(int argc, char* argv[]) +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif +#ifdef COMPILER_VERSION_INTERNAL + require += info_version_internal[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) + require += info_cray[argc]; +#endif + require += info_language_standard_default[argc]; + require += info_language_extensions_default[argc]; + (void)argv; + return require; +} diff --git a/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdCXX/CMakeCXXCompilerId.o b/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdCXX/CMakeCXXCompilerId.o new file mode 100644 index 0000000000000000000000000000000000000000..8c5d73c657965163327b97d2e7af9805b46fca70 GIT binary patch literal 6008 zcmd5=TWlQF8UAO->)2Um6UPKn9EC*$lvMTXHTF8GQb#5ir@1Ljq=1Q*+1;_dWp`&Y zJGKl$C2f&L*MX)EQistPI(?E^yMA`nnj;-)^J3f%ucbN-#P zXUCBCsVDL||Nouuzntrw%|i!{9*h|Va53Pw5NeD9EN=?sDIre5He{}T7hYby1y)`k zg_SoF@X6{%SQ!9#WWbpEN~k zUNcL7pE-W;#GZ=VXw~YDH#=RooAc*DfUUai&$(V>_GqoSxGX{2t1Qe)x$WD{s_j)v zRcFp#toyUs3EAT;`%bf6bDQl>--+Yr!pZsqsVk?_lH-x9*^DUJ2`dmX85VNqz!)}e zPmaXRQ9A0Qz@;ncSC1AhM3c zL}DL`0|gXkM!xnXwjSIl*y{s4K$}T`goSZ8_fKs#lLV3pz)&1w9ROfMp-Y7qa3l4J z@ehbCb!+5YTtPJURjiDMjX{$s=3$ijPGhwN;>WPTVPd+*I?=4dB?mZ@Bi+Gt%Z}#YSbsw&LK8k0NchDK;u&J%)kPWOqri zBQVS{2e^Jgp(!+6l8x2aWi%U#UBsQBs^a)!?^D>jA$D;{^cp6SgQ<=84L*m;Ak8)G zZ&p3GR!!~9X7h!~T(0<)RM~Dj)s)*zd4=M{L}9|&m8#GQO36K&qTOocQacxXzt!H8 zPUC?gAJ)9<&exr`yXaLM3r}C#cinnr!LBva_4-m{tmV1ibSi$TIyqOIoGVnbh4T7=j^UzCJU3h=kn!z#;G{@YA!#X+Xd6d?E9SQvuCH}QJ$$~c13dyVnJ*iz9>ivS1F zrk&1Pxtx_9o6k>VibcCPR;_vd{pm0=rU5t@4@#x|r%vs^tMrYTyAPC3-*xgpsRXs= zoLk}xC(!t&2{gK50*R(_(Vllo`c0#C_g*&vL9POn?mn8$iMWh3aHf&tgYC^%s9FNg zIlox*od5TArk%*29piyhU_7|p7#+F=Xlsk@jV*0`xHFlG{TeSREI-4)KCrMh4CCL) z4b;#c$3J7Ojf35|@nfRF%3O^b@pbDzjwin!-`4+~c=AX*aU`DX|GlD(_WuD9?6``J znYmsH*+Il3K{fQ&70nCIWM6{0~)(0Q1Ms$IR|MYT2IP1m#ghZn=YXCXL(1f_6 z1>#SHpI-cX0vDHVm(7C$7q?>-s-~Z0vFd!7d|iWV9mNZP%)MKxvwnvyc-w| zS`&u50o2Y3elLDj;G28+1ekC`5B|8|_u@Yi_?902w*`Jv4^Dsy_|4SHlHm8^ZzFHB zvhHG^Blbi58xC%4;fYt`Ujk8iIe|PDO2-( zDHC7CnL>xQ_jJ(h65#p{VEoJMK(>sJuYvRU`NYN0f4Dl~oDi<=YTn6=|3dn|QMQDu zIr5w^|9Q#VE?dg8a}y%Q>&5v?8XT7b`?1iD3hg&4jOQhOPXKrDLlUn^ocyc%=YoRM z{PP%oAaVA8M*8`w!dLgzWd$ccye@y#{8Xf$KP&ugQl{or1t&kejvq>#^Jz#wpDBEv zbAmR>ex6TW_uD1TeuDc2?{9^#?$5m%|4FGIR`}{UI;rumO5IlY>bkoc|1VPimWKaL z>Oa=-SEPPP!(Ws7Z#4X6sq>u2QCIWXtIVg0gH@$hT*)q%J!c6lA0J3S&&-B{Paey2 z>b6z2ecKXmqRuNT;u*Cjx93GBL$-adCqU=1x5gV)1`#P!M(Ds5>Gi(b0xFHi5>Gfi zzs^h2YP!B-9Xfty3^T3V*OQZYWU7JdwWcFk&O&LvDw`uwRN1WP>kJFMW~~6rz>Z~$KMQg-|M!OWdGG57;F`QNpOO2C zBWNmY#16vvzGdDN3tAiejt#-rQ2admD~7VUp}qv_-K5hI`a zg?J-5#qy38kX3H!JrrgCseG*dQg{g~w&T`Bf#r||a7n)qWv9;FC++q1`<1lU$Hn94 zSd(ZUIe+s0=5tE(N57`np7AjmpZ#(BR~i5349Hf`f9D$UFGs|u_oN=5-c$P6DO5}R O2PMGoWGBUq%KtwAcys&! literal 0 HcmV?d00001 diff --git a/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/CMakeFiles/TargetDirectories.txt b/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000..04292dc --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,2 @@ +C:/Users/840 G3/ProjectR.Mobile/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/CMakeFiles/edit_cache.dir +C:/Users/840 G3/ProjectR.Mobile/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/CMakeFiles/rebuild_cache.dir diff --git a/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/CMakeFiles/cmake.check_cache b/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/CMakeFiles/cmake.check_cache new file mode 100644 index 0000000..3dccd73 --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/CMakeFiles/cmake.check_cache @@ -0,0 +1 @@ +# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/CMakeFiles/rules.ninja b/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/CMakeFiles/rules.ninja new file mode 100644 index 0000000..33284b5 --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/CMakeFiles/rules.ninja @@ -0,0 +1,45 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Ninja" Generator, CMake Version 3.22 + +# This file contains all the rules used to get the outputs files +# built from the input files. +# It is included in the main 'build.ninja'. + +# ============================================================================= +# Project: Project +# Configurations: Debug +# ============================================================================= +# ============================================================================= + +############################################# +# Rule for running custom commands. + +rule CUSTOM_COMMAND + command = $COMMAND + description = $DESC + + +############################################# +# Rule for re-running cmake. + +rule RERUN_CMAKE + command = "C:\Users\840 G3\AppData\Local\Android\Sdk\cmake\3.22.1\bin\cmake.exe" --regenerate-during-build -S"C:\Users\840 G3\flutter\packages\flutter_tools\gradle\src\main\groovy" -B"C:\Users\840 G3\ProjectR.Mobile\android\app\.cxx\Debug\4z1t2ab1\arm64-v8a" + description = Re-running CMake... + generator = 1 + + +############################################# +# Rule for cleaning all built files. + +rule CLEAN + command = "C:\Users\840 G3\AppData\Local\Android\Sdk\cmake\3.22.1\bin\ninja.exe" $FILE_ARG -t clean $TARGETS + description = Cleaning all built files... + + +############################################# +# Rule for printing all primary targets available. + +rule HELP + command = "C:\Users\840 G3\AppData\Local\Android\Sdk\cmake\3.22.1\bin\ninja.exe" -t targets + description = All primary targets available: + diff --git a/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/additional_project_files.txt b/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/additional_project_files.txt new file mode 100644 index 0000000..e69de29 diff --git a/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/android_gradle_build.json b/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/android_gradle_build.json new file mode 100644 index 0000000..a5e0931 --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/android_gradle_build.json @@ -0,0 +1,28 @@ +{ + "buildFiles": [ + "C:\\Users\\840 G3\\flutter\\packages\\flutter_tools\\gradle\\src\\main\\groovy\\CMakeLists.txt" + ], + "cleanCommandsComponents": [ + [ + "C:\\Users\\840 G3\\AppData\\Local\\Android\\sdk\\cmake\\3.22.1\\bin\\ninja.exe", + "-C", + "C:\\Users\\840 G3\\ProjectR.Mobile\\android\\app\\.cxx\\Debug\\4z1t2ab1\\arm64-v8a", + "clean" + ] + ], + "buildTargetsCommandComponents": [ + "C:\\Users\\840 G3\\AppData\\Local\\Android\\sdk\\cmake\\3.22.1\\bin\\ninja.exe", + "-C", + "C:\\Users\\840 G3\\ProjectR.Mobile\\android\\app\\.cxx\\Debug\\4z1t2ab1\\arm64-v8a", + "{LIST_OF_TARGETS_TO_BUILD}" + ], + "libraries": {}, + "toolchains": { + "toolchain": { + "cCompilerExecutable": "C:\\Users\\840 G3\\AppData\\Local\\Android\\Sdk\\ndk\\26.3.11579264\\toolchains\\llvm\\prebuilt\\windows-x86_64\\bin\\clang.exe", + "cppCompilerExecutable": "C:\\Users\\840 G3\\AppData\\Local\\Android\\Sdk\\ndk\\26.3.11579264\\toolchains\\llvm\\prebuilt\\windows-x86_64\\bin\\clang++.exe" + } + }, + "cFileExtensions": [], + "cppFileExtensions": [] +} \ No newline at end of file diff --git a/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/android_gradle_build_mini.json b/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/android_gradle_build_mini.json new file mode 100644 index 0000000..b278e5c --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/android_gradle_build_mini.json @@ -0,0 +1,20 @@ +{ + "buildFiles": [ + "C:\\Users\\840 G3\\flutter\\packages\\flutter_tools\\gradle\\src\\main\\groovy\\CMakeLists.txt" + ], + "cleanCommandsComponents": [ + [ + "C:\\Users\\840 G3\\AppData\\Local\\Android\\sdk\\cmake\\3.22.1\\bin\\ninja.exe", + "-C", + "C:\\Users\\840 G3\\ProjectR.Mobile\\android\\app\\.cxx\\Debug\\4z1t2ab1\\arm64-v8a", + "clean" + ] + ], + "buildTargetsCommandComponents": [ + "C:\\Users\\840 G3\\AppData\\Local\\Android\\sdk\\cmake\\3.22.1\\bin\\ninja.exe", + "-C", + "C:\\Users\\840 G3\\ProjectR.Mobile\\android\\app\\.cxx\\Debug\\4z1t2ab1\\arm64-v8a", + "{LIST_OF_TARGETS_TO_BUILD}" + ], + "libraries": {} +} \ No newline at end of file diff --git a/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/build.ninja b/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/build.ninja new file mode 100644 index 0000000..ab8886b --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/build.ninja @@ -0,0 +1,111 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Ninja" Generator, CMake Version 3.22 + +# This file contains all the build statements describing the +# compilation DAG. + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# +# Which is the root file. +# ============================================================================= + +# ============================================================================= +# Project: Project +# Configurations: Debug +# ============================================================================= + +############################################# +# Minimal version of Ninja required by this file + +ninja_required_version = 1.5 + + +############################################# +# Set configuration variable for custom commands. + +CONFIGURATION = Debug +# ============================================================================= +# Include auxiliary files. + + +############################################# +# Include rules file. + +include CMakeFiles/rules.ninja + +# ============================================================================= + +############################################# +# Logical path to working directory; prefix for absolute paths. + +cmake_ninja_workdir = C$:/Users/840$ G3/ProjectR.Mobile/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/ + +############################################# +# Utility command for edit_cache + +build CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D "C:\Users\840 G3\ProjectR.Mobile\android\app\.cxx\Debug\4z1t2ab1\arm64-v8a" && "C:\Users\840 G3\AppData\Local\Android\Sdk\cmake\3.22.1\bin\cmake.exe" -E echo "No interactive CMake dialog available."" + DESC = No interactive CMake dialog available... + restat = 1 + +build edit_cache: phony CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D "C:\Users\840 G3\ProjectR.Mobile\android\app\.cxx\Debug\4z1t2ab1\arm64-v8a" && "C:\Users\840 G3\AppData\Local\Android\Sdk\cmake\3.22.1\bin\cmake.exe" --regenerate-during-build -S"C:\Users\840 G3\flutter\packages\flutter_tools\gradle\src\main\groovy" -B"C:\Users\840 G3\ProjectR.Mobile\android\app\.cxx\Debug\4z1t2ab1\arm64-v8a"" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build rebuild_cache: phony CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Target aliases. + +# ============================================================================= +# Folder targets. + +# ============================================================================= + +############################################# +# Folder: C:/Users/840 G3/ProjectR.Mobile/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a + +build all: phony + +# ============================================================================= +# Built-in targets + + +############################################# +# Re-run CMake if any of its inputs changed. + +build build.ninja: RERUN_CMAKE | C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/android-legacy.toolchain.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/android.toolchain.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/flags.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/hooks/pre/Android-Clang.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/hooks/pre/Android-Determine.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/hooks/pre/Android-Initialize.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/hooks/pre/Android.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/hooks/pre/Determine-Compiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/platforms.cmake C$:/Users/840$ G3/flutter/packages/flutter_tools/gradle/src/main/groovy/CMakeLists.txt CMakeCache.txt CMakeFiles/3.22.1-g37088a8-dirty/CMakeCCompiler.cmake CMakeFiles/3.22.1-g37088a8-dirty/CMakeCXXCompiler.cmake CMakeFiles/3.22.1-g37088a8-dirty/CMakeSystem.cmake + pool = console + + +############################################# +# A missing CMake input file is not an error. + +build C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/android-legacy.toolchain.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/android.toolchain.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/flags.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/hooks/pre/Android-Clang.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/hooks/pre/Android-Determine.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/hooks/pre/Android-Initialize.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/hooks/pre/Android.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/hooks/pre/Determine-Compiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/platforms.cmake C$:/Users/840$ G3/flutter/packages/flutter_tools/gradle/src/main/groovy/CMakeLists.txt CMakeCache.txt CMakeFiles/3.22.1-g37088a8-dirty/CMakeCCompiler.cmake CMakeFiles/3.22.1-g37088a8-dirty/CMakeCXXCompiler.cmake CMakeFiles/3.22.1-g37088a8-dirty/CMakeSystem.cmake: phony + + +############################################# +# Clean all the built files. + +build clean: CLEAN + + +############################################# +# Print all primary targets available. + +build help: HELP + + +############################################# +# Make the all target the default. + +default all diff --git a/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/build_file_index.txt b/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/build_file_index.txt new file mode 100644 index 0000000..dac0edd --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/build_file_index.txt @@ -0,0 +1 @@ +C:\Users\840 G3\flutter\packages\flutter_tools\gradle\src\main\groovy\CMakeLists.txt \ No newline at end of file diff --git a/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/cmake_install.cmake b/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/cmake_install.cmake new file mode 100644 index 0000000..6b27ad1 --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/cmake_install.cmake @@ -0,0 +1,54 @@ +# Install script for directory: C:/Users/840 G3/flutter/packages/flutter_tools/gradle/src/main/groovy + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Project") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Debug") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "0") +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-objdump.exe") +endif() + +if(CMAKE_INSTALL_COMPONENT) + set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") +else() + set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +file(WRITE "C:/Users/840 G3/ProjectR.Mobile/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") diff --git a/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/configure_fingerprint.bin b/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/configure_fingerprint.bin new file mode 100644 index 0000000..322b53f --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/configure_fingerprint.bin @@ -0,0 +1,28 @@ +C/C++ Structured Logj +h +fC:\Users\840 G3\ProjectR.Mobile\android\app\.cxx\Debug\4z1t2ab1\arm64-v8a\additional_project_files.txtC +A +?com.android.build.gradle.internal.cxx.io.EncodedFileFingerPrint  є2  2g +e +cC:\Users\840 G3\ProjectR.Mobile\android\app\.cxx\Debug\4z1t2ab1\arm64-v8a\android_gradle_build.json  є2 2l +j +hC:\Users\840 G3\ProjectR.Mobile\android\app\.cxx\Debug\4z1t2ab1\arm64-v8a\android_gradle_build_mini.json  є2 2Y +W +UC:\Users\840 G3\ProjectR.Mobile\android\app\.cxx\Debug\4z1t2ab1\arm64-v8a\build.ninja  є2 2] +[ +YC:\Users\840 G3\ProjectR.Mobile\android\app\.cxx\Debug\4z1t2ab1\arm64-v8a\build.ninja.txt  є2b +` +^C:\Users\840 G3\ProjectR.Mobile\android\app\.cxx\Debug\4z1t2ab1\arm64-v8a\build_file_index.txt  є2 T 2c +a +_C:\Users\840 G3\ProjectR.Mobile\android\app\.cxx\Debug\4z1t2ab1\arm64-v8a\compile_commands.json  є2g +e +cC:\Users\840 G3\ProjectR.Mobile\android\app\.cxx\Debug\4z1t2ab1\arm64-v8a\compile_commands.json.bin  є2 m +k +iC:\Users\840 G3\ProjectR.Mobile\android\app\.cxx\Debug\4z1t2ab1\arm64-v8a\metadata_generation_command.txt  є2 + 2` +^ +\C:\Users\840 G3\ProjectR.Mobile\android\app\.cxx\Debug\4z1t2ab1\arm64-v8a\prefab_config.json  є2  ( 2e +c +aC:\Users\840 G3\ProjectR.Mobile\android\app\.cxx\Debug\4z1t2ab1\arm64-v8a\symbol_folder_index.txt  є2  X 2X +V +TC:\Users\840 G3\flutter\packages\flutter_tools\gradle\src\main\groovy\CMakeLists.txt  є2  2 \ No newline at end of file diff --git a/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/metadata_generation_command.txt b/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/metadata_generation_command.txt new file mode 100644 index 0000000..ebed8c2 --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/metadata_generation_command.txt @@ -0,0 +1,20 @@ + -HC:\Users\840 G3\flutter\packages\flutter_tools\gradle\src\main\groovy +-DCMAKE_SYSTEM_NAME=Android +-DCMAKE_EXPORT_COMPILE_COMMANDS=ON +-DCMAKE_SYSTEM_VERSION=21 +-DANDROID_PLATFORM=android-21 +-DANDROID_ABI=arm64-v8a +-DCMAKE_ANDROID_ARCH_ABI=arm64-v8a +-DANDROID_NDK=C:\Users\840 G3\AppData\Local\Android\sdk\ndk\26.3.11579264 +-DCMAKE_ANDROID_NDK=C:\Users\840 G3\AppData\Local\Android\sdk\ndk\26.3.11579264 +-DCMAKE_TOOLCHAIN_FILE=C:\Users\840 G3\AppData\Local\Android\sdk\ndk\26.3.11579264\build\cmake\android.toolchain.cmake +-DCMAKE_MAKE_PROGRAM=C:\Users\840 G3\AppData\Local\Android\sdk\cmake\3.22.1\bin\ninja.exe +-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=C:\Users\840 G3\ProjectR.Mobile\build\app\intermediates\cxx\Debug\4z1t2ab1\obj\arm64-v8a +-DCMAKE_RUNTIME_OUTPUT_DIRECTORY=C:\Users\840 G3\ProjectR.Mobile\build\app\intermediates\cxx\Debug\4z1t2ab1\obj\arm64-v8a +-DCMAKE_BUILD_TYPE=Debug +-BC:\Users\840 G3\ProjectR.Mobile\android\app\.cxx\Debug\4z1t2ab1\arm64-v8a +-GNinja +-Wno-dev +--no-warn-unused-cli + Build command args: [] + Version: 2 \ No newline at end of file diff --git a/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/prefab_config.json b/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/prefab_config.json new file mode 100644 index 0000000..e799de8 --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/prefab_config.json @@ -0,0 +1,4 @@ +{ + "enabled": false, + "packages": [] +} \ No newline at end of file diff --git a/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/symbol_folder_index.txt b/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/symbol_folder_index.txt new file mode 100644 index 0000000..6f8eb43 --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/arm64-v8a/symbol_folder_index.txt @@ -0,0 +1 @@ +C:\Users\840 G3\ProjectR.Mobile\build\app\intermediates\cxx\Debug\4z1t2ab1\obj\arm64-v8a \ No newline at end of file diff --git a/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/.cmake/api/v1/query/client-agp/cache-v2 b/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/.cmake/api/v1/query/client-agp/cache-v2 new file mode 100644 index 0000000..e69de29 diff --git a/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/.cmake/api/v1/query/client-agp/cmakeFiles-v1 b/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/.cmake/api/v1/query/client-agp/cmakeFiles-v1 new file mode 100644 index 0000000..e69de29 diff --git a/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/.cmake/api/v1/query/client-agp/codemodel-v2 b/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/.cmake/api/v1/query/client-agp/codemodel-v2 new file mode 100644 index 0000000..e69de29 diff --git a/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/.cmake/api/v1/reply/cache-v2-345b6446397a2cf66bdc.json b/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/.cmake/api/v1/reply/cache-v2-345b6446397a2cf66bdc.json new file mode 100644 index 0000000..3dd3d1e --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/.cmake/api/v1/reply/cache-v2-345b6446397a2cf66bdc.json @@ -0,0 +1,1367 @@ +{ + "entries" : + [ + { + "name" : "ANDROID_ABI", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "UNINITIALIZED", + "value" : "armeabi-v7a" + }, + { + "name" : "ANDROID_NDK", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "UNINITIALIZED", + "value" : "C:\\Users\\840 G3\\AppData\\Local\\Android\\sdk\\ndk\\26.3.11579264" + }, + { + "name" : "ANDROID_PLATFORM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "UNINITIALIZED", + "value" : "android-21" + }, + { + "name" : "CMAKE_ADDR2LINE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-addr2line.exe" + }, + { + "name" : "CMAKE_ANDROID_ARCH_ABI", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "UNINITIALIZED", + "value" : "armeabi-v7a" + }, + { + "name" : "CMAKE_ANDROID_NDK", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "UNINITIALIZED", + "value" : "C:\\Users\\840 G3\\AppData\\Local\\Android\\sdk\\ndk\\26.3.11579264" + }, + { + "name" : "CMAKE_AR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Archiver" + } + ], + "type" : "FILEPATH", + "value" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-ar.exe" + }, + { + "name" : "CMAKE_ASM_FLAGS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Flags used by the compiler during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_ASM_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Flags used by the compiler during debug builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_ASM_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Flags used by the compiler during release builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_BUILD_TYPE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Choose the type of build, options are: None Debug Release RelWithDebInfo MinSizeRel ..." + } + ], + "type" : "STRING", + "value" : "Debug" + }, + { + "name" : "CMAKE_CACHEFILE_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "This is the directory where this CMakeCache.txt was created" + } + ], + "type" : "INTERNAL", + "value" : "c:/Users/840 G3/ProjectR.Mobile/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a" + }, + { + "name" : "CMAKE_CACHE_MAJOR_VERSION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Major version of cmake used to create the current loaded cache" + } + ], + "type" : "INTERNAL", + "value" : "3" + }, + { + "name" : "CMAKE_CACHE_MINOR_VERSION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Minor version of cmake used to create the current loaded cache" + } + ], + "type" : "INTERNAL", + "value" : "22" + }, + { + "name" : "CMAKE_CACHE_PATCH_VERSION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Patch version of cmake used to create the current loaded cache" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "CMAKE_COMMAND", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to CMake executable." + } + ], + "type" : "INTERNAL", + "value" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/bin/cmake.exe" + }, + { + "name" : "CMAKE_CPACK_COMMAND", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to cpack program executable." + } + ], + "type" : "INTERNAL", + "value" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/bin/cpack.exe" + }, + { + "name" : "CMAKE_CTEST_COMMAND", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to ctest program executable." + } + ], + "type" : "INTERNAL", + "value" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/bin/ctest.exe" + }, + { + "name" : "CMAKE_CXX_COMPILER", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "(This variable does not exist and should not be used)" + } + ], + "type" : "UNINITIALIZED", + "value" : "" + }, + { + "name" : "CMAKE_CXX_COMPILER_AR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "LLVM archiver" + } + ], + "type" : "FILEPATH", + "value" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-ar.exe" + }, + { + "name" : "CMAKE_CXX_COMPILER_RANLIB", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Generate index for LLVM archive" + } + ], + "type" : "FILEPATH", + "value" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-ranlib.exe" + }, + { + "name" : "CMAKE_CXX_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the compiler during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_CXX_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the compiler during debug builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_CXX_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the CXX compiler during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "-Os -DNDEBUG" + }, + { + "name" : "CMAKE_CXX_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the compiler during release builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_CXX_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the CXX compiler during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "-O2 -g -DNDEBUG" + }, + { + "name" : "CMAKE_CXX_STANDARD_LIBRARIES", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Libraries linked by default with all C++ applications." + } + ], + "type" : "STRING", + "value" : "-latomic -lm" + }, + { + "name" : "CMAKE_C_COMPILER", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "(This variable does not exist and should not be used)" + } + ], + "type" : "UNINITIALIZED", + "value" : "" + }, + { + "name" : "CMAKE_C_COMPILER_AR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "LLVM archiver" + } + ], + "type" : "FILEPATH", + "value" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-ar.exe" + }, + { + "name" : "CMAKE_C_COMPILER_RANLIB", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Generate index for LLVM archive" + } + ], + "type" : "FILEPATH", + "value" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-ranlib.exe" + }, + { + "name" : "CMAKE_C_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the compiler during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_C_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the compiler during debug builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_C_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the C compiler during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "-Os -DNDEBUG" + }, + { + "name" : "CMAKE_C_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the compiler during release builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_C_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the C compiler during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "-O2 -g -DNDEBUG" + }, + { + "name" : "CMAKE_C_STANDARD_LIBRARIES", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Libraries linked by default with all C applications." + } + ], + "type" : "STRING", + "value" : "-latomic -lm" + }, + { + "name" : "CMAKE_DLLTOOL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "CMAKE_DLLTOOL-NOTFOUND" + }, + { + "name" : "CMAKE_ERROR_DEPRECATED", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Whether to issue deprecation errors for macros and functions." + } + ], + "type" : "INTERNAL", + "value" : "FALSE" + }, + { + "name" : "CMAKE_EXECUTABLE_FORMAT", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Executable file format" + } + ], + "type" : "INTERNAL", + "value" : "ELF" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_EXPORT_COMPILE_COMMANDS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "UNINITIALIZED", + "value" : "ON" + }, + { + "name" : "CMAKE_EXTRA_GENERATOR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Name of external makefile project generator." + } + ], + "type" : "INTERNAL", + "value" : "" + }, + { + "name" : "CMAKE_GENERATOR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Name of generator." + } + ], + "type" : "INTERNAL", + "value" : "Ninja" + }, + { + "name" : "CMAKE_GENERATOR_INSTANCE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Generator instance identifier." + } + ], + "type" : "INTERNAL", + "value" : "" + }, + { + "name" : "CMAKE_GENERATOR_PLATFORM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Name of generator platform." + } + ], + "type" : "INTERNAL", + "value" : "" + }, + { + "name" : "CMAKE_GENERATOR_TOOLSET", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Name of generator toolset." + } + ], + "type" : "INTERNAL", + "value" : "" + }, + { + "name" : "CMAKE_HOME_DIRECTORY", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Source directory with the top level CMakeLists.txt file for this project" + } + ], + "type" : "INTERNAL", + "value" : "C:/Users/840 G3/flutter/packages/flutter_tools/gradle/src/main/groovy" + }, + { + "name" : "CMAKE_INSTALL_PREFIX", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Install path prefix, prepended onto install directories." + } + ], + "type" : "PATH", + "value" : "C:/Program Files (x86)/Project" + }, + { + "name" : "CMAKE_INSTALL_SO_NO_EXE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Install .so files without execute permission." + } + ], + "type" : "INTERNAL", + "value" : "0" + }, + { + "name" : "CMAKE_LIBRARY_OUTPUT_DIRECTORY", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "UNINITIALIZED", + "value" : "C:\\Users\\840 G3\\ProjectR.Mobile\\build\\app\\intermediates\\cxx\\Debug\\4z1t2ab1\\obj\\armeabi-v7a" + }, + { + "name" : "CMAKE_LINKER", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/ld.lld.exe" + }, + { + "name" : "CMAKE_MAKE_PROGRAM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "make program" + } + ], + "type" : "FILEPATH", + "value" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/bin/ninja.exe" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_NM", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-nm.exe" + }, + { + "name" : "CMAKE_NUMBER_OF_MAKEFILES", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "number of local generators" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "CMAKE_OBJCOPY", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-objcopy.exe" + }, + { + "name" : "CMAKE_OBJDUMP", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-objdump.exe" + }, + { + "name" : "CMAKE_PLATFORM_INFO_INITIALIZED", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Platform information initialized" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "CMAKE_PROJECT_DESCRIPTION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "" + }, + { + "name" : "CMAKE_PROJECT_HOMEPAGE_URL", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "" + }, + { + "name" : "CMAKE_PROJECT_NAME", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "Project" + }, + { + "name" : "CMAKE_RANLIB", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Ranlib" + } + ], + "type" : "FILEPATH", + "value" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-ranlib.exe" + }, + { + "name" : "CMAKE_READELF", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-readelf.exe" + }, + { + "name" : "CMAKE_ROOT", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to CMake installation." + } + ], + "type" : "INTERNAL", + "value" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22" + }, + { + "name" : "CMAKE_RUNTIME_OUTPUT_DIRECTORY", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "UNINITIALIZED", + "value" : "C:\\Users\\840 G3\\ProjectR.Mobile\\build\\app\\intermediates\\cxx\\Debug\\4z1t2ab1\\obj\\armeabi-v7a" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of dll's." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of shared libraries during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of shared libraries during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of shared libraries during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of shared libraries during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_SKIP_INSTALL_RPATH", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "If set, runtime paths are not added when installing shared libraries, but are added when building." + } + ], + "type" : "BOOL", + "value" : "NO" + }, + { + "name" : "CMAKE_SKIP_RPATH", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "If set, runtime paths are not added when using shared libraries." + } + ], + "type" : "BOOL", + "value" : "NO" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STRIP", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Strip" + } + ], + "type" : "FILEPATH", + "value" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-strip.exe" + }, + { + "name" : "CMAKE_SUPPRESS_DEVELOPER_ERRORS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Suppress errors that are meant for the author of the CMakeLists.txt files." + } + ], + "type" : "INTERNAL", + "value" : "TRUE" + }, + { + "name" : "CMAKE_SUPPRESS_DEVELOPER_WARNINGS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Suppress Warnings that are meant for the author of the CMakeLists.txt files." + } + ], + "type" : "INTERNAL", + "value" : "TRUE" + }, + { + "name" : "CMAKE_SYSTEM_NAME", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "UNINITIALIZED", + "value" : "Android" + }, + { + "name" : "CMAKE_SYSTEM_VERSION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "UNINITIALIZED", + "value" : "21" + }, + { + "name" : "CMAKE_TOOLCHAIN_FILE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The CMake toolchain file" + } + ], + "type" : "FILEPATH", + "value" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/android.toolchain.cmake" + }, + { + "name" : "CMAKE_VERBOSE_MAKEFILE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "If this value is on, makefiles will be generated without the .SILENT directive, and all commands will be echoed to the console during the make. This is useful for debugging only. With Visual Studio IDE projects all commands are done without /nologo." + } + ], + "type" : "BOOL", + "value" : "FALSE" + }, + { + "name" : "CMAKE_WARN_DEPRECATED", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Whether to issue warnings for deprecated functionality." + } + ], + "type" : "INTERNAL", + "value" : "FALSE" + }, + { + "name" : "Project_BINARY_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "C:/Users/840 G3/ProjectR.Mobile/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a" + }, + { + "name" : "Project_IS_TOP_LEVEL", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "ON" + }, + { + "name" : "Project_SOURCE_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "C:/Users/840 G3/flutter/packages/flutter_tools/gradle/src/main/groovy" + } + ], + "kind" : "cache", + "version" : + { + "major" : 2, + "minor" : 0 + } +} diff --git a/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-08dce1a987f66e8c81d6.json b/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-08dce1a987f66e8c81d6.json new file mode 100644 index 0000000..41b5211 --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-08dce1a987f66e8c81d6.json @@ -0,0 +1,799 @@ +{ + "inputs" : + [ + { + "path" : "CMakeLists.txt" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/android.toolchain.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/android-legacy.toolchain.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/platforms.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/hooks/pre/Android-Determine.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in" + }, + { + "isGenerated" : true, + "path" : "C:/Users/840 G3/ProjectR.Mobile/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeSystem.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/android.toolchain.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/hooks/pre/Android-Initialize.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/hooks/pre/Determine-Compiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in" + }, + { + "isGenerated" : true, + "path" : "C:/Users/840 G3/ProjectR.Mobile/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeCCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in" + }, + { + "isGenerated" : true, + "path" : "C:/Users/840 G3/ProjectR.Mobile/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeCXXCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/hooks/pre/Android.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/hooks/pre/Android-Clang.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/flags.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in" + }, + { + "isGenerated" : true, + "path" : "C:/Users/840 G3/ProjectR.Mobile/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeCCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in" + }, + { + "isGenerated" : true, + "path" : "C:/Users/840 G3/ProjectR.Mobile/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeCXXCompiler.cmake" + } + ], + "kind" : "cmakeFiles", + "paths" : + { + "build" : "C:/Users/840 G3/ProjectR.Mobile/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a", + "source" : "C:/Users/840 G3/flutter/packages/flutter_tools/gradle/src/main/groovy" + }, + "version" : + { + "major" : 1, + "minor" : 0 + } +} diff --git a/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-50bd19c07389d45abd4f.json b/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-50bd19c07389d45abd4f.json new file mode 100644 index 0000000..182742a --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-50bd19c07389d45abd4f.json @@ -0,0 +1,43 @@ +{ + "configurations" : + [ + { + "directories" : + [ + { + "build" : ".", + "jsonFile" : "directory-.-Debug-d0094a50bb2071803777.json", + "minimumCMakeVersion" : + { + "string" : "3.6.0" + }, + "projectIndex" : 0, + "source" : "." + } + ], + "name" : "Debug", + "projects" : + [ + { + "directoryIndexes" : + [ + 0 + ], + "name" : "Project" + } + ], + "targets" : [] + } + ], + "kind" : "codemodel", + "paths" : + { + "build" : "C:/Users/840 G3/ProjectR.Mobile/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a", + "source" : "C:/Users/840 G3/flutter/packages/flutter_tools/gradle/src/main/groovy" + }, + "version" : + { + "major" : 2, + "minor" : 3 + } +} diff --git a/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/.cmake/api/v1/reply/directory-.-Debug-d0094a50bb2071803777.json b/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/.cmake/api/v1/reply/directory-.-Debug-d0094a50bb2071803777.json new file mode 100644 index 0000000..3a67af9 --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/.cmake/api/v1/reply/directory-.-Debug-d0094a50bb2071803777.json @@ -0,0 +1,14 @@ +{ + "backtraceGraph" : + { + "commands" : [], + "files" : [], + "nodes" : [] + }, + "installers" : [], + "paths" : + { + "build" : ".", + "source" : "." + } +} diff --git a/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/.cmake/api/v1/reply/index-2025-07-08T09-39-23-0280.json b/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/.cmake/api/v1/reply/index-2025-07-08T09-39-23-0280.json new file mode 100644 index 0000000..7ff34bb --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/.cmake/api/v1/reply/index-2025-07-08T09-39-23-0280.json @@ -0,0 +1,92 @@ +{ + "cmake" : + { + "generator" : + { + "multiConfig" : false, + "name" : "Ninja" + }, + "paths" : + { + "cmake" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/bin/cmake.exe", + "cpack" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/bin/cpack.exe", + "ctest" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/bin/ctest.exe", + "root" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22" + }, + "version" : + { + "isDirty" : true, + "major" : 3, + "minor" : 22, + "patch" : 1, + "string" : "3.22.1-g37088a8-dirty", + "suffix" : "g37088a8" + } + }, + "objects" : + [ + { + "jsonFile" : "codemodel-v2-50bd19c07389d45abd4f.json", + "kind" : "codemodel", + "version" : + { + "major" : 2, + "minor" : 3 + } + }, + { + "jsonFile" : "cache-v2-345b6446397a2cf66bdc.json", + "kind" : "cache", + "version" : + { + "major" : 2, + "minor" : 0 + } + }, + { + "jsonFile" : "cmakeFiles-v1-08dce1a987f66e8c81d6.json", + "kind" : "cmakeFiles", + "version" : + { + "major" : 1, + "minor" : 0 + } + } + ], + "reply" : + { + "client-agp" : + { + "cache-v2" : + { + "jsonFile" : "cache-v2-345b6446397a2cf66bdc.json", + "kind" : "cache", + "version" : + { + "major" : 2, + "minor" : 0 + } + }, + "cmakeFiles-v1" : + { + "jsonFile" : "cmakeFiles-v1-08dce1a987f66e8c81d6.json", + "kind" : "cmakeFiles", + "version" : + { + "major" : 1, + "minor" : 0 + } + }, + "codemodel-v2" : + { + "jsonFile" : "codemodel-v2-50bd19c07389d45abd4f.json", + "kind" : "codemodel", + "version" : + { + "major" : 2, + "minor" : 3 + } + } + } + } +} diff --git a/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/CMakeCache.txt b/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/CMakeCache.txt new file mode 100644 index 0000000..844f071 --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/CMakeCache.txt @@ -0,0 +1,401 @@ +# This is the CMakeCache file. +# For build in directory: c:/Users/840 G3/ProjectR.Mobile/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a +# It was generated by CMake: C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/bin/cmake.exe +# You can edit this file to change values found and used by cmake. +# If you do not want to change any of the values, simply exit the editor. +# If you do want to change a value, simply edit, save, and exit the editor. +# The syntax for the file is as follows: +# KEY:TYPE=VALUE +# KEY is the name of a variable in the cache. +# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. +# VALUE is the current value for the KEY. + +######################## +# EXTERNAL cache entries +######################## + +//No help, variable specified on the command line. +ANDROID_ABI:UNINITIALIZED=armeabi-v7a + +//No help, variable specified on the command line. +ANDROID_NDK:UNINITIALIZED=C:\Users\840 G3\AppData\Local\Android\sdk\ndk\26.3.11579264 + +//No help, variable specified on the command line. +ANDROID_PLATFORM:UNINITIALIZED=android-21 + +//Path to a program. +CMAKE_ADDR2LINE:FILEPATH=C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-addr2line.exe + +//No help, variable specified on the command line. +CMAKE_ANDROID_ARCH_ABI:UNINITIALIZED=armeabi-v7a + +//No help, variable specified on the command line. +CMAKE_ANDROID_NDK:UNINITIALIZED=C:\Users\840 G3\AppData\Local\Android\sdk\ndk\26.3.11579264 + +//Archiver +CMAKE_AR:FILEPATH=C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-ar.exe + +//Flags used by the compiler during all build types. +CMAKE_ASM_FLAGS:STRING= + +//Flags used by the compiler during debug builds. +CMAKE_ASM_FLAGS_DEBUG:STRING= + +//Flags used by the compiler during release builds. +CMAKE_ASM_FLAGS_RELEASE:STRING= + +//Choose the type of build, options are: None Debug Release RelWithDebInfo +// MinSizeRel ... +CMAKE_BUILD_TYPE:STRING=Debug + +//LLVM archiver +CMAKE_CXX_COMPILER_AR:FILEPATH=C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-ar.exe + +//Generate index for LLVM archive +CMAKE_CXX_COMPILER_RANLIB:FILEPATH=C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-ranlib.exe + +//Flags used by the compiler during all build types. +CMAKE_CXX_FLAGS:STRING= + +//Flags used by the compiler during debug builds. +CMAKE_CXX_FLAGS_DEBUG:STRING= + +//Flags used by the CXX compiler during MINSIZEREL builds. +CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the compiler during release builds. +CMAKE_CXX_FLAGS_RELEASE:STRING= + +//Flags used by the CXX compiler during RELWITHDEBINFO builds. +CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Libraries linked by default with all C++ applications. +CMAKE_CXX_STANDARD_LIBRARIES:STRING=-latomic -lm + +//LLVM archiver +CMAKE_C_COMPILER_AR:FILEPATH=C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-ar.exe + +//Generate index for LLVM archive +CMAKE_C_COMPILER_RANLIB:FILEPATH=C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-ranlib.exe + +//Flags used by the compiler during all build types. +CMAKE_C_FLAGS:STRING= + +//Flags used by the compiler during debug builds. +CMAKE_C_FLAGS_DEBUG:STRING= + +//Flags used by the C compiler during MINSIZEREL builds. +CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the compiler during release builds. +CMAKE_C_FLAGS_RELEASE:STRING= + +//Flags used by the C compiler during RELWITHDEBINFO builds. +CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Libraries linked by default with all C applications. +CMAKE_C_STANDARD_LIBRARIES:STRING=-latomic -lm + +//Path to a program. +CMAKE_DLLTOOL:FILEPATH=CMAKE_DLLTOOL-NOTFOUND + +//Flags used by the linker. +CMAKE_EXE_LINKER_FLAGS:STRING= + +//Flags used by the linker during DEBUG builds. +CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during MINSIZEREL builds. +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during RELEASE builds. +CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during RELWITHDEBINFO builds. +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//No help, variable specified on the command line. +CMAKE_EXPORT_COMPILE_COMMANDS:UNINITIALIZED=ON + +//Install path prefix, prepended onto install directories. +CMAKE_INSTALL_PREFIX:PATH=C:/Program Files (x86)/Project + +//No help, variable specified on the command line. +CMAKE_LIBRARY_OUTPUT_DIRECTORY:UNINITIALIZED=C:\Users\840 G3\ProjectR.Mobile\build\app\intermediates\cxx\Debug\4z1t2ab1\obj\armeabi-v7a + +//Path to a program. +CMAKE_LINKER:FILEPATH=C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/ld.lld.exe + +//make program +CMAKE_MAKE_PROGRAM:FILEPATH=C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/bin/ninja.exe + +//Flags used by the linker during the creation of modules. +CMAKE_MODULE_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of modules during +// DEBUG builds. +CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of modules during +// MINSIZEREL builds. +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of modules during +// RELEASE builds. +CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of modules during +// RELWITHDEBINFO builds. +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_NM:FILEPATH=C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-nm.exe + +//Path to a program. +CMAKE_OBJCOPY:FILEPATH=C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-objcopy.exe + +//Path to a program. +CMAKE_OBJDUMP:FILEPATH=C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-objdump.exe + +//Value Computed by CMake +CMAKE_PROJECT_DESCRIPTION:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_HOMEPAGE_URL:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_NAME:STATIC=Project + +//Ranlib +CMAKE_RANLIB:FILEPATH=C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-ranlib.exe + +//Path to a program. +CMAKE_READELF:FILEPATH=C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-readelf.exe + +//No help, variable specified on the command line. +CMAKE_RUNTIME_OUTPUT_DIRECTORY:UNINITIALIZED=C:\Users\840 G3\ProjectR.Mobile\build\app\intermediates\cxx\Debug\4z1t2ab1\obj\armeabi-v7a + +//Flags used by the linker during the creation of dll's. +CMAKE_SHARED_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of shared libraries +// during DEBUG builds. +CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of shared libraries +// during MINSIZEREL builds. +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELEASE builds. +CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELWITHDEBINFO builds. +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//If set, runtime paths are not added when installing shared libraries, +// but are added when building. +CMAKE_SKIP_INSTALL_RPATH:BOOL=NO + +//If set, runtime paths are not added when using shared libraries. +CMAKE_SKIP_RPATH:BOOL=NO + +//Flags used by the linker during the creation of static libraries +// during all build types. +CMAKE_STATIC_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of static libraries +// during DEBUG builds. +CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of static libraries +// during MINSIZEREL builds. +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELEASE builds. +CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELWITHDEBINFO builds. +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Strip +CMAKE_STRIP:FILEPATH=C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-strip.exe + +//No help, variable specified on the command line. +CMAKE_SYSTEM_NAME:UNINITIALIZED=Android + +//No help, variable specified on the command line. +CMAKE_SYSTEM_VERSION:UNINITIALIZED=21 + +//The CMake toolchain file +CMAKE_TOOLCHAIN_FILE:FILEPATH=C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/android.toolchain.cmake + +//If this value is on, makefiles will be generated without the +// .SILENT directive, and all commands will be echoed to the console +// during the make. This is useful for debugging only. With Visual +// Studio IDE projects all commands are done without /nologo. +CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE + +//Value Computed by CMake +Project_BINARY_DIR:STATIC=C:/Users/840 G3/ProjectR.Mobile/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a + +//Value Computed by CMake +Project_IS_TOP_LEVEL:STATIC=ON + +//Value Computed by CMake +Project_SOURCE_DIR:STATIC=C:/Users/840 G3/flutter/packages/flutter_tools/gradle/src/main/groovy + + +######################## +# INTERNAL cache entries +######################## + +//ADVANCED property for variable: CMAKE_ADDR2LINE +CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_AR +CMAKE_AR-ADVANCED:INTERNAL=1 +//This is the directory where this CMakeCache.txt was created +CMAKE_CACHEFILE_DIR:INTERNAL=c:/Users/840 G3/ProjectR.Mobile/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a +//Major version of cmake used to create the current loaded cache +CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 +//Minor version of cmake used to create the current loaded cache +CMAKE_CACHE_MINOR_VERSION:INTERNAL=22 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=1 +//Path to CMake executable. +CMAKE_COMMAND:INTERNAL=C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/bin/cmake.exe +//Path to cpack program executable. +CMAKE_CPACK_COMMAND:INTERNAL=C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/bin/cpack.exe +//Path to ctest program executable. +CMAKE_CTEST_COMMAND:INTERNAL=C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/bin/ctest.exe +//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR +CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB +CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS +CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG +CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL +CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE +CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO +CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_STANDARD_LIBRARIES +CMAKE_CXX_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_AR +CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB +CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS +CMAKE_C_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG +CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL +CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE +CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO +CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_STANDARD_LIBRARIES +CMAKE_C_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_DLLTOOL +CMAKE_DLLTOOL-ADVANCED:INTERNAL=1 +//Whether to issue deprecation errors for macros and functions. +CMAKE_ERROR_DEPRECATED:INTERNAL=FALSE +//Executable file format +CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS +CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG +CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE +CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//Name of external makefile project generator. +CMAKE_EXTRA_GENERATOR:INTERNAL= +//Name of generator. +CMAKE_GENERATOR:INTERNAL=Ninja +//Generator instance identifier. +CMAKE_GENERATOR_INSTANCE:INTERNAL= +//Name of generator platform. +CMAKE_GENERATOR_PLATFORM:INTERNAL= +//Name of generator toolset. +CMAKE_GENERATOR_TOOLSET:INTERNAL= +//Source directory with the top level CMakeLists.txt file for this +// project +CMAKE_HOME_DIRECTORY:INTERNAL=C:/Users/840 G3/flutter/packages/flutter_tools/gradle/src/main/groovy +//Install .so files without execute permission. +CMAKE_INSTALL_SO_NO_EXE:INTERNAL=0 +//ADVANCED property for variable: CMAKE_LINKER +CMAKE_LINKER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS +CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG +CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE +CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_NM +CMAKE_NM-ADVANCED:INTERNAL=1 +//number of local generators +CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJCOPY +CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJDUMP +CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 +//Platform information initialized +CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RANLIB +CMAKE_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_READELF +CMAKE_READELF-ADVANCED:INTERNAL=1 +//Path to CMake installation. +CMAKE_ROOT:INTERNAL=C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS +CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG +CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE +CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH +CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_RPATH +CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS +CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG +CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE +CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STRIP +CMAKE_STRIP-ADVANCED:INTERNAL=1 +//Suppress errors that are meant for the author of the CMakeLists.txt +// files. +CMAKE_SUPPRESS_DEVELOPER_ERRORS:INTERNAL=TRUE +//Suppress Warnings that are meant for the author of the CMakeLists.txt +// files. +CMAKE_SUPPRESS_DEVELOPER_WARNINGS:INTERNAL=TRUE +//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 +//Whether to issue warnings for deprecated functionality. +CMAKE_WARN_DEPRECATED:INTERNAL=FALSE + diff --git a/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeCCompiler.cmake b/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeCCompiler.cmake new file mode 100644 index 0000000..424c21d --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeCCompiler.cmake @@ -0,0 +1,72 @@ +set(CMAKE_C_COMPILER "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/clang.exe") +set(CMAKE_C_COMPILER_ARG1 "") +set(CMAKE_C_COMPILER_ID "Clang") +set(CMAKE_C_COMPILER_VERSION "17.0.2") +set(CMAKE_C_COMPILER_VERSION_INTERNAL "") +set(CMAKE_C_COMPILER_WRAPPER "") +set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "17") +set(CMAKE_C_EXTENSIONS_COMPUTED_DEFAULT "ON") +set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert;c_std_17;c_std_23") +set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes") +set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros") +set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert") +set(CMAKE_C17_COMPILE_FEATURES "c_std_17") +set(CMAKE_C23_COMPILE_FEATURES "c_std_23") + +set(CMAKE_C_PLATFORM_ID "Linux") +set(CMAKE_C_SIMULATE_ID "") +set(CMAKE_C_COMPILER_FRONTEND_VARIANT "GNU") +set(CMAKE_C_SIMULATE_VERSION "") + + + + +set(CMAKE_AR "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-ar.exe") +set(CMAKE_C_COMPILER_AR "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-ar.exe") +set(CMAKE_RANLIB "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-ranlib.exe") +set(CMAKE_C_COMPILER_RANLIB "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-ranlib.exe") +set(CMAKE_LINKER "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/ld.lld.exe") +set(CMAKE_MT "") +set(CMAKE_COMPILER_IS_GNUCC ) +set(CMAKE_C_COMPILER_LOADED 1) +set(CMAKE_C_COMPILER_WORKS TRUE) +set(CMAKE_C_ABI_COMPILED TRUE) + +set(CMAKE_C_COMPILER_ENV_VAR "CC") + +set(CMAKE_C_COMPILER_ID_RUN 1) +set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m) +set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_C_LINKER_PREFERENCE 10) + +# Save compiler ABI information. +set(CMAKE_C_SIZEOF_DATA_PTR "4") +set(CMAKE_C_COMPILER_ABI "ELF") +set(CMAKE_C_BYTE_ORDER "LITTLE_ENDIAN") +set(CMAKE_C_LIBRARY_ARCHITECTURE "") + +if(CMAKE_C_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_C_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}") +endif() + +if(CMAKE_C_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "") +endif() + +set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_C_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/lib/clang/17/include;C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/include/arm-linux-androideabi;C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/include") +set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "-l:libunwind.a;dl;c;-l:libunwind.a;dl") +set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/lib/clang/17/lib/linux/arm;C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/arm-linux-androideabi/21;C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/arm-linux-androideabi;C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib") +set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeCXXCompiler.cmake b/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeCXXCompiler.cmake new file mode 100644 index 0000000..940241e --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeCXXCompiler.cmake @@ -0,0 +1,83 @@ +set(CMAKE_CXX_COMPILER "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/clang++.exe") +set(CMAKE_CXX_COMPILER_ARG1 "") +set(CMAKE_CXX_COMPILER_ID "Clang") +set(CMAKE_CXX_COMPILER_VERSION "17.0.2") +set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") +set(CMAKE_CXX_COMPILER_WRAPPER "") +set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "17") +set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON") +set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23") +set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") +set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") +set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") +set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") +set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20") +set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23") + +set(CMAKE_CXX_PLATFORM_ID "Linux") +set(CMAKE_CXX_SIMULATE_ID "") +set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU") +set(CMAKE_CXX_SIMULATE_VERSION "") + + + + +set(CMAKE_AR "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-ar.exe") +set(CMAKE_CXX_COMPILER_AR "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-ar.exe") +set(CMAKE_RANLIB "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-ranlib.exe") +set(CMAKE_CXX_COMPILER_RANLIB "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-ranlib.exe") +set(CMAKE_LINKER "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/ld.lld.exe") +set(CMAKE_MT "") +set(CMAKE_COMPILER_IS_GNUCXX ) +set(CMAKE_CXX_COMPILER_LOADED 1) +set(CMAKE_CXX_COMPILER_WORKS TRUE) +set(CMAKE_CXX_ABI_COMPILED TRUE) + +set(CMAKE_CXX_COMPILER_ENV_VAR "CXX") + +set(CMAKE_CXX_COMPILER_ID_RUN 1) +set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm) +set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) + +foreach (lang C OBJC OBJCXX) + if (CMAKE_${lang}_COMPILER_ID_RUN) + foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS) + list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension}) + endforeach() + endif() +endforeach() + +set(CMAKE_CXX_LINKER_PREFERENCE 30) +set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) + +# Save compiler ABI information. +set(CMAKE_CXX_SIZEOF_DATA_PTR "4") +set(CMAKE_CXX_COMPILER_ABI "ELF") +set(CMAKE_CXX_BYTE_ORDER "LITTLE_ENDIAN") +set(CMAKE_CXX_LIBRARY_ARCHITECTURE "") + +if(CMAKE_CXX_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_CXX_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") +endif() + +if(CMAKE_CXX_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "") +endif() + +set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/include/c++/v1;C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/lib/clang/17/include;C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/include/arm-linux-androideabi;C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/include") +set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "c++;m;-l:libunwind.a;dl;c;-l:libunwind.a;dl") +set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/lib/clang/17/lib/linux/arm;C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/arm-linux-androideabi/21;C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/arm-linux-androideabi;C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib") +set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_C.bin b/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_C.bin new file mode 100644 index 0000000000000000000000000000000000000000..762a0fc150e6cdc47282fa8e8cf50054cf309523 GIT binary patch literal 5884 zcmd5=U2Ggz6}~gOYj6CsUOP#Xv}wC3ZsI~byIybXI7Mw7+esGLj+>+^A)(XRow2>m z?#?nh4tCX+suTfIOVbL8A{E7NAkhj7kdPok6-YdwJ_IR3B2>ajWExVWrcf$Fqb%Py zGuK(WEl5=#daSeOeCM2d?$6v`e{E!RzoIBYQb=?OqSrz~WFXJC<3|;dj7W$k__m2V zMFULqN#2VBE8gbVY|;X zGq?1s(4$Be-RScbU^4xTJG|tYYxBpOZ?^9N_!0I2^76yV9N$8FB%cK)(@ut~(uqNk z+yxt1`jgeUs%w>!xk5QvER;`L4%!L-Gk#eyST-HIUxGTWS!?{GsI7zgTNq!z*U-{MbVj-8;3*~|}0?@2g zZ84hNH$-3-iLPOwH=*#mfm{yc^+3J?AKS1T$m@aJ0OP_!=&2$k{Vlf$aSN0y^pPxt4A_ zrsW(T%^p2EI--w^4`&C*rQgUEj$_>dq5<=l#p3+sRxy9ER;yhV2fP2)x-fq+es1hi zDt=}uoOT|PGIU$=vxCl3|++MFUJ#Smej@ zOkBRBmQ>=k+_eCtKYda z`p&PH&aWZyJNSP8?4`^*XFZ?9T>(al8hf->^84)oQ*y4|0p^-~zgDwh<5uDkha-&1 z$9bFpb6;cJe-OvD!g(|bKj$UqwKq>OAGn5CmV3xBoY-zWKWF@T;3miv_+K|__RGM` z^>fGsB=^8=kgR75cp3P%0DJ2KjoTXFYiNgyau_oEaY*!&?Y~KgWqIa&fR)tI0x&t) ze-d3iJ-wNMbb9yB#OEqgHhyz<(S<0w0Nte`Z8@WAnF+g`a5B65`!oI4J&AnLC{HC$ zSx&V8dr!ZX($a~pY1ge(_au{szq@Huwmns}s`iYNx3s)nO1idP%ugHK6pN=y-4(}v z)XKXFb6|4!z+}ek>Few3HFu?Y($=ngY9KSPYqB@jo3ip&ubJ-cOW*Th?fw+CZq(c9 z_asI~hl4S}NZ*U$H!Q4Yq4Yom#99eA8{QcBKO|OU;N-EW7^xEqj{pZB{p9_9;phGc>$SWY_m& z%0;$A!6fWN+uryL_ZoUs{)GsZ|uG3IMN5kIDp%_g&wlFa!YDB1kiK&`1t6)o; zSAl56obzW_SosM$cDr~un1!716L38OsgA+e4@C(_LMO0PLPG%IL-^S!A_pP7BR8rv z{sw{3#^|#!O@WoxNXTJ)6~K#c6OmcQFCwr}jatx8Gq58PI=w0|E}~zD<5fC$MnVg8 z4gq*sVq%?aoAS`xNTs&@8@?v>iRd5eQTWdu68LRapAbJpjM~9S(eN&8k#I`{qJ=#W zn9`0I+LL^+iUpC}ok=AQ^d=|#$$eNGvvY-_B^O1~s8o_#es(rFY~^OAl9|VP+_aJF zNg7Uxv!we}zmXgoGfrCjQL5^zM@tn^C{Nn@&0_=SpX(Ma-71>}qwIS*$<~JD3R5!1 zvA!}>aI8=HBJw&=ccgw`Um_v(1^65gi(`OBD>TGq^9S<#B}=JbZZYn0_Str4jw;v565~7lt#H=g%oIQ?3@K z%Gd*|)3)P^5;ic5vx_g!{h#Md7)wEUJl4W{5N#wm&GyCO;xm{lVeto8aT9+()=B{r zXP2^O;$X}8L^@d4ziHO<$z)wUZ0tf9PY0EK4aJp6W7Dr9cP1mT1})M&8M&un%2%I` z?7XRNYM7P*O$~)esG(U4O@2X*V@!~4HPu_f;+!8*JXn0Ne_AQfb|AM)juN>z~s{%##U0-V5^>ys)@K$)-ePXjO3 z;a=#hpY2xFm>3040Ve|d2r%C`Y?7khBIY0^vA@p&aBO{wi5H>F*WvF0bC={@M!_xo zr;ywX69GO4$^9=D;6D+sly4Jn0KZm;{{noj4qpO(qYf_tFV^8Jz<;m9Poh677b$hU zcnf}hFRqCWwBjF-l6b$mL4f-TQ?w(Z73Fz%@o~G@3e0fV;vX=**RrUkTK z!4cPk5!d|@_e|b6cpCa;`C&N4MA?45{fHtkLq4e%=cABWyr z*GC+iodz7#%n6v-WyE5!=#^*Y=W_!cyZ?uOlChM z$?+?~z_u_S-;U%2bufuC3Z4O@Oyz0FPQ;MApmTpF$@r(BGv7Wi-Ate5ABjN>^$-YbJ3*#^?fVCqQY?a$W`$Nou@ z`F;!o`^Gr#>&qVz_Y3&jf;g{(_&6Vy@3)9yADGYk-yh)(aaT+{kQ-N^D>|JKS{(%AA_aN^ONc$+!k6Qm5-7G`6|UAk~f_PPQ+Hfm@bNl%q<% zJ&1$q(FrW(E(suIe?Pk>?is}GV1j_8+6P6>MY>+Wg=hkX1a$5x%*XF@AL2O1lCER& VOvofKO7-BHxKR}TrgYZD{TJ!%6=whd literal 0 HcmV?d00001 diff --git a/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_CXX.bin b/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_CXX.bin new file mode 100644 index 0000000000000000000000000000000000000000..c54ad46e6e14b8fb1aaa190fe391c9bb05766062 GIT binary patch literal 6040 zcmd5=Yiu0V6}~gOYp-9MwVeDz$2*(kfCbR8_4+D~eEsR41vSh5iUqi=u*Xzi(!) zJvOAOC_gyX@j2f)=brnR``oWgPVH9|MM#Q?-Gb;hF(C#ZYaRHfio}4(h-Ub9iW@`& zO!P^<9RUYuA|3h(wgudSLS)t}{XGCZy8@<}xusu) z-i7jAC{MlwOs1c4hgLkxuPl;Zw5+%9^YniN`T4^fPoO=LUxba!++?_FJs1SZyI~_s zzg}Oedv--Hl&X5UR6S<9LL}k;YEV{;RV~*kS$_B3+@J;X$ELo%y+b3pL4K-_MQrm{ zFu&=6>AS_NukIXIS|4is>#<*_NAG*Gt?|vTy|y_q`oBh;K5c7A2x3ksej^2c*FfTv z`&4Y>M_0v-A!Z)dOUXD%w2?_coN{H=9(i+NiD7S|4hw!m2mqYn}D7V6R_H68A8It~P#9swvHzgXFpWc7h zXub5X?aUcg&2x`t2fif4bpEdWg;8(GuwBQtj=K4M#)0X{{KWK_fY&cmSn_PcaV^_D zI+dTDotiWzrzi4b)6#DiN=LDN0nvan7sc|Ki*4e}`PJ3cx5OR2e{VZ`=6w3)gBP;t z(<|}p(-)NV={H-`Pp@+Z?!LbMfstHpxF_?u+Ps7R1*hymls$mnN}0BTS+}i>Q_Z*o!$U&@L-w9b zv20f7GskVWUV^=ENXu%u%%IOXDk$<4BS zywY29od@lrm$63XhDYWGtiHj)!G3FRwl8PzEoMgsM)uD27y7ey(eAf${e!tZAJy(p zQR}As6JRtmH8l~A2}b&648Lh(eG8=z>Ud7ej);cl#<8T*q&CM|m6X_`q?LBHBfeGH zCbq}Al&h6%)Ekvuiqfv!l5Ws*{J>#CI_svC1MYw%uC1-djtl*%odS23BBP?1UIVc@1ef{Ryq=~QwV-zLvUKC zZ^QWu2J|FiKSRLqh8CnmQnpq3;t{yi#wKKFQXflR7e(<&AEn`IRv*I`LSz#oMZ^8@ zB;qaG09x1^ff?4&Xjda+_2v-N&0 zm(%+6I?CFCsh1}Gpkpm!&FJF?5jB3#J>yQLRw~=>*uK10tkphL&rGm}4rvFS0^;P_ z)6H5<*NP`j=o5Bfab6#IxX;U(g+ASME1ZnI$A`?Ij{PVVRySLziBfgWG1gBj9KW7d zwhg;#mCS13&0#2yO&kj^JkCe?)K_@TCam-u!+9e+!szM4!}7(Fx4&$92+yR$K!t ziFdnQz`QFlMLQz)0`uM!;C3;=_%)msUjXKP>H(OU?-BY#Vm_f^soHK$XjR9vHF*gt zSvFR1V4JTlYK6s8+3LlcP_ve*^`(l?XbrDY8-U>kaKWrE2rc-}G9K)%U1oWqjU76u z;X!1b2yC@7>T(?mM~~3(QUdZ#HP_}F$}nBmTw+Vt^*I1(M@q9&DxzKoCGjsPU8vUu zFK`vVE3DG=JhxO>^lUgRo-l@4D7f}qkPjiQ3S~_5Z;L;2|7+6z|VZ z=fi`?fD33g0%s0QZm{^HXN0e4V*z7^%Z2ffi~9n)9zL!&ytEC&sykt%FeZ*nj~&d9 z%ZdL#NG=mHx3cK(NV2G0Molm@hH>)u819vlRJ6*MEbtUcSf3 zw6Px6$vEx}e3S7F#W=pJ$h@J-JhYQ1!F+R3=evuXfga5V=${YohH-r7k-K1*`J}ub zw%}Ki;2kL6g3?b(w!qlN{5HITTx7Ock{rJ>3~USB{`-}0*bMY&KE5v(!6;LE95VX5 z7WZkAj6VsT`SyYN-X(Lq=*PC`OXhnL%r>xIo)6>#bV;<6c)l=>W6OP+dh z^ZCC^B98swSdmyS+wnUv`{CD%-v^Q?B-;+NA4kb^Q^xUkgf7Hwr6VNSk3R!5FZ21o zmm*I37%KI@Kxe)zjUfKM`XCJKkj9j(QES|@rx$p=r~8kHdx}a(GOhuN z)akk(jlDKvkZMO5C)>A#fh)*Kf^v)_Ul+zf_33pyV0TLZDf|1`O>uEtfc7v!NKzey u5~)UHafzORA%i&HVVIBK=T^jVj3u4Kq?nOOV3g_|o8n$Z;qOUjB!_a%`4 literal 0 HcmV?d00001 diff --git a/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeSystem.cmake b/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeSystem.cmake new file mode 100644 index 0000000..ce7b473 --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/CMakeFiles/3.22.1-g37088a8-dirty/CMakeSystem.cmake @@ -0,0 +1,15 @@ +set(CMAKE_HOST_SYSTEM "Windows-10.0.19045") +set(CMAKE_HOST_SYSTEM_NAME "Windows") +set(CMAKE_HOST_SYSTEM_VERSION "10.0.19045") +set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64") + +include("C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/android.toolchain.cmake") + +set(CMAKE_SYSTEM "Android-1") +set(CMAKE_SYSTEM_NAME "Android") +set(CMAKE_SYSTEM_VERSION "1") +set(CMAKE_SYSTEM_PROCESSOR "armv7-a") + +set(CMAKE_CROSSCOMPILING "TRUE") + +set(CMAKE_SYSTEM_LOADED 1) diff --git a/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdC/CMakeCCompilerId.c b/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdC/CMakeCCompilerId.c new file mode 100644 index 0000000..41b99d7 --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdC/CMakeCCompilerId.c @@ -0,0 +1,803 @@ +#ifdef __cplusplus +# error "A C++ compiler has been selected for C." +#endif + +#if defined(__18CXX) +# define ID_VOID_MAIN +#endif +#if defined(__CLASSIC_C__) +/* cv-qualifiers did not exist in K&R C */ +# define const +# define volatile +#endif + +#if !defined(__has_include) +/* If the compiler does not have __has_include, pretend the answer is + always no. */ +# define __has_include(x) 0 +#endif + + +/* Version number components: V=Version, R=Revision, P=Patch + Version date components: YYYY=Year, MM=Month, DD=Day */ + +#if defined(__INTEL_COMPILER) || defined(__ICC) +# define COMPILER_ID "Intel" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# if defined(__GNUC__) +# define SIMULATE_ID "GNU" +# endif + /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, + except that a few beta releases use the old format with V=2021. */ +# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) +# if defined(__INTEL_COMPILER_UPDATE) +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) +# else +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) +# endif +# else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) + /* The third version component from --version is an update index, + but no macro is provided for it. */ +# define COMPILER_VERSION_PATCH DEC(0) +# endif +# if defined(__INTEL_COMPILER_BUILD_DATE) + /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ +# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) +# endif +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) +# define COMPILER_ID "IntelLLVM" +#if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +#endif +#if defined(__GNUC__) +# define SIMULATE_ID "GNU" +#endif +/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and + * later. Look for 6 digit vs. 8 digit version number to decide encoding. + * VVVV is no smaller than the current year when a version is released. + */ +#if __INTEL_LLVM_COMPILER < 1000000L +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) +#else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) +#endif +#if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +#endif +#if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +#elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +#endif +#if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +#endif +#if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +#endif + +#elif defined(__PATHCC__) +# define COMPILER_ID "PathScale" +# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) +# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) +# if defined(__PATHCC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) +# endif + +#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) +# define COMPILER_ID "Embarcadero" +# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_C) +# define COMPILER_ID "SunPro" +# if __SUNPRO_C >= 0x5100 + /* __SUNPRO_C = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) +# endif + +#elif defined(__HP_cc) +# define COMPILER_ID "HP" + /* __HP_cc = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100) + +#elif defined(__DECC) +# define COMPILER_ID "Compaq" + /* __DECC_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000) + +#elif defined(__IBMC__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__ibmxl__) && defined(__clang__) +# define COMPILER_ID "XLClang" +# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) +# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) +# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) + + +#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800 +# define COMPILER_ID "XL" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__NVCOMPILER) +# define COMPILER_ID "NVHPC" +# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) +# if defined(__NVCOMPILER_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) +# endif + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__CLANG_FUJITSU) +# define COMPILER_ID "FujitsuClang" +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(__FUJITSU) +# define COMPILER_ID "Fujitsu" +# if defined(__FCC_version__) +# define COMPILER_VERSION __FCC_version__ +# elif defined(__FCC_major__) +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# endif +# if defined(__fcc_version) +# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) +# elif defined(__FCC_VERSION) +# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) +# endif + + +#elif defined(__ghs__) +# define COMPILER_ID "GHS" +/* __GHS_VERSION_NUMBER = VVVVRP */ +# ifdef __GHS_VERSION_NUMBER +# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) +# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) +# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) +# endif + +#elif defined(__TINYC__) +# define COMPILER_ID "TinyCC" + +#elif defined(__BCC__) +# define COMPILER_ID "Bruce" + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__ARMCC_VERSION) && !defined(__clang__) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) +# define COMPILER_ID "ARMClang" + # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) + +#elif defined(__clang__) +# define COMPILER_ID "Clang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__GNUC__) +# define COMPILER_ID "GNU" +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# if defined(__GNUC_MINOR__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) +# define COMPILER_ID "ADSP" +#if defined(__VISUALDSPVERSION__) + /* __VISUALDSPVERSION__ = 0xVVRRPP00 */ +# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24) +# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF) +#endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# define COMPILER_ID "IAR" +# if defined(__VER__) && defined(__ICCARM__) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) +# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) +# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) +# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) +# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# endif + +#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC) +# define COMPILER_ID "SDCC" +# if defined(__SDCC_VERSION_MAJOR) +# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR) +# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR) +# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH) +# else + /* SDCC = VRP */ +# define COMPILER_VERSION_MAJOR DEC(SDCC/100) +# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10) +# define COMPILER_VERSION_PATCH DEC(SDCC % 10) +# endif + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; +#ifdef SIMULATE_ID +char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; +#endif + +#ifdef __QNXNTO__ +char const* qnxnto = "INFO" ":" "qnxnto[]"; +#endif + +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) +char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; +#endif + +#define STRINGIFY_HELPER(X) #X +#define STRINGIFY(X) STRINGIFY_HELPER(X) + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__MSYS__) +# define PLATFORM_ID "MSYS" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU__) +# define PLATFORM_ID "Haiku" + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#elif defined(__WATCOMC__) +# if defined(__LINUX__) +# define PLATFORM_ID "Linux" + +# elif defined(__DOS__) +# define PLATFORM_ID "DOS" + +# elif defined(__OS2__) +# define PLATFORM_ID "OS2" + +# elif defined(__WINDOWS__) +# define PLATFORM_ID "Windows3x" + +# elif defined(__VXWORKS__) +# define PLATFORM_ID "VxWorks" + +# else /* unknown platform */ +# define PLATFORM_ID +# endif + +#elif defined(__INTEGRITY) +# if defined(INT_178B) +# define PLATFORM_ID "Integrity178" + +# else /* regular Integrity */ +# define PLATFORM_ID "Integrity" +# endif + +#else /* unknown platform */ +# define PLATFORM_ID + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_ARM64EC) +# define ARCHITECTURE_ID "ARM64EC" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM64) +# define ARCHITECTURE_ID "ARM64" + +# elif defined(_M_ARM) +# if _M_ARM == 4 +# define ARCHITECTURE_ID "ARMV4I" +# elif _M_ARM == 5 +# define ARCHITECTURE_ID "ARMV5I" +# else +# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) +# endif + +# elif defined(_M_MIPS) +# define ARCHITECTURE_ID "MIPS" + +# elif defined(_M_SH) +# define ARCHITECTURE_ID "SHx" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__WATCOMC__) +# if defined(_M_I86) +# define ARCHITECTURE_ID "I86" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# if defined(__ICCARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__ICCRX__) +# define ARCHITECTURE_ID "RX" + +# elif defined(__ICCRH850__) +# define ARCHITECTURE_ID "RH850" + +# elif defined(__ICCRL78__) +# define ARCHITECTURE_ID "RL78" + +# elif defined(__ICCRISCV__) +# define ARCHITECTURE_ID "RISCV" + +# elif defined(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# elif defined(__ICC430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__ICCV850__) +# define ARCHITECTURE_ID "V850" + +# elif defined(__ICC8051__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__ICCSTM8__) +# define ARCHITECTURE_ID "STM8" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__ghs__) +# if defined(__PPC64__) +# define ARCHITECTURE_ID "PPC64" + +# elif defined(__ppc__) +# define ARCHITECTURE_ID "PPC" + +# elif defined(__ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__x86_64__) +# define ARCHITECTURE_ID "x64" + +# elif defined(__i386__) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__TI_COMPILER_VERSION__) +# if defined(__TI_ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__MSP430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__TMS320C28XX__) +# define ARCHITECTURE_ID "TMS320C28x" + +# elif defined(__TMS320C6X__) || defined(_TMS320C6X) +# define ARCHITECTURE_ID "TMS320C6x" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#else +# define ARCHITECTURE_ID +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number. */ +#ifdef COMPILER_VERSION +char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; + +/* Construct a string literal encoding the version number components. */ +#elif defined(COMPILER_VERSION_MAJOR) +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the internal version number. */ +#ifdef COMPILER_VERSION_INTERNAL +char const info_version_internal[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', + 'i','n','t','e','r','n','a','l','[', + COMPILER_VERSION_INTERNAL,']','\0'}; +#elif defined(COMPILER_VERSION_INTERNAL_STR) +char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + +#if !defined(__STDC__) && !defined(__clang__) +# if defined(_MSC_VER) || defined(__ibmxl__) || defined(__IBMC__) +# define C_VERSION "90" +# else +# define C_VERSION +# endif +#elif __STDC_VERSION__ > 201710L +# define C_VERSION "23" +#elif __STDC_VERSION__ >= 201710L +# define C_VERSION "17" +#elif __STDC_VERSION__ >= 201000L +# define C_VERSION "11" +#elif __STDC_VERSION__ >= 199901L +# define C_VERSION "99" +#else +# define C_VERSION "90" +#endif +const char* info_language_standard_default = + "INFO" ":" "standard_default[" C_VERSION "]"; + +const char* info_language_extensions_default = "INFO" ":" "extensions_default[" +/* !defined(_MSC_VER) to exclude Clang's MSVC compatibility mode. */ +#if (defined(__clang__) || defined(__GNUC__) || \ + defined(__TI_COMPILER_VERSION__)) && \ + !defined(__STRICT_ANSI__) && !defined(_MSC_VER) + "ON" +#else + "OFF" +#endif +"]"; + +/*--------------------------------------------------------------------------*/ + +#ifdef ID_VOID_MAIN +void main() {} +#else +# if defined(__CLASSIC_C__) +int main(argc, argv) int argc; char *argv[]; +# else +int main(int argc, char* argv[]) +# endif +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; + require += info_arch[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif +#ifdef COMPILER_VERSION_INTERNAL + require += info_version_internal[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) + require += info_cray[argc]; +#endif + require += info_language_standard_default[argc]; + require += info_language_extensions_default[argc]; + (void)argv; + return require; +} +#endif diff --git a/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdC/CMakeCCompilerId.o b/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdC/CMakeCCompilerId.o new file mode 100644 index 0000000000000000000000000000000000000000..f648e14726394e227de8ef973bc83da67d2aff38 GIT binary patch literal 4092 zcmd5zip==eI0>jEO`A3n{ZOd*gyN1pPe-1PfLOQ3OH)shm50&zYDOvE)VX-S0d1 zzTX|^kv+H0DvCm~DKtW>647wXx9C})jL_AvK6YN6rG$1yeNK6n&TQJ(+)az>x#@f9 zY;-rBxuQcJ?2y%Sz0gSSbsg634w=q|&e!+ShsO~A4)lHKljv#mZRp(2pVv;$9hf~h zS*$J9%N56+pQ%{Yg`?yv>lMo@)!e1|Tg%nurchdLadBSo4bQ6DmTTv2r(`Wxy!lj4 zSe&NkR2$`5wb8a6JaE*Hxh7tI#c|nfKIykq&S){oq-4@OYXkar^fB~9=t{qGU3^g2 z;(Z&p#QT+jFp-+2xxvZUO}aWnq$$eWAW`TV=yEs*eVDZP&R7g=nAuotC)h|9?A+ij zo8+`;FZ_wRw)v#nK$wB>)Q}cuhwC@7D^W}*RjAmxC%ZgIvBL%H)ko)y*VATjl!=!a{>&?hbN0gxW`A^MEP znD0#b`w;X{^b|;RiUFsqwp%OPiIG$)lbuMX$8Ss&tcGJJYSo0B9na;mIp>B%kuQ2e zT)zZgJR_YLS@gVmW70HnuNlKwsMQuKPNTN$799hR#Pn*lN^#LDSItUgWofkT){Z+x zFJVuV#wSWyJ2f^oma%svQ)y>MF*%W)*ip(9GD)ZCWbAZiEPVsb?6*!hGc)47&Dlng zW+u%e4ZH($Jey4H&6tN;pofk9wE`ZcOvbe8b<-#|o91q(u)JVqA53{^tB^7+cge8| z<dMmlYzMi(-< zo%@%|F7EXI`$VU2!lkqL1V~ANok<(X2?}>drlU%i+O72{aq3n2lzw#}v|iaj8?_;2 zld@U8R@sI-OMU1U(LyL2%BgtII-vvc8^4cT@jiMLG~`!7e0BbeuOkqikFH$mR{4{4 zm5KIbSkWWh@9S|>-x@CIaYK(8dOW<)Aq}-{Tf&R5!wt@1End<`+a{i7wxw=3YT=ln zeRr~i${Y9|`tdOwX_n(ek1_2fdV(om2DI(|v7zwlE&1OlzI~)(05qxCo&iC5C)6(T zcYyU*u?*ZKQ{YYuKmJ|7_Je}n%M|&Z5HjbjBG2cTVjk}o`@hB%LEjPjkA?nArdZ#% zLjSYS^S-KBXE*kfakel8&InVidz2~i%L)CgphpC?1-)NTeCA1w5^ZJ5^8_Ws=JJ@g z3I*3$A;UwlA+Fs^4yudcIu*mVJj?KFT)SXhq9R?+^&hp(m_EGUusqK#7nVJzArokL zZfCf5No`^Kd2$}`tF0y_ORew3*iN%-H~obeewp+Qysm(_I=x+-jcUzvjJ*erj3VXY ziOyvFvK>gIQm#6}$4{)}T1(EQDvN=Yc~*gp#>pk7!?uxXuK>0b#9`0ii}oK|0cRR~ z>1T0opMp*{$>RF>ZQv$@QjP+;# z#6<~d$Gr;kgLwQiPhte|HbWo8s|WB>24 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_CC) +# define COMPILER_ID "SunPro" +# if __SUNPRO_CC >= 0x5100 + /* __SUNPRO_CC = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# endif + +#elif defined(__HP_aCC) +# define COMPILER_ID "HP" + /* __HP_aCC = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100) + +#elif defined(__DECCXX) +# define COMPILER_ID "Compaq" + /* __DECCXX_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000) + +#elif defined(__IBMCPP__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__ibmxl__) && defined(__clang__) +# define COMPILER_ID "XLClang" +# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) +# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) +# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) + + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800 +# define COMPILER_ID "XL" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__NVCOMPILER) +# define COMPILER_ID "NVHPC" +# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) +# if defined(__NVCOMPILER_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) +# endif + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__CLANG_FUJITSU) +# define COMPILER_ID "FujitsuClang" +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(__FUJITSU) +# define COMPILER_ID "Fujitsu" +# if defined(__FCC_version__) +# define COMPILER_VERSION __FCC_version__ +# elif defined(__FCC_major__) +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# endif +# if defined(__fcc_version) +# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) +# elif defined(__FCC_VERSION) +# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) +# endif + + +#elif defined(__ghs__) +# define COMPILER_ID "GHS" +/* __GHS_VERSION_NUMBER = VVVVRP */ +# ifdef __GHS_VERSION_NUMBER +# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) +# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) +# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) +# endif + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__ARMCC_VERSION) && !defined(__clang__) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) +# define COMPILER_ID "ARMClang" + # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) + +#elif defined(__clang__) +# define COMPILER_ID "Clang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__GNUC__) || defined(__GNUG__) +# define COMPILER_ID "GNU" +# if defined(__GNUC__) +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# else +# define COMPILER_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) +# define COMPILER_ID "ADSP" +#if defined(__VISUALDSPVERSION__) + /* __VISUALDSPVERSION__ = 0xVVRRPP00 */ +# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24) +# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF) +#endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# define COMPILER_ID "IAR" +# if defined(__VER__) && defined(__ICCARM__) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) +# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) +# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) +# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) +# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# endif + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; +#ifdef SIMULATE_ID +char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; +#endif + +#ifdef __QNXNTO__ +char const* qnxnto = "INFO" ":" "qnxnto[]"; +#endif + +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) +char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; +#endif + +#define STRINGIFY_HELPER(X) #X +#define STRINGIFY(X) STRINGIFY_HELPER(X) + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__MSYS__) +# define PLATFORM_ID "MSYS" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU__) +# define PLATFORM_ID "Haiku" + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#elif defined(__WATCOMC__) +# if defined(__LINUX__) +# define PLATFORM_ID "Linux" + +# elif defined(__DOS__) +# define PLATFORM_ID "DOS" + +# elif defined(__OS2__) +# define PLATFORM_ID "OS2" + +# elif defined(__WINDOWS__) +# define PLATFORM_ID "Windows3x" + +# elif defined(__VXWORKS__) +# define PLATFORM_ID "VxWorks" + +# else /* unknown platform */ +# define PLATFORM_ID +# endif + +#elif defined(__INTEGRITY) +# if defined(INT_178B) +# define PLATFORM_ID "Integrity178" + +# else /* regular Integrity */ +# define PLATFORM_ID "Integrity" +# endif + +#else /* unknown platform */ +# define PLATFORM_ID + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_ARM64EC) +# define ARCHITECTURE_ID "ARM64EC" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM64) +# define ARCHITECTURE_ID "ARM64" + +# elif defined(_M_ARM) +# if _M_ARM == 4 +# define ARCHITECTURE_ID "ARMV4I" +# elif _M_ARM == 5 +# define ARCHITECTURE_ID "ARMV5I" +# else +# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) +# endif + +# elif defined(_M_MIPS) +# define ARCHITECTURE_ID "MIPS" + +# elif defined(_M_SH) +# define ARCHITECTURE_ID "SHx" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__WATCOMC__) +# if defined(_M_I86) +# define ARCHITECTURE_ID "I86" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# if defined(__ICCARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__ICCRX__) +# define ARCHITECTURE_ID "RX" + +# elif defined(__ICCRH850__) +# define ARCHITECTURE_ID "RH850" + +# elif defined(__ICCRL78__) +# define ARCHITECTURE_ID "RL78" + +# elif defined(__ICCRISCV__) +# define ARCHITECTURE_ID "RISCV" + +# elif defined(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# elif defined(__ICC430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__ICCV850__) +# define ARCHITECTURE_ID "V850" + +# elif defined(__ICC8051__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__ICCSTM8__) +# define ARCHITECTURE_ID "STM8" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__ghs__) +# if defined(__PPC64__) +# define ARCHITECTURE_ID "PPC64" + +# elif defined(__ppc__) +# define ARCHITECTURE_ID "PPC" + +# elif defined(__ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__x86_64__) +# define ARCHITECTURE_ID "x64" + +# elif defined(__i386__) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__TI_COMPILER_VERSION__) +# if defined(__TI_ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__MSP430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__TMS320C28XX__) +# define ARCHITECTURE_ID "TMS320C28x" + +# elif defined(__TMS320C6X__) || defined(_TMS320C6X) +# define ARCHITECTURE_ID "TMS320C6x" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#else +# define ARCHITECTURE_ID +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number. */ +#ifdef COMPILER_VERSION +char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; + +/* Construct a string literal encoding the version number components. */ +#elif defined(COMPILER_VERSION_MAJOR) +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the internal version number. */ +#ifdef COMPILER_VERSION_INTERNAL +char const info_version_internal[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', + 'i','n','t','e','r','n','a','l','[', + COMPILER_VERSION_INTERNAL,']','\0'}; +#elif defined(COMPILER_VERSION_INTERNAL_STR) +char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + +#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) && _MSVC_LANG < 201403L +# if defined(__INTEL_CXX11_MODE__) +# if defined(__cpp_aggregate_nsdmi) +# define CXX_STD 201402L +# else +# define CXX_STD 201103L +# endif +# else +# define CXX_STD 199711L +# endif +#elif defined(_MSC_VER) && defined(_MSVC_LANG) +# define CXX_STD _MSVC_LANG +#else +# define CXX_STD __cplusplus +#endif + +const char* info_language_standard_default = "INFO" ":" "standard_default[" +#if CXX_STD > 202002L + "23" +#elif CXX_STD > 201703L + "20" +#elif CXX_STD >= 201703L + "17" +#elif CXX_STD >= 201402L + "14" +#elif CXX_STD >= 201103L + "11" +#else + "98" +#endif +"]"; + +const char* info_language_extensions_default = "INFO" ":" "extensions_default[" +/* !defined(_MSC_VER) to exclude Clang's MSVC compatibility mode. */ +#if (defined(__clang__) || defined(__GNUC__) || \ + defined(__TI_COMPILER_VERSION__)) && \ + !defined(__STRICT_ANSI__) && !defined(_MSC_VER) + "ON" +#else + "OFF" +#endif +"]"; + +/*--------------------------------------------------------------------------*/ + +int main(int argc, char* argv[]) +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif +#ifdef COMPILER_VERSION_INTERNAL + require += info_version_internal[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) + require += info_cray[argc]; +#endif + require += info_language_standard_default[argc]; + require += info_language_extensions_default[argc]; + (void)argv; + return require; +} diff --git a/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdCXX/CMakeCXXCompilerId.o b/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdCXX/CMakeCXXCompilerId.o new file mode 100644 index 0000000000000000000000000000000000000000..7ec68bb05dfac291a512f9c76269f583efe79bbe GIT binary patch literal 4128 zcmd5RnSU&R%{Rw6@nE=biopk5J+qg5-gBFEPyRS<=pXm&e$c0B`Hbfv#TS8o`wNN-Pvx4T29>yexFgY@Y!%r}ENf@-4fLgjMvrgmZO$n4RHVr{8j zuDIU(bj7YNoT0#2uh@R6<}J-1Dp!|Rh0*qki}Rx2@a?K&drsbQOZIZbpHGhpkGtx- z)ke8iZM1wxkDLkS+=BK2RE~w?YMVd5;(9!6J{6SosM+kKQnHgdLrR}=pRq~TjNZGq z8+}TDlt|6d+@^`dK3yFk(iCNG6H(+|*haDA`u*q-MF&YU_9qgsba6M4*pF^3hwj{_ zhqlVm-5UdRylHP*s|HcR#Jv5{$pOt^BM%|!(MfF?h&JTfRJw@6k6?{xgKKavy%lIg z9|^e%iQtKpONy?sQJX{)IfP~l=?5U9DU6LNU3*z{#pWPfm|Fw7C!sYtzEE|I_c!*0 z1hEAMQm>;?zJ$hmuT7!}=IEiAE3xc_oz&0JC_h5uGg`xLqgYL1*&ASgW9%Q$_$=43 zJ1F+D#Il#M@%LdFL{;7pmQSE)lW+yGWC-U$#9N{~@g?JKt3E`J`a(Ai8<~XsYUXwX%~ON~g2A@l0lHPqJV)TqjwpCcWI)=xA=# z-JLA*%}deyvt1F52a)RjI5j z4cEQe({9mEI^(6W@lwu7kBp3DoxQ1a#@$;?jpxSqma>Ix$}PHCCzBn??563%_E~rO z$tS196P$C*V!ck&6V{0a9)mTOOC=9xtz%8%onSX5V)PeltCyyP-=c!yR)$%e`G&Pwcni?mEW{)>>*n8` z{?ws#CYV=Rmax~r_+)zvMQ&EebDvo*dw3N8?~|U|hs$X5sgROJcRFLH#wi-_nu;mi zYFz744BDvlDt&5yWV5n`?$!pBt;#lamvTSuaxX^QMu{M!D9;-`8=$jI7JfDl8@+S` zG7@BYe2M-vHsE0dUnEc{>s_{hLswa7w{=DDihrydmcAoe(hXBjn7R>N2x;4+i?F}} zcT_V<`fwZ2YH4u*wP?cBemPfCHzSf@qW0#UkQ$-iZ--RU@b^mFAdUFVJ1vk#--vz& zQlb8qhdUZ|b?BXbd>2ARqq{;HkKfjz@1X8rBb#ZeABfilg7bVI#b`jp+tlOqSexI# zFM?)i`g>`z4c`;2O~c_X0;b`+Q(>tS)md&N@>z<5e;_zAWNdr_x%``Ch#EsSW!X)^ zPO;<_t4O@OQr35}1aFEZ2F(ilVIdzE(q@S`IUdHH6ZXq25%)D==ksOW4_NjQ-4gb% zg#CM#Sl6$@{+F=Fu`eptxsfHt?_i1JObR{C5^?Sm`lCXg6mn6>Wg!QcHx3?_JWfb5 z9nPG2yHN1l6*7IKB;wS*EOE* z;^RCfB*mGSZYdq0P65}pUMPGHyk7pk$@L!T;JXCAH$!}KUjC+p`QC%VTgZI;9g%zu;N;md&7k;B KF^{~b9LL`S-Ay9^ literal 0 HcmV?d00001 diff --git a/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/CMakeFiles/TargetDirectories.txt b/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000..a859eb9 --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,2 @@ +C:/Users/840 G3/ProjectR.Mobile/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/CMakeFiles/edit_cache.dir +C:/Users/840 G3/ProjectR.Mobile/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/CMakeFiles/rebuild_cache.dir diff --git a/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/CMakeFiles/cmake.check_cache b/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/CMakeFiles/cmake.check_cache new file mode 100644 index 0000000..3dccd73 --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/CMakeFiles/cmake.check_cache @@ -0,0 +1 @@ +# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/CMakeFiles/rules.ninja b/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/CMakeFiles/rules.ninja new file mode 100644 index 0000000..8e021c1 --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/CMakeFiles/rules.ninja @@ -0,0 +1,45 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Ninja" Generator, CMake Version 3.22 + +# This file contains all the rules used to get the outputs files +# built from the input files. +# It is included in the main 'build.ninja'. + +# ============================================================================= +# Project: Project +# Configurations: Debug +# ============================================================================= +# ============================================================================= + +############################################# +# Rule for running custom commands. + +rule CUSTOM_COMMAND + command = $COMMAND + description = $DESC + + +############################################# +# Rule for re-running cmake. + +rule RERUN_CMAKE + command = "C:\Users\840 G3\AppData\Local\Android\Sdk\cmake\3.22.1\bin\cmake.exe" --regenerate-during-build -S"C:\Users\840 G3\flutter\packages\flutter_tools\gradle\src\main\groovy" -B"C:\Users\840 G3\ProjectR.Mobile\android\app\.cxx\Debug\4z1t2ab1\armeabi-v7a" + description = Re-running CMake... + generator = 1 + + +############################################# +# Rule for cleaning all built files. + +rule CLEAN + command = "C:\Users\840 G3\AppData\Local\Android\Sdk\cmake\3.22.1\bin\ninja.exe" $FILE_ARG -t clean $TARGETS + description = Cleaning all built files... + + +############################################# +# Rule for printing all primary targets available. + +rule HELP + command = "C:\Users\840 G3\AppData\Local\Android\Sdk\cmake\3.22.1\bin\ninja.exe" -t targets + description = All primary targets available: + diff --git a/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/additional_project_files.txt b/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/additional_project_files.txt new file mode 100644 index 0000000..e69de29 diff --git a/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/android_gradle_build.json b/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/android_gradle_build.json new file mode 100644 index 0000000..a8ca1ca --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/android_gradle_build.json @@ -0,0 +1,28 @@ +{ + "buildFiles": [ + "C:\\Users\\840 G3\\flutter\\packages\\flutter_tools\\gradle\\src\\main\\groovy\\CMakeLists.txt" + ], + "cleanCommandsComponents": [ + [ + "C:\\Users\\840 G3\\AppData\\Local\\Android\\sdk\\cmake\\3.22.1\\bin\\ninja.exe", + "-C", + "C:\\Users\\840 G3\\ProjectR.Mobile\\android\\app\\.cxx\\Debug\\4z1t2ab1\\armeabi-v7a", + "clean" + ] + ], + "buildTargetsCommandComponents": [ + "C:\\Users\\840 G3\\AppData\\Local\\Android\\sdk\\cmake\\3.22.1\\bin\\ninja.exe", + "-C", + "C:\\Users\\840 G3\\ProjectR.Mobile\\android\\app\\.cxx\\Debug\\4z1t2ab1\\armeabi-v7a", + "{LIST_OF_TARGETS_TO_BUILD}" + ], + "libraries": {}, + "toolchains": { + "toolchain": { + "cCompilerExecutable": "C:\\Users\\840 G3\\AppData\\Local\\Android\\Sdk\\ndk\\26.3.11579264\\toolchains\\llvm\\prebuilt\\windows-x86_64\\bin\\clang.exe", + "cppCompilerExecutable": "C:\\Users\\840 G3\\AppData\\Local\\Android\\Sdk\\ndk\\26.3.11579264\\toolchains\\llvm\\prebuilt\\windows-x86_64\\bin\\clang++.exe" + } + }, + "cFileExtensions": [], + "cppFileExtensions": [] +} \ No newline at end of file diff --git a/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/android_gradle_build_mini.json b/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/android_gradle_build_mini.json new file mode 100644 index 0000000..22efe8a --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/android_gradle_build_mini.json @@ -0,0 +1,20 @@ +{ + "buildFiles": [ + "C:\\Users\\840 G3\\flutter\\packages\\flutter_tools\\gradle\\src\\main\\groovy\\CMakeLists.txt" + ], + "cleanCommandsComponents": [ + [ + "C:\\Users\\840 G3\\AppData\\Local\\Android\\sdk\\cmake\\3.22.1\\bin\\ninja.exe", + "-C", + "C:\\Users\\840 G3\\ProjectR.Mobile\\android\\app\\.cxx\\Debug\\4z1t2ab1\\armeabi-v7a", + "clean" + ] + ], + "buildTargetsCommandComponents": [ + "C:\\Users\\840 G3\\AppData\\Local\\Android\\sdk\\cmake\\3.22.1\\bin\\ninja.exe", + "-C", + "C:\\Users\\840 G3\\ProjectR.Mobile\\android\\app\\.cxx\\Debug\\4z1t2ab1\\armeabi-v7a", + "{LIST_OF_TARGETS_TO_BUILD}" + ], + "libraries": {} +} \ No newline at end of file diff --git a/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/build.ninja b/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/build.ninja new file mode 100644 index 0000000..386ee52 --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/build.ninja @@ -0,0 +1,111 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Ninja" Generator, CMake Version 3.22 + +# This file contains all the build statements describing the +# compilation DAG. + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# +# Which is the root file. +# ============================================================================= + +# ============================================================================= +# Project: Project +# Configurations: Debug +# ============================================================================= + +############################################# +# Minimal version of Ninja required by this file + +ninja_required_version = 1.5 + + +############################################# +# Set configuration variable for custom commands. + +CONFIGURATION = Debug +# ============================================================================= +# Include auxiliary files. + + +############################################# +# Include rules file. + +include CMakeFiles/rules.ninja + +# ============================================================================= + +############################################# +# Logical path to working directory; prefix for absolute paths. + +cmake_ninja_workdir = C$:/Users/840$ G3/ProjectR.Mobile/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/ + +############################################# +# Utility command for edit_cache + +build CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D "C:\Users\840 G3\ProjectR.Mobile\android\app\.cxx\Debug\4z1t2ab1\armeabi-v7a" && "C:\Users\840 G3\AppData\Local\Android\Sdk\cmake\3.22.1\bin\cmake.exe" -E echo "No interactive CMake dialog available."" + DESC = No interactive CMake dialog available... + restat = 1 + +build edit_cache: phony CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D "C:\Users\840 G3\ProjectR.Mobile\android\app\.cxx\Debug\4z1t2ab1\armeabi-v7a" && "C:\Users\840 G3\AppData\Local\Android\Sdk\cmake\3.22.1\bin\cmake.exe" --regenerate-during-build -S"C:\Users\840 G3\flutter\packages\flutter_tools\gradle\src\main\groovy" -B"C:\Users\840 G3\ProjectR.Mobile\android\app\.cxx\Debug\4z1t2ab1\armeabi-v7a"" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build rebuild_cache: phony CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Target aliases. + +# ============================================================================= +# Folder targets. + +# ============================================================================= + +############################################# +# Folder: C:/Users/840 G3/ProjectR.Mobile/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a + +build all: phony + +# ============================================================================= +# Built-in targets + + +############################################# +# Re-run CMake if any of its inputs changed. + +build build.ninja: RERUN_CMAKE | C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/android-legacy.toolchain.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/android.toolchain.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/flags.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/hooks/pre/Android-Clang.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/hooks/pre/Android-Determine.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/hooks/pre/Android-Initialize.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/hooks/pre/Android.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/hooks/pre/Determine-Compiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/platforms.cmake C$:/Users/840$ G3/flutter/packages/flutter_tools/gradle/src/main/groovy/CMakeLists.txt CMakeCache.txt CMakeFiles/3.22.1-g37088a8-dirty/CMakeCCompiler.cmake CMakeFiles/3.22.1-g37088a8-dirty/CMakeCXXCompiler.cmake CMakeFiles/3.22.1-g37088a8-dirty/CMakeSystem.cmake + pool = console + + +############################################# +# A missing CMake input file is not an error. + +build C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/android-legacy.toolchain.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/android.toolchain.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/flags.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/hooks/pre/Android-Clang.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/hooks/pre/Android-Determine.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/hooks/pre/Android-Initialize.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/hooks/pre/Android.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/hooks/pre/Determine-Compiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/platforms.cmake C$:/Users/840$ G3/flutter/packages/flutter_tools/gradle/src/main/groovy/CMakeLists.txt CMakeCache.txt CMakeFiles/3.22.1-g37088a8-dirty/CMakeCCompiler.cmake CMakeFiles/3.22.1-g37088a8-dirty/CMakeCXXCompiler.cmake CMakeFiles/3.22.1-g37088a8-dirty/CMakeSystem.cmake: phony + + +############################################# +# Clean all the built files. + +build clean: CLEAN + + +############################################# +# Print all primary targets available. + +build help: HELP + + +############################################# +# Make the all target the default. + +default all diff --git a/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/build_file_index.txt b/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/build_file_index.txt new file mode 100644 index 0000000..dac0edd --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/build_file_index.txt @@ -0,0 +1 @@ +C:\Users\840 G3\flutter\packages\flutter_tools\gradle\src\main\groovy\CMakeLists.txt \ No newline at end of file diff --git a/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/cmake_install.cmake b/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/cmake_install.cmake new file mode 100644 index 0000000..e0c72ea --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/cmake_install.cmake @@ -0,0 +1,54 @@ +# Install script for directory: C:/Users/840 G3/flutter/packages/flutter_tools/gradle/src/main/groovy + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Project") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Debug") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "0") +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-objdump.exe") +endif() + +if(CMAKE_INSTALL_COMPONENT) + set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") +else() + set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +file(WRITE "C:/Users/840 G3/ProjectR.Mobile/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") diff --git a/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/configure_fingerprint.bin b/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/configure_fingerprint.bin new file mode 100644 index 0000000..75634ac --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/configure_fingerprint.bin @@ -0,0 +1,28 @@ +C/C++ Structured Logl +j +hC:\Users\840 G3\ProjectR.Mobile\android\app\.cxx\Debug\4z1t2ab1\armeabi-v7a\additional_project_files.txtC +A +?com.android.build.gradle.internal.cxx.io.EncodedFileFingerPrint  є2  2i +g +eC:\Users\840 G3\ProjectR.Mobile\android\app\.cxx\Debug\4z1t2ab1\armeabi-v7a\android_gradle_build.json  є2 2n +l +jC:\Users\840 G3\ProjectR.Mobile\android\app\.cxx\Debug\4z1t2ab1\armeabi-v7a\android_gradle_build_mini.json  є2 2[ +Y +WC:\Users\840 G3\ProjectR.Mobile\android\app\.cxx\Debug\4z1t2ab1\armeabi-v7a\build.ninja  є2 2_ +] +[C:\Users\840 G3\ProjectR.Mobile\android\app\.cxx\Debug\4z1t2ab1\armeabi-v7a\build.ninja.txt  є2d +b +`C:\Users\840 G3\ProjectR.Mobile\android\app\.cxx\Debug\4z1t2ab1\armeabi-v7a\build_file_index.txt  є2 T 2e +c +aC:\Users\840 G3\ProjectR.Mobile\android\app\.cxx\Debug\4z1t2ab1\armeabi-v7a\compile_commands.json  є2i +g +eC:\Users\840 G3\ProjectR.Mobile\android\app\.cxx\Debug\4z1t2ab1\armeabi-v7a\compile_commands.json.bin  є2 o +m +kC:\Users\840 G3\ProjectR.Mobile\android\app\.cxx\Debug\4z1t2ab1\armeabi-v7a\metadata_generation_command.txt  є2 + 2b +` +^C:\Users\840 G3\ProjectR.Mobile\android\app\.cxx\Debug\4z1t2ab1\armeabi-v7a\prefab_config.json  є2  ( 2g +e +cC:\Users\840 G3\ProjectR.Mobile\android\app\.cxx\Debug\4z1t2ab1\armeabi-v7a\symbol_folder_index.txt  є2  Z 2X +V +TC:\Users\840 G3\flutter\packages\flutter_tools\gradle\src\main\groovy\CMakeLists.txt  є2  2 \ No newline at end of file diff --git a/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/metadata_generation_command.txt b/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/metadata_generation_command.txt new file mode 100644 index 0000000..3539a02 --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/metadata_generation_command.txt @@ -0,0 +1,20 @@ + -HC:\Users\840 G3\flutter\packages\flutter_tools\gradle\src\main\groovy +-DCMAKE_SYSTEM_NAME=Android +-DCMAKE_EXPORT_COMPILE_COMMANDS=ON +-DCMAKE_SYSTEM_VERSION=21 +-DANDROID_PLATFORM=android-21 +-DANDROID_ABI=armeabi-v7a +-DCMAKE_ANDROID_ARCH_ABI=armeabi-v7a +-DANDROID_NDK=C:\Users\840 G3\AppData\Local\Android\sdk\ndk\26.3.11579264 +-DCMAKE_ANDROID_NDK=C:\Users\840 G3\AppData\Local\Android\sdk\ndk\26.3.11579264 +-DCMAKE_TOOLCHAIN_FILE=C:\Users\840 G3\AppData\Local\Android\sdk\ndk\26.3.11579264\build\cmake\android.toolchain.cmake +-DCMAKE_MAKE_PROGRAM=C:\Users\840 G3\AppData\Local\Android\sdk\cmake\3.22.1\bin\ninja.exe +-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=C:\Users\840 G3\ProjectR.Mobile\build\app\intermediates\cxx\Debug\4z1t2ab1\obj\armeabi-v7a +-DCMAKE_RUNTIME_OUTPUT_DIRECTORY=C:\Users\840 G3\ProjectR.Mobile\build\app\intermediates\cxx\Debug\4z1t2ab1\obj\armeabi-v7a +-DCMAKE_BUILD_TYPE=Debug +-BC:\Users\840 G3\ProjectR.Mobile\android\app\.cxx\Debug\4z1t2ab1\armeabi-v7a +-GNinja +-Wno-dev +--no-warn-unused-cli + Build command args: [] + Version: 2 \ No newline at end of file diff --git a/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/prefab_config.json b/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/prefab_config.json new file mode 100644 index 0000000..e799de8 --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/prefab_config.json @@ -0,0 +1,4 @@ +{ + "enabled": false, + "packages": [] +} \ No newline at end of file diff --git a/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/symbol_folder_index.txt b/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/symbol_folder_index.txt new file mode 100644 index 0000000..277f961 --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/armeabi-v7a/symbol_folder_index.txt @@ -0,0 +1 @@ +C:\Users\840 G3\ProjectR.Mobile\build\app\intermediates\cxx\Debug\4z1t2ab1\obj\armeabi-v7a \ No newline at end of file diff --git a/android/app/.cxx/Debug/4z1t2ab1/hash_key.txt b/android/app/.cxx/Debug/4z1t2ab1/hash_key.txt new file mode 100644 index 0000000..486cea1 --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/hash_key.txt @@ -0,0 +1,27 @@ +# Values used to calculate the hash in this folder name. +# Should not depend on the absolute path of the project itself. +# - AGP: 8.1.0. +# - $NDK is the path to NDK 26.3.11579264. +# - $PROJECT is the path to the parent folder of the root Gradle build file. +# - $ABI is the ABI to be built with. The specific value doesn't contribute to the value of the hash. +# - $HASH is the hash value computed from this text. +# - $CMAKE is the path to CMake 3.22.1. +# - $NINJA is the path to Ninja. +-HC:/Users/840 G3/flutter/packages/flutter_tools/gradle/src/main/groovy +-DCMAKE_SYSTEM_NAME=Android +-DCMAKE_EXPORT_COMPILE_COMMANDS=ON +-DCMAKE_SYSTEM_VERSION=21 +-DANDROID_PLATFORM=android-21 +-DANDROID_ABI=$ABI +-DCMAKE_ANDROID_ARCH_ABI=$ABI +-DANDROID_NDK=$NDK +-DCMAKE_ANDROID_NDK=$NDK +-DCMAKE_TOOLCHAIN_FILE=$NDK/build/cmake/android.toolchain.cmake +-DCMAKE_MAKE_PROGRAM=$NINJA +-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=C:/Users/840 G3/ProjectR.Mobile/build/app/intermediates/cxx/Debug/$HASH/obj/$ABI +-DCMAKE_RUNTIME_OUTPUT_DIRECTORY=C:/Users/840 G3/ProjectR.Mobile/build/app/intermediates/cxx/Debug/$HASH/obj/$ABI +-DCMAKE_BUILD_TYPE=Debug +-B$PROJECT/app/.cxx/Debug/$HASH/$ABI +-GNinja +-Wno-dev +--no-warn-unused-cli \ No newline at end of file diff --git a/android/app/.cxx/Debug/4z1t2ab1/x86/.cmake/api/v1/query/client-agp/cache-v2 b/android/app/.cxx/Debug/4z1t2ab1/x86/.cmake/api/v1/query/client-agp/cache-v2 new file mode 100644 index 0000000..e69de29 diff --git a/android/app/.cxx/Debug/4z1t2ab1/x86/.cmake/api/v1/query/client-agp/cmakeFiles-v1 b/android/app/.cxx/Debug/4z1t2ab1/x86/.cmake/api/v1/query/client-agp/cmakeFiles-v1 new file mode 100644 index 0000000..e69de29 diff --git a/android/app/.cxx/Debug/4z1t2ab1/x86/.cmake/api/v1/query/client-agp/codemodel-v2 b/android/app/.cxx/Debug/4z1t2ab1/x86/.cmake/api/v1/query/client-agp/codemodel-v2 new file mode 100644 index 0000000..e69de29 diff --git a/android/app/.cxx/Debug/4z1t2ab1/x86/.cmake/api/v1/reply/cache-v2-edfebe82dc825d025b3f.json b/android/app/.cxx/Debug/4z1t2ab1/x86/.cmake/api/v1/reply/cache-v2-edfebe82dc825d025b3f.json new file mode 100644 index 0000000..9b69115 --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/x86/.cmake/api/v1/reply/cache-v2-edfebe82dc825d025b3f.json @@ -0,0 +1,1367 @@ +{ + "entries" : + [ + { + "name" : "ANDROID_ABI", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "UNINITIALIZED", + "value" : "x86" + }, + { + "name" : "ANDROID_NDK", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "UNINITIALIZED", + "value" : "C:\\Users\\840 G3\\AppData\\Local\\Android\\sdk\\ndk\\26.3.11579264" + }, + { + "name" : "ANDROID_PLATFORM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "UNINITIALIZED", + "value" : "android-21" + }, + { + "name" : "CMAKE_ADDR2LINE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-addr2line.exe" + }, + { + "name" : "CMAKE_ANDROID_ARCH_ABI", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "UNINITIALIZED", + "value" : "x86" + }, + { + "name" : "CMAKE_ANDROID_NDK", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "UNINITIALIZED", + "value" : "C:\\Users\\840 G3\\AppData\\Local\\Android\\sdk\\ndk\\26.3.11579264" + }, + { + "name" : "CMAKE_AR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Archiver" + } + ], + "type" : "FILEPATH", + "value" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-ar.exe" + }, + { + "name" : "CMAKE_ASM_FLAGS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Flags used by the compiler during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_ASM_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Flags used by the compiler during debug builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_ASM_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Flags used by the compiler during release builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_BUILD_TYPE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Choose the type of build, options are: None Debug Release RelWithDebInfo MinSizeRel ..." + } + ], + "type" : "STRING", + "value" : "Debug" + }, + { + "name" : "CMAKE_CACHEFILE_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "This is the directory where this CMakeCache.txt was created" + } + ], + "type" : "INTERNAL", + "value" : "c:/Users/840 G3/ProjectR.Mobile/android/app/.cxx/Debug/4z1t2ab1/x86" + }, + { + "name" : "CMAKE_CACHE_MAJOR_VERSION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Major version of cmake used to create the current loaded cache" + } + ], + "type" : "INTERNAL", + "value" : "3" + }, + { + "name" : "CMAKE_CACHE_MINOR_VERSION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Minor version of cmake used to create the current loaded cache" + } + ], + "type" : "INTERNAL", + "value" : "22" + }, + { + "name" : "CMAKE_CACHE_PATCH_VERSION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Patch version of cmake used to create the current loaded cache" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "CMAKE_COMMAND", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to CMake executable." + } + ], + "type" : "INTERNAL", + "value" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/bin/cmake.exe" + }, + { + "name" : "CMAKE_CPACK_COMMAND", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to cpack program executable." + } + ], + "type" : "INTERNAL", + "value" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/bin/cpack.exe" + }, + { + "name" : "CMAKE_CTEST_COMMAND", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to ctest program executable." + } + ], + "type" : "INTERNAL", + "value" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/bin/ctest.exe" + }, + { + "name" : "CMAKE_CXX_COMPILER", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "(This variable does not exist and should not be used)" + } + ], + "type" : "UNINITIALIZED", + "value" : "" + }, + { + "name" : "CMAKE_CXX_COMPILER_AR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "LLVM archiver" + } + ], + "type" : "FILEPATH", + "value" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-ar.exe" + }, + { + "name" : "CMAKE_CXX_COMPILER_RANLIB", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Generate index for LLVM archive" + } + ], + "type" : "FILEPATH", + "value" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-ranlib.exe" + }, + { + "name" : "CMAKE_CXX_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the compiler during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_CXX_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the compiler during debug builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_CXX_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the CXX compiler during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "-Os -DNDEBUG" + }, + { + "name" : "CMAKE_CXX_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the compiler during release builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_CXX_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the CXX compiler during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "-O2 -g -DNDEBUG" + }, + { + "name" : "CMAKE_CXX_STANDARD_LIBRARIES", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Libraries linked by default with all C++ applications." + } + ], + "type" : "STRING", + "value" : "-latomic -lm" + }, + { + "name" : "CMAKE_C_COMPILER", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "(This variable does not exist and should not be used)" + } + ], + "type" : "UNINITIALIZED", + "value" : "" + }, + { + "name" : "CMAKE_C_COMPILER_AR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "LLVM archiver" + } + ], + "type" : "FILEPATH", + "value" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-ar.exe" + }, + { + "name" : "CMAKE_C_COMPILER_RANLIB", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Generate index for LLVM archive" + } + ], + "type" : "FILEPATH", + "value" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-ranlib.exe" + }, + { + "name" : "CMAKE_C_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the compiler during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_C_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the compiler during debug builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_C_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the C compiler during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "-Os -DNDEBUG" + }, + { + "name" : "CMAKE_C_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the compiler during release builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_C_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the C compiler during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "-O2 -g -DNDEBUG" + }, + { + "name" : "CMAKE_C_STANDARD_LIBRARIES", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Libraries linked by default with all C applications." + } + ], + "type" : "STRING", + "value" : "-latomic -lm" + }, + { + "name" : "CMAKE_DLLTOOL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "CMAKE_DLLTOOL-NOTFOUND" + }, + { + "name" : "CMAKE_ERROR_DEPRECATED", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Whether to issue deprecation errors for macros and functions." + } + ], + "type" : "INTERNAL", + "value" : "FALSE" + }, + { + "name" : "CMAKE_EXECUTABLE_FORMAT", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Executable file format" + } + ], + "type" : "INTERNAL", + "value" : "ELF" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_EXPORT_COMPILE_COMMANDS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "UNINITIALIZED", + "value" : "ON" + }, + { + "name" : "CMAKE_EXTRA_GENERATOR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Name of external makefile project generator." + } + ], + "type" : "INTERNAL", + "value" : "" + }, + { + "name" : "CMAKE_GENERATOR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Name of generator." + } + ], + "type" : "INTERNAL", + "value" : "Ninja" + }, + { + "name" : "CMAKE_GENERATOR_INSTANCE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Generator instance identifier." + } + ], + "type" : "INTERNAL", + "value" : "" + }, + { + "name" : "CMAKE_GENERATOR_PLATFORM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Name of generator platform." + } + ], + "type" : "INTERNAL", + "value" : "" + }, + { + "name" : "CMAKE_GENERATOR_TOOLSET", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Name of generator toolset." + } + ], + "type" : "INTERNAL", + "value" : "" + }, + { + "name" : "CMAKE_HOME_DIRECTORY", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Source directory with the top level CMakeLists.txt file for this project" + } + ], + "type" : "INTERNAL", + "value" : "C:/Users/840 G3/flutter/packages/flutter_tools/gradle/src/main/groovy" + }, + { + "name" : "CMAKE_INSTALL_PREFIX", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Install path prefix, prepended onto install directories." + } + ], + "type" : "PATH", + "value" : "C:/Program Files (x86)/Project" + }, + { + "name" : "CMAKE_INSTALL_SO_NO_EXE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Install .so files without execute permission." + } + ], + "type" : "INTERNAL", + "value" : "0" + }, + { + "name" : "CMAKE_LIBRARY_OUTPUT_DIRECTORY", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "UNINITIALIZED", + "value" : "C:\\Users\\840 G3\\ProjectR.Mobile\\build\\app\\intermediates\\cxx\\Debug\\4z1t2ab1\\obj\\x86" + }, + { + "name" : "CMAKE_LINKER", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/ld.lld.exe" + }, + { + "name" : "CMAKE_MAKE_PROGRAM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "make program" + } + ], + "type" : "FILEPATH", + "value" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/bin/ninja.exe" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_NM", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-nm.exe" + }, + { + "name" : "CMAKE_NUMBER_OF_MAKEFILES", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "number of local generators" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "CMAKE_OBJCOPY", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-objcopy.exe" + }, + { + "name" : "CMAKE_OBJDUMP", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-objdump.exe" + }, + { + "name" : "CMAKE_PLATFORM_INFO_INITIALIZED", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Platform information initialized" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "CMAKE_PROJECT_DESCRIPTION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "" + }, + { + "name" : "CMAKE_PROJECT_HOMEPAGE_URL", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "" + }, + { + "name" : "CMAKE_PROJECT_NAME", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "Project" + }, + { + "name" : "CMAKE_RANLIB", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Ranlib" + } + ], + "type" : "FILEPATH", + "value" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-ranlib.exe" + }, + { + "name" : "CMAKE_READELF", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-readelf.exe" + }, + { + "name" : "CMAKE_ROOT", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to CMake installation." + } + ], + "type" : "INTERNAL", + "value" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22" + }, + { + "name" : "CMAKE_RUNTIME_OUTPUT_DIRECTORY", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "UNINITIALIZED", + "value" : "C:\\Users\\840 G3\\ProjectR.Mobile\\build\\app\\intermediates\\cxx\\Debug\\4z1t2ab1\\obj\\x86" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of dll's." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of shared libraries during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of shared libraries during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of shared libraries during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of shared libraries during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_SKIP_INSTALL_RPATH", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "If set, runtime paths are not added when installing shared libraries, but are added when building." + } + ], + "type" : "BOOL", + "value" : "NO" + }, + { + "name" : "CMAKE_SKIP_RPATH", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "If set, runtime paths are not added when using shared libraries." + } + ], + "type" : "BOOL", + "value" : "NO" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STRIP", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Strip" + } + ], + "type" : "FILEPATH", + "value" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-strip.exe" + }, + { + "name" : "CMAKE_SUPPRESS_DEVELOPER_ERRORS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Suppress errors that are meant for the author of the CMakeLists.txt files." + } + ], + "type" : "INTERNAL", + "value" : "TRUE" + }, + { + "name" : "CMAKE_SUPPRESS_DEVELOPER_WARNINGS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Suppress Warnings that are meant for the author of the CMakeLists.txt files." + } + ], + "type" : "INTERNAL", + "value" : "TRUE" + }, + { + "name" : "CMAKE_SYSTEM_NAME", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "UNINITIALIZED", + "value" : "Android" + }, + { + "name" : "CMAKE_SYSTEM_VERSION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "UNINITIALIZED", + "value" : "21" + }, + { + "name" : "CMAKE_TOOLCHAIN_FILE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The CMake toolchain file" + } + ], + "type" : "FILEPATH", + "value" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/android.toolchain.cmake" + }, + { + "name" : "CMAKE_VERBOSE_MAKEFILE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "If this value is on, makefiles will be generated without the .SILENT directive, and all commands will be echoed to the console during the make. This is useful for debugging only. With Visual Studio IDE projects all commands are done without /nologo." + } + ], + "type" : "BOOL", + "value" : "FALSE" + }, + { + "name" : "CMAKE_WARN_DEPRECATED", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Whether to issue warnings for deprecated functionality." + } + ], + "type" : "INTERNAL", + "value" : "FALSE" + }, + { + "name" : "Project_BINARY_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "C:/Users/840 G3/ProjectR.Mobile/android/app/.cxx/Debug/4z1t2ab1/x86" + }, + { + "name" : "Project_IS_TOP_LEVEL", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "ON" + }, + { + "name" : "Project_SOURCE_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "C:/Users/840 G3/flutter/packages/flutter_tools/gradle/src/main/groovy" + } + ], + "kind" : "cache", + "version" : + { + "major" : 2, + "minor" : 0 + } +} diff --git a/android/app/.cxx/Debug/4z1t2ab1/x86/.cmake/api/v1/reply/cmakeFiles-v1-3bce2d3e3c394d7745cc.json b/android/app/.cxx/Debug/4z1t2ab1/x86/.cmake/api/v1/reply/cmakeFiles-v1-3bce2d3e3c394d7745cc.json new file mode 100644 index 0000000..4ce3e07 --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/x86/.cmake/api/v1/reply/cmakeFiles-v1-3bce2d3e3c394d7745cc.json @@ -0,0 +1,799 @@ +{ + "inputs" : + [ + { + "path" : "CMakeLists.txt" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/android.toolchain.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/android-legacy.toolchain.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/platforms.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/hooks/pre/Android-Determine.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in" + }, + { + "isGenerated" : true, + "path" : "C:/Users/840 G3/ProjectR.Mobile/android/app/.cxx/Debug/4z1t2ab1/x86/CMakeFiles/3.22.1-g37088a8-dirty/CMakeSystem.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/android.toolchain.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/hooks/pre/Android-Initialize.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/hooks/pre/Determine-Compiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in" + }, + { + "isGenerated" : true, + "path" : "C:/Users/840 G3/ProjectR.Mobile/android/app/.cxx/Debug/4z1t2ab1/x86/CMakeFiles/3.22.1-g37088a8-dirty/CMakeCCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in" + }, + { + "isGenerated" : true, + "path" : "C:/Users/840 G3/ProjectR.Mobile/android/app/.cxx/Debug/4z1t2ab1/x86/CMakeFiles/3.22.1-g37088a8-dirty/CMakeCXXCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/hooks/pre/Android.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/hooks/pre/Android-Clang.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/flags.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in" + }, + { + "isGenerated" : true, + "path" : "C:/Users/840 G3/ProjectR.Mobile/android/app/.cxx/Debug/4z1t2ab1/x86/CMakeFiles/3.22.1-g37088a8-dirty/CMakeCCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in" + }, + { + "isGenerated" : true, + "path" : "C:/Users/840 G3/ProjectR.Mobile/android/app/.cxx/Debug/4z1t2ab1/x86/CMakeFiles/3.22.1-g37088a8-dirty/CMakeCXXCompiler.cmake" + } + ], + "kind" : "cmakeFiles", + "paths" : + { + "build" : "C:/Users/840 G3/ProjectR.Mobile/android/app/.cxx/Debug/4z1t2ab1/x86", + "source" : "C:/Users/840 G3/flutter/packages/flutter_tools/gradle/src/main/groovy" + }, + "version" : + { + "major" : 1, + "minor" : 0 + } +} diff --git a/android/app/.cxx/Debug/4z1t2ab1/x86/.cmake/api/v1/reply/codemodel-v2-0c0eefad106b1f5f73df.json b/android/app/.cxx/Debug/4z1t2ab1/x86/.cmake/api/v1/reply/codemodel-v2-0c0eefad106b1f5f73df.json new file mode 100644 index 0000000..88806ba --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/x86/.cmake/api/v1/reply/codemodel-v2-0c0eefad106b1f5f73df.json @@ -0,0 +1,43 @@ +{ + "configurations" : + [ + { + "directories" : + [ + { + "build" : ".", + "jsonFile" : "directory-.-Debug-d0094a50bb2071803777.json", + "minimumCMakeVersion" : + { + "string" : "3.6.0" + }, + "projectIndex" : 0, + "source" : "." + } + ], + "name" : "Debug", + "projects" : + [ + { + "directoryIndexes" : + [ + 0 + ], + "name" : "Project" + } + ], + "targets" : [] + } + ], + "kind" : "codemodel", + "paths" : + { + "build" : "C:/Users/840 G3/ProjectR.Mobile/android/app/.cxx/Debug/4z1t2ab1/x86", + "source" : "C:/Users/840 G3/flutter/packages/flutter_tools/gradle/src/main/groovy" + }, + "version" : + { + "major" : 2, + "minor" : 3 + } +} diff --git a/android/app/.cxx/Debug/4z1t2ab1/x86/.cmake/api/v1/reply/directory-.-Debug-d0094a50bb2071803777.json b/android/app/.cxx/Debug/4z1t2ab1/x86/.cmake/api/v1/reply/directory-.-Debug-d0094a50bb2071803777.json new file mode 100644 index 0000000..3a67af9 --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/x86/.cmake/api/v1/reply/directory-.-Debug-d0094a50bb2071803777.json @@ -0,0 +1,14 @@ +{ + "backtraceGraph" : + { + "commands" : [], + "files" : [], + "nodes" : [] + }, + "installers" : [], + "paths" : + { + "build" : ".", + "source" : "." + } +} diff --git a/android/app/.cxx/Debug/4z1t2ab1/x86/.cmake/api/v1/reply/index-2025-07-08T09-39-28-0397.json b/android/app/.cxx/Debug/4z1t2ab1/x86/.cmake/api/v1/reply/index-2025-07-08T09-39-28-0397.json new file mode 100644 index 0000000..e7a5313 --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/x86/.cmake/api/v1/reply/index-2025-07-08T09-39-28-0397.json @@ -0,0 +1,92 @@ +{ + "cmake" : + { + "generator" : + { + "multiConfig" : false, + "name" : "Ninja" + }, + "paths" : + { + "cmake" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/bin/cmake.exe", + "cpack" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/bin/cpack.exe", + "ctest" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/bin/ctest.exe", + "root" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22" + }, + "version" : + { + "isDirty" : true, + "major" : 3, + "minor" : 22, + "patch" : 1, + "string" : "3.22.1-g37088a8-dirty", + "suffix" : "g37088a8" + } + }, + "objects" : + [ + { + "jsonFile" : "codemodel-v2-0c0eefad106b1f5f73df.json", + "kind" : "codemodel", + "version" : + { + "major" : 2, + "minor" : 3 + } + }, + { + "jsonFile" : "cache-v2-edfebe82dc825d025b3f.json", + "kind" : "cache", + "version" : + { + "major" : 2, + "minor" : 0 + } + }, + { + "jsonFile" : "cmakeFiles-v1-3bce2d3e3c394d7745cc.json", + "kind" : "cmakeFiles", + "version" : + { + "major" : 1, + "minor" : 0 + } + } + ], + "reply" : + { + "client-agp" : + { + "cache-v2" : + { + "jsonFile" : "cache-v2-edfebe82dc825d025b3f.json", + "kind" : "cache", + "version" : + { + "major" : 2, + "minor" : 0 + } + }, + "cmakeFiles-v1" : + { + "jsonFile" : "cmakeFiles-v1-3bce2d3e3c394d7745cc.json", + "kind" : "cmakeFiles", + "version" : + { + "major" : 1, + "minor" : 0 + } + }, + "codemodel-v2" : + { + "jsonFile" : "codemodel-v2-0c0eefad106b1f5f73df.json", + "kind" : "codemodel", + "version" : + { + "major" : 2, + "minor" : 3 + } + } + } + } +} diff --git a/android/app/.cxx/Debug/4z1t2ab1/x86/CMakeCache.txt b/android/app/.cxx/Debug/4z1t2ab1/x86/CMakeCache.txt new file mode 100644 index 0000000..0326550 --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/x86/CMakeCache.txt @@ -0,0 +1,401 @@ +# This is the CMakeCache file. +# For build in directory: c:/Users/840 G3/ProjectR.Mobile/android/app/.cxx/Debug/4z1t2ab1/x86 +# It was generated by CMake: C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/bin/cmake.exe +# You can edit this file to change values found and used by cmake. +# If you do not want to change any of the values, simply exit the editor. +# If you do want to change a value, simply edit, save, and exit the editor. +# The syntax for the file is as follows: +# KEY:TYPE=VALUE +# KEY is the name of a variable in the cache. +# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. +# VALUE is the current value for the KEY. + +######################## +# EXTERNAL cache entries +######################## + +//No help, variable specified on the command line. +ANDROID_ABI:UNINITIALIZED=x86 + +//No help, variable specified on the command line. +ANDROID_NDK:UNINITIALIZED=C:\Users\840 G3\AppData\Local\Android\sdk\ndk\26.3.11579264 + +//No help, variable specified on the command line. +ANDROID_PLATFORM:UNINITIALIZED=android-21 + +//Path to a program. +CMAKE_ADDR2LINE:FILEPATH=C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-addr2line.exe + +//No help, variable specified on the command line. +CMAKE_ANDROID_ARCH_ABI:UNINITIALIZED=x86 + +//No help, variable specified on the command line. +CMAKE_ANDROID_NDK:UNINITIALIZED=C:\Users\840 G3\AppData\Local\Android\sdk\ndk\26.3.11579264 + +//Archiver +CMAKE_AR:FILEPATH=C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-ar.exe + +//Flags used by the compiler during all build types. +CMAKE_ASM_FLAGS:STRING= + +//Flags used by the compiler during debug builds. +CMAKE_ASM_FLAGS_DEBUG:STRING= + +//Flags used by the compiler during release builds. +CMAKE_ASM_FLAGS_RELEASE:STRING= + +//Choose the type of build, options are: None Debug Release RelWithDebInfo +// MinSizeRel ... +CMAKE_BUILD_TYPE:STRING=Debug + +//LLVM archiver +CMAKE_CXX_COMPILER_AR:FILEPATH=C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-ar.exe + +//Generate index for LLVM archive +CMAKE_CXX_COMPILER_RANLIB:FILEPATH=C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-ranlib.exe + +//Flags used by the compiler during all build types. +CMAKE_CXX_FLAGS:STRING= + +//Flags used by the compiler during debug builds. +CMAKE_CXX_FLAGS_DEBUG:STRING= + +//Flags used by the CXX compiler during MINSIZEREL builds. +CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the compiler during release builds. +CMAKE_CXX_FLAGS_RELEASE:STRING= + +//Flags used by the CXX compiler during RELWITHDEBINFO builds. +CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Libraries linked by default with all C++ applications. +CMAKE_CXX_STANDARD_LIBRARIES:STRING=-latomic -lm + +//LLVM archiver +CMAKE_C_COMPILER_AR:FILEPATH=C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-ar.exe + +//Generate index for LLVM archive +CMAKE_C_COMPILER_RANLIB:FILEPATH=C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-ranlib.exe + +//Flags used by the compiler during all build types. +CMAKE_C_FLAGS:STRING= + +//Flags used by the compiler during debug builds. +CMAKE_C_FLAGS_DEBUG:STRING= + +//Flags used by the C compiler during MINSIZEREL builds. +CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the compiler during release builds. +CMAKE_C_FLAGS_RELEASE:STRING= + +//Flags used by the C compiler during RELWITHDEBINFO builds. +CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Libraries linked by default with all C applications. +CMAKE_C_STANDARD_LIBRARIES:STRING=-latomic -lm + +//Path to a program. +CMAKE_DLLTOOL:FILEPATH=CMAKE_DLLTOOL-NOTFOUND + +//Flags used by the linker. +CMAKE_EXE_LINKER_FLAGS:STRING= + +//Flags used by the linker during DEBUG builds. +CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during MINSIZEREL builds. +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during RELEASE builds. +CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during RELWITHDEBINFO builds. +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//No help, variable specified on the command line. +CMAKE_EXPORT_COMPILE_COMMANDS:UNINITIALIZED=ON + +//Install path prefix, prepended onto install directories. +CMAKE_INSTALL_PREFIX:PATH=C:/Program Files (x86)/Project + +//No help, variable specified on the command line. +CMAKE_LIBRARY_OUTPUT_DIRECTORY:UNINITIALIZED=C:\Users\840 G3\ProjectR.Mobile\build\app\intermediates\cxx\Debug\4z1t2ab1\obj\x86 + +//Path to a program. +CMAKE_LINKER:FILEPATH=C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/ld.lld.exe + +//make program +CMAKE_MAKE_PROGRAM:FILEPATH=C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/bin/ninja.exe + +//Flags used by the linker during the creation of modules. +CMAKE_MODULE_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of modules during +// DEBUG builds. +CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of modules during +// MINSIZEREL builds. +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of modules during +// RELEASE builds. +CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of modules during +// RELWITHDEBINFO builds. +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_NM:FILEPATH=C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-nm.exe + +//Path to a program. +CMAKE_OBJCOPY:FILEPATH=C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-objcopy.exe + +//Path to a program. +CMAKE_OBJDUMP:FILEPATH=C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-objdump.exe + +//Value Computed by CMake +CMAKE_PROJECT_DESCRIPTION:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_HOMEPAGE_URL:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_NAME:STATIC=Project + +//Ranlib +CMAKE_RANLIB:FILEPATH=C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-ranlib.exe + +//Path to a program. +CMAKE_READELF:FILEPATH=C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-readelf.exe + +//No help, variable specified on the command line. +CMAKE_RUNTIME_OUTPUT_DIRECTORY:UNINITIALIZED=C:\Users\840 G3\ProjectR.Mobile\build\app\intermediates\cxx\Debug\4z1t2ab1\obj\x86 + +//Flags used by the linker during the creation of dll's. +CMAKE_SHARED_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of shared libraries +// during DEBUG builds. +CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of shared libraries +// during MINSIZEREL builds. +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELEASE builds. +CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELWITHDEBINFO builds. +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//If set, runtime paths are not added when installing shared libraries, +// but are added when building. +CMAKE_SKIP_INSTALL_RPATH:BOOL=NO + +//If set, runtime paths are not added when using shared libraries. +CMAKE_SKIP_RPATH:BOOL=NO + +//Flags used by the linker during the creation of static libraries +// during all build types. +CMAKE_STATIC_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of static libraries +// during DEBUG builds. +CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of static libraries +// during MINSIZEREL builds. +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELEASE builds. +CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELWITHDEBINFO builds. +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Strip +CMAKE_STRIP:FILEPATH=C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-strip.exe + +//No help, variable specified on the command line. +CMAKE_SYSTEM_NAME:UNINITIALIZED=Android + +//No help, variable specified on the command line. +CMAKE_SYSTEM_VERSION:UNINITIALIZED=21 + +//The CMake toolchain file +CMAKE_TOOLCHAIN_FILE:FILEPATH=C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/android.toolchain.cmake + +//If this value is on, makefiles will be generated without the +// .SILENT directive, and all commands will be echoed to the console +// during the make. This is useful for debugging only. With Visual +// Studio IDE projects all commands are done without /nologo. +CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE + +//Value Computed by CMake +Project_BINARY_DIR:STATIC=C:/Users/840 G3/ProjectR.Mobile/android/app/.cxx/Debug/4z1t2ab1/x86 + +//Value Computed by CMake +Project_IS_TOP_LEVEL:STATIC=ON + +//Value Computed by CMake +Project_SOURCE_DIR:STATIC=C:/Users/840 G3/flutter/packages/flutter_tools/gradle/src/main/groovy + + +######################## +# INTERNAL cache entries +######################## + +//ADVANCED property for variable: CMAKE_ADDR2LINE +CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_AR +CMAKE_AR-ADVANCED:INTERNAL=1 +//This is the directory where this CMakeCache.txt was created +CMAKE_CACHEFILE_DIR:INTERNAL=c:/Users/840 G3/ProjectR.Mobile/android/app/.cxx/Debug/4z1t2ab1/x86 +//Major version of cmake used to create the current loaded cache +CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 +//Minor version of cmake used to create the current loaded cache +CMAKE_CACHE_MINOR_VERSION:INTERNAL=22 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=1 +//Path to CMake executable. +CMAKE_COMMAND:INTERNAL=C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/bin/cmake.exe +//Path to cpack program executable. +CMAKE_CPACK_COMMAND:INTERNAL=C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/bin/cpack.exe +//Path to ctest program executable. +CMAKE_CTEST_COMMAND:INTERNAL=C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/bin/ctest.exe +//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR +CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB +CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS +CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG +CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL +CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE +CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO +CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_STANDARD_LIBRARIES +CMAKE_CXX_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_AR +CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB +CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS +CMAKE_C_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG +CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL +CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE +CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO +CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_STANDARD_LIBRARIES +CMAKE_C_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_DLLTOOL +CMAKE_DLLTOOL-ADVANCED:INTERNAL=1 +//Whether to issue deprecation errors for macros and functions. +CMAKE_ERROR_DEPRECATED:INTERNAL=FALSE +//Executable file format +CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS +CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG +CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE +CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//Name of external makefile project generator. +CMAKE_EXTRA_GENERATOR:INTERNAL= +//Name of generator. +CMAKE_GENERATOR:INTERNAL=Ninja +//Generator instance identifier. +CMAKE_GENERATOR_INSTANCE:INTERNAL= +//Name of generator platform. +CMAKE_GENERATOR_PLATFORM:INTERNAL= +//Name of generator toolset. +CMAKE_GENERATOR_TOOLSET:INTERNAL= +//Source directory with the top level CMakeLists.txt file for this +// project +CMAKE_HOME_DIRECTORY:INTERNAL=C:/Users/840 G3/flutter/packages/flutter_tools/gradle/src/main/groovy +//Install .so files without execute permission. +CMAKE_INSTALL_SO_NO_EXE:INTERNAL=0 +//ADVANCED property for variable: CMAKE_LINKER +CMAKE_LINKER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS +CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG +CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE +CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_NM +CMAKE_NM-ADVANCED:INTERNAL=1 +//number of local generators +CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJCOPY +CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJDUMP +CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 +//Platform information initialized +CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RANLIB +CMAKE_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_READELF +CMAKE_READELF-ADVANCED:INTERNAL=1 +//Path to CMake installation. +CMAKE_ROOT:INTERNAL=C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS +CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG +CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE +CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH +CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_RPATH +CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS +CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG +CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE +CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STRIP +CMAKE_STRIP-ADVANCED:INTERNAL=1 +//Suppress errors that are meant for the author of the CMakeLists.txt +// files. +CMAKE_SUPPRESS_DEVELOPER_ERRORS:INTERNAL=TRUE +//Suppress Warnings that are meant for the author of the CMakeLists.txt +// files. +CMAKE_SUPPRESS_DEVELOPER_WARNINGS:INTERNAL=TRUE +//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 +//Whether to issue warnings for deprecated functionality. +CMAKE_WARN_DEPRECATED:INTERNAL=FALSE + diff --git a/android/app/.cxx/Debug/4z1t2ab1/x86/CMakeFiles/3.22.1-g37088a8-dirty/CMakeCCompiler.cmake b/android/app/.cxx/Debug/4z1t2ab1/x86/CMakeFiles/3.22.1-g37088a8-dirty/CMakeCCompiler.cmake new file mode 100644 index 0000000..a25e7d5 --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/x86/CMakeFiles/3.22.1-g37088a8-dirty/CMakeCCompiler.cmake @@ -0,0 +1,72 @@ +set(CMAKE_C_COMPILER "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/clang.exe") +set(CMAKE_C_COMPILER_ARG1 "") +set(CMAKE_C_COMPILER_ID "Clang") +set(CMAKE_C_COMPILER_VERSION "17.0.2") +set(CMAKE_C_COMPILER_VERSION_INTERNAL "") +set(CMAKE_C_COMPILER_WRAPPER "") +set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "17") +set(CMAKE_C_EXTENSIONS_COMPUTED_DEFAULT "ON") +set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert;c_std_17;c_std_23") +set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes") +set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros") +set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert") +set(CMAKE_C17_COMPILE_FEATURES "c_std_17") +set(CMAKE_C23_COMPILE_FEATURES "c_std_23") + +set(CMAKE_C_PLATFORM_ID "Linux") +set(CMAKE_C_SIMULATE_ID "") +set(CMAKE_C_COMPILER_FRONTEND_VARIANT "GNU") +set(CMAKE_C_SIMULATE_VERSION "") + + + + +set(CMAKE_AR "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-ar.exe") +set(CMAKE_C_COMPILER_AR "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-ar.exe") +set(CMAKE_RANLIB "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-ranlib.exe") +set(CMAKE_C_COMPILER_RANLIB "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-ranlib.exe") +set(CMAKE_LINKER "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/ld.lld.exe") +set(CMAKE_MT "") +set(CMAKE_COMPILER_IS_GNUCC ) +set(CMAKE_C_COMPILER_LOADED 1) +set(CMAKE_C_COMPILER_WORKS TRUE) +set(CMAKE_C_ABI_COMPILED TRUE) + +set(CMAKE_C_COMPILER_ENV_VAR "CC") + +set(CMAKE_C_COMPILER_ID_RUN 1) +set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m) +set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_C_LINKER_PREFERENCE 10) + +# Save compiler ABI information. +set(CMAKE_C_SIZEOF_DATA_PTR "4") +set(CMAKE_C_COMPILER_ABI "ELF") +set(CMAKE_C_BYTE_ORDER "LITTLE_ENDIAN") +set(CMAKE_C_LIBRARY_ARCHITECTURE "") + +if(CMAKE_C_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_C_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}") +endif() + +if(CMAKE_C_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "") +endif() + +set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_C_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/lib/clang/17/include;C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/include/i686-linux-android;C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/include") +set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "-l:libunwind.a;dl;c;-l:libunwind.a;dl") +set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/lib/clang/17/lib/linux/i386;C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/i686-linux-android/21;C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/i686-linux-android;C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib") +set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/android/app/.cxx/Debug/4z1t2ab1/x86/CMakeFiles/3.22.1-g37088a8-dirty/CMakeCXXCompiler.cmake b/android/app/.cxx/Debug/4z1t2ab1/x86/CMakeFiles/3.22.1-g37088a8-dirty/CMakeCXXCompiler.cmake new file mode 100644 index 0000000..64c5f97 --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/x86/CMakeFiles/3.22.1-g37088a8-dirty/CMakeCXXCompiler.cmake @@ -0,0 +1,83 @@ +set(CMAKE_CXX_COMPILER "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/clang++.exe") +set(CMAKE_CXX_COMPILER_ARG1 "") +set(CMAKE_CXX_COMPILER_ID "Clang") +set(CMAKE_CXX_COMPILER_VERSION "17.0.2") +set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") +set(CMAKE_CXX_COMPILER_WRAPPER "") +set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "17") +set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON") +set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23") +set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") +set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") +set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") +set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") +set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20") +set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23") + +set(CMAKE_CXX_PLATFORM_ID "Linux") +set(CMAKE_CXX_SIMULATE_ID "") +set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU") +set(CMAKE_CXX_SIMULATE_VERSION "") + + + + +set(CMAKE_AR "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-ar.exe") +set(CMAKE_CXX_COMPILER_AR "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-ar.exe") +set(CMAKE_RANLIB "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-ranlib.exe") +set(CMAKE_CXX_COMPILER_RANLIB "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-ranlib.exe") +set(CMAKE_LINKER "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/ld.lld.exe") +set(CMAKE_MT "") +set(CMAKE_COMPILER_IS_GNUCXX ) +set(CMAKE_CXX_COMPILER_LOADED 1) +set(CMAKE_CXX_COMPILER_WORKS TRUE) +set(CMAKE_CXX_ABI_COMPILED TRUE) + +set(CMAKE_CXX_COMPILER_ENV_VAR "CXX") + +set(CMAKE_CXX_COMPILER_ID_RUN 1) +set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm) +set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) + +foreach (lang C OBJC OBJCXX) + if (CMAKE_${lang}_COMPILER_ID_RUN) + foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS) + list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension}) + endforeach() + endif() +endforeach() + +set(CMAKE_CXX_LINKER_PREFERENCE 30) +set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) + +# Save compiler ABI information. +set(CMAKE_CXX_SIZEOF_DATA_PTR "4") +set(CMAKE_CXX_COMPILER_ABI "ELF") +set(CMAKE_CXX_BYTE_ORDER "LITTLE_ENDIAN") +set(CMAKE_CXX_LIBRARY_ARCHITECTURE "") + +if(CMAKE_CXX_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_CXX_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") +endif() + +if(CMAKE_CXX_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "") +endif() + +set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/include/c++/v1;C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/lib/clang/17/include;C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/include/i686-linux-android;C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/include") +set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "c++;m;-l:libunwind.a;dl;c;-l:libunwind.a;dl") +set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/lib/clang/17/lib/linux/i386;C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/i686-linux-android/21;C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/i686-linux-android;C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib") +set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/android/app/.cxx/Debug/4z1t2ab1/x86/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_C.bin b/android/app/.cxx/Debug/4z1t2ab1/x86/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_C.bin new file mode 100644 index 0000000000000000000000000000000000000000..b2ccf2565f41c4d358ec8b63b596087b4ea406f3 GIT binary patch literal 5836 zcmd5=U2I#`9Y4Od6SqzsHwiS*Le21KDpETiZjye8*7<5ZC25+bf)cTd?RyiuwSCR? zO_y}jCKf=g(oUVm0}mT7AjBS!5Zg4QAylcA(4=bWG#=Q?)Q7T`DU~`25F4o8?|1J# zspC>jLOk%d{^$RB{^#SK^FQbKXCq^y9*;*z@CvV>^tMlk1nA|BjwK-?A}BggJ}erb zqD|tns6a#&8@-?}LzdVInMga-HiE1|7y*fXYQm1)*4+;g7)2!_+m-f2Bii5QAk~a5 z?F#q~2py3UwzT^Ax7OY1-z4nsVh|ELQHLnUcNlhvcY)nLwDfxu{gwC% zWFqzK8|i*95~Glb)Dz>C#fqgD=wASG{*oolH1e9b54_par-6K9 z==Rbh9he4kLErTwAa=mf=T?Xa%A$U$r3C~Xgp3O}@-)Y!b ze+%$E;3!ZeLxG`CWJwtbMU$aOg=NQJs52Srve)N9xLgHp1v&BZ9)8lvJU(3I`Bi_Jdkx>R0cQrmFLh?D(*n{%`;b*uH9N% zX_~x2?UALGcAJ@b{^FBZJj=t;$nx^7YPEW1EE-r|{?y@`mY2V9xbQjZfAtll!&Aq_ zbWTw3v+TWZ4!J-2-8X0AT!p7pb=1>5s!ef zodsc$J z?V26fHJi}7`}+ENwVhqvJ^IdU*RI5_owL1}-Yz|>_i8=8eLdU1uHWCG-i_HO-R{WP z*swb%SZy0U-w(C=y`k`?&7qB+7EHd95Z+L#b>9QKgL{HXJ64d#lfo+VJt9)A{a7~s z$H3r2Md9~EFbGW}*728 z80dsF2lQ<4dymt<0>Sog7XAggegwxxCBUt5o{lYk@98y;VG(!~hPP~4TM{UPiX{%fM`@v_Xjp;H?`!gdG;st1%hDA2 z(yXE0Il^$pT2?_<^^%rPmmDh&u)Ewc`8nxh>d(#RP5nE*Q0;Nn9PeUicl>AtyE#6P z=!zWZjVH_H;k1>Gj~Ur?A?{|2_z~?yJX=hk(Br+ao}O5Dyn;#79n}u1;^T%kj~yQ$ z8i&`=kWnn>3%Z#cOvSRerX;7PlE>5|si#NO>0^^4s(M$ulTJpMij5l?)RdVdo-UW; zvFyS^d|1!S&&3m`x~-mcraQhc(C4%@3U9aB>0()=&ABX#lVZM9$Qj5w(}0VsUat|>l^ZZZ^PbTOi?f=2v-laI-mG=m8bCq zWRX!&MKlW}H2dE63aAH~$3fp)t)z&Zkbhqz?}NM_=a>VE;C8%FW1ps>#=Z@j{Zn2Xv&uT|* z755{aOmD2e8L|Z4Nv7-MG-PIF-d{FiJR*kmt(#>LD;bs^lZSC$)3NLw-CSutmYL5N zv>kYZ#k9pzWw9t?)VfFd8bLK3F_*67M9e8!$AaF}3#{)jk?%B=~Hv8)SK>cFsbV3RC3&Y zb0N7pofqnXu|tE&G4;^s=#i0WbvikSR~fSL$+05?&MOHwfh0h{$=MozD;H_fznU&3MdN#0+=| z)DvC;O269wuxuj=**TGerXY&cA~X=*?|1J# zsgqJ^Vm$C!-~Ilc@BF#n{mwc5@lbl$$2 zv`Ksf4TxxBqZjlXWQnbiiL^s)Bghi8ARy6CO^ai-~F`lgD0Q+V`$YsCSLwkV9UzDoPz|W z*BU8+I_aheu9FA9O`u2#8**!yA&U6AD>DxJC8eJP>WBm9iKRkc{i=F~#DUS)yv=~Vv!g%Sl&tw^SAqw^lNxHRn2h)WZojTlTXDLPJ#4j>8fFBx;d3jO-`nV z)S=PARB}|>GugrvzFUaGv)Q}59hC2Z3o!^X23i5FfHLoX33>^X?}^|!IW9bp1w5OZ ze7cAjdijWSggz{xyE(QH+!dA-di_ zb!G0IYjcZDV^=9p%q_Or%+wPXR3y**U?e<0f2~%lok~Xn^Yhmou4#V$V~1-wL;drg zLOM8pM2ubiH=>+f0>lf*c+F0{mZujirFMDlVqogR*?Rj2YlWCw^qrYo-y+1B`K#~O zYGXAk(suCbONcplv2E(Yr9-FQoqOj~8T7#?7XE-n^CM03BZ0REBle`;_C+`oXqw+T z9Y`$JYTl;Esip`OubJ_CIL6!Ycymw>U@o^2jM=iEmm zd<3}x19a zoGWI^GvQ;pSuH@{wKLiojfdOwmQ|_lip4Tcm5=Kebc>t(+RDsr>Cb|+tJw-*LUPP`x1RSrn|G;~iU`Muvoc5gzGdG|r#o4{j(@TWnT z<)XpU_%fUWjmkMl2GFy{?={h88fxzkps?FC3;*Nb8~PEcQBg|ZUjTa6`Mqc1{LC`v z7NN|;_$D1X{N7jK(79{`ArX*c^&C0~lhU{f5mqTb32dmBn!aUAEwHUtEb&_eR94Yb zG<*jZzc07}LXfi&$VyWT?1~+#BBx`$iO%r8?pU%?8O&IjSlY;CiZS<_iA`unW4Ti1 zs2=N%#^cehSQTw`N41@**odLcBJX1ZBk&q{@WBD2R4Ej7GufYt<|-9YC{G*e&7Bfk zx@8r0RWECWOxdwwpS;B_TbPkPrvB(`!PLLv--A8Rx>JNu52xcjD`#IfE!z85+Ly16 zswT(BlMksAsl!9+IhH zH(LF7&-z0Rd;GyC{o5L5B-?S5-Pn+q+SLsOzqeseFsdk66$D!b^$MT(u*Thg0p)8L zR1wXh4V3p3o)bOL+z0x`QX@s|fc#pW`~c*=`0gE0#C|Xfb@oXb>g)$#Yr({LR#cQ` zk%!y~nP&*f+;n-5V@35S8-)%kf#dxl1eQ;pD?Fk}JP*p!$a4qfS3z0*!mj)mP!>CE z2)6y7po@_0_|Sd~ndb}}lsm*J^uM&XE9=FFF!1inGsiltPY8CN1=xNqeqqQw7dY}d z5rfP#f+M$z`ytD^%Ju`0CGaft*a}%hk>0vl5z(??=~21q7c?DN@91XAv(fBqp{Q-g zoiD1LC|6IEM3h?h=&(#sO-IaUs(BH0o@`@5Z|X(1cbG~M9hioO+AN}aUY#~GC0)&H z@RO2=;#veR+qGiqyfCR5)6AUUuy69y5TqXQGo?ZfgD}t%52tmuS`|FKlF=gn365A5J=u0t)s>TSQk-D*~(-=^DsG_Lq*QCvieM+97U0-S{c()?V`ceRNd87 zoz=8e_H=Cy!_i;W}P35P8zh*?E z>sSAuiu9A^=4*9+tWm^>bOPl!O6UaQ3~2YuI|h+D_QO8u$M2u_4BiW17Q8DEd18}s zs3#5qd5<8^y96-|zCIpA!P@wd>&Lqbk@Z)`lk|Jgp+wrTdAA{kSNPFa1ERFqe%Ikc zazydpx{f<98W892?`=|4~A?2A*qA zV80y4-+-Kl-7og6Hhctf>`*VgzrWY{ac^sf-+DT@Am{Nf$c)Q)_J61FlQz0aei1zT z?W7XG|5}gKtutBT4VQx0@DhTbmIA13;sqmln&X)0<~oIBn_WNI?+7mYhh;Lk@#wqB z^nv2W$qwy8!coyOMaK2p6D0EyC36J9??v+8Hlx*(`zXddY JP8#d{{tL4EF}?r* literal 0 HcmV?d00001 diff --git a/android/app/.cxx/Debug/4z1t2ab1/x86/CMakeFiles/3.22.1-g37088a8-dirty/CMakeSystem.cmake b/android/app/.cxx/Debug/4z1t2ab1/x86/CMakeFiles/3.22.1-g37088a8-dirty/CMakeSystem.cmake new file mode 100644 index 0000000..2d85c05 --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/x86/CMakeFiles/3.22.1-g37088a8-dirty/CMakeSystem.cmake @@ -0,0 +1,15 @@ +set(CMAKE_HOST_SYSTEM "Windows-10.0.19045") +set(CMAKE_HOST_SYSTEM_NAME "Windows") +set(CMAKE_HOST_SYSTEM_VERSION "10.0.19045") +set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64") + +include("C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/android.toolchain.cmake") + +set(CMAKE_SYSTEM "Android-1") +set(CMAKE_SYSTEM_NAME "Android") +set(CMAKE_SYSTEM_VERSION "1") +set(CMAKE_SYSTEM_PROCESSOR "i686") + +set(CMAKE_CROSSCOMPILING "TRUE") + +set(CMAKE_SYSTEM_LOADED 1) diff --git a/android/app/.cxx/Debug/4z1t2ab1/x86/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdC/CMakeCCompilerId.c b/android/app/.cxx/Debug/4z1t2ab1/x86/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdC/CMakeCCompilerId.c new file mode 100644 index 0000000..41b99d7 --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/x86/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdC/CMakeCCompilerId.c @@ -0,0 +1,803 @@ +#ifdef __cplusplus +# error "A C++ compiler has been selected for C." +#endif + +#if defined(__18CXX) +# define ID_VOID_MAIN +#endif +#if defined(__CLASSIC_C__) +/* cv-qualifiers did not exist in K&R C */ +# define const +# define volatile +#endif + +#if !defined(__has_include) +/* If the compiler does not have __has_include, pretend the answer is + always no. */ +# define __has_include(x) 0 +#endif + + +/* Version number components: V=Version, R=Revision, P=Patch + Version date components: YYYY=Year, MM=Month, DD=Day */ + +#if defined(__INTEL_COMPILER) || defined(__ICC) +# define COMPILER_ID "Intel" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# if defined(__GNUC__) +# define SIMULATE_ID "GNU" +# endif + /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, + except that a few beta releases use the old format with V=2021. */ +# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) +# if defined(__INTEL_COMPILER_UPDATE) +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) +# else +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) +# endif +# else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) + /* The third version component from --version is an update index, + but no macro is provided for it. */ +# define COMPILER_VERSION_PATCH DEC(0) +# endif +# if defined(__INTEL_COMPILER_BUILD_DATE) + /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ +# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) +# endif +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) +# define COMPILER_ID "IntelLLVM" +#if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +#endif +#if defined(__GNUC__) +# define SIMULATE_ID "GNU" +#endif +/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and + * later. Look for 6 digit vs. 8 digit version number to decide encoding. + * VVVV is no smaller than the current year when a version is released. + */ +#if __INTEL_LLVM_COMPILER < 1000000L +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) +#else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) +#endif +#if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +#endif +#if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +#elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +#endif +#if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +#endif +#if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +#endif + +#elif defined(__PATHCC__) +# define COMPILER_ID "PathScale" +# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) +# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) +# if defined(__PATHCC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) +# endif + +#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) +# define COMPILER_ID "Embarcadero" +# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_C) +# define COMPILER_ID "SunPro" +# if __SUNPRO_C >= 0x5100 + /* __SUNPRO_C = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) +# endif + +#elif defined(__HP_cc) +# define COMPILER_ID "HP" + /* __HP_cc = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100) + +#elif defined(__DECC) +# define COMPILER_ID "Compaq" + /* __DECC_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000) + +#elif defined(__IBMC__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__ibmxl__) && defined(__clang__) +# define COMPILER_ID "XLClang" +# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) +# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) +# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) + + +#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800 +# define COMPILER_ID "XL" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__NVCOMPILER) +# define COMPILER_ID "NVHPC" +# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) +# if defined(__NVCOMPILER_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) +# endif + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__CLANG_FUJITSU) +# define COMPILER_ID "FujitsuClang" +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(__FUJITSU) +# define COMPILER_ID "Fujitsu" +# if defined(__FCC_version__) +# define COMPILER_VERSION __FCC_version__ +# elif defined(__FCC_major__) +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# endif +# if defined(__fcc_version) +# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) +# elif defined(__FCC_VERSION) +# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) +# endif + + +#elif defined(__ghs__) +# define COMPILER_ID "GHS" +/* __GHS_VERSION_NUMBER = VVVVRP */ +# ifdef __GHS_VERSION_NUMBER +# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) +# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) +# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) +# endif + +#elif defined(__TINYC__) +# define COMPILER_ID "TinyCC" + +#elif defined(__BCC__) +# define COMPILER_ID "Bruce" + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__ARMCC_VERSION) && !defined(__clang__) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) +# define COMPILER_ID "ARMClang" + # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) + +#elif defined(__clang__) +# define COMPILER_ID "Clang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__GNUC__) +# define COMPILER_ID "GNU" +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# if defined(__GNUC_MINOR__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) +# define COMPILER_ID "ADSP" +#if defined(__VISUALDSPVERSION__) + /* __VISUALDSPVERSION__ = 0xVVRRPP00 */ +# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24) +# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF) +#endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# define COMPILER_ID "IAR" +# if defined(__VER__) && defined(__ICCARM__) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) +# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) +# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) +# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) +# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# endif + +#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC) +# define COMPILER_ID "SDCC" +# if defined(__SDCC_VERSION_MAJOR) +# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR) +# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR) +# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH) +# else + /* SDCC = VRP */ +# define COMPILER_VERSION_MAJOR DEC(SDCC/100) +# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10) +# define COMPILER_VERSION_PATCH DEC(SDCC % 10) +# endif + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; +#ifdef SIMULATE_ID +char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; +#endif + +#ifdef __QNXNTO__ +char const* qnxnto = "INFO" ":" "qnxnto[]"; +#endif + +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) +char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; +#endif + +#define STRINGIFY_HELPER(X) #X +#define STRINGIFY(X) STRINGIFY_HELPER(X) + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__MSYS__) +# define PLATFORM_ID "MSYS" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU__) +# define PLATFORM_ID "Haiku" + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#elif defined(__WATCOMC__) +# if defined(__LINUX__) +# define PLATFORM_ID "Linux" + +# elif defined(__DOS__) +# define PLATFORM_ID "DOS" + +# elif defined(__OS2__) +# define PLATFORM_ID "OS2" + +# elif defined(__WINDOWS__) +# define PLATFORM_ID "Windows3x" + +# elif defined(__VXWORKS__) +# define PLATFORM_ID "VxWorks" + +# else /* unknown platform */ +# define PLATFORM_ID +# endif + +#elif defined(__INTEGRITY) +# if defined(INT_178B) +# define PLATFORM_ID "Integrity178" + +# else /* regular Integrity */ +# define PLATFORM_ID "Integrity" +# endif + +#else /* unknown platform */ +# define PLATFORM_ID + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_ARM64EC) +# define ARCHITECTURE_ID "ARM64EC" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM64) +# define ARCHITECTURE_ID "ARM64" + +# elif defined(_M_ARM) +# if _M_ARM == 4 +# define ARCHITECTURE_ID "ARMV4I" +# elif _M_ARM == 5 +# define ARCHITECTURE_ID "ARMV5I" +# else +# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) +# endif + +# elif defined(_M_MIPS) +# define ARCHITECTURE_ID "MIPS" + +# elif defined(_M_SH) +# define ARCHITECTURE_ID "SHx" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__WATCOMC__) +# if defined(_M_I86) +# define ARCHITECTURE_ID "I86" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# if defined(__ICCARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__ICCRX__) +# define ARCHITECTURE_ID "RX" + +# elif defined(__ICCRH850__) +# define ARCHITECTURE_ID "RH850" + +# elif defined(__ICCRL78__) +# define ARCHITECTURE_ID "RL78" + +# elif defined(__ICCRISCV__) +# define ARCHITECTURE_ID "RISCV" + +# elif defined(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# elif defined(__ICC430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__ICCV850__) +# define ARCHITECTURE_ID "V850" + +# elif defined(__ICC8051__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__ICCSTM8__) +# define ARCHITECTURE_ID "STM8" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__ghs__) +# if defined(__PPC64__) +# define ARCHITECTURE_ID "PPC64" + +# elif defined(__ppc__) +# define ARCHITECTURE_ID "PPC" + +# elif defined(__ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__x86_64__) +# define ARCHITECTURE_ID "x64" + +# elif defined(__i386__) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__TI_COMPILER_VERSION__) +# if defined(__TI_ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__MSP430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__TMS320C28XX__) +# define ARCHITECTURE_ID "TMS320C28x" + +# elif defined(__TMS320C6X__) || defined(_TMS320C6X) +# define ARCHITECTURE_ID "TMS320C6x" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#else +# define ARCHITECTURE_ID +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number. */ +#ifdef COMPILER_VERSION +char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; + +/* Construct a string literal encoding the version number components. */ +#elif defined(COMPILER_VERSION_MAJOR) +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the internal version number. */ +#ifdef COMPILER_VERSION_INTERNAL +char const info_version_internal[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', + 'i','n','t','e','r','n','a','l','[', + COMPILER_VERSION_INTERNAL,']','\0'}; +#elif defined(COMPILER_VERSION_INTERNAL_STR) +char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + +#if !defined(__STDC__) && !defined(__clang__) +# if defined(_MSC_VER) || defined(__ibmxl__) || defined(__IBMC__) +# define C_VERSION "90" +# else +# define C_VERSION +# endif +#elif __STDC_VERSION__ > 201710L +# define C_VERSION "23" +#elif __STDC_VERSION__ >= 201710L +# define C_VERSION "17" +#elif __STDC_VERSION__ >= 201000L +# define C_VERSION "11" +#elif __STDC_VERSION__ >= 199901L +# define C_VERSION "99" +#else +# define C_VERSION "90" +#endif +const char* info_language_standard_default = + "INFO" ":" "standard_default[" C_VERSION "]"; + +const char* info_language_extensions_default = "INFO" ":" "extensions_default[" +/* !defined(_MSC_VER) to exclude Clang's MSVC compatibility mode. */ +#if (defined(__clang__) || defined(__GNUC__) || \ + defined(__TI_COMPILER_VERSION__)) && \ + !defined(__STRICT_ANSI__) && !defined(_MSC_VER) + "ON" +#else + "OFF" +#endif +"]"; + +/*--------------------------------------------------------------------------*/ + +#ifdef ID_VOID_MAIN +void main() {} +#else +# if defined(__CLASSIC_C__) +int main(argc, argv) int argc; char *argv[]; +# else +int main(int argc, char* argv[]) +# endif +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; + require += info_arch[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif +#ifdef COMPILER_VERSION_INTERNAL + require += info_version_internal[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) + require += info_cray[argc]; +#endif + require += info_language_standard_default[argc]; + require += info_language_extensions_default[argc]; + (void)argv; + return require; +} +#endif diff --git a/android/app/.cxx/Debug/4z1t2ab1/x86/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdC/CMakeCCompilerId.o b/android/app/.cxx/Debug/4z1t2ab1/x86/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdC/CMakeCCompilerId.o new file mode 100644 index 0000000000000000000000000000000000000000..c5b5c44b7549908bbebf610afb3ddefdf0664e84 GIT binary patch literal 3876 zcmd5Qkn?$WzWxe@alUAASYTH%XwREjayAf}bn>JgT)SKH{ zWqwQ%Et}vcDxy+R|A>N$3L>H?h(83uzbZ@={4wwgK~T`=+`Mmklda-U54`VlzTR`* z&vTP|M^?gO`q14Un(!Ag+mR`!~W-gO6 z^7?AgnvbP~#aOqDQl(HXRcf}WgGYG^Om!(UYlg|5^HG~(DXq#xqmqg9z#VAUqV=Io zqbY65m7xyR9lGG+u27rO?j>?1X}n_~aGmPfiJefC@eU%-WzeMpL~1v=L;C^&uwG^Z zfqh_oNwDJ`H+0Hj{#N)CHC<&xvxYS7-oc&j5IbDm$*x2Jm0Uu_&cS4zNcZ4=*au4< z`=;!s7cgO_H>*IKK+G1actTP6LXdk9oo5W)4pJ}2Ft6gh8sPW&t^?c#L(SK3Kx!I9 z=NpIZ1lwM7i8yStC09a$$mYXV3fHxc$DA00tmPs^S@Uo z20y5ZcL0Jei#}#CU^|ogHU!nr3SJMq_bfZ#LSW?BAPDEF_{v)=1>yiN5$X zG(4#vH-?ABlN--zSsEUQ%vJCXBI#r_JeG(|SA))IljQ}xOF5Z{zOoY0vg_-S8;yn4 z#Ypn5m=)I-Vv+T9U&IbO3hzoJp~d4`tamYyil)8ZGaz>Vesw8%(D#)TxmAD#IIo``vebLA?7KH}$xs`#Iv6t|& zNH-U=+^vym+`d{cahLz!CyA?eA>TKUa@PzgC;UoR(BpX+7jYMK+?Y1G8w&X!bnS0Z zUC+aV=q0E;c16S2<D>~HBs=CXYS3}pUft%Ej zcd?2A8yU=((9FKqA z9zigU7e`|{gI2V;YR5KiCk4v2OhYN>#GaDB8@w}b50Y>m&dY0)d0zp~arxRZ%|eiK zV3}=9U!XBB^YV8<=3=|#KL_v38+GJmz0CVNcxSxR+r;~&Azs=M4^O)mZ?YlYquazA zZ-_VOh=-C;i+6cLyeGGb$F{10 z0`JT_jl6$A$LHIQCi9x$c{tZvrgw0FpEtx~k$*-z{q8}1dyxkSVjH(J0)?7(%ZDNq z?8DRvhIx6f!tmpJFG=2)9dL54;{XIK#a_q7K)H@45l@akjCij~0m!+S)P{J|j(GTc ZQ;W9`esXU1K)lPJ!EhX~wjaOYe*hEdD(C>24 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_CC) +# define COMPILER_ID "SunPro" +# if __SUNPRO_CC >= 0x5100 + /* __SUNPRO_CC = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# endif + +#elif defined(__HP_aCC) +# define COMPILER_ID "HP" + /* __HP_aCC = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100) + +#elif defined(__DECCXX) +# define COMPILER_ID "Compaq" + /* __DECCXX_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000) + +#elif defined(__IBMCPP__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__ibmxl__) && defined(__clang__) +# define COMPILER_ID "XLClang" +# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) +# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) +# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) + + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800 +# define COMPILER_ID "XL" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__NVCOMPILER) +# define COMPILER_ID "NVHPC" +# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) +# if defined(__NVCOMPILER_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) +# endif + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__CLANG_FUJITSU) +# define COMPILER_ID "FujitsuClang" +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(__FUJITSU) +# define COMPILER_ID "Fujitsu" +# if defined(__FCC_version__) +# define COMPILER_VERSION __FCC_version__ +# elif defined(__FCC_major__) +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# endif +# if defined(__fcc_version) +# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) +# elif defined(__FCC_VERSION) +# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) +# endif + + +#elif defined(__ghs__) +# define COMPILER_ID "GHS" +/* __GHS_VERSION_NUMBER = VVVVRP */ +# ifdef __GHS_VERSION_NUMBER +# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) +# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) +# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) +# endif + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__ARMCC_VERSION) && !defined(__clang__) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) +# define COMPILER_ID "ARMClang" + # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) + +#elif defined(__clang__) +# define COMPILER_ID "Clang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__GNUC__) || defined(__GNUG__) +# define COMPILER_ID "GNU" +# if defined(__GNUC__) +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# else +# define COMPILER_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) +# define COMPILER_ID "ADSP" +#if defined(__VISUALDSPVERSION__) + /* __VISUALDSPVERSION__ = 0xVVRRPP00 */ +# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24) +# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF) +#endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# define COMPILER_ID "IAR" +# if defined(__VER__) && defined(__ICCARM__) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) +# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) +# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) +# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) +# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# endif + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; +#ifdef SIMULATE_ID +char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; +#endif + +#ifdef __QNXNTO__ +char const* qnxnto = "INFO" ":" "qnxnto[]"; +#endif + +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) +char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; +#endif + +#define STRINGIFY_HELPER(X) #X +#define STRINGIFY(X) STRINGIFY_HELPER(X) + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__MSYS__) +# define PLATFORM_ID "MSYS" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU__) +# define PLATFORM_ID "Haiku" + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#elif defined(__WATCOMC__) +# if defined(__LINUX__) +# define PLATFORM_ID "Linux" + +# elif defined(__DOS__) +# define PLATFORM_ID "DOS" + +# elif defined(__OS2__) +# define PLATFORM_ID "OS2" + +# elif defined(__WINDOWS__) +# define PLATFORM_ID "Windows3x" + +# elif defined(__VXWORKS__) +# define PLATFORM_ID "VxWorks" + +# else /* unknown platform */ +# define PLATFORM_ID +# endif + +#elif defined(__INTEGRITY) +# if defined(INT_178B) +# define PLATFORM_ID "Integrity178" + +# else /* regular Integrity */ +# define PLATFORM_ID "Integrity" +# endif + +#else /* unknown platform */ +# define PLATFORM_ID + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_ARM64EC) +# define ARCHITECTURE_ID "ARM64EC" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM64) +# define ARCHITECTURE_ID "ARM64" + +# elif defined(_M_ARM) +# if _M_ARM == 4 +# define ARCHITECTURE_ID "ARMV4I" +# elif _M_ARM == 5 +# define ARCHITECTURE_ID "ARMV5I" +# else +# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) +# endif + +# elif defined(_M_MIPS) +# define ARCHITECTURE_ID "MIPS" + +# elif defined(_M_SH) +# define ARCHITECTURE_ID "SHx" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__WATCOMC__) +# if defined(_M_I86) +# define ARCHITECTURE_ID "I86" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# if defined(__ICCARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__ICCRX__) +# define ARCHITECTURE_ID "RX" + +# elif defined(__ICCRH850__) +# define ARCHITECTURE_ID "RH850" + +# elif defined(__ICCRL78__) +# define ARCHITECTURE_ID "RL78" + +# elif defined(__ICCRISCV__) +# define ARCHITECTURE_ID "RISCV" + +# elif defined(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# elif defined(__ICC430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__ICCV850__) +# define ARCHITECTURE_ID "V850" + +# elif defined(__ICC8051__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__ICCSTM8__) +# define ARCHITECTURE_ID "STM8" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__ghs__) +# if defined(__PPC64__) +# define ARCHITECTURE_ID "PPC64" + +# elif defined(__ppc__) +# define ARCHITECTURE_ID "PPC" + +# elif defined(__ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__x86_64__) +# define ARCHITECTURE_ID "x64" + +# elif defined(__i386__) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__TI_COMPILER_VERSION__) +# if defined(__TI_ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__MSP430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__TMS320C28XX__) +# define ARCHITECTURE_ID "TMS320C28x" + +# elif defined(__TMS320C6X__) || defined(_TMS320C6X) +# define ARCHITECTURE_ID "TMS320C6x" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#else +# define ARCHITECTURE_ID +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number. */ +#ifdef COMPILER_VERSION +char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; + +/* Construct a string literal encoding the version number components. */ +#elif defined(COMPILER_VERSION_MAJOR) +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the internal version number. */ +#ifdef COMPILER_VERSION_INTERNAL +char const info_version_internal[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', + 'i','n','t','e','r','n','a','l','[', + COMPILER_VERSION_INTERNAL,']','\0'}; +#elif defined(COMPILER_VERSION_INTERNAL_STR) +char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + +#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) && _MSVC_LANG < 201403L +# if defined(__INTEL_CXX11_MODE__) +# if defined(__cpp_aggregate_nsdmi) +# define CXX_STD 201402L +# else +# define CXX_STD 201103L +# endif +# else +# define CXX_STD 199711L +# endif +#elif defined(_MSC_VER) && defined(_MSVC_LANG) +# define CXX_STD _MSVC_LANG +#else +# define CXX_STD __cplusplus +#endif + +const char* info_language_standard_default = "INFO" ":" "standard_default[" +#if CXX_STD > 202002L + "23" +#elif CXX_STD > 201703L + "20" +#elif CXX_STD >= 201703L + "17" +#elif CXX_STD >= 201402L + "14" +#elif CXX_STD >= 201103L + "11" +#else + "98" +#endif +"]"; + +const char* info_language_extensions_default = "INFO" ":" "extensions_default[" +/* !defined(_MSC_VER) to exclude Clang's MSVC compatibility mode. */ +#if (defined(__clang__) || defined(__GNUC__) || \ + defined(__TI_COMPILER_VERSION__)) && \ + !defined(__STRICT_ANSI__) && !defined(_MSC_VER) + "ON" +#else + "OFF" +#endif +"]"; + +/*--------------------------------------------------------------------------*/ + +int main(int argc, char* argv[]) +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif +#ifdef COMPILER_VERSION_INTERNAL + require += info_version_internal[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) + require += info_cray[argc]; +#endif + require += info_language_standard_default[argc]; + require += info_language_extensions_default[argc]; + (void)argv; + return require; +} diff --git a/android/app/.cxx/Debug/4z1t2ab1/x86/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdCXX/CMakeCXXCompilerId.o b/android/app/.cxx/Debug/4z1t2ab1/x86/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdCXX/CMakeCXXCompilerId.o new file mode 100644 index 0000000000000000000000000000000000000000..78b6b2d18a0e74f03d029728c4f3d289275f4316 GIT binary patch literal 3908 zcmd5?yA z&+VVx2PbEy6h$FP3aNBaBKo1nx8yt+qJa)8(ZcB;AN}FaN6+g&vBQan&#Hhkv#~R? z`nf}cVOE|C4>Fv2%Ig>OZSTkW)Y#zZ*x)~@W?_FuXVd0A-QfuI&(@^Z-#&V#%yQ5HU8zY8H3 z5DPu0f7T(!zVOBS0KFlXzG6{P*_k3Aqu0XS4*|M)|7g5kavIfAVkn)?=EgFa{O-iE z)v`;8Mm^!=@}r}ns{PU9}S=q5^I<@{JVS4xkJjAToDQt6Dnr`3M&nwYijwkJ-Um=KR}x?~iaO`6!7Txj7jB=fmc;&3)O?*~3=%r=(sR%Jp- ztJzE%#f^>RA$xhPlFZ$kb~Dy;I=PV_NqV8D;N41QjZDT!4_C6IseInb50|Qrdn$Qx zP9#8BhC`+~e)Q=0N%PqB9h2tqlk=0NN!5C}Vag)mOR_rn5|;&^<4s(%Dz>?~I&3mu zS|WT0vHxV=F_X@C^GeMs_82}cSx%+M-8wn;J!@45kKzA)!bF$zH3TX59wp^|UD+86 zho8dz9Dt4+6ITKnkL!8->*e))8dgzK-w8ufd+<00BXFf4R<&u+fol4)yV#+5egv@o*+ms z281yEb|E0*3#k$p6{ZZDLYH~G>{QYu>!Esyy>F9U?x?R;>1z5`cL43_fL5EPJbn#kzypj>0`D=uHEhCOO#fZ35LO(0;xIl{$`MHenJ0twhn9mJ(~)kZNe9J^+eEY~u;V$m)?|4?7Ha=oNd zi3wY-vpIab25wQb{VBY3IUNjdc)49#%{)(Dis99@O}VwJt5I*bwsH8#!Z5Nd-n}^= zukHpWtySx`?_;l+Wye~Dgk`waGVs(Yqj`8{?%?>0IX5+RZ1T8yeEi_dq}fgs&S@i! zP5*Cn0B7cX+J$?w8}|%4Ns`5N!kfppSr~HCL7;dR^flz5UjZ_|XGyYZdhXu;D?1xh3#GaCW0DN%XJSO3JcwSzc zocCw&99PCGY!UBA_ypq>0`WMmjMsK3S#`9`KAirC;h&R0{ zzxhBsu1_-Fb>M^f&1?~mYgRD76M=YKB4xbyL_B`}O!J5*&yZ!Fi-}S4Ec5T}H<%G5 zZEr!AJezhSF#kN2B-uBi2_C(2xIx5& s%A*?My(|SF&&9NBQ@oWxJp2o4$2$x^nH!JO@jc)m9EbDadHD_h4bu2DxBvhE literal 0 HcmV?d00001 diff --git a/android/app/.cxx/Debug/4z1t2ab1/x86/CMakeFiles/TargetDirectories.txt b/android/app/.cxx/Debug/4z1t2ab1/x86/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000..477c8f6 --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/x86/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,2 @@ +C:/Users/840 G3/ProjectR.Mobile/android/app/.cxx/Debug/4z1t2ab1/x86/CMakeFiles/edit_cache.dir +C:/Users/840 G3/ProjectR.Mobile/android/app/.cxx/Debug/4z1t2ab1/x86/CMakeFiles/rebuild_cache.dir diff --git a/android/app/.cxx/Debug/4z1t2ab1/x86/CMakeFiles/cmake.check_cache b/android/app/.cxx/Debug/4z1t2ab1/x86/CMakeFiles/cmake.check_cache new file mode 100644 index 0000000..3dccd73 --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/x86/CMakeFiles/cmake.check_cache @@ -0,0 +1 @@ +# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/android/app/.cxx/Debug/4z1t2ab1/x86/CMakeFiles/rules.ninja b/android/app/.cxx/Debug/4z1t2ab1/x86/CMakeFiles/rules.ninja new file mode 100644 index 0000000..f3dc68c --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/x86/CMakeFiles/rules.ninja @@ -0,0 +1,45 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Ninja" Generator, CMake Version 3.22 + +# This file contains all the rules used to get the outputs files +# built from the input files. +# It is included in the main 'build.ninja'. + +# ============================================================================= +# Project: Project +# Configurations: Debug +# ============================================================================= +# ============================================================================= + +############################################# +# Rule for running custom commands. + +rule CUSTOM_COMMAND + command = $COMMAND + description = $DESC + + +############################################# +# Rule for re-running cmake. + +rule RERUN_CMAKE + command = "C:\Users\840 G3\AppData\Local\Android\Sdk\cmake\3.22.1\bin\cmake.exe" --regenerate-during-build -S"C:\Users\840 G3\flutter\packages\flutter_tools\gradle\src\main\groovy" -B"C:\Users\840 G3\ProjectR.Mobile\android\app\.cxx\Debug\4z1t2ab1\x86" + description = Re-running CMake... + generator = 1 + + +############################################# +# Rule for cleaning all built files. + +rule CLEAN + command = "C:\Users\840 G3\AppData\Local\Android\Sdk\cmake\3.22.1\bin\ninja.exe" $FILE_ARG -t clean $TARGETS + description = Cleaning all built files... + + +############################################# +# Rule for printing all primary targets available. + +rule HELP + command = "C:\Users\840 G3\AppData\Local\Android\Sdk\cmake\3.22.1\bin\ninja.exe" -t targets + description = All primary targets available: + diff --git a/android/app/.cxx/Debug/4z1t2ab1/x86/additional_project_files.txt b/android/app/.cxx/Debug/4z1t2ab1/x86/additional_project_files.txt new file mode 100644 index 0000000..e69de29 diff --git a/android/app/.cxx/Debug/4z1t2ab1/x86/android_gradle_build.json b/android/app/.cxx/Debug/4z1t2ab1/x86/android_gradle_build.json new file mode 100644 index 0000000..b6000a3 --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/x86/android_gradle_build.json @@ -0,0 +1,28 @@ +{ + "buildFiles": [ + "C:\\Users\\840 G3\\flutter\\packages\\flutter_tools\\gradle\\src\\main\\groovy\\CMakeLists.txt" + ], + "cleanCommandsComponents": [ + [ + "C:\\Users\\840 G3\\AppData\\Local\\Android\\sdk\\cmake\\3.22.1\\bin\\ninja.exe", + "-C", + "C:\\Users\\840 G3\\ProjectR.Mobile\\android\\app\\.cxx\\Debug\\4z1t2ab1\\x86", + "clean" + ] + ], + "buildTargetsCommandComponents": [ + "C:\\Users\\840 G3\\AppData\\Local\\Android\\sdk\\cmake\\3.22.1\\bin\\ninja.exe", + "-C", + "C:\\Users\\840 G3\\ProjectR.Mobile\\android\\app\\.cxx\\Debug\\4z1t2ab1\\x86", + "{LIST_OF_TARGETS_TO_BUILD}" + ], + "libraries": {}, + "toolchains": { + "toolchain": { + "cCompilerExecutable": "C:\\Users\\840 G3\\AppData\\Local\\Android\\Sdk\\ndk\\26.3.11579264\\toolchains\\llvm\\prebuilt\\windows-x86_64\\bin\\clang.exe", + "cppCompilerExecutable": "C:\\Users\\840 G3\\AppData\\Local\\Android\\Sdk\\ndk\\26.3.11579264\\toolchains\\llvm\\prebuilt\\windows-x86_64\\bin\\clang++.exe" + } + }, + "cFileExtensions": [], + "cppFileExtensions": [] +} \ No newline at end of file diff --git a/android/app/.cxx/Debug/4z1t2ab1/x86/android_gradle_build_mini.json b/android/app/.cxx/Debug/4z1t2ab1/x86/android_gradle_build_mini.json new file mode 100644 index 0000000..d4e6121 --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/x86/android_gradle_build_mini.json @@ -0,0 +1,20 @@ +{ + "buildFiles": [ + "C:\\Users\\840 G3\\flutter\\packages\\flutter_tools\\gradle\\src\\main\\groovy\\CMakeLists.txt" + ], + "cleanCommandsComponents": [ + [ + "C:\\Users\\840 G3\\AppData\\Local\\Android\\sdk\\cmake\\3.22.1\\bin\\ninja.exe", + "-C", + "C:\\Users\\840 G3\\ProjectR.Mobile\\android\\app\\.cxx\\Debug\\4z1t2ab1\\x86", + "clean" + ] + ], + "buildTargetsCommandComponents": [ + "C:\\Users\\840 G3\\AppData\\Local\\Android\\sdk\\cmake\\3.22.1\\bin\\ninja.exe", + "-C", + "C:\\Users\\840 G3\\ProjectR.Mobile\\android\\app\\.cxx\\Debug\\4z1t2ab1\\x86", + "{LIST_OF_TARGETS_TO_BUILD}" + ], + "libraries": {} +} \ No newline at end of file diff --git a/android/app/.cxx/Debug/4z1t2ab1/x86/build.ninja b/android/app/.cxx/Debug/4z1t2ab1/x86/build.ninja new file mode 100644 index 0000000..57c08aa --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/x86/build.ninja @@ -0,0 +1,111 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Ninja" Generator, CMake Version 3.22 + +# This file contains all the build statements describing the +# compilation DAG. + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# +# Which is the root file. +# ============================================================================= + +# ============================================================================= +# Project: Project +# Configurations: Debug +# ============================================================================= + +############################################# +# Minimal version of Ninja required by this file + +ninja_required_version = 1.5 + + +############################################# +# Set configuration variable for custom commands. + +CONFIGURATION = Debug +# ============================================================================= +# Include auxiliary files. + + +############################################# +# Include rules file. + +include CMakeFiles/rules.ninja + +# ============================================================================= + +############################################# +# Logical path to working directory; prefix for absolute paths. + +cmake_ninja_workdir = C$:/Users/840$ G3/ProjectR.Mobile/android/app/.cxx/Debug/4z1t2ab1/x86/ + +############################################# +# Utility command for edit_cache + +build CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D "C:\Users\840 G3\ProjectR.Mobile\android\app\.cxx\Debug\4z1t2ab1\x86" && "C:\Users\840 G3\AppData\Local\Android\Sdk\cmake\3.22.1\bin\cmake.exe" -E echo "No interactive CMake dialog available."" + DESC = No interactive CMake dialog available... + restat = 1 + +build edit_cache: phony CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D "C:\Users\840 G3\ProjectR.Mobile\android\app\.cxx\Debug\4z1t2ab1\x86" && "C:\Users\840 G3\AppData\Local\Android\Sdk\cmake\3.22.1\bin\cmake.exe" --regenerate-during-build -S"C:\Users\840 G3\flutter\packages\flutter_tools\gradle\src\main\groovy" -B"C:\Users\840 G3\ProjectR.Mobile\android\app\.cxx\Debug\4z1t2ab1\x86"" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build rebuild_cache: phony CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Target aliases. + +# ============================================================================= +# Folder targets. + +# ============================================================================= + +############################################# +# Folder: C:/Users/840 G3/ProjectR.Mobile/android/app/.cxx/Debug/4z1t2ab1/x86 + +build all: phony + +# ============================================================================= +# Built-in targets + + +############################################# +# Re-run CMake if any of its inputs changed. + +build build.ninja: RERUN_CMAKE | C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/android-legacy.toolchain.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/android.toolchain.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/flags.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/hooks/pre/Android-Clang.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/hooks/pre/Android-Determine.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/hooks/pre/Android-Initialize.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/hooks/pre/Android.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/hooks/pre/Determine-Compiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/platforms.cmake C$:/Users/840$ G3/flutter/packages/flutter_tools/gradle/src/main/groovy/CMakeLists.txt CMakeCache.txt CMakeFiles/3.22.1-g37088a8-dirty/CMakeCCompiler.cmake CMakeFiles/3.22.1-g37088a8-dirty/CMakeCXXCompiler.cmake CMakeFiles/3.22.1-g37088a8-dirty/CMakeSystem.cmake + pool = console + + +############################################# +# A missing CMake input file is not an error. + +build C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/android-legacy.toolchain.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/android.toolchain.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/flags.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/hooks/pre/Android-Clang.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/hooks/pre/Android-Determine.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/hooks/pre/Android-Initialize.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/hooks/pre/Android.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/hooks/pre/Determine-Compiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/platforms.cmake C$:/Users/840$ G3/flutter/packages/flutter_tools/gradle/src/main/groovy/CMakeLists.txt CMakeCache.txt CMakeFiles/3.22.1-g37088a8-dirty/CMakeCCompiler.cmake CMakeFiles/3.22.1-g37088a8-dirty/CMakeCXXCompiler.cmake CMakeFiles/3.22.1-g37088a8-dirty/CMakeSystem.cmake: phony + + +############################################# +# Clean all the built files. + +build clean: CLEAN + + +############################################# +# Print all primary targets available. + +build help: HELP + + +############################################# +# Make the all target the default. + +default all diff --git a/android/app/.cxx/Debug/4z1t2ab1/x86/build_file_index.txt b/android/app/.cxx/Debug/4z1t2ab1/x86/build_file_index.txt new file mode 100644 index 0000000..dac0edd --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/x86/build_file_index.txt @@ -0,0 +1 @@ +C:\Users\840 G3\flutter\packages\flutter_tools\gradle\src\main\groovy\CMakeLists.txt \ No newline at end of file diff --git a/android/app/.cxx/Debug/4z1t2ab1/x86/cmake_install.cmake b/android/app/.cxx/Debug/4z1t2ab1/x86/cmake_install.cmake new file mode 100644 index 0000000..6deb5cb --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/x86/cmake_install.cmake @@ -0,0 +1,54 @@ +# Install script for directory: C:/Users/840 G3/flutter/packages/flutter_tools/gradle/src/main/groovy + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Project") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Debug") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "0") +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-objdump.exe") +endif() + +if(CMAKE_INSTALL_COMPONENT) + set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") +else() + set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +file(WRITE "C:/Users/840 G3/ProjectR.Mobile/android/app/.cxx/Debug/4z1t2ab1/x86/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") diff --git a/android/app/.cxx/Debug/4z1t2ab1/x86/configure_fingerprint.bin b/android/app/.cxx/Debug/4z1t2ab1/x86/configure_fingerprint.bin new file mode 100644 index 0000000..2028514 --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/x86/configure_fingerprint.bin @@ -0,0 +1,28 @@ +C/C++ Structured Logd +b +`C:\Users\840 G3\ProjectR.Mobile\android\app\.cxx\Debug\4z1t2ab1\x86\additional_project_files.txtC +A +?com.android.build.gradle.internal.cxx.io.EncodedFileFingerPrint  є2  Ƥ2a +_ +]C:\Users\840 G3\ProjectR.Mobile\android\app\.cxx\Debug\4z1t2ab1\x86\android_gradle_build.json  є2 ͤ2f +d +bC:\Users\840 G3\ProjectR.Mobile\android\app\.cxx\Debug\4z1t2ab1\x86\android_gradle_build_mini.json  є2 ؤ2S +Q +OC:\Users\840 G3\ProjectR.Mobile\android\app\.cxx\Debug\4z1t2ab1\x86\build.ninja  є2 2W +U +SC:\Users\840 G3\ProjectR.Mobile\android\app\.cxx\Debug\4z1t2ab1\x86\build.ninja.txt  є2\ +Z +XC:\Users\840 G3\ProjectR.Mobile\android\app\.cxx\Debug\4z1t2ab1\x86\build_file_index.txt  є2 T 礞2] +[ +YC:\Users\840 G3\ProjectR.Mobile\android\app\.cxx\Debug\4z1t2ab1\x86\compile_commands.json  є2a +_ +]C:\Users\840 G3\ProjectR.Mobile\android\app\.cxx\Debug\4z1t2ab1\x86\compile_commands.json.bin  є2 g +e +cC:\Users\840 G3\ProjectR.Mobile\android\app\.cxx\Debug\4z1t2ab1\x86\metadata_generation_command.txt  є2 + ޤ2Z +X +VC:\Users\840 G3\ProjectR.Mobile\android\app\.cxx\Debug\4z1t2ab1\x86\prefab_config.json  є2  ( ᤞ2_ +] +[C:\Users\840 G3\ProjectR.Mobile\android\app\.cxx\Debug\4z1t2ab1\x86\symbol_folder_index.txt  є2  R 䤞2X +V +TC:\Users\840 G3\flutter\packages\flutter_tools\gradle\src\main\groovy\CMakeLists.txt  є2  2 \ No newline at end of file diff --git a/android/app/.cxx/Debug/4z1t2ab1/x86/metadata_generation_command.txt b/android/app/.cxx/Debug/4z1t2ab1/x86/metadata_generation_command.txt new file mode 100644 index 0000000..11a5c11 --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/x86/metadata_generation_command.txt @@ -0,0 +1,20 @@ + -HC:\Users\840 G3\flutter\packages\flutter_tools\gradle\src\main\groovy +-DCMAKE_SYSTEM_NAME=Android +-DCMAKE_EXPORT_COMPILE_COMMANDS=ON +-DCMAKE_SYSTEM_VERSION=21 +-DANDROID_PLATFORM=android-21 +-DANDROID_ABI=x86 +-DCMAKE_ANDROID_ARCH_ABI=x86 +-DANDROID_NDK=C:\Users\840 G3\AppData\Local\Android\sdk\ndk\26.3.11579264 +-DCMAKE_ANDROID_NDK=C:\Users\840 G3\AppData\Local\Android\sdk\ndk\26.3.11579264 +-DCMAKE_TOOLCHAIN_FILE=C:\Users\840 G3\AppData\Local\Android\sdk\ndk\26.3.11579264\build\cmake\android.toolchain.cmake +-DCMAKE_MAKE_PROGRAM=C:\Users\840 G3\AppData\Local\Android\sdk\cmake\3.22.1\bin\ninja.exe +-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=C:\Users\840 G3\ProjectR.Mobile\build\app\intermediates\cxx\Debug\4z1t2ab1\obj\x86 +-DCMAKE_RUNTIME_OUTPUT_DIRECTORY=C:\Users\840 G3\ProjectR.Mobile\build\app\intermediates\cxx\Debug\4z1t2ab1\obj\x86 +-DCMAKE_BUILD_TYPE=Debug +-BC:\Users\840 G3\ProjectR.Mobile\android\app\.cxx\Debug\4z1t2ab1\x86 +-GNinja +-Wno-dev +--no-warn-unused-cli + Build command args: [] + Version: 2 \ No newline at end of file diff --git a/android/app/.cxx/Debug/4z1t2ab1/x86/prefab_config.json b/android/app/.cxx/Debug/4z1t2ab1/x86/prefab_config.json new file mode 100644 index 0000000..e799de8 --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/x86/prefab_config.json @@ -0,0 +1,4 @@ +{ + "enabled": false, + "packages": [] +} \ No newline at end of file diff --git a/android/app/.cxx/Debug/4z1t2ab1/x86/symbol_folder_index.txt b/android/app/.cxx/Debug/4z1t2ab1/x86/symbol_folder_index.txt new file mode 100644 index 0000000..e1f6e22 --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/x86/symbol_folder_index.txt @@ -0,0 +1 @@ +C:\Users\840 G3\ProjectR.Mobile\build\app\intermediates\cxx\Debug\4z1t2ab1\obj\x86 \ No newline at end of file diff --git a/android/app/.cxx/Debug/4z1t2ab1/x86_64/.cmake/api/v1/query/client-agp/cache-v2 b/android/app/.cxx/Debug/4z1t2ab1/x86_64/.cmake/api/v1/query/client-agp/cache-v2 new file mode 100644 index 0000000..e69de29 diff --git a/android/app/.cxx/Debug/4z1t2ab1/x86_64/.cmake/api/v1/query/client-agp/cmakeFiles-v1 b/android/app/.cxx/Debug/4z1t2ab1/x86_64/.cmake/api/v1/query/client-agp/cmakeFiles-v1 new file mode 100644 index 0000000..e69de29 diff --git a/android/app/.cxx/Debug/4z1t2ab1/x86_64/.cmake/api/v1/query/client-agp/codemodel-v2 b/android/app/.cxx/Debug/4z1t2ab1/x86_64/.cmake/api/v1/query/client-agp/codemodel-v2 new file mode 100644 index 0000000..e69de29 diff --git a/android/app/.cxx/Debug/4z1t2ab1/x86_64/.cmake/api/v1/reply/cache-v2-003cb96b926ebe51d039.json b/android/app/.cxx/Debug/4z1t2ab1/x86_64/.cmake/api/v1/reply/cache-v2-003cb96b926ebe51d039.json new file mode 100644 index 0000000..4fd877b --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/x86_64/.cmake/api/v1/reply/cache-v2-003cb96b926ebe51d039.json @@ -0,0 +1,1367 @@ +{ + "entries" : + [ + { + "name" : "ANDROID_ABI", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "UNINITIALIZED", + "value" : "x86_64" + }, + { + "name" : "ANDROID_NDK", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "UNINITIALIZED", + "value" : "C:\\Users\\840 G3\\AppData\\Local\\Android\\sdk\\ndk\\26.3.11579264" + }, + { + "name" : "ANDROID_PLATFORM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "UNINITIALIZED", + "value" : "android-21" + }, + { + "name" : "CMAKE_ADDR2LINE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-addr2line.exe" + }, + { + "name" : "CMAKE_ANDROID_ARCH_ABI", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "UNINITIALIZED", + "value" : "x86_64" + }, + { + "name" : "CMAKE_ANDROID_NDK", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "UNINITIALIZED", + "value" : "C:\\Users\\840 G3\\AppData\\Local\\Android\\sdk\\ndk\\26.3.11579264" + }, + { + "name" : "CMAKE_AR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Archiver" + } + ], + "type" : "FILEPATH", + "value" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-ar.exe" + }, + { + "name" : "CMAKE_ASM_FLAGS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Flags used by the compiler during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_ASM_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Flags used by the compiler during debug builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_ASM_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Flags used by the compiler during release builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_BUILD_TYPE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Choose the type of build, options are: None Debug Release RelWithDebInfo MinSizeRel ..." + } + ], + "type" : "STRING", + "value" : "Debug" + }, + { + "name" : "CMAKE_CACHEFILE_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "This is the directory where this CMakeCache.txt was created" + } + ], + "type" : "INTERNAL", + "value" : "c:/Users/840 G3/ProjectR.Mobile/android/app/.cxx/Debug/4z1t2ab1/x86_64" + }, + { + "name" : "CMAKE_CACHE_MAJOR_VERSION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Major version of cmake used to create the current loaded cache" + } + ], + "type" : "INTERNAL", + "value" : "3" + }, + { + "name" : "CMAKE_CACHE_MINOR_VERSION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Minor version of cmake used to create the current loaded cache" + } + ], + "type" : "INTERNAL", + "value" : "22" + }, + { + "name" : "CMAKE_CACHE_PATCH_VERSION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Patch version of cmake used to create the current loaded cache" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "CMAKE_COMMAND", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to CMake executable." + } + ], + "type" : "INTERNAL", + "value" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/bin/cmake.exe" + }, + { + "name" : "CMAKE_CPACK_COMMAND", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to cpack program executable." + } + ], + "type" : "INTERNAL", + "value" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/bin/cpack.exe" + }, + { + "name" : "CMAKE_CTEST_COMMAND", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to ctest program executable." + } + ], + "type" : "INTERNAL", + "value" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/bin/ctest.exe" + }, + { + "name" : "CMAKE_CXX_COMPILER", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "(This variable does not exist and should not be used)" + } + ], + "type" : "UNINITIALIZED", + "value" : "" + }, + { + "name" : "CMAKE_CXX_COMPILER_AR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "LLVM archiver" + } + ], + "type" : "FILEPATH", + "value" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-ar.exe" + }, + { + "name" : "CMAKE_CXX_COMPILER_RANLIB", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Generate index for LLVM archive" + } + ], + "type" : "FILEPATH", + "value" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-ranlib.exe" + }, + { + "name" : "CMAKE_CXX_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the compiler during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_CXX_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the compiler during debug builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_CXX_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the CXX compiler during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "-Os -DNDEBUG" + }, + { + "name" : "CMAKE_CXX_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the compiler during release builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_CXX_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the CXX compiler during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "-O2 -g -DNDEBUG" + }, + { + "name" : "CMAKE_CXX_STANDARD_LIBRARIES", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Libraries linked by default with all C++ applications." + } + ], + "type" : "STRING", + "value" : "-latomic -lm" + }, + { + "name" : "CMAKE_C_COMPILER", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "(This variable does not exist and should not be used)" + } + ], + "type" : "UNINITIALIZED", + "value" : "" + }, + { + "name" : "CMAKE_C_COMPILER_AR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "LLVM archiver" + } + ], + "type" : "FILEPATH", + "value" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-ar.exe" + }, + { + "name" : "CMAKE_C_COMPILER_RANLIB", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Generate index for LLVM archive" + } + ], + "type" : "FILEPATH", + "value" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-ranlib.exe" + }, + { + "name" : "CMAKE_C_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the compiler during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_C_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the compiler during debug builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_C_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the C compiler during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "-Os -DNDEBUG" + }, + { + "name" : "CMAKE_C_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the compiler during release builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_C_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the C compiler during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "-O2 -g -DNDEBUG" + }, + { + "name" : "CMAKE_C_STANDARD_LIBRARIES", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Libraries linked by default with all C applications." + } + ], + "type" : "STRING", + "value" : "-latomic -lm" + }, + { + "name" : "CMAKE_DLLTOOL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "CMAKE_DLLTOOL-NOTFOUND" + }, + { + "name" : "CMAKE_ERROR_DEPRECATED", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Whether to issue deprecation errors for macros and functions." + } + ], + "type" : "INTERNAL", + "value" : "FALSE" + }, + { + "name" : "CMAKE_EXECUTABLE_FORMAT", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Executable file format" + } + ], + "type" : "INTERNAL", + "value" : "ELF" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_EXPORT_COMPILE_COMMANDS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "UNINITIALIZED", + "value" : "ON" + }, + { + "name" : "CMAKE_EXTRA_GENERATOR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Name of external makefile project generator." + } + ], + "type" : "INTERNAL", + "value" : "" + }, + { + "name" : "CMAKE_GENERATOR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Name of generator." + } + ], + "type" : "INTERNAL", + "value" : "Ninja" + }, + { + "name" : "CMAKE_GENERATOR_INSTANCE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Generator instance identifier." + } + ], + "type" : "INTERNAL", + "value" : "" + }, + { + "name" : "CMAKE_GENERATOR_PLATFORM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Name of generator platform." + } + ], + "type" : "INTERNAL", + "value" : "" + }, + { + "name" : "CMAKE_GENERATOR_TOOLSET", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Name of generator toolset." + } + ], + "type" : "INTERNAL", + "value" : "" + }, + { + "name" : "CMAKE_HOME_DIRECTORY", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Source directory with the top level CMakeLists.txt file for this project" + } + ], + "type" : "INTERNAL", + "value" : "C:/Users/840 G3/flutter/packages/flutter_tools/gradle/src/main/groovy" + }, + { + "name" : "CMAKE_INSTALL_PREFIX", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Install path prefix, prepended onto install directories." + } + ], + "type" : "PATH", + "value" : "C:/Program Files (x86)/Project" + }, + { + "name" : "CMAKE_INSTALL_SO_NO_EXE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Install .so files without execute permission." + } + ], + "type" : "INTERNAL", + "value" : "0" + }, + { + "name" : "CMAKE_LIBRARY_OUTPUT_DIRECTORY", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "UNINITIALIZED", + "value" : "C:\\Users\\840 G3\\ProjectR.Mobile\\build\\app\\intermediates\\cxx\\Debug\\4z1t2ab1\\obj\\x86_64" + }, + { + "name" : "CMAKE_LINKER", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/ld.lld.exe" + }, + { + "name" : "CMAKE_MAKE_PROGRAM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "make program" + } + ], + "type" : "FILEPATH", + "value" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/bin/ninja.exe" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_NM", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-nm.exe" + }, + { + "name" : "CMAKE_NUMBER_OF_MAKEFILES", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "number of local generators" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "CMAKE_OBJCOPY", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-objcopy.exe" + }, + { + "name" : "CMAKE_OBJDUMP", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-objdump.exe" + }, + { + "name" : "CMAKE_PLATFORM_INFO_INITIALIZED", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Platform information initialized" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "CMAKE_PROJECT_DESCRIPTION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "" + }, + { + "name" : "CMAKE_PROJECT_HOMEPAGE_URL", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "" + }, + { + "name" : "CMAKE_PROJECT_NAME", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "Project" + }, + { + "name" : "CMAKE_RANLIB", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Ranlib" + } + ], + "type" : "FILEPATH", + "value" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-ranlib.exe" + }, + { + "name" : "CMAKE_READELF", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-readelf.exe" + }, + { + "name" : "CMAKE_ROOT", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to CMake installation." + } + ], + "type" : "INTERNAL", + "value" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22" + }, + { + "name" : "CMAKE_RUNTIME_OUTPUT_DIRECTORY", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "UNINITIALIZED", + "value" : "C:\\Users\\840 G3\\ProjectR.Mobile\\build\\app\\intermediates\\cxx\\Debug\\4z1t2ab1\\obj\\x86_64" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of dll's." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of shared libraries during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of shared libraries during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of shared libraries during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of shared libraries during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_SKIP_INSTALL_RPATH", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "If set, runtime paths are not added when installing shared libraries, but are added when building." + } + ], + "type" : "BOOL", + "value" : "NO" + }, + { + "name" : "CMAKE_SKIP_RPATH", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "If set, runtime paths are not added when using shared libraries." + } + ], + "type" : "BOOL", + "value" : "NO" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STRIP", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Strip" + } + ], + "type" : "FILEPATH", + "value" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-strip.exe" + }, + { + "name" : "CMAKE_SUPPRESS_DEVELOPER_ERRORS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Suppress errors that are meant for the author of the CMakeLists.txt files." + } + ], + "type" : "INTERNAL", + "value" : "TRUE" + }, + { + "name" : "CMAKE_SUPPRESS_DEVELOPER_WARNINGS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Suppress Warnings that are meant for the author of the CMakeLists.txt files." + } + ], + "type" : "INTERNAL", + "value" : "TRUE" + }, + { + "name" : "CMAKE_SYSTEM_NAME", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "UNINITIALIZED", + "value" : "Android" + }, + { + "name" : "CMAKE_SYSTEM_VERSION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "UNINITIALIZED", + "value" : "21" + }, + { + "name" : "CMAKE_TOOLCHAIN_FILE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The CMake toolchain file" + } + ], + "type" : "FILEPATH", + "value" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/android.toolchain.cmake" + }, + { + "name" : "CMAKE_VERBOSE_MAKEFILE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "If this value is on, makefiles will be generated without the .SILENT directive, and all commands will be echoed to the console during the make. This is useful for debugging only. With Visual Studio IDE projects all commands are done without /nologo." + } + ], + "type" : "BOOL", + "value" : "FALSE" + }, + { + "name" : "CMAKE_WARN_DEPRECATED", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Whether to issue warnings for deprecated functionality." + } + ], + "type" : "INTERNAL", + "value" : "FALSE" + }, + { + "name" : "Project_BINARY_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "C:/Users/840 G3/ProjectR.Mobile/android/app/.cxx/Debug/4z1t2ab1/x86_64" + }, + { + "name" : "Project_IS_TOP_LEVEL", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "ON" + }, + { + "name" : "Project_SOURCE_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "C:/Users/840 G3/flutter/packages/flutter_tools/gradle/src/main/groovy" + } + ], + "kind" : "cache", + "version" : + { + "major" : 2, + "minor" : 0 + } +} diff --git a/android/app/.cxx/Debug/4z1t2ab1/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-d55e042c6badf3a969dc.json b/android/app/.cxx/Debug/4z1t2ab1/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-d55e042c6badf3a969dc.json new file mode 100644 index 0000000..9b49307 --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-d55e042c6badf3a969dc.json @@ -0,0 +1,799 @@ +{ + "inputs" : + [ + { + "path" : "CMakeLists.txt" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/android.toolchain.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/android-legacy.toolchain.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/platforms.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/hooks/pre/Android-Determine.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in" + }, + { + "isGenerated" : true, + "path" : "C:/Users/840 G3/ProjectR.Mobile/android/app/.cxx/Debug/4z1t2ab1/x86_64/CMakeFiles/3.22.1-g37088a8-dirty/CMakeSystem.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/android.toolchain.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/hooks/pre/Android-Initialize.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/hooks/pre/Determine-Compiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in" + }, + { + "isGenerated" : true, + "path" : "C:/Users/840 G3/ProjectR.Mobile/android/app/.cxx/Debug/4z1t2ab1/x86_64/CMakeFiles/3.22.1-g37088a8-dirty/CMakeCCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in" + }, + { + "isGenerated" : true, + "path" : "C:/Users/840 G3/ProjectR.Mobile/android/app/.cxx/Debug/4z1t2ab1/x86_64/CMakeFiles/3.22.1-g37088a8-dirty/CMakeCXXCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/hooks/pre/Android.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/hooks/pre/Android-Clang.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/flags.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in" + }, + { + "isGenerated" : true, + "path" : "C:/Users/840 G3/ProjectR.Mobile/android/app/.cxx/Debug/4z1t2ab1/x86_64/CMakeFiles/3.22.1-g37088a8-dirty/CMakeCCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in" + }, + { + "isGenerated" : true, + "path" : "C:/Users/840 G3/ProjectR.Mobile/android/app/.cxx/Debug/4z1t2ab1/x86_64/CMakeFiles/3.22.1-g37088a8-dirty/CMakeCXXCompiler.cmake" + } + ], + "kind" : "cmakeFiles", + "paths" : + { + "build" : "C:/Users/840 G3/ProjectR.Mobile/android/app/.cxx/Debug/4z1t2ab1/x86_64", + "source" : "C:/Users/840 G3/flutter/packages/flutter_tools/gradle/src/main/groovy" + }, + "version" : + { + "major" : 1, + "minor" : 0 + } +} diff --git a/android/app/.cxx/Debug/4z1t2ab1/x86_64/.cmake/api/v1/reply/codemodel-v2-4e692b141b2b5d38c121.json b/android/app/.cxx/Debug/4z1t2ab1/x86_64/.cmake/api/v1/reply/codemodel-v2-4e692b141b2b5d38c121.json new file mode 100644 index 0000000..2a113d5 --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/x86_64/.cmake/api/v1/reply/codemodel-v2-4e692b141b2b5d38c121.json @@ -0,0 +1,43 @@ +{ + "configurations" : + [ + { + "directories" : + [ + { + "build" : ".", + "jsonFile" : "directory-.-Debug-d0094a50bb2071803777.json", + "minimumCMakeVersion" : + { + "string" : "3.6.0" + }, + "projectIndex" : 0, + "source" : "." + } + ], + "name" : "Debug", + "projects" : + [ + { + "directoryIndexes" : + [ + 0 + ], + "name" : "Project" + } + ], + "targets" : [] + } + ], + "kind" : "codemodel", + "paths" : + { + "build" : "C:/Users/840 G3/ProjectR.Mobile/android/app/.cxx/Debug/4z1t2ab1/x86_64", + "source" : "C:/Users/840 G3/flutter/packages/flutter_tools/gradle/src/main/groovy" + }, + "version" : + { + "major" : 2, + "minor" : 3 + } +} diff --git a/android/app/.cxx/Debug/4z1t2ab1/x86_64/.cmake/api/v1/reply/directory-.-Debug-d0094a50bb2071803777.json b/android/app/.cxx/Debug/4z1t2ab1/x86_64/.cmake/api/v1/reply/directory-.-Debug-d0094a50bb2071803777.json new file mode 100644 index 0000000..3a67af9 --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/x86_64/.cmake/api/v1/reply/directory-.-Debug-d0094a50bb2071803777.json @@ -0,0 +1,14 @@ +{ + "backtraceGraph" : + { + "commands" : [], + "files" : [], + "nodes" : [] + }, + "installers" : [], + "paths" : + { + "build" : ".", + "source" : "." + } +} diff --git a/android/app/.cxx/Debug/4z1t2ab1/x86_64/.cmake/api/v1/reply/index-2025-07-08T09-39-34-0185.json b/android/app/.cxx/Debug/4z1t2ab1/x86_64/.cmake/api/v1/reply/index-2025-07-08T09-39-34-0185.json new file mode 100644 index 0000000..10fcf29 --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/x86_64/.cmake/api/v1/reply/index-2025-07-08T09-39-34-0185.json @@ -0,0 +1,92 @@ +{ + "cmake" : + { + "generator" : + { + "multiConfig" : false, + "name" : "Ninja" + }, + "paths" : + { + "cmake" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/bin/cmake.exe", + "cpack" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/bin/cpack.exe", + "ctest" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/bin/ctest.exe", + "root" : "C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22" + }, + "version" : + { + "isDirty" : true, + "major" : 3, + "minor" : 22, + "patch" : 1, + "string" : "3.22.1-g37088a8-dirty", + "suffix" : "g37088a8" + } + }, + "objects" : + [ + { + "jsonFile" : "codemodel-v2-4e692b141b2b5d38c121.json", + "kind" : "codemodel", + "version" : + { + "major" : 2, + "minor" : 3 + } + }, + { + "jsonFile" : "cache-v2-003cb96b926ebe51d039.json", + "kind" : "cache", + "version" : + { + "major" : 2, + "minor" : 0 + } + }, + { + "jsonFile" : "cmakeFiles-v1-d55e042c6badf3a969dc.json", + "kind" : "cmakeFiles", + "version" : + { + "major" : 1, + "minor" : 0 + } + } + ], + "reply" : + { + "client-agp" : + { + "cache-v2" : + { + "jsonFile" : "cache-v2-003cb96b926ebe51d039.json", + "kind" : "cache", + "version" : + { + "major" : 2, + "minor" : 0 + } + }, + "cmakeFiles-v1" : + { + "jsonFile" : "cmakeFiles-v1-d55e042c6badf3a969dc.json", + "kind" : "cmakeFiles", + "version" : + { + "major" : 1, + "minor" : 0 + } + }, + "codemodel-v2" : + { + "jsonFile" : "codemodel-v2-4e692b141b2b5d38c121.json", + "kind" : "codemodel", + "version" : + { + "major" : 2, + "minor" : 3 + } + } + } + } +} diff --git a/android/app/.cxx/Debug/4z1t2ab1/x86_64/CMakeCache.txt b/android/app/.cxx/Debug/4z1t2ab1/x86_64/CMakeCache.txt new file mode 100644 index 0000000..b4f65d2 --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/x86_64/CMakeCache.txt @@ -0,0 +1,401 @@ +# This is the CMakeCache file. +# For build in directory: c:/Users/840 G3/ProjectR.Mobile/android/app/.cxx/Debug/4z1t2ab1/x86_64 +# It was generated by CMake: C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/bin/cmake.exe +# You can edit this file to change values found and used by cmake. +# If you do not want to change any of the values, simply exit the editor. +# If you do want to change a value, simply edit, save, and exit the editor. +# The syntax for the file is as follows: +# KEY:TYPE=VALUE +# KEY is the name of a variable in the cache. +# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. +# VALUE is the current value for the KEY. + +######################## +# EXTERNAL cache entries +######################## + +//No help, variable specified on the command line. +ANDROID_ABI:UNINITIALIZED=x86_64 + +//No help, variable specified on the command line. +ANDROID_NDK:UNINITIALIZED=C:\Users\840 G3\AppData\Local\Android\sdk\ndk\26.3.11579264 + +//No help, variable specified on the command line. +ANDROID_PLATFORM:UNINITIALIZED=android-21 + +//Path to a program. +CMAKE_ADDR2LINE:FILEPATH=C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-addr2line.exe + +//No help, variable specified on the command line. +CMAKE_ANDROID_ARCH_ABI:UNINITIALIZED=x86_64 + +//No help, variable specified on the command line. +CMAKE_ANDROID_NDK:UNINITIALIZED=C:\Users\840 G3\AppData\Local\Android\sdk\ndk\26.3.11579264 + +//Archiver +CMAKE_AR:FILEPATH=C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-ar.exe + +//Flags used by the compiler during all build types. +CMAKE_ASM_FLAGS:STRING= + +//Flags used by the compiler during debug builds. +CMAKE_ASM_FLAGS_DEBUG:STRING= + +//Flags used by the compiler during release builds. +CMAKE_ASM_FLAGS_RELEASE:STRING= + +//Choose the type of build, options are: None Debug Release RelWithDebInfo +// MinSizeRel ... +CMAKE_BUILD_TYPE:STRING=Debug + +//LLVM archiver +CMAKE_CXX_COMPILER_AR:FILEPATH=C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-ar.exe + +//Generate index for LLVM archive +CMAKE_CXX_COMPILER_RANLIB:FILEPATH=C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-ranlib.exe + +//Flags used by the compiler during all build types. +CMAKE_CXX_FLAGS:STRING= + +//Flags used by the compiler during debug builds. +CMAKE_CXX_FLAGS_DEBUG:STRING= + +//Flags used by the CXX compiler during MINSIZEREL builds. +CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the compiler during release builds. +CMAKE_CXX_FLAGS_RELEASE:STRING= + +//Flags used by the CXX compiler during RELWITHDEBINFO builds. +CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Libraries linked by default with all C++ applications. +CMAKE_CXX_STANDARD_LIBRARIES:STRING=-latomic -lm + +//LLVM archiver +CMAKE_C_COMPILER_AR:FILEPATH=C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-ar.exe + +//Generate index for LLVM archive +CMAKE_C_COMPILER_RANLIB:FILEPATH=C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-ranlib.exe + +//Flags used by the compiler during all build types. +CMAKE_C_FLAGS:STRING= + +//Flags used by the compiler during debug builds. +CMAKE_C_FLAGS_DEBUG:STRING= + +//Flags used by the C compiler during MINSIZEREL builds. +CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the compiler during release builds. +CMAKE_C_FLAGS_RELEASE:STRING= + +//Flags used by the C compiler during RELWITHDEBINFO builds. +CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Libraries linked by default with all C applications. +CMAKE_C_STANDARD_LIBRARIES:STRING=-latomic -lm + +//Path to a program. +CMAKE_DLLTOOL:FILEPATH=CMAKE_DLLTOOL-NOTFOUND + +//Flags used by the linker. +CMAKE_EXE_LINKER_FLAGS:STRING= + +//Flags used by the linker during DEBUG builds. +CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during MINSIZEREL builds. +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during RELEASE builds. +CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during RELWITHDEBINFO builds. +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//No help, variable specified on the command line. +CMAKE_EXPORT_COMPILE_COMMANDS:UNINITIALIZED=ON + +//Install path prefix, prepended onto install directories. +CMAKE_INSTALL_PREFIX:PATH=C:/Program Files (x86)/Project + +//No help, variable specified on the command line. +CMAKE_LIBRARY_OUTPUT_DIRECTORY:UNINITIALIZED=C:\Users\840 G3\ProjectR.Mobile\build\app\intermediates\cxx\Debug\4z1t2ab1\obj\x86_64 + +//Path to a program. +CMAKE_LINKER:FILEPATH=C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/ld.lld.exe + +//make program +CMAKE_MAKE_PROGRAM:FILEPATH=C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/bin/ninja.exe + +//Flags used by the linker during the creation of modules. +CMAKE_MODULE_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of modules during +// DEBUG builds. +CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of modules during +// MINSIZEREL builds. +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of modules during +// RELEASE builds. +CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of modules during +// RELWITHDEBINFO builds. +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_NM:FILEPATH=C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-nm.exe + +//Path to a program. +CMAKE_OBJCOPY:FILEPATH=C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-objcopy.exe + +//Path to a program. +CMAKE_OBJDUMP:FILEPATH=C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-objdump.exe + +//Value Computed by CMake +CMAKE_PROJECT_DESCRIPTION:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_HOMEPAGE_URL:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_NAME:STATIC=Project + +//Ranlib +CMAKE_RANLIB:FILEPATH=C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-ranlib.exe + +//Path to a program. +CMAKE_READELF:FILEPATH=C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-readelf.exe + +//No help, variable specified on the command line. +CMAKE_RUNTIME_OUTPUT_DIRECTORY:UNINITIALIZED=C:\Users\840 G3\ProjectR.Mobile\build\app\intermediates\cxx\Debug\4z1t2ab1\obj\x86_64 + +//Flags used by the linker during the creation of dll's. +CMAKE_SHARED_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of shared libraries +// during DEBUG builds. +CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of shared libraries +// during MINSIZEREL builds. +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELEASE builds. +CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELWITHDEBINFO builds. +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//If set, runtime paths are not added when installing shared libraries, +// but are added when building. +CMAKE_SKIP_INSTALL_RPATH:BOOL=NO + +//If set, runtime paths are not added when using shared libraries. +CMAKE_SKIP_RPATH:BOOL=NO + +//Flags used by the linker during the creation of static libraries +// during all build types. +CMAKE_STATIC_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of static libraries +// during DEBUG builds. +CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of static libraries +// during MINSIZEREL builds. +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELEASE builds. +CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELWITHDEBINFO builds. +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Strip +CMAKE_STRIP:FILEPATH=C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-strip.exe + +//No help, variable specified on the command line. +CMAKE_SYSTEM_NAME:UNINITIALIZED=Android + +//No help, variable specified on the command line. +CMAKE_SYSTEM_VERSION:UNINITIALIZED=21 + +//The CMake toolchain file +CMAKE_TOOLCHAIN_FILE:FILEPATH=C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/android.toolchain.cmake + +//If this value is on, makefiles will be generated without the +// .SILENT directive, and all commands will be echoed to the console +// during the make. This is useful for debugging only. With Visual +// Studio IDE projects all commands are done without /nologo. +CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE + +//Value Computed by CMake +Project_BINARY_DIR:STATIC=C:/Users/840 G3/ProjectR.Mobile/android/app/.cxx/Debug/4z1t2ab1/x86_64 + +//Value Computed by CMake +Project_IS_TOP_LEVEL:STATIC=ON + +//Value Computed by CMake +Project_SOURCE_DIR:STATIC=C:/Users/840 G3/flutter/packages/flutter_tools/gradle/src/main/groovy + + +######################## +# INTERNAL cache entries +######################## + +//ADVANCED property for variable: CMAKE_ADDR2LINE +CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_AR +CMAKE_AR-ADVANCED:INTERNAL=1 +//This is the directory where this CMakeCache.txt was created +CMAKE_CACHEFILE_DIR:INTERNAL=c:/Users/840 G3/ProjectR.Mobile/android/app/.cxx/Debug/4z1t2ab1/x86_64 +//Major version of cmake used to create the current loaded cache +CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 +//Minor version of cmake used to create the current loaded cache +CMAKE_CACHE_MINOR_VERSION:INTERNAL=22 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=1 +//Path to CMake executable. +CMAKE_COMMAND:INTERNAL=C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/bin/cmake.exe +//Path to cpack program executable. +CMAKE_CPACK_COMMAND:INTERNAL=C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/bin/cpack.exe +//Path to ctest program executable. +CMAKE_CTEST_COMMAND:INTERNAL=C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/bin/ctest.exe +//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR +CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB +CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS +CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG +CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL +CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE +CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO +CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_STANDARD_LIBRARIES +CMAKE_CXX_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_AR +CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB +CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS +CMAKE_C_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG +CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL +CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE +CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO +CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_STANDARD_LIBRARIES +CMAKE_C_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_DLLTOOL +CMAKE_DLLTOOL-ADVANCED:INTERNAL=1 +//Whether to issue deprecation errors for macros and functions. +CMAKE_ERROR_DEPRECATED:INTERNAL=FALSE +//Executable file format +CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS +CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG +CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE +CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//Name of external makefile project generator. +CMAKE_EXTRA_GENERATOR:INTERNAL= +//Name of generator. +CMAKE_GENERATOR:INTERNAL=Ninja +//Generator instance identifier. +CMAKE_GENERATOR_INSTANCE:INTERNAL= +//Name of generator platform. +CMAKE_GENERATOR_PLATFORM:INTERNAL= +//Name of generator toolset. +CMAKE_GENERATOR_TOOLSET:INTERNAL= +//Source directory with the top level CMakeLists.txt file for this +// project +CMAKE_HOME_DIRECTORY:INTERNAL=C:/Users/840 G3/flutter/packages/flutter_tools/gradle/src/main/groovy +//Install .so files without execute permission. +CMAKE_INSTALL_SO_NO_EXE:INTERNAL=0 +//ADVANCED property for variable: CMAKE_LINKER +CMAKE_LINKER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS +CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG +CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE +CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_NM +CMAKE_NM-ADVANCED:INTERNAL=1 +//number of local generators +CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJCOPY +CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJDUMP +CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 +//Platform information initialized +CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RANLIB +CMAKE_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_READELF +CMAKE_READELF-ADVANCED:INTERNAL=1 +//Path to CMake installation. +CMAKE_ROOT:INTERNAL=C:/Users/840 G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS +CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG +CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE +CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH +CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_RPATH +CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS +CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG +CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE +CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STRIP +CMAKE_STRIP-ADVANCED:INTERNAL=1 +//Suppress errors that are meant for the author of the CMakeLists.txt +// files. +CMAKE_SUPPRESS_DEVELOPER_ERRORS:INTERNAL=TRUE +//Suppress Warnings that are meant for the author of the CMakeLists.txt +// files. +CMAKE_SUPPRESS_DEVELOPER_WARNINGS:INTERNAL=TRUE +//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 +//Whether to issue warnings for deprecated functionality. +CMAKE_WARN_DEPRECATED:INTERNAL=FALSE + diff --git a/android/app/.cxx/Debug/4z1t2ab1/x86_64/CMakeFiles/3.22.1-g37088a8-dirty/CMakeCCompiler.cmake b/android/app/.cxx/Debug/4z1t2ab1/x86_64/CMakeFiles/3.22.1-g37088a8-dirty/CMakeCCompiler.cmake new file mode 100644 index 0000000..864672e --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/x86_64/CMakeFiles/3.22.1-g37088a8-dirty/CMakeCCompiler.cmake @@ -0,0 +1,72 @@ +set(CMAKE_C_COMPILER "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/clang.exe") +set(CMAKE_C_COMPILER_ARG1 "") +set(CMAKE_C_COMPILER_ID "Clang") +set(CMAKE_C_COMPILER_VERSION "17.0.2") +set(CMAKE_C_COMPILER_VERSION_INTERNAL "") +set(CMAKE_C_COMPILER_WRAPPER "") +set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "17") +set(CMAKE_C_EXTENSIONS_COMPUTED_DEFAULT "ON") +set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert;c_std_17;c_std_23") +set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes") +set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros") +set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert") +set(CMAKE_C17_COMPILE_FEATURES "c_std_17") +set(CMAKE_C23_COMPILE_FEATURES "c_std_23") + +set(CMAKE_C_PLATFORM_ID "Linux") +set(CMAKE_C_SIMULATE_ID "") +set(CMAKE_C_COMPILER_FRONTEND_VARIANT "GNU") +set(CMAKE_C_SIMULATE_VERSION "") + + + + +set(CMAKE_AR "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-ar.exe") +set(CMAKE_C_COMPILER_AR "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-ar.exe") +set(CMAKE_RANLIB "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-ranlib.exe") +set(CMAKE_C_COMPILER_RANLIB "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-ranlib.exe") +set(CMAKE_LINKER "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/ld.lld.exe") +set(CMAKE_MT "") +set(CMAKE_COMPILER_IS_GNUCC ) +set(CMAKE_C_COMPILER_LOADED 1) +set(CMAKE_C_COMPILER_WORKS TRUE) +set(CMAKE_C_ABI_COMPILED TRUE) + +set(CMAKE_C_COMPILER_ENV_VAR "CC") + +set(CMAKE_C_COMPILER_ID_RUN 1) +set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m) +set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_C_LINKER_PREFERENCE 10) + +# Save compiler ABI information. +set(CMAKE_C_SIZEOF_DATA_PTR "8") +set(CMAKE_C_COMPILER_ABI "ELF") +set(CMAKE_C_BYTE_ORDER "LITTLE_ENDIAN") +set(CMAKE_C_LIBRARY_ARCHITECTURE "") + +if(CMAKE_C_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_C_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}") +endif() + +if(CMAKE_C_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "") +endif() + +set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_C_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/lib/clang/17/include;C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/include/x86_64-linux-android;C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/include") +set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "-l:libunwind.a;dl;c;-l:libunwind.a;dl") +set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/lib/clang/17/lib/linux/x86_64;C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/x86_64-linux-android/21;C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/x86_64-linux-android;C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib") +set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/android/app/.cxx/Debug/4z1t2ab1/x86_64/CMakeFiles/3.22.1-g37088a8-dirty/CMakeCXXCompiler.cmake b/android/app/.cxx/Debug/4z1t2ab1/x86_64/CMakeFiles/3.22.1-g37088a8-dirty/CMakeCXXCompiler.cmake new file mode 100644 index 0000000..eb63d4b --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/x86_64/CMakeFiles/3.22.1-g37088a8-dirty/CMakeCXXCompiler.cmake @@ -0,0 +1,83 @@ +set(CMAKE_CXX_COMPILER "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/clang++.exe") +set(CMAKE_CXX_COMPILER_ARG1 "") +set(CMAKE_CXX_COMPILER_ID "Clang") +set(CMAKE_CXX_COMPILER_VERSION "17.0.2") +set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") +set(CMAKE_CXX_COMPILER_WRAPPER "") +set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "17") +set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON") +set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23") +set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") +set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") +set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") +set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") +set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20") +set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23") + +set(CMAKE_CXX_PLATFORM_ID "Linux") +set(CMAKE_CXX_SIMULATE_ID "") +set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU") +set(CMAKE_CXX_SIMULATE_VERSION "") + + + + +set(CMAKE_AR "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-ar.exe") +set(CMAKE_CXX_COMPILER_AR "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-ar.exe") +set(CMAKE_RANLIB "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-ranlib.exe") +set(CMAKE_CXX_COMPILER_RANLIB "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-ranlib.exe") +set(CMAKE_LINKER "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/ld.lld.exe") +set(CMAKE_MT "") +set(CMAKE_COMPILER_IS_GNUCXX ) +set(CMAKE_CXX_COMPILER_LOADED 1) +set(CMAKE_CXX_COMPILER_WORKS TRUE) +set(CMAKE_CXX_ABI_COMPILED TRUE) + +set(CMAKE_CXX_COMPILER_ENV_VAR "CXX") + +set(CMAKE_CXX_COMPILER_ID_RUN 1) +set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm) +set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) + +foreach (lang C OBJC OBJCXX) + if (CMAKE_${lang}_COMPILER_ID_RUN) + foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS) + list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension}) + endforeach() + endif() +endforeach() + +set(CMAKE_CXX_LINKER_PREFERENCE 30) +set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) + +# Save compiler ABI information. +set(CMAKE_CXX_SIZEOF_DATA_PTR "8") +set(CMAKE_CXX_COMPILER_ABI "ELF") +set(CMAKE_CXX_BYTE_ORDER "LITTLE_ENDIAN") +set(CMAKE_CXX_LIBRARY_ARCHITECTURE "") + +if(CMAKE_CXX_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_CXX_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") +endif() + +if(CMAKE_CXX_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "") +endif() + +set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/include/c++/v1;C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/lib/clang/17/include;C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/include/x86_64-linux-android;C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/include") +set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "c++;m;-l:libunwind.a;dl;c;-l:libunwind.a;dl") +set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/lib/clang/17/lib/linux/x86_64;C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/x86_64-linux-android/21;C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/x86_64-linux-android;C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib") +set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/android/app/.cxx/Debug/4z1t2ab1/x86_64/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_C.bin b/android/app/.cxx/Debug/4z1t2ab1/x86_64/CMakeFiles/3.22.1-g37088a8-dirty/CMakeDetermineCompilerABI_C.bin new file mode 100644 index 0000000000000000000000000000000000000000..925e093b1e8dbe40225f0bcb2170bd8c8f82df32 GIT binary patch literal 7056 zcmd5>Z)_CD6`$Sn*=No^pG^r60vruAq`>|2A8aQj82ikfVjJq1w3N`z-tGGC!rkq4 zZ%u8~CRIZJSS=Efswy8+iAt4PwO>%av{KuMDpEr$)RKNcYWtz23JpX=bR-kUi;m6{k=6-6-l#2$gtS-*?yrHb&Ur~quQ7!*Nx zZxZ*2R*+jH=GO0Z8PvK|P?z%n;XdGK_fx9(@-?K#oIONNu93!ab{QQ4VlKk2jCNSX z_~pA?ocUGifVtQ1JUM=TyKBeXm4x7Nu^kQz`wO?Z8sW9e`DyBpIonTPaSWW7JNX%D zciW?8#6hxaOb$;H@tv-^V2*tteID#+%3R=oe4{-+FVgq(^5>`>=A7e`#GY55?yWz$HedYlyD#`_-)=ee$G^P!VQu4xdR9>AybUgd3V%2g zintp%Eqjsc#08*=Ps1At+eM#{qh2#1PM?L^YOaN{rj?4>oK~z99VqAKbxn87c@Pke z)+{lR**A)UQ9=pnm+K@GxDBvRrgKd=uMMorOpPBHt`$$1)~se!9s5Xp@F?3LpUNB< z&kj2anrU06am3E-)AmoLGGkLCLh4ET?1E!zmTj2!k%`RA%tT5{O^sznra(j1>)GNF zh;y@e*l@rrKnGY))I@$ubhjG5|fd};m z;Spn@2x4(~o`;9`H`p$7z9O1zm~d_Dcl zYfD#g)@DzqpSiv+eagS48(d#(*$TzGWpQk40Lq)F98RBFvk&ysi?1ebTs;q^uFWT9 zgXwS99ku@YOAUGPX8P3U{#mcr!Q>~fYOehZ^e!~$P3Cb$u~)oxuGF{-Pzl44hsGJi5&MyQ%9(U%GGsn`f%`zYSxm zZ+i#cU7Pnp3FQJ-U%L!m*SEcaGJFwn?IOxV4f{LDXoz&5%NlEz_sS;1`IEd~ugirF zb`s)zMQVb=zIYrL7!a>@To*{Z-_Fo};PpjmL*@|F`vxfnQ2-+KM!4Te?XPmH<+{V- zyEk3`mdKveL<63x$f>L0$ZoUe-{ z!{^}na}7Oj&YK=s{Em{=CE^tQBij>+-oBw^a&Tv4M>TK3J8P93U?m5HUF8yDS-oZ& z5vvlh`v!OK?%QqNAIX*UN~xh0yntbEC=S#x&I zjOMIz%(1LeuApO5DjhHHs@m2QX3mKiL$iZJvwcQlU|^uv=#M9oW`8a|)Hl>W+neo; zn>n-BNcIjS@8_)5?Dr?gy9t?Tha(dcV>Bla9J`fmq1Aq0D7+6sDmfyA@0HM3$A^@>{y zN%8|~*eygkJhHzxcF^6R)6q#QTP&Hpv159*8jI%U z=VN1Lb}k?5JCSgbdNvW89~{sI`eLJ#`Z04H3~Fw1rd)OBrsmOhyy28hj7ag?1qno3xC%Mo*)oR=Elt+avoj(Hxw*My97n z4r`BOzLe5t4j)Wun$Ych4qwN`T%}gbS0J?23YP7NGQ=ft(-G_8ZZ6pz<%@c3BVZt}W-{d_#FE}sk>LW?TeRo*AQu;Oo971-hr&H00^ulYl*c@Hm0 zc~xuC?`sV{sH!j%(8!07>_fa&_o{RNpo)+TzQi||O%YrH{dGu!pzssYKK|obQ6v^n20=l0iJWL^x&!P#y6?Ki^ z`z@byOt5KLVICF$SK!wGj)r_b`aahU_ogz;2N#RgDh95v( zExhM|-vitO^UuFia61;N39Z(=?#Q`7jC_)3mE1TCp56$_I?1VZwfOv3zANnw=|_j9qZ6jT#G; z+Co`G5v60wGC{Llv7pxqBI>@;#sSun-F7q?;cx;qnn2B+Kncl_$`W{J z3R!{#Co0Ahj2=>i_Ej757z~1L<(g*HEUH|7Uzct-=PqsR z@YKj;X4JE)|9=sdJ8qrEJ?D16>v7Ad+f4Yg7T$e0ym1_5&heCOSdZn69((WaOj}uz zIL8@=<4}MzX`_F>cQH?sBKnEGbG(2Bd9=( zj}e?l`S)nAzSsY=V2in!?fG|uCF=i9_P++(t|oiV%Q7ecekc3$po3j;|9o!X-{JZ9 zcHBQm>_4|F56OVDJ^wCqh7`9;t6ML&XXLL?K#cAA9L4`X@alWzzk@BVpEx|t#P&~M zWfQT;{3_IOxk*hV>4%{oHiIkZ-dF)clRuIDy`IKBqEG=q%{__*EBM1V5Z+^($s@|E4#%Emy#OvMpej{jo`6$dYitzP6}~&`^@GKW!6AW=z|ulX1nhckV{DQT8+&0_GKM-P;!!%<-5Gl~?Cxx5 z$JEfItwj2;QY4~QRenSjRi*TyN=51q{#22pNDZp^K`Rwi{m~LN50I$jNG(E5#r8Wh z=PbJeE>)5rIo9mC=R4=z$C-Q2y?6Z0xTPX5P+t5S;ve&U!yz&33}2hs3#SY|+dXsY4*)s>_qfk5qy$ zKJ4MbZ*v2}{eIWEk3;4G|K~6H)AI(uKRk-aot`GSgrU`H#zR81? zaIz(eS5H+PvlP!3%JE{Me8RK``n{;X1T95jq-@w$!B8|~?A`$b>|;|Rv18{@FSYP- ziTX`ThK9Ls;*gs8#nY|Y>(f8m(}-5x$DnfwTqzBI6p4U( z6r88M%5~C&(A4MfOGNcjpNNxPBN5K8h3jh6qO9x1LN=!t$^{4I++0S_IOZG#f@4)n zji>jFl29T6+$d6k=+A3hrf4}(+d|hGaG4{bBc7hvdtg_!aN4w{b)(|g$9e{jH|i(S z2li%nIj3~fwoK!go!+DGn@Fa|CPtKN=lW+)Ii_yehG`!gPftyaC-vmSSbAgv7Op;% zEgVB0B!|Gd;FGjQ=>09=N#UUme;KR`yaL_>{yoA$k`@D}CskmsE3j^PTl+caDgKY) zA^Sl*YAg~ZtOw6)cx1hk{}>)xC!CT{@_eby^LT7LY9!M29c{F;RV$$d0z69mBQ^g) z>dd=~*C~3_=Tc{Gu1TE@tzL<)&$nzs@lm%pwy7QE^<3^son5^L_Nn=I61T2jLTSZ@ zm)r_d->x}Y?Sr@K^8B6D*{9#H)oO6Lh*@;wm$18Br$edv_ufwahkWN>yq%h#U3@!v zlcZE`|82DR)SX&w#TzZ{!Q{>P@wYBFt()2o4a=mq zxdp!~HVmUga-Mo{;~IKh+x%~gIgdA@Zd@Umi42GyB$Ff27d=*=yK$c^YiT{>@`^sH z)!YSudR$2MGd5GaEvP(AIFPIXnkPiE9v66>$b92%#oc4b?ptgaCIQ6e^}TW%*T2kD zdvg-yf8Fu=x5)l%rj~Od%J#BPZe*F}GSOO(DH+H*mPIdd>EeOXnjjMWBFEGFCS9w!=pE>Ui(JhHYU;j{V@8GuR*2;{9->g-1z={rp?WH1N z*-X_mqEEoEghmrMP2R#auo^n^y5;X?w-Co;Pz&)EJr`9GdPo5(5JRea4QSM6bCc*E7^V zv}3w2+t*{}%s!*HZ=m-H+0`2R{Tb@rxVsbYijI$uaZHdbR|YmmxOdgfjU>BKrMq`x%7(sx0uD@@V7EIQ2GT~waCkS0?J-oj zs&#lxFhVt?yPv_N>j){W4k)#(zexv>yWcI-WphM{t4t-b7u&?*erF zR;bYT$u9|qHccy`{3~);)e*eL4(~KMbSdp+82o{Zwsi!h&wWk3iKzC*{s*3$f?8|a zh?+XISLW6^JtFr~$ z{EV*?e>@L*d0;ZO-^wB$l0V{^N+ll4&CSKf%CI#l@wvePeW2e9<6by$ zM5js|!iEEq(vOb!4)_Dx5HZpZ`Ss0#*Y%Of$&n-av+1Kred@@;q^_%sJ(Hul6JFiE z76;u5>0QC@q?#>P3o~Wp&}!bY9aTaC#7lJ4I!v<`^(RcTKp^l@q>~s;Lp%XrjBw)l zR3=@+jLTCypH8j!PGuSfQbLC&t8#6qZCU%qP-Hd~ZhbctX`S)$yeltjErf!t;iohW zu|O3|kz2j`u;$k<2cW5ly2AH9_pAww_WuAhaxZ(89k;q%Q-8#|Z=@ZJ|K5i`!}xQ& zAB#_l@vA<2H;16zhkf=#7=WflR2S!5IUh|j9%Wq4z(;@wwAD)P*^-In{r;YHv9 ze3dxQ8CA|%KVW=;aXFv;hVg5RMv6S_o@%5IGH z@@y$c|1H>wsZo4+sUV@D=N_NVE5_6Z5gfOY|7D36x< z?#OD_R?5Wbvm4#L#9#8OaLKb|OC)xlq}1amH2V9$gKZK+=8|Uwrh6f>Q@vif_X$t2 zA@!5SDfxo-1EN7Zbf=Pj$-PTBr(xt+kHk)R5-{D-M3#G+@F@F9`%(|XiuQ+F4gPZP z6fXBe@ss|G|5s3;lq&7ZJym#=4aMKj4d`iW5`VcD3#a%r62-8QiV&#IJq*gdT{yiT zBC>f1kMv*Se-c>Z{5#Jb6kdkDk>s8%*f&sU^k3>buh?_-A}YFxH2TYaCj5oErB{&t z3;ZMYmw6)loA7^%A#;EKU-SEOMGMR&eo~F!|0hroCdUieN9B9D-`?N<3-G1ASo~$b zbr&Vq4OS<=|8JpLfk*shU+&@$G7oD15`1Z>;xFfhDEptMmjj~pLnQ4>z3!zDxcJL= zp#?VF;(Fcv5r0Acf&yXUFXt=y|Ayb*FaHg`)Wse=jU@ihbN@vrqVVfbNLg%%Px6N; znxBp2x4i|WA0zv}vVWgX=@XR(fG~gmSJFWmbX*dHC)V4NdOF#k)pbT+HHbEdp(ob; zSyXhM^EKhB&e5a-Rai;;1ipyW-@oJ!y0y!@Bl|k>q3=QC-@1f>24 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_C) +# define COMPILER_ID "SunPro" +# if __SUNPRO_C >= 0x5100 + /* __SUNPRO_C = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) +# endif + +#elif defined(__HP_cc) +# define COMPILER_ID "HP" + /* __HP_cc = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100) + +#elif defined(__DECC) +# define COMPILER_ID "Compaq" + /* __DECC_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000) + +#elif defined(__IBMC__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__ibmxl__) && defined(__clang__) +# define COMPILER_ID "XLClang" +# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) +# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) +# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) + + +#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800 +# define COMPILER_ID "XL" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__NVCOMPILER) +# define COMPILER_ID "NVHPC" +# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) +# if defined(__NVCOMPILER_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) +# endif + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__CLANG_FUJITSU) +# define COMPILER_ID "FujitsuClang" +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(__FUJITSU) +# define COMPILER_ID "Fujitsu" +# if defined(__FCC_version__) +# define COMPILER_VERSION __FCC_version__ +# elif defined(__FCC_major__) +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# endif +# if defined(__fcc_version) +# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) +# elif defined(__FCC_VERSION) +# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) +# endif + + +#elif defined(__ghs__) +# define COMPILER_ID "GHS" +/* __GHS_VERSION_NUMBER = VVVVRP */ +# ifdef __GHS_VERSION_NUMBER +# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) +# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) +# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) +# endif + +#elif defined(__TINYC__) +# define COMPILER_ID "TinyCC" + +#elif defined(__BCC__) +# define COMPILER_ID "Bruce" + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__ARMCC_VERSION) && !defined(__clang__) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) +# define COMPILER_ID "ARMClang" + # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) + +#elif defined(__clang__) +# define COMPILER_ID "Clang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__GNUC__) +# define COMPILER_ID "GNU" +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# if defined(__GNUC_MINOR__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) +# define COMPILER_ID "ADSP" +#if defined(__VISUALDSPVERSION__) + /* __VISUALDSPVERSION__ = 0xVVRRPP00 */ +# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24) +# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF) +#endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# define COMPILER_ID "IAR" +# if defined(__VER__) && defined(__ICCARM__) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) +# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) +# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) +# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) +# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# endif + +#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC) +# define COMPILER_ID "SDCC" +# if defined(__SDCC_VERSION_MAJOR) +# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR) +# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR) +# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH) +# else + /* SDCC = VRP */ +# define COMPILER_VERSION_MAJOR DEC(SDCC/100) +# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10) +# define COMPILER_VERSION_PATCH DEC(SDCC % 10) +# endif + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; +#ifdef SIMULATE_ID +char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; +#endif + +#ifdef __QNXNTO__ +char const* qnxnto = "INFO" ":" "qnxnto[]"; +#endif + +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) +char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; +#endif + +#define STRINGIFY_HELPER(X) #X +#define STRINGIFY(X) STRINGIFY_HELPER(X) + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__MSYS__) +# define PLATFORM_ID "MSYS" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU__) +# define PLATFORM_ID "Haiku" + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#elif defined(__WATCOMC__) +# if defined(__LINUX__) +# define PLATFORM_ID "Linux" + +# elif defined(__DOS__) +# define PLATFORM_ID "DOS" + +# elif defined(__OS2__) +# define PLATFORM_ID "OS2" + +# elif defined(__WINDOWS__) +# define PLATFORM_ID "Windows3x" + +# elif defined(__VXWORKS__) +# define PLATFORM_ID "VxWorks" + +# else /* unknown platform */ +# define PLATFORM_ID +# endif + +#elif defined(__INTEGRITY) +# if defined(INT_178B) +# define PLATFORM_ID "Integrity178" + +# else /* regular Integrity */ +# define PLATFORM_ID "Integrity" +# endif + +#else /* unknown platform */ +# define PLATFORM_ID + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_ARM64EC) +# define ARCHITECTURE_ID "ARM64EC" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM64) +# define ARCHITECTURE_ID "ARM64" + +# elif defined(_M_ARM) +# if _M_ARM == 4 +# define ARCHITECTURE_ID "ARMV4I" +# elif _M_ARM == 5 +# define ARCHITECTURE_ID "ARMV5I" +# else +# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) +# endif + +# elif defined(_M_MIPS) +# define ARCHITECTURE_ID "MIPS" + +# elif defined(_M_SH) +# define ARCHITECTURE_ID "SHx" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__WATCOMC__) +# if defined(_M_I86) +# define ARCHITECTURE_ID "I86" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# if defined(__ICCARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__ICCRX__) +# define ARCHITECTURE_ID "RX" + +# elif defined(__ICCRH850__) +# define ARCHITECTURE_ID "RH850" + +# elif defined(__ICCRL78__) +# define ARCHITECTURE_ID "RL78" + +# elif defined(__ICCRISCV__) +# define ARCHITECTURE_ID "RISCV" + +# elif defined(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# elif defined(__ICC430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__ICCV850__) +# define ARCHITECTURE_ID "V850" + +# elif defined(__ICC8051__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__ICCSTM8__) +# define ARCHITECTURE_ID "STM8" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__ghs__) +# if defined(__PPC64__) +# define ARCHITECTURE_ID "PPC64" + +# elif defined(__ppc__) +# define ARCHITECTURE_ID "PPC" + +# elif defined(__ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__x86_64__) +# define ARCHITECTURE_ID "x64" + +# elif defined(__i386__) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__TI_COMPILER_VERSION__) +# if defined(__TI_ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__MSP430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__TMS320C28XX__) +# define ARCHITECTURE_ID "TMS320C28x" + +# elif defined(__TMS320C6X__) || defined(_TMS320C6X) +# define ARCHITECTURE_ID "TMS320C6x" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#else +# define ARCHITECTURE_ID +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number. */ +#ifdef COMPILER_VERSION +char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; + +/* Construct a string literal encoding the version number components. */ +#elif defined(COMPILER_VERSION_MAJOR) +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the internal version number. */ +#ifdef COMPILER_VERSION_INTERNAL +char const info_version_internal[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', + 'i','n','t','e','r','n','a','l','[', + COMPILER_VERSION_INTERNAL,']','\0'}; +#elif defined(COMPILER_VERSION_INTERNAL_STR) +char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + +#if !defined(__STDC__) && !defined(__clang__) +# if defined(_MSC_VER) || defined(__ibmxl__) || defined(__IBMC__) +# define C_VERSION "90" +# else +# define C_VERSION +# endif +#elif __STDC_VERSION__ > 201710L +# define C_VERSION "23" +#elif __STDC_VERSION__ >= 201710L +# define C_VERSION "17" +#elif __STDC_VERSION__ >= 201000L +# define C_VERSION "11" +#elif __STDC_VERSION__ >= 199901L +# define C_VERSION "99" +#else +# define C_VERSION "90" +#endif +const char* info_language_standard_default = + "INFO" ":" "standard_default[" C_VERSION "]"; + +const char* info_language_extensions_default = "INFO" ":" "extensions_default[" +/* !defined(_MSC_VER) to exclude Clang's MSVC compatibility mode. */ +#if (defined(__clang__) || defined(__GNUC__) || \ + defined(__TI_COMPILER_VERSION__)) && \ + !defined(__STRICT_ANSI__) && !defined(_MSC_VER) + "ON" +#else + "OFF" +#endif +"]"; + +/*--------------------------------------------------------------------------*/ + +#ifdef ID_VOID_MAIN +void main() {} +#else +# if defined(__CLASSIC_C__) +int main(argc, argv) int argc; char *argv[]; +# else +int main(int argc, char* argv[]) +# endif +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; + require += info_arch[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif +#ifdef COMPILER_VERSION_INTERNAL + require += info_version_internal[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) + require += info_cray[argc]; +#endif + require += info_language_standard_default[argc]; + require += info_language_extensions_default[argc]; + (void)argv; + return require; +} +#endif diff --git a/android/app/.cxx/Debug/4z1t2ab1/x86_64/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdC/CMakeCCompilerId.o b/android/app/.cxx/Debug/4z1t2ab1/x86_64/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdC/CMakeCCompilerId.o new file mode 100644 index 0000000000000000000000000000000000000000..cddb6f52d5be8c8d54a0f5e1590dcee7440c1950 GIT binary patch literal 5368 zcmd5=OKclu5dL=^J5HRsO~a$5Ei#WnTaop%i4&?eRY;nkKB7QDB`Vg&-q@y&ovt?_ zR6?!9GZdsE4pibP1QMth;D8W^asY%thy$FEKwLm@$bp9tMO47dzcb!Hn=JxPO!3al z_s{Ep?ED)}j_e=RHBB&SVz=-#MuoVr#*>GnI3zZM<>9fVZ$BKlh{)3Y7si(6fB0}@ z8MU#~VabXIF04J@77dLoFO4k!3lRLqo{%B_i~H%3<)iP79~?b2SZvJBRcn?#HC!|6 z<)cD^b2ZbMY1p$<`>XZ&MFLH`SeYWZ>6rDBX_pEmYsQ?fIaBF=8nG4~tKO_O>dn^J zp@T~m}}kI)_6}i6km7crg*ouJ|cvk6XQLD zv75vC1|dS4Hr^vd+ckjo$Ak!9FGBI%u^5OE6l1a7Ahzc~9Pin)k=>$e!Cr`t8zk#A zAkF&7(1uVP4Q||srb5KRLMI4~yK*a3@g|&?Hd%F4o}4X#Gk6wIeHT2mr?id`n}o(d zYC8mv%Z1$Rhz2tgBHG@LtOmao_R-^jbfA+Qe;mip=}J5tm+>-`?Mr3Ui>adeXBg!x z#m=j$%grO}P%ZQbOjY|i(B~?}=O@KNA4H#D6vWH3S@BUVI-xX4xP00jC~DEr%Md80 zKe@P4og?)ejCScyV$DK}Nn>|y!)?*mVJwQvC-&A$cB5KKY)hxJxq(b3e^X-GY+9v6 zqn@yH`TqV~zqLJ4#Fr*P$2frp*vKTdRUBuoIhahsJAyHca-&hMS~uC|6|HP3 zlkLlF7sCh4W7hC6y}RQjqbP<4lZTt|J|*+HRAOH?IpGGKG!8VT;RWYnlIGl8(kL!2 zCU3E(=gZ05iL{e3r_;&Bd|#n2mz0r5!J(PV8kvld?k#8gQ~A7^?=4kr=f0$ubXdR~ zY*8reot)fzq;T8#T_c6tk4%gd3Zhz{X%x7%xEd{zt8jyHHS8>|gv&W^maT%n!T5$( zcNsAY%L!JFFzs>?9}B{^j?Y(Z>;Jx)c-$_-2atARQfQ0ov`t;@(KB!uHv@)0Bs}9{ zZ+zXu`tX{F{xnz!@c=+=Vh21mP5V8*1{t{F9i;`G5*UI8p-Tpj&{9MTw|7Rb3CHKd zvB)>!c%JE*6dbE%TsA|{ zF;16)KLj!o;#e))BZh=K9kgqVUoNe@2jh4`RbsqP1wm$ff^gmuoRfQrx&v4<65{e= zlp5}>ON>8H`V|V!F%h~-!7&c*AJWw>ll9InI8ve~@rgz0)YfOA3zr#rtxOaE^0?;=HZcd#7E9j};u_>>&MX z;vA<;ah4T(9Ao-}1T@1qyzf2a$8nC6o*<5l_ZmZF6ddF5`tBo~<6!SZx?QpN-aa9Y zD!978$9!?#ApL|7e~0uXAO0@sXMOnlq`%_B-y%IBt99QywVr;$(M-jKQNruHU`|il z)`Bn`xDf?@Tg+N;1sb+hGmVnzn1;NGTi0s9y?II7RaY>jY&!O;1g)!{qRHAYHCQ&h zI`|vFwZfVWd2Rb^Xnh_S^@d{^`wkxNg=&h&R^^pn4rRVmEa=ByQT4H_^B z$D9^M^S)WhsY-y;2KQK6`v1iCz=q-Z^wU{7%y-ki^SDnHcq1UD_A0a;!bbq9y%C4s zgWuoz^S#HR*0DhRJaCLTL^`uYYD#Aa*aRHs$-N5x)RJ@vl4E|p{|FXel2BuSINBmH z$G(QLe+|dTfb*dbl3zawSWx{@YHnO7){kq<{*1o{7^YhB&VfEb`Tg_quixk7@2~&S ze^~#g;2%_fBA|YR{PkbFM1JmzY!7CV{Q9qe2IbEOPX*-1zjFNf@q5TWcTBKN{y!eCk6~Vf{QiFd D0_SaF literal 0 HcmV?d00001 diff --git a/android/app/.cxx/Debug/4z1t2ab1/x86_64/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdCXX/CMakeCXXCompilerId.cpp b/android/app/.cxx/Debug/4z1t2ab1/x86_64/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdCXX/CMakeCXXCompilerId.cpp new file mode 100644 index 0000000..25c62a8 --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/x86_64/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdCXX/CMakeCXXCompilerId.cpp @@ -0,0 +1,791 @@ +/* This source file must have a .cpp extension so that all C++ compilers + recognize the extension without flags. Borland does not know .cxx for + example. */ +#ifndef __cplusplus +# error "A C compiler has been selected for C++." +#endif + +#if !defined(__has_include) +/* If the compiler does not have __has_include, pretend the answer is + always no. */ +# define __has_include(x) 0 +#endif + + +/* Version number components: V=Version, R=Revision, P=Patch + Version date components: YYYY=Year, MM=Month, DD=Day */ + +#if defined(__COMO__) +# define COMPILER_ID "Comeau" + /* __COMO_VERSION__ = VRR */ +# define COMPILER_VERSION_MAJOR DEC(__COMO_VERSION__ / 100) +# define COMPILER_VERSION_MINOR DEC(__COMO_VERSION__ % 100) + +#elif defined(__INTEL_COMPILER) || defined(__ICC) +# define COMPILER_ID "Intel" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# if defined(__GNUC__) +# define SIMULATE_ID "GNU" +# endif + /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, + except that a few beta releases use the old format with V=2021. */ +# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) +# if defined(__INTEL_COMPILER_UPDATE) +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) +# else +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) +# endif +# else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) + /* The third version component from --version is an update index, + but no macro is provided for it. */ +# define COMPILER_VERSION_PATCH DEC(0) +# endif +# if defined(__INTEL_COMPILER_BUILD_DATE) + /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ +# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) +# endif +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) +# define COMPILER_ID "IntelLLVM" +#if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +#endif +#if defined(__GNUC__) +# define SIMULATE_ID "GNU" +#endif +/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and + * later. Look for 6 digit vs. 8 digit version number to decide encoding. + * VVVV is no smaller than the current year when a version is released. + */ +#if __INTEL_LLVM_COMPILER < 1000000L +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) +#else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) +#endif +#if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +#endif +#if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +#elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +#endif +#if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +#endif +#if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +#endif + +#elif defined(__PATHCC__) +# define COMPILER_ID "PathScale" +# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) +# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) +# if defined(__PATHCC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) +# endif + +#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) +# define COMPILER_ID "Embarcadero" +# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_CC) +# define COMPILER_ID "SunPro" +# if __SUNPRO_CC >= 0x5100 + /* __SUNPRO_CC = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# endif + +#elif defined(__HP_aCC) +# define COMPILER_ID "HP" + /* __HP_aCC = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100) + +#elif defined(__DECCXX) +# define COMPILER_ID "Compaq" + /* __DECCXX_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000) + +#elif defined(__IBMCPP__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__ibmxl__) && defined(__clang__) +# define COMPILER_ID "XLClang" +# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) +# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) +# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) + + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800 +# define COMPILER_ID "XL" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__NVCOMPILER) +# define COMPILER_ID "NVHPC" +# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) +# if defined(__NVCOMPILER_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) +# endif + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__CLANG_FUJITSU) +# define COMPILER_ID "FujitsuClang" +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(__FUJITSU) +# define COMPILER_ID "Fujitsu" +# if defined(__FCC_version__) +# define COMPILER_VERSION __FCC_version__ +# elif defined(__FCC_major__) +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# endif +# if defined(__fcc_version) +# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) +# elif defined(__FCC_VERSION) +# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) +# endif + + +#elif defined(__ghs__) +# define COMPILER_ID "GHS" +/* __GHS_VERSION_NUMBER = VVVVRP */ +# ifdef __GHS_VERSION_NUMBER +# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) +# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) +# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) +# endif + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__ARMCC_VERSION) && !defined(__clang__) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) +# define COMPILER_ID "ARMClang" + # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) + +#elif defined(__clang__) +# define COMPILER_ID "Clang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__GNUC__) || defined(__GNUG__) +# define COMPILER_ID "GNU" +# if defined(__GNUC__) +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# else +# define COMPILER_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) +# define COMPILER_ID "ADSP" +#if defined(__VISUALDSPVERSION__) + /* __VISUALDSPVERSION__ = 0xVVRRPP00 */ +# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24) +# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF) +#endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# define COMPILER_ID "IAR" +# if defined(__VER__) && defined(__ICCARM__) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) +# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) +# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) +# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) +# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# endif + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; +#ifdef SIMULATE_ID +char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; +#endif + +#ifdef __QNXNTO__ +char const* qnxnto = "INFO" ":" "qnxnto[]"; +#endif + +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) +char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; +#endif + +#define STRINGIFY_HELPER(X) #X +#define STRINGIFY(X) STRINGIFY_HELPER(X) + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__MSYS__) +# define PLATFORM_ID "MSYS" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU__) +# define PLATFORM_ID "Haiku" + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#elif defined(__WATCOMC__) +# if defined(__LINUX__) +# define PLATFORM_ID "Linux" + +# elif defined(__DOS__) +# define PLATFORM_ID "DOS" + +# elif defined(__OS2__) +# define PLATFORM_ID "OS2" + +# elif defined(__WINDOWS__) +# define PLATFORM_ID "Windows3x" + +# elif defined(__VXWORKS__) +# define PLATFORM_ID "VxWorks" + +# else /* unknown platform */ +# define PLATFORM_ID +# endif + +#elif defined(__INTEGRITY) +# if defined(INT_178B) +# define PLATFORM_ID "Integrity178" + +# else /* regular Integrity */ +# define PLATFORM_ID "Integrity" +# endif + +#else /* unknown platform */ +# define PLATFORM_ID + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_ARM64EC) +# define ARCHITECTURE_ID "ARM64EC" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM64) +# define ARCHITECTURE_ID "ARM64" + +# elif defined(_M_ARM) +# if _M_ARM == 4 +# define ARCHITECTURE_ID "ARMV4I" +# elif _M_ARM == 5 +# define ARCHITECTURE_ID "ARMV5I" +# else +# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) +# endif + +# elif defined(_M_MIPS) +# define ARCHITECTURE_ID "MIPS" + +# elif defined(_M_SH) +# define ARCHITECTURE_ID "SHx" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__WATCOMC__) +# if defined(_M_I86) +# define ARCHITECTURE_ID "I86" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# if defined(__ICCARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__ICCRX__) +# define ARCHITECTURE_ID "RX" + +# elif defined(__ICCRH850__) +# define ARCHITECTURE_ID "RH850" + +# elif defined(__ICCRL78__) +# define ARCHITECTURE_ID "RL78" + +# elif defined(__ICCRISCV__) +# define ARCHITECTURE_ID "RISCV" + +# elif defined(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# elif defined(__ICC430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__ICCV850__) +# define ARCHITECTURE_ID "V850" + +# elif defined(__ICC8051__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__ICCSTM8__) +# define ARCHITECTURE_ID "STM8" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__ghs__) +# if defined(__PPC64__) +# define ARCHITECTURE_ID "PPC64" + +# elif defined(__ppc__) +# define ARCHITECTURE_ID "PPC" + +# elif defined(__ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__x86_64__) +# define ARCHITECTURE_ID "x64" + +# elif defined(__i386__) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__TI_COMPILER_VERSION__) +# if defined(__TI_ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__MSP430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__TMS320C28XX__) +# define ARCHITECTURE_ID "TMS320C28x" + +# elif defined(__TMS320C6X__) || defined(_TMS320C6X) +# define ARCHITECTURE_ID "TMS320C6x" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#else +# define ARCHITECTURE_ID +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number. */ +#ifdef COMPILER_VERSION +char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; + +/* Construct a string literal encoding the version number components. */ +#elif defined(COMPILER_VERSION_MAJOR) +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the internal version number. */ +#ifdef COMPILER_VERSION_INTERNAL +char const info_version_internal[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', + 'i','n','t','e','r','n','a','l','[', + COMPILER_VERSION_INTERNAL,']','\0'}; +#elif defined(COMPILER_VERSION_INTERNAL_STR) +char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + +#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) && _MSVC_LANG < 201403L +# if defined(__INTEL_CXX11_MODE__) +# if defined(__cpp_aggregate_nsdmi) +# define CXX_STD 201402L +# else +# define CXX_STD 201103L +# endif +# else +# define CXX_STD 199711L +# endif +#elif defined(_MSC_VER) && defined(_MSVC_LANG) +# define CXX_STD _MSVC_LANG +#else +# define CXX_STD __cplusplus +#endif + +const char* info_language_standard_default = "INFO" ":" "standard_default[" +#if CXX_STD > 202002L + "23" +#elif CXX_STD > 201703L + "20" +#elif CXX_STD >= 201703L + "17" +#elif CXX_STD >= 201402L + "14" +#elif CXX_STD >= 201103L + "11" +#else + "98" +#endif +"]"; + +const char* info_language_extensions_default = "INFO" ":" "extensions_default[" +/* !defined(_MSC_VER) to exclude Clang's MSVC compatibility mode. */ +#if (defined(__clang__) || defined(__GNUC__) || \ + defined(__TI_COMPILER_VERSION__)) && \ + !defined(__STRICT_ANSI__) && !defined(_MSC_VER) + "ON" +#else + "OFF" +#endif +"]"; + +/*--------------------------------------------------------------------------*/ + +int main(int argc, char* argv[]) +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif +#ifdef COMPILER_VERSION_INTERNAL + require += info_version_internal[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) + require += info_cray[argc]; +#endif + require += info_language_standard_default[argc]; + require += info_language_extensions_default[argc]; + (void)argv; + return require; +} diff --git a/android/app/.cxx/Debug/4z1t2ab1/x86_64/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdCXX/CMakeCXXCompilerId.o b/android/app/.cxx/Debug/4z1t2ab1/x86_64/CMakeFiles/3.22.1-g37088a8-dirty/CompilerIdCXX/CMakeCXXCompilerId.o new file mode 100644 index 0000000000000000000000000000000000000000..4a01ac67e5272e325e96eda6240b6aed973820b8 GIT binary patch literal 5424 zcmd5*pq@WcPL9w25=bqV{$wZ4!Uf4P3 zeE0m_zjNPKg7e{V}gQzn4iqQTy%`l(mM{Z7iI(Bf+q3wm*T)kYeoyp;f zRV__{0P7XYovArckFWNKKe8rti4agpQ!L_T6a;@6% z`wktPqEX#>TasA*wC#|;$)sqh0n=lWNoLYhp!H}E#Cjt}tb6T-SdX@*6+q9zSnu}e zj)=Yvz|gd@UVxU(hz&#mA`c=1(0V@@v0c$9B5lM*qq~r8&mue4`{=!F-LYC|ukvsY zt>W57O^myyb!eRtBalo0IwPR_06k=Fn+*2~m9~ezX^~4ue&U zQRG?<A&)1iF(^pejMfG>c{3}JT8M70bHmZhx zoos#xwOOy&s2ch@9K7~RsLe*jM%7q_Vc;;?T~h1_Z048-TtBbT6lzZpuie%!qgkhZ zVPUCQm*U&l+ofNq2vIXg*_+x(OUG3dI%uw8ceUu$%EkDWR4S7lOs8{?#HX!>U5wYN zaVMJ_7|0ITTjK>fMsc}k((3F6A3&uRs=Y$egy`C@& z3k!+I?CJSZB6~LFrmg8zVjqmtR9eJkWDchpbzHEVQh`3F!Ld)xmmT~6zR0u11F+Ty+6|P~D0zxCK`IU zScp1`+^+&>2}`)>1vnz`PAN6Lug*6r5&{@ks@ztQZ&d6J_$#rQpblMyu`JbrO(-@w=D8v=4>;Lo49@E8yc27uO;3 zG*;%Ri)WH>aaR(EZH-5SKH+aj`5p!5xg==4f|LHcQr;vf z`*}+G`9jfe?oxp76rB9`@;T&*{`ayhuHspa=mz}JIJxHHA2-pC zVsMJD-tW|LP4og(BxORn)R?{?`QRMpqyoniM)(QJ-n(ge{_zgag7c*OX^z>R@t+W* zP{H^^cNqUiv<;iTTu6M19gHvjY=y+xB3e-H#XQ5}kB7vk8qD@Q{zHg`ji2i( z>wD3g_AKv1CM^DJNPIdH?2qH$hgevA+E>(A-;KC96xVt+W+*X z3Xb1JjC>~Xr?%hZfw&$B$RbmEzl7O;D=+CcRi{#yAhtJo@Ncn!mM*J>z{|e0Jy44`lr3eZ*se`EOYv{yQP@>0b@! Z&++M;2FFg3hUgKDZB_;(LR%te|2Kz0ZtDO5 literal 0 HcmV?d00001 diff --git a/android/app/.cxx/Debug/4z1t2ab1/x86_64/CMakeFiles/TargetDirectories.txt b/android/app/.cxx/Debug/4z1t2ab1/x86_64/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000..2a4211a --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/x86_64/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,2 @@ +C:/Users/840 G3/ProjectR.Mobile/android/app/.cxx/Debug/4z1t2ab1/x86_64/CMakeFiles/edit_cache.dir +C:/Users/840 G3/ProjectR.Mobile/android/app/.cxx/Debug/4z1t2ab1/x86_64/CMakeFiles/rebuild_cache.dir diff --git a/android/app/.cxx/Debug/4z1t2ab1/x86_64/CMakeFiles/cmake.check_cache b/android/app/.cxx/Debug/4z1t2ab1/x86_64/CMakeFiles/cmake.check_cache new file mode 100644 index 0000000..3dccd73 --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/x86_64/CMakeFiles/cmake.check_cache @@ -0,0 +1 @@ +# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/android/app/.cxx/Debug/4z1t2ab1/x86_64/CMakeFiles/rules.ninja b/android/app/.cxx/Debug/4z1t2ab1/x86_64/CMakeFiles/rules.ninja new file mode 100644 index 0000000..985b248 --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/x86_64/CMakeFiles/rules.ninja @@ -0,0 +1,45 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Ninja" Generator, CMake Version 3.22 + +# This file contains all the rules used to get the outputs files +# built from the input files. +# It is included in the main 'build.ninja'. + +# ============================================================================= +# Project: Project +# Configurations: Debug +# ============================================================================= +# ============================================================================= + +############################################# +# Rule for running custom commands. + +rule CUSTOM_COMMAND + command = $COMMAND + description = $DESC + + +############################################# +# Rule for re-running cmake. + +rule RERUN_CMAKE + command = "C:\Users\840 G3\AppData\Local\Android\Sdk\cmake\3.22.1\bin\cmake.exe" --regenerate-during-build -S"C:\Users\840 G3\flutter\packages\flutter_tools\gradle\src\main\groovy" -B"C:\Users\840 G3\ProjectR.Mobile\android\app\.cxx\Debug\4z1t2ab1\x86_64" + description = Re-running CMake... + generator = 1 + + +############################################# +# Rule for cleaning all built files. + +rule CLEAN + command = "C:\Users\840 G3\AppData\Local\Android\Sdk\cmake\3.22.1\bin\ninja.exe" $FILE_ARG -t clean $TARGETS + description = Cleaning all built files... + + +############################################# +# Rule for printing all primary targets available. + +rule HELP + command = "C:\Users\840 G3\AppData\Local\Android\Sdk\cmake\3.22.1\bin\ninja.exe" -t targets + description = All primary targets available: + diff --git a/android/app/.cxx/Debug/4z1t2ab1/x86_64/additional_project_files.txt b/android/app/.cxx/Debug/4z1t2ab1/x86_64/additional_project_files.txt new file mode 100644 index 0000000..e69de29 diff --git a/android/app/.cxx/Debug/4z1t2ab1/x86_64/android_gradle_build.json b/android/app/.cxx/Debug/4z1t2ab1/x86_64/android_gradle_build.json new file mode 100644 index 0000000..dac97bd --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/x86_64/android_gradle_build.json @@ -0,0 +1,28 @@ +{ + "buildFiles": [ + "C:\\Users\\840 G3\\flutter\\packages\\flutter_tools\\gradle\\src\\main\\groovy\\CMakeLists.txt" + ], + "cleanCommandsComponents": [ + [ + "C:\\Users\\840 G3\\AppData\\Local\\Android\\sdk\\cmake\\3.22.1\\bin\\ninja.exe", + "-C", + "C:\\Users\\840 G3\\ProjectR.Mobile\\android\\app\\.cxx\\Debug\\4z1t2ab1\\x86_64", + "clean" + ] + ], + "buildTargetsCommandComponents": [ + "C:\\Users\\840 G3\\AppData\\Local\\Android\\sdk\\cmake\\3.22.1\\bin\\ninja.exe", + "-C", + "C:\\Users\\840 G3\\ProjectR.Mobile\\android\\app\\.cxx\\Debug\\4z1t2ab1\\x86_64", + "{LIST_OF_TARGETS_TO_BUILD}" + ], + "libraries": {}, + "toolchains": { + "toolchain": { + "cCompilerExecutable": "C:\\Users\\840 G3\\AppData\\Local\\Android\\Sdk\\ndk\\26.3.11579264\\toolchains\\llvm\\prebuilt\\windows-x86_64\\bin\\clang.exe", + "cppCompilerExecutable": "C:\\Users\\840 G3\\AppData\\Local\\Android\\Sdk\\ndk\\26.3.11579264\\toolchains\\llvm\\prebuilt\\windows-x86_64\\bin\\clang++.exe" + } + }, + "cFileExtensions": [], + "cppFileExtensions": [] +} \ No newline at end of file diff --git a/android/app/.cxx/Debug/4z1t2ab1/x86_64/android_gradle_build_mini.json b/android/app/.cxx/Debug/4z1t2ab1/x86_64/android_gradle_build_mini.json new file mode 100644 index 0000000..d8deb34 --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/x86_64/android_gradle_build_mini.json @@ -0,0 +1,20 @@ +{ + "buildFiles": [ + "C:\\Users\\840 G3\\flutter\\packages\\flutter_tools\\gradle\\src\\main\\groovy\\CMakeLists.txt" + ], + "cleanCommandsComponents": [ + [ + "C:\\Users\\840 G3\\AppData\\Local\\Android\\sdk\\cmake\\3.22.1\\bin\\ninja.exe", + "-C", + "C:\\Users\\840 G3\\ProjectR.Mobile\\android\\app\\.cxx\\Debug\\4z1t2ab1\\x86_64", + "clean" + ] + ], + "buildTargetsCommandComponents": [ + "C:\\Users\\840 G3\\AppData\\Local\\Android\\sdk\\cmake\\3.22.1\\bin\\ninja.exe", + "-C", + "C:\\Users\\840 G3\\ProjectR.Mobile\\android\\app\\.cxx\\Debug\\4z1t2ab1\\x86_64", + "{LIST_OF_TARGETS_TO_BUILD}" + ], + "libraries": {} +} \ No newline at end of file diff --git a/android/app/.cxx/Debug/4z1t2ab1/x86_64/build.ninja b/android/app/.cxx/Debug/4z1t2ab1/x86_64/build.ninja new file mode 100644 index 0000000..f42cb95 --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/x86_64/build.ninja @@ -0,0 +1,111 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Ninja" Generator, CMake Version 3.22 + +# This file contains all the build statements describing the +# compilation DAG. + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# +# Which is the root file. +# ============================================================================= + +# ============================================================================= +# Project: Project +# Configurations: Debug +# ============================================================================= + +############################################# +# Minimal version of Ninja required by this file + +ninja_required_version = 1.5 + + +############################################# +# Set configuration variable for custom commands. + +CONFIGURATION = Debug +# ============================================================================= +# Include auxiliary files. + + +############################################# +# Include rules file. + +include CMakeFiles/rules.ninja + +# ============================================================================= + +############################################# +# Logical path to working directory; prefix for absolute paths. + +cmake_ninja_workdir = C$:/Users/840$ G3/ProjectR.Mobile/android/app/.cxx/Debug/4z1t2ab1/x86_64/ + +############################################# +# Utility command for edit_cache + +build CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D "C:\Users\840 G3\ProjectR.Mobile\android\app\.cxx\Debug\4z1t2ab1\x86_64" && "C:\Users\840 G3\AppData\Local\Android\Sdk\cmake\3.22.1\bin\cmake.exe" -E echo "No interactive CMake dialog available."" + DESC = No interactive CMake dialog available... + restat = 1 + +build edit_cache: phony CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D "C:\Users\840 G3\ProjectR.Mobile\android\app\.cxx\Debug\4z1t2ab1\x86_64" && "C:\Users\840 G3\AppData\Local\Android\Sdk\cmake\3.22.1\bin\cmake.exe" --regenerate-during-build -S"C:\Users\840 G3\flutter\packages\flutter_tools\gradle\src\main\groovy" -B"C:\Users\840 G3\ProjectR.Mobile\android\app\.cxx\Debug\4z1t2ab1\x86_64"" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build rebuild_cache: phony CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Target aliases. + +# ============================================================================= +# Folder targets. + +# ============================================================================= + +############################################# +# Folder: C:/Users/840 G3/ProjectR.Mobile/android/app/.cxx/Debug/4z1t2ab1/x86_64 + +build all: phony + +# ============================================================================= +# Built-in targets + + +############################################# +# Re-run CMake if any of its inputs changed. + +build build.ninja: RERUN_CMAKE | C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/android-legacy.toolchain.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/android.toolchain.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/flags.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/hooks/pre/Android-Clang.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/hooks/pre/Android-Determine.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/hooks/pre/Android-Initialize.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/hooks/pre/Android.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/hooks/pre/Determine-Compiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/platforms.cmake C$:/Users/840$ G3/flutter/packages/flutter_tools/gradle/src/main/groovy/CMakeLists.txt CMakeCache.txt CMakeFiles/3.22.1-g37088a8-dirty/CMakeCCompiler.cmake CMakeFiles/3.22.1-g37088a8-dirty/CMakeCXXCompiler.cmake CMakeFiles/3.22.1-g37088a8-dirty/CMakeSystem.cmake + pool = console + + +############################################# +# A missing CMake input file is not an error. + +build C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/android-legacy.toolchain.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/android.toolchain.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/flags.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/hooks/pre/Android-Clang.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/hooks/pre/Android-Determine.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/hooks/pre/Android-Initialize.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/hooks/pre/Android.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/hooks/pre/Determine-Compiler.cmake C$:/Users/840$ G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/build/cmake/platforms.cmake C$:/Users/840$ G3/flutter/packages/flutter_tools/gradle/src/main/groovy/CMakeLists.txt CMakeCache.txt CMakeFiles/3.22.1-g37088a8-dirty/CMakeCCompiler.cmake CMakeFiles/3.22.1-g37088a8-dirty/CMakeCXXCompiler.cmake CMakeFiles/3.22.1-g37088a8-dirty/CMakeSystem.cmake: phony + + +############################################# +# Clean all the built files. + +build clean: CLEAN + + +############################################# +# Print all primary targets available. + +build help: HELP + + +############################################# +# Make the all target the default. + +default all diff --git a/android/app/.cxx/Debug/4z1t2ab1/x86_64/build_file_index.txt b/android/app/.cxx/Debug/4z1t2ab1/x86_64/build_file_index.txt new file mode 100644 index 0000000..dac0edd --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/x86_64/build_file_index.txt @@ -0,0 +1 @@ +C:\Users\840 G3\flutter\packages\flutter_tools\gradle\src\main\groovy\CMakeLists.txt \ No newline at end of file diff --git a/android/app/.cxx/Debug/4z1t2ab1/x86_64/cmake_install.cmake b/android/app/.cxx/Debug/4z1t2ab1/x86_64/cmake_install.cmake new file mode 100644 index 0000000..4e2c1c7 --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/x86_64/cmake_install.cmake @@ -0,0 +1,54 @@ +# Install script for directory: C:/Users/840 G3/flutter/packages/flutter_tools/gradle/src/main/groovy + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Project") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Debug") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "0") +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Users/840 G3/AppData/Local/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/llvm-objdump.exe") +endif() + +if(CMAKE_INSTALL_COMPONENT) + set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") +else() + set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +file(WRITE "C:/Users/840 G3/ProjectR.Mobile/android/app/.cxx/Debug/4z1t2ab1/x86_64/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") diff --git a/android/app/.cxx/Debug/4z1t2ab1/x86_64/configure_fingerprint.bin b/android/app/.cxx/Debug/4z1t2ab1/x86_64/configure_fingerprint.bin new file mode 100644 index 0000000..5d266e0 --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/x86_64/configure_fingerprint.bin @@ -0,0 +1,28 @@ +C/C++ Structured Logg +e +cC:\Users\840 G3\ProjectR.Mobile\android\app\.cxx\Debug\4z1t2ab1\x86_64\additional_project_files.txtC +A +?com.android.build.gradle.internal.cxx.io.EncodedFileFingerPrint  Ҕ2  ў2d +b +`C:\Users\840 G3\ProjectR.Mobile\android\app\.cxx\Debug\4z1t2ab1\x86_64\android_gradle_build.json  Ҕ2 ў2i +g +eC:\Users\840 G3\ProjectR.Mobile\android\app\.cxx\Debug\4z1t2ab1\x86_64\android_gradle_build_mini.json  Ҕ2 Ҟ2V +T +RC:\Users\840 G3\ProjectR.Mobile\android\app\.cxx\Debug\4z1t2ab1\x86_64\build.ninja  Ҕ2 Þ2Z +X +VC:\Users\840 G3\ProjectR.Mobile\android\app\.cxx\Debug\4z1t2ab1\x86_64\build.ninja.txt  Ҕ2_ +] +[C:\Users\840 G3\ProjectR.Mobile\android\app\.cxx\Debug\4z1t2ab1\x86_64\build_file_index.txt  Ҕ2 T Ҟ2` +^ +\C:\Users\840 G3\ProjectR.Mobile\android\app\.cxx\Debug\4z1t2ab1\x86_64\compile_commands.json  Ҕ2d +b +`C:\Users\840 G3\ProjectR.Mobile\android\app\.cxx\Debug\4z1t2ab1\x86_64\compile_commands.json.bin  Ҕ2 j +h +fC:\Users\840 G3\ProjectR.Mobile\android\app\.cxx\Debug\4z1t2ab1\x86_64\metadata_generation_command.txt  Ҕ2 + Ҟ2] +[ +YC:\Users\840 G3\ProjectR.Mobile\android\app\.cxx\Debug\4z1t2ab1\x86_64\prefab_config.json  Ҕ2  ( Ҟ2b +` +^C:\Users\840 G3\ProjectR.Mobile\android\app\.cxx\Debug\4z1t2ab1\x86_64\symbol_folder_index.txt  Ҕ2  U Ҟ2X +V +TC:\Users\840 G3\flutter\packages\flutter_tools\gradle\src\main\groovy\CMakeLists.txt  Ҕ2  2 \ No newline at end of file diff --git a/android/app/.cxx/Debug/4z1t2ab1/x86_64/metadata_generation_command.txt b/android/app/.cxx/Debug/4z1t2ab1/x86_64/metadata_generation_command.txt new file mode 100644 index 0000000..ddf290f --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/x86_64/metadata_generation_command.txt @@ -0,0 +1,20 @@ + -HC:\Users\840 G3\flutter\packages\flutter_tools\gradle\src\main\groovy +-DCMAKE_SYSTEM_NAME=Android +-DCMAKE_EXPORT_COMPILE_COMMANDS=ON +-DCMAKE_SYSTEM_VERSION=21 +-DANDROID_PLATFORM=android-21 +-DANDROID_ABI=x86_64 +-DCMAKE_ANDROID_ARCH_ABI=x86_64 +-DANDROID_NDK=C:\Users\840 G3\AppData\Local\Android\sdk\ndk\26.3.11579264 +-DCMAKE_ANDROID_NDK=C:\Users\840 G3\AppData\Local\Android\sdk\ndk\26.3.11579264 +-DCMAKE_TOOLCHAIN_FILE=C:\Users\840 G3\AppData\Local\Android\sdk\ndk\26.3.11579264\build\cmake\android.toolchain.cmake +-DCMAKE_MAKE_PROGRAM=C:\Users\840 G3\AppData\Local\Android\sdk\cmake\3.22.1\bin\ninja.exe +-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=C:\Users\840 G3\ProjectR.Mobile\build\app\intermediates\cxx\Debug\4z1t2ab1\obj\x86_64 +-DCMAKE_RUNTIME_OUTPUT_DIRECTORY=C:\Users\840 G3\ProjectR.Mobile\build\app\intermediates\cxx\Debug\4z1t2ab1\obj\x86_64 +-DCMAKE_BUILD_TYPE=Debug +-BC:\Users\840 G3\ProjectR.Mobile\android\app\.cxx\Debug\4z1t2ab1\x86_64 +-GNinja +-Wno-dev +--no-warn-unused-cli + Build command args: [] + Version: 2 \ No newline at end of file diff --git a/android/app/.cxx/Debug/4z1t2ab1/x86_64/prefab_config.json b/android/app/.cxx/Debug/4z1t2ab1/x86_64/prefab_config.json new file mode 100644 index 0000000..e799de8 --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/x86_64/prefab_config.json @@ -0,0 +1,4 @@ +{ + "enabled": false, + "packages": [] +} \ No newline at end of file diff --git a/android/app/.cxx/Debug/4z1t2ab1/x86_64/symbol_folder_index.txt b/android/app/.cxx/Debug/4z1t2ab1/x86_64/symbol_folder_index.txt new file mode 100644 index 0000000..49843b8 --- /dev/null +++ b/android/app/.cxx/Debug/4z1t2ab1/x86_64/symbol_folder_index.txt @@ -0,0 +1 @@ +C:\Users\840 G3\ProjectR.Mobile\build\app\intermediates\cxx\Debug\4z1t2ab1\obj\x86_64 \ No newline at end of file diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml index 233f9eb..172bc61 100644 --- a/android/app/src/main/AndroidManifest.xml +++ b/android/app/src/main/AndroidManifest.xml @@ -3,6 +3,10 @@ + + + + { final _formKey = GlobalKey(); String _selectedPhoneCode = ''; String _selectedCountry = ''; + @override - void initState() { - super.initState(); +void initState() { + super.initState(); + _setDefaultCountryFromLocation(); +} + +// Get the current location of the device when the app opens +Future _setDefaultCountryFromLocation() async { + bool serviceEnabled; + LocationPermission permission; + + serviceEnabled = await Geolocator.isLocationServiceEnabled(); + if (!serviceEnabled) return; + + permission = await Geolocator.checkPermission(); + if (permission == LocationPermission.denied) { + permission = await Geolocator.requestPermission(); + if (permission == LocationPermission.denied) return; } + if (permission == LocationPermission.deniedForever) return; + + final position = await Geolocator.getCurrentPosition( + locationSettings: const LocationSettings( + accuracy: LocationAccuracy.low, + ), + ); + + try { + final placemarks = await placemarkFromCoordinates( + position.latitude, + position.longitude, + ).timeout(const Duration(seconds: 10)); + + if (placemarks.isNotEmpty) { + final countryCode = placemarks.first.isoCountryCode; + if (countryCode != null) { + final country = CountryParser.parseCountryCode(countryCode); + setState(() { + _selectedCountry = country.name; + _selectedPhoneCode = '+${country.phoneCode}'; + }); + return; + } + } + + // Fallback if placemarks is empty + setState(() { + _selectedCountry = 'Nigeria'; + _selectedPhoneCode = '+234'; + }); + } catch (e) { + // Fallback if reverse geocoding fails + setState(() { + _selectedCountry = 'Nigeria'; + _selectedPhoneCode = '+234'; + }); + } +} @override Widget build(BuildContext context) { @@ -120,7 +179,6 @@ class _AuthenticationScreenState extends ConsumerState { // setState(() { // if (val == null || val.isEmpty) {} // }); - return val; }, keyboardType: TextInputType.phone, @@ -158,14 +216,11 @@ class _AuthenticationScreenState extends ConsumerState { searchTextStyle: AppTextStyles.body, textStyle: AppTextStyles.body, bottomSheetHeight: MediaQuery.of(context).size.height * 0.7, - padding: - EdgeInsets.only(top: 10.h), // Optional. Country list modal height - //Optional. Sets the border radius for the bottomsheet. + padding: EdgeInsets.only(top: 10.h), borderRadius: const BorderRadius.only( topLeft: Radius.circular(20.0), topRight: Radius.circular(20.0), ), - //Optional. Styles the search field. inputDecoration: const InputDecoration( labelText: 'Search', hintText: 'Start typing to search', diff --git a/macos/Flutter/GeneratedPluginRegistrant.swift b/macos/Flutter/GeneratedPluginRegistrant.swift index 53be384..bf62bbe 100644 --- a/macos/Flutter/GeneratedPluginRegistrant.swift +++ b/macos/Flutter/GeneratedPluginRegistrant.swift @@ -9,7 +9,9 @@ import connectivity_plus import device_info_plus import file_picker import file_selector_macos +import geolocator_apple import open_file_mac +import package_info_plus import path_provider_foundation import pdfx import shared_preferences_foundation @@ -22,7 +24,9 @@ func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) { DeviceInfoPlusMacosPlugin.register(with: registry.registrar(forPlugin: "DeviceInfoPlusMacosPlugin")) FilePickerPlugin.register(with: registry.registrar(forPlugin: "FilePickerPlugin")) FileSelectorPlugin.register(with: registry.registrar(forPlugin: "FileSelectorPlugin")) + GeolocatorPlugin.register(with: registry.registrar(forPlugin: "GeolocatorPlugin")) OpenFilePlugin.register(with: registry.registrar(forPlugin: "OpenFilePlugin")) + FPPPackageInfoPlusPlugin.register(with: registry.registrar(forPlugin: "FPPPackageInfoPlusPlugin")) PathProviderPlugin.register(with: registry.registrar(forPlugin: "PathProviderPlugin")) PdfxPlugin.register(with: registry.registrar(forPlugin: "PdfxPlugin")) SharedPreferencesPlugin.register(with: registry.registrar(forPlugin: "SharedPreferencesPlugin")) diff --git a/pubspec.lock b/pubspec.lock index 3202ba4..8afe126 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -5,15 +5,10 @@ packages: dependency: transitive description: name: _fe_analyzer_shared - sha256: f256b0c0ba6c7577c15e2e4e114755640a875e885099367bf6e012b19314c834 + sha256: da0d9209ca76bde579f2da330aeb9df62b6319c834fa7baae052021b0462401f url: "https://pub.dev" source: hosted - version: "72.0.0" - _macros: - dependency: transitive - description: dart - source: sdk - version: "0.3.2" + version: "85.0.0" add_2_calendar: dependency: "direct main" description: @@ -26,18 +21,18 @@ packages: dependency: transitive description: name: analyzer - sha256: b652861553cd3990d8ed361f7979dc6d7053a9ac8843fa73820ab68ce5410139 + sha256: f4ad0fea5f102201015c9aae9d93bc02f75dd9491529a8c21f88d17a8523d44c url: "https://pub.dev" source: hosted - version: "6.7.0" + version: "7.6.0" analyzer_plugin: dependency: transitive description: name: analyzer_plugin - sha256: "9661b30b13a685efaee9f02e5d01ed9f2b423bd889d28a304d02d704aee69161" + sha256: a5ab7590c27b779f3d4de67f31c4109dbe13dd7339f86461a6f2a8ab2594d8ce url: "https://pub.dev" source: hosted - version: "0.11.3" + version: "0.13.4" animated_splash_screen: dependency: "direct main" description: @@ -90,10 +85,10 @@ packages: dependency: "direct dev" description: name: auto_route_generator - sha256: c9086eb07271e51b44071ad5cff34e889f3156710b964a308c2ab590769e79e6 + sha256: c2e359d8932986d4d1bcad7a428143f81384ce10fef8d4aa5bc29e1f83766a46 url: "https://pub.dev" source: hosted - version: "9.0.0" + version: "9.3.1" boolean_selector: dependency: transitive description: @@ -106,10 +101,10 @@ packages: dependency: transitive description: name: build - sha256: "80184af8b6cb3e5c1c4ec6d8544d27711700bc3e6d2efad04238c7b5290889f0" + sha256: "51dc711996cbf609b90cbe5b335bbce83143875a9d58e4b5c6d3c4f684d3dda7" url: "https://pub.dev" source: hosted - version: "2.4.1" + version: "2.5.4" build_config: dependency: transitive description: @@ -130,26 +125,26 @@ packages: dependency: transitive description: name: build_resolvers - sha256: "339086358431fa15d7eca8b6a36e5d783728cf025e559b834f4609a1fcfb7b0a" + sha256: ee4257b3f20c0c90e72ed2b57ad637f694ccba48839a821e87db762548c22a62 url: "https://pub.dev" source: hosted - version: "2.4.2" + version: "2.5.4" build_runner: dependency: "direct dev" description: name: build_runner - sha256: "028819cfb90051c6b5440c7e574d1896f8037e3c96cf17aaeb054c9311cfbf4d" + sha256: "382a4d649addbfb7ba71a3631df0ec6a45d5ab9b098638144faf27f02778eb53" url: "https://pub.dev" source: hosted - version: "2.4.13" + version: "2.5.4" build_runner_core: dependency: transitive description: name: build_runner_core - sha256: f8126682b87a7282a339b871298cc12009cb67109cfa1614d6436fb0289193e0 + sha256: "85fbbb1036d576d966332a3f5ce83f2ce66a40bea1a94ad2d5fc29a19a0d3792" url: "https://pub.dev" source: hosted - version: "7.3.2" + version: "9.1.2" built_collection: dependency: transitive description: @@ -162,10 +157,10 @@ packages: dependency: transitive description: name: built_value - sha256: ea90e81dc4a25a043d9bee692d20ed6d1c4a1662a28c03a96417446c093ed6b4 + sha256: a30f0a0e38671e89a492c44d005b5545b830a961575bbd8336d42869ff71066d url: "https://pub.dev" source: hosted - version: "8.9.5" + version: "8.12.0" cached_network_image: dependency: "direct main" description: @@ -194,10 +189,10 @@ packages: dependency: transitive description: name: characters - sha256: "04a925763edad70e8443c99234dc3328f442e811f1d8fd1a72f1c8ad0f69a605" + sha256: f71061c654a3380576a52b451dd5532377954cf9dbd272a78fc8479606670803 url: "https://pub.dev" source: hosted - version: "1.3.0" + version: "1.4.0" checked_yaml: dependency: transitive description: @@ -226,10 +221,10 @@ packages: dependency: transitive description: name: clock - sha256: cb6d7f03e1de671e34607e909a7213e31d7752be4fb66a86d29fe1eb14bfb5cf + sha256: fddb70d9b5277016c77a80201021d40a2247104d9f4aa7bab7157b7e3f05b84b url: "https://pub.dev" source: hosted - version: "1.1.1" + version: "1.1.2" code_builder: dependency: transitive description: @@ -242,10 +237,10 @@ packages: dependency: "direct main" description: name: collection - sha256: ee67cb0715911d28db6bf4af1026078bd6f0128b07a5f66fb2ed94ec6783c09a + sha256: "2f5709ae4d3d59dd8f7cd309b4e023046b57d8a6c82130785d2b0e5868084e76" url: "https://pub.dev" source: hosted - version: "1.18.0" + version: "1.19.1" connectivity_plus: dependency: "direct main" description: @@ -270,6 +265,14 @@ packages: url: "https://pub.dev" source: hosted version: "3.1.2" + country_code_picker: + dependency: "direct main" + description: + name: country_code_picker + sha256: c9e8c012472c8060f5a705dabef223677801cd9eb49e684aecee705edeceacc8 + url: "https://pub.dev" + source: hosted + version: "3.4.0" country_picker: dependency: "direct main" description: @@ -306,34 +309,42 @@ packages: dependency: "direct dev" description: name: custom_lint - sha256: "832fcdc676171205201c9cffafd6b5add19393962f6598af8472b48b413026e6" + sha256: "9656925637516c5cf0f5da018b33df94025af2088fe09c8ae2ca54c53f2d9a84" url: "https://pub.dev" source: hosted - version: "0.6.8" + version: "0.7.6" custom_lint_builder: dependency: transitive description: name: custom_lint_builder - sha256: c3d82779026f91b8e00c9ac18934595cbc9b490094ea682052beeafdb2bd50ac + sha256: "6cdc8e87e51baaaba9c43e283ed8d28e59a0c4732279df62f66f7b5984655414" url: "https://pub.dev" source: hosted - version: "0.6.8" + version: "0.7.6" custom_lint_core: dependency: transitive description: name: custom_lint_core - sha256: "4ddbbdaa774265de44c97054dcec058a83d9081d071785ece601e348c18c267d" + sha256: "31110af3dde9d29fb10828ca33f1dce24d2798477b167675543ce3d208dee8be" url: "https://pub.dev" source: hosted - version: "0.6.5" + version: "0.7.5" + custom_lint_visitor: + dependency: transitive + description: + name: custom_lint_visitor + sha256: "4a86a0d8415a91fbb8298d6ef03e9034dc8e323a599ddc4120a0e36c433983a2" + url: "https://pub.dev" + source: hosted + version: "1.0.0+7.7.0" dart_style: dependency: transitive description: name: dart_style - sha256: "7856d364b589d1f08986e140938578ed36ed948581fbc3bc9aef1805039ac5ab" + sha256: "8a0e5fba27e8ee025d2ffb4ee820b4e6e2cf5e4246a6b1a477eb66866947e0bb" url: "https://pub.dev" source: hosted - version: "2.3.7" + version: "3.1.1" dbus: dependency: transitive description: @@ -358,6 +369,14 @@ packages: url: "https://pub.dev" source: hosted version: "7.0.2" + diacritic: + dependency: transitive + description: + name: diacritic + sha256: "12981945ec38931748836cd76f2b38773118d0baef3c68404bdfde9566147876" + url: "https://pub.dev" + source: hosted + version: "0.1.6" dio: dependency: "direct main" description: @@ -410,10 +429,10 @@ packages: dependency: transitive description: name: fake_async - sha256: "511392330127add0b769b75a987850d136345d9227c6b94c96a04cf4a391bf78" + sha256: "5368f224a74523e8d2e7399ea1638b37aecfca824a3cc4dfdf77bf1fa905ac44" url: "https://pub.dev" source: hosted - version: "1.3.1" + version: "1.3.3" ffi: dependency: transitive description: @@ -609,18 +628,18 @@ packages: dependency: "direct dev" description: name: freezed - sha256: "44c19278dd9d89292cf46e97dc0c1e52ce03275f40a97c5a348e802a924bf40e" + sha256: "2d399f823b8849663744d2a9ddcce01c49268fb4170d0442a655bf6a2f47be22" url: "https://pub.dev" source: hosted - version: "2.5.7" + version: "3.1.0" freezed_annotation: dependency: "direct main" description: name: freezed_annotation - sha256: c2e2d632dd9b8a2b7751117abcfc2b4888ecfe181bd9fca7170d9ef02e595fe2 + sha256: "7294967ff0a6d98638e7acb774aac3af2550777accd8149c90af5b014e6d44d8" url: "https://pub.dev" source: hosted - version: "2.4.4" + version: "3.1.0" frontend_server_client: dependency: transitive description: @@ -629,6 +648,102 @@ packages: url: "https://pub.dev" source: hosted version: "4.0.0" + geoclue: + dependency: transitive + description: + name: geoclue + sha256: c2a998c77474fc57aa00c6baa2928e58f4b267649057a1c76738656e9dbd2a7f + url: "https://pub.dev" + source: hosted + version: "0.1.1" + geocoding: + dependency: "direct main" + description: + name: geocoding + sha256: "606be036287842d779d7ec4e2f6c9435fc29bbbd3c6da6589710f981d8852895" + url: "https://pub.dev" + source: hosted + version: "4.0.0" + geocoding_android: + dependency: transitive + description: + name: geocoding_android + sha256: ba810da90d6633cbb82bbab630e5b4a3b7d23503263c00ae7f1ef0316dcae5b9 + url: "https://pub.dev" + source: hosted + version: "4.0.1" + geocoding_ios: + dependency: transitive + description: + name: geocoding_ios + sha256: "18ab1c8369e2b0dcb3a8ccc907319334f35ee8cf4cfef4d9c8e23b13c65cb825" + url: "https://pub.dev" + source: hosted + version: "3.1.0" + geocoding_platform_interface: + dependency: transitive + description: + name: geocoding_platform_interface + sha256: "8c2c8226e5c276594c2e18bfe88b19110ed770aeb7c1ab50ede570be8b92229b" + url: "https://pub.dev" + source: hosted + version: "3.2.0" + geolocator: + dependency: "direct main" + description: + name: geolocator + sha256: "79939537046c9025be47ec645f35c8090ecadb6fe98eba146a0d25e8c1357516" + url: "https://pub.dev" + source: hosted + version: "14.0.2" + geolocator_android: + dependency: transitive + description: + name: geolocator_android + sha256: "179c3cb66dfa674fc9ccbf2be872a02658724d1c067634e2c427cf6df7df901a" + url: "https://pub.dev" + source: hosted + version: "5.0.2" + geolocator_apple: + dependency: transitive + description: + name: geolocator_apple + sha256: dbdd8789d5aaf14cf69f74d4925ad1336b4433a6efdf2fce91e8955dc921bf22 + url: "https://pub.dev" + source: hosted + version: "2.3.13" + geolocator_linux: + dependency: transitive + description: + name: geolocator_linux + sha256: c4e966f0a7a87e70049eac7a2617f9e16fd4c585a26e4330bdfc3a71e6a721f3 + url: "https://pub.dev" + source: hosted + version: "0.2.3" + geolocator_platform_interface: + dependency: transitive + description: + name: geolocator_platform_interface + sha256: "30cb64f0b9adcc0fb36f628b4ebf4f731a2961a0ebd849f4b56200205056fe67" + url: "https://pub.dev" + source: hosted + version: "4.2.6" + geolocator_web: + dependency: transitive + description: + name: geolocator_web + sha256: b1ae9bdfd90f861fde8fd4f209c37b953d65e92823cb73c7dee1fa021b06f172 + url: "https://pub.dev" + source: hosted + version: "4.1.3" + geolocator_windows: + dependency: transitive + description: + name: geolocator_windows + sha256: "175435404d20278ffd220de83c2ca293b73db95eafbdc8131fe8609be1421eb6" + url: "https://pub.dev" + source: hosted + version: "0.2.5" get: dependency: "direct main" description: @@ -653,6 +768,14 @@ packages: url: "https://pub.dev" source: hosted version: "2.3.2" + gsettings: + dependency: transitive + description: + name: gsettings + sha256: "1b0ce661f5436d2db1e51f3c4295a49849f03d304003a7ba177d01e3a858249c" + url: "https://pub.dev" + source: hosted + version: "0.2.8" hotreloader: dependency: transitive description: @@ -793,26 +916,26 @@ packages: dependency: transitive description: name: leak_tracker - sha256: "3f87a60e8c63aecc975dda1ceedbc8f24de75f09e4856ea27daf8958f2f0ce05" + sha256: "33e2e26bdd85a0112ec15400c8cbffea70d0f9c3407491f672a2fad47915e2de" url: "https://pub.dev" source: hosted - version: "10.0.5" + version: "11.0.2" leak_tracker_flutter_testing: dependency: transitive description: name: leak_tracker_flutter_testing - sha256: "932549fb305594d82d7183ecd9fa93463e9914e1b67cacc34bc40906594a1806" + sha256: "1dbc140bb5a23c75ea9c4811222756104fbcd1a27173f0c34ca01e16bea473c1" url: "https://pub.dev" source: hosted - version: "3.0.5" + version: "3.0.10" leak_tracker_testing: dependency: transitive description: name: leak_tracker_testing - sha256: "6ba465d5d76e67ddf503e1161d1f4a6bc42306f9d66ca1e8f079a47290fb06d3" + sha256: "8d5a2d49f4a66b49744b23b018848400d23e54caf9463f4eb20df3eb8acb2eb1" url: "https://pub.dev" source: hosted - version: "3.0.1" + version: "3.0.2" lints: dependency: transitive description: @@ -837,22 +960,14 @@ packages: url: "https://pub.dev" source: hosted version: "1.3.0" - macros: - dependency: transitive - description: - name: macros - sha256: "0acaed5d6b7eab89f63350bccd82119e6c602df0f391260d0e32b5e23db79536" - url: "https://pub.dev" - source: hosted - version: "0.1.2-main.4" matcher: dependency: transitive description: name: matcher - sha256: d2323aa2060500f906aa31a895b4030b6da3ebdcc5619d14ce1aada65cd161cb + sha256: dc58c723c3c24bf8d3e2d3ad3f2f9d7bd9cf43ec6feaa64181775e60190153f2 url: "https://pub.dev" source: hosted - version: "0.12.16+1" + version: "0.12.17" material_color_utilities: dependency: transitive description: @@ -865,10 +980,10 @@ packages: dependency: transitive description: name: meta - sha256: bdb68674043280c3428e9ec998512fb681678676b3c54e773629ffe74419f8c7 + sha256: e3641ec5d63ebf0d9b41bd43201a66e3fc79a65db5f61fc181f04cd27aab950c url: "https://pub.dev" source: hosted - version: "1.15.0" + version: "1.16.0" mime: dependency: "direct main" description: @@ -965,6 +1080,22 @@ packages: url: "https://pub.dev" source: hosted version: "2.2.0" + package_info_plus: + dependency: transitive + description: + name: package_info_plus + sha256: "16eee997588c60225bda0488b6dcfac69280a6b7a3cf02c741895dd370a02968" + url: "https://pub.dev" + source: hosted + version: "8.3.1" + package_info_plus_platform_interface: + dependency: transitive + description: + name: package_info_plus_platform_interface + sha256: "202a487f08836a592a6bd4f901ac69b3a8f146af552bbd14407b6b41e1c3f086" + url: "https://pub.dev" + source: hosted + version: "3.2.1" page_transition: dependency: transitive description: @@ -977,10 +1108,10 @@ packages: dependency: transitive description: name: path - sha256: "087ce49c3f0dc39180befefc60fdb4acd8f8620e5682fe2476afd0b3688bb4af" + sha256: "75cca69d1490965be98c73ceaea117e8a04dd21217b37b292c9ddbec0d955bc5" url: "https://pub.dev" source: hosted - version: "1.9.0" + version: "1.9.1" path_parsing: dependency: transitive description: @@ -1121,10 +1252,10 @@ packages: dependency: transitive description: name: pubspec_parse - sha256: "81876843eb50dc2e1e5b151792c9a985c5ed2536914115ed04e9c8528f6647b0" + sha256: "0560ba233314abbed0a48a2956f7f022cce7c3e1e73df540277da7544cad4082" url: "https://pub.dev" source: hosted - version: "1.4.0" + version: "1.5.0" riverpod: dependency: transitive description: @@ -1137,10 +1268,10 @@ packages: dependency: transitive description: name: riverpod_analyzer_utils - sha256: "0dcb0af32d561f8fa000c6a6d95633c9fb08ea8a8df46e3f9daca59f11218167" + sha256: "03a17170088c63aab6c54c44456f5ab78876a1ddb6032ffde1662ddab4959611" url: "https://pub.dev" source: hosted - version: "0.5.6" + version: "0.5.10" riverpod_annotation: dependency: "direct main" description: @@ -1153,18 +1284,18 @@ packages: dependency: "direct dev" description: name: riverpod_generator - sha256: "851aedac7ad52693d12af3bf6d92b1626d516ed6b764eb61bf19e968b5e0b931" + sha256: "44a0992d54473eb199ede00e2260bd3c262a86560e3c6f6374503d86d0580e36" url: "https://pub.dev" source: hosted - version: "2.6.1" + version: "2.6.5" riverpod_lint: dependency: "direct dev" description: name: riverpod_lint - sha256: "0684c21a9a4582c28c897d55c7b611fa59a351579061b43f8c92c005804e63a8" + sha256: "89a52b7334210dbff8605c3edf26cfe69b15062beed5cbfeff2c3812c33c9e35" url: "https://pub.dev" source: hosted - version: "2.6.1" + version: "2.6.5" rxdart: dependency: transitive description: @@ -1265,7 +1396,7 @@ packages: dependency: transitive description: flutter source: sdk - version: "0.0.99" + version: "0.0.0" socket_io_client: dependency: "direct main" description: @@ -1286,10 +1417,10 @@ packages: dependency: transitive description: name: source_gen - sha256: "14658ba5f669685cd3d63701d01b31ea748310f7ab854e471962670abcf57832" + sha256: "35c8150ece9e8c8d263337a265153c3329667640850b9304861faea59fc98f6b" url: "https://pub.dev" source: hosted - version: "1.5.0" + version: "2.0.0" source_span: dependency: transitive description: @@ -1350,10 +1481,10 @@ packages: dependency: transitive description: name: stack_trace - sha256: "73713990125a6d93122541237550ee3352a2d84baad52d375a4cad2eb9b7ce0b" + sha256: "8b27215b45d22309b5cddda1aa2b19bdfec9df0e765f2de506401c071d38d1b1" url: "https://pub.dev" source: hosted - version: "1.11.1" + version: "1.12.1" state_notifier: dependency: "direct main" description: @@ -1366,10 +1497,10 @@ packages: dependency: transitive description: name: stream_channel - sha256: ba2aa5d8cc609d96bbb2899c28934f9e1af5cddbd60a827822ea467161eb54e7 + sha256: "969e04c80b8bcdf826f8f16579c7b14d780458bd97f56d107d3950fdbeef059d" url: "https://pub.dev" source: hosted - version: "2.1.2" + version: "2.1.4" stream_transform: dependency: transitive description: @@ -1414,10 +1545,10 @@ packages: dependency: transitive description: name: test_api - sha256: "5b8a98dafc4d5c4c9c72d8b31ab2b23fc13422348d2997120294d3bac86b4ddb" + sha256: "522f00f556e73044315fa4585ec3270f1808a4b186c936e612cab0b565ff1e00" url: "https://pub.dev" source: hosted - version: "0.7.2" + version: "0.7.6" timing: dependency: transitive description: @@ -1550,10 +1681,10 @@ packages: dependency: transitive description: name: vector_math - sha256: "80b3257d1492ce4d091729e3a67a60407d227c27241d6927be0130c98e741803" + sha256: d530bd74fea330e6e364cda7a85019c434070188383e1cd8d9777ee586914c5b url: "https://pub.dev" source: hosted - version: "2.1.4" + version: "2.2.0" vm_service: dependency: transitive description: @@ -1667,5 +1798,5 @@ packages: source: hosted version: "3.1.3" sdks: - dart: ">=3.5.1 <4.0.0" + dart: ">=3.8.0-0 <4.0.0" flutter: ">=3.24.0" diff --git a/pubspec.yaml b/pubspec.yaml index cc58401..a319289 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -56,7 +56,7 @@ dependencies: pinput: ^5.0.0 flutter_otp_text_field: ^1.4.0+2 json_annotation: ^4.0.1 - freezed_annotation: ^2.4.4 + freezed_annotation: ^3.1.0 flutter_riverpod: ^2.6.1 loading_overlay: ^0.4.0 file_picker: ^9.1.0 @@ -77,6 +77,11 @@ dependencies: pdfx: ^2.8.0 flutter_pdfview: ^1.4.0 url_launcher: ^6.3.1 + geolocator: ^14.0.2 + geocoding: ^4.0.0 + country_code_picker: ^3.4.0 + + @@ -92,10 +97,10 @@ dev_dependencies: flutter_lints: ^4.0.0 riverpod_generator: ^2.6.1 build_runner: ^2.4.13 - custom_lint: ^0.6.8 + custom_lint: ^0.7.5 riverpod_lint: ^2.6.1 auto_route_generator: - freezed: ^2.5.7 + freezed: ^3.0.0 flutter_launcher_icons: ^0.14.1 diff --git a/windows/flutter/generated_plugin_registrant.cc b/windows/flutter/generated_plugin_registrant.cc index 4247a47..dbad3d9 100644 --- a/windows/flutter/generated_plugin_registrant.cc +++ b/windows/flutter/generated_plugin_registrant.cc @@ -8,6 +8,7 @@ #include #include +#include #include #include @@ -16,6 +17,8 @@ void RegisterPlugins(flutter::PluginRegistry* registry) { registry->GetRegistrarForPlugin("ConnectivityPlusWindowsPlugin")); FileSelectorWindowsRegisterWithRegistrar( registry->GetRegistrarForPlugin("FileSelectorWindows")); + GeolocatorWindowsRegisterWithRegistrar( + registry->GetRegistrarForPlugin("GeolocatorWindows")); PdfxPluginRegisterWithRegistrar( registry->GetRegistrarForPlugin("PdfxPlugin")); UrlLauncherWindowsRegisterWithRegistrar( diff --git a/windows/flutter/generated_plugins.cmake b/windows/flutter/generated_plugins.cmake index 2b439ac..02aa212 100644 --- a/windows/flutter/generated_plugins.cmake +++ b/windows/flutter/generated_plugins.cmake @@ -5,6 +5,7 @@ list(APPEND FLUTTER_PLUGIN_LIST connectivity_plus file_selector_windows + geolocator_windows pdfx url_launcher_windows )