├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── function_report.yml │ └── question_report.yml └── workflows │ ├── beta.yml │ ├── canary.yml │ ├── configuration.json │ ├── key │ ├── main.py │ └── stable.yml ├── .gitignore ├── .idea ├── .gitignore ├── .name ├── androidTestResultsUserPreferences.xml ├── appInsightsSettings.xml ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── compiler.xml ├── copyright │ ├── Ankio.xml │ └── profiles_settings.xml ├── deploymentTargetDropDown.xml ├── deploymentTargetSelector.xml ├── detekt.xml ├── deviceManager.xml ├── gradle.xml ├── inspectionProfiles │ └── Project_Default.xml ├── kotlinc.xml ├── ktlint-plugin.xml ├── migrations.xml ├── misc.xml └── vcs.xml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── app ├── .gitignore ├── build.gradle.kts ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── assets │ ├── textmate │ │ ├── abyss.json │ │ ├── darcula.json │ │ ├── javascript │ │ │ ├── language-configuration.json │ │ │ └── syntaxes │ │ │ │ └── javascript.tmLanguage.json │ │ ├── languages.json │ │ ├── quietlight.json │ │ └── solarized_dark.json │ └── xposed_init │ ├── ic_launcher-playstore.png │ ├── java │ └── net │ │ └── ankio │ │ └── auto │ │ ├── App.kt │ │ ├── adapter │ │ ├── AppAdapterManager.kt │ │ ├── AutoAdapter.kt │ │ ├── IAppAdapter.kt │ │ ├── QianJiAdapter.kt │ │ ├── XiaoXinAdapter.kt │ │ ├── YiMuAdapter.kt │ │ └── YiYuAdapter.kt │ │ ├── ai │ │ └── JsTool.kt │ │ ├── constant │ │ ├── BookFeatures.kt │ │ ├── FloatEvent.kt │ │ └── WorkMode.kt │ │ ├── exceptions │ │ ├── BillException.kt │ │ ├── PermissionException.kt │ │ ├── RestoreBackupException.kt │ │ └── ServiceCheckException.kt │ │ ├── http │ │ ├── LicenseNetwork.kt │ │ ├── LocalNetwork.kt │ │ ├── Pastebin.kt │ │ ├── RequestsUtils.kt │ │ ├── api │ │ │ ├── AiAPI.kt │ │ │ ├── AnalysisTaskAPI.kt │ │ │ ├── AppDataAPI.kt │ │ │ ├── AssetsAPI.kt │ │ │ ├── AssetsMapAPI.kt │ │ │ ├── BillAPI.kt │ │ │ ├── BookBillAPI.kt │ │ │ ├── BookNameAPI.kt │ │ │ ├── CategoryAPI.kt │ │ │ ├── CategoryMapAPI.kt │ │ │ ├── CategoryRuleAPI.kt │ │ │ ├── DatabaseAPI.kt │ │ │ ├── HomeAPI.kt │ │ │ ├── JsAPI.kt │ │ │ ├── LogAPI.kt │ │ │ ├── RuleManageAPI.kt │ │ │ ├── SettingAPI.kt │ │ │ └── TagAPI.kt │ │ └── license │ │ │ ├── ActivateAPI.kt │ │ │ ├── AppAPI.kt │ │ │ ├── RuleAPI.kt │ │ │ └── VersionCacheHelper.kt │ │ ├── service │ │ ├── BackgroundHttpService.kt │ │ ├── CoreService.kt │ │ ├── NotificationService.kt │ │ ├── OcrService.kt │ │ ├── OcrTileService.kt │ │ ├── OverlayService.kt │ │ ├── SmsReceiver.kt │ │ ├── api │ │ │ ├── ICoreService.kt │ │ │ └── IService.kt │ │ ├── ocr │ │ │ ├── FlipDetector.kt │ │ │ └── OcrViews.kt │ │ └── overlay │ │ │ ├── BillWindowManager.kt │ │ │ ├── FloatingTip.kt │ │ │ ├── RepeatToast.kt │ │ │ └── SaveProgressView.kt │ │ ├── storage │ │ ├── CacheManager.kt │ │ ├── Constants.kt │ │ ├── Logger.kt │ │ ├── ZipUtils.kt │ │ └── backup │ │ │ ├── BackupFileManager.kt │ │ │ ├── BackupManager.kt │ │ │ ├── BackupResult.kt │ │ │ ├── RestoreManager.kt │ │ │ └── WebDAVManager.kt │ │ ├── ui │ │ ├── activity │ │ │ ├── ErrorActivity.kt │ │ │ ├── FloatingWindowTriggerActivity.kt │ │ │ ├── HomeActivity.kt │ │ │ └── MainActivity.kt │ │ ├── adapter │ │ │ ├── AnalysisTaskAdapter.kt │ │ │ ├── AppAdapter.kt │ │ │ ├── AppDataAdapter.kt │ │ │ ├── AppListAdapter.kt │ │ │ ├── AssetSelectorAdapter.kt │ │ │ ├── AssetsMapAdapter.kt │ │ │ ├── BillAdapter.kt │ │ │ ├── BillAssetsMapAdapter.kt │ │ │ ├── BillItemAdapter.kt │ │ │ ├── BillSelectorAdapter.kt │ │ │ ├── BookSelectorAdapter.kt │ │ │ ├── CategoryMapAdapter.kt │ │ │ ├── CategoryRuleAdapter.kt │ │ │ ├── CategorySelectorAdapter.kt │ │ │ ├── CategoryStatsAdapter.kt │ │ │ ├── CurrencyDropdownAdapter.kt │ │ │ ├── DataRuleAdapter.kt │ │ │ ├── IntroPagerAdapter.kt │ │ │ ├── LogAdapter.kt │ │ │ ├── ReplacePreviewAdapter.kt │ │ │ └── TagSelectorAdapter.kt │ │ ├── api │ │ │ ├── BaseActivity.kt │ │ │ ├── BaseAdapter.kt │ │ │ ├── BaseComponent.kt │ │ │ ├── BaseFragment.kt │ │ │ ├── BasePageFragment.kt │ │ │ ├── BasePreferenceFragment.kt │ │ │ ├── BaseSheetDialog.kt │ │ │ └── BaseViewHolder.kt │ │ ├── components │ │ │ ├── AdaptiveCoordinatorLayout.kt │ │ │ ├── BreathingGradientView.kt │ │ │ ├── CategoryIconMoreView.kt │ │ │ ├── CustomNavigationRail.kt │ │ │ ├── ExpandableCardGroup.kt │ │ │ ├── ExpandableCardView.kt │ │ │ ├── FlowElement.kt │ │ │ ├── FlowLayoutManager.kt │ │ │ ├── GradientImageView.kt │ │ │ ├── IconTileView.kt │ │ │ ├── IconView.kt │ │ │ ├── LineChartView.kt │ │ │ ├── MaterialScanBorderView.kt │ │ │ ├── MaterialSearchView.kt │ │ │ ├── SettingItemView.kt │ │ │ ├── StatusPage.kt │ │ │ └── WrapContentLinearLayoutManager.kt │ │ ├── dialog │ │ │ ├── AppDialog.kt │ │ │ ├── AssetsMapDialog.kt │ │ │ ├── AssetsSelectorDialog.kt │ │ │ ├── BillEditorDialog.kt │ │ │ ├── BillMoreDialog.kt │ │ │ ├── BillSelectorDialog.kt │ │ │ ├── BookSelectorDialog.kt │ │ │ ├── BottomSheetDialogBuilder.kt │ │ │ ├── CategorySelectorDialog.kt │ │ │ ├── ColorPickerDialog.kt │ │ │ ├── DataEditorDialog.kt │ │ │ ├── DateTimePickerDialog.kt │ │ │ ├── EditorDialogBuilder.kt │ │ │ ├── ReplacePreviewDialog.kt │ │ │ ├── UpdateDialog.kt │ │ │ └── components │ │ │ │ ├── ActionButtonsComponent.kt │ │ │ │ ├── AmountDisplayComponent.kt │ │ │ │ ├── BasicInfoComponent.kt │ │ │ │ ├── BookHeaderComponent.kt │ │ │ │ ├── PaymentInfoComponent.kt │ │ │ │ ├── RuleInfoComponent.kt │ │ │ │ └── TransactionTypeSelectorComponent.kt │ │ ├── fragment │ │ │ ├── AiSummaryFragment.kt │ │ │ ├── AnalysisDetailFragment.kt │ │ │ ├── AppWhiteListFragment.kt │ │ │ ├── AssetEditFragment.kt │ │ │ ├── AssetFragment.kt │ │ │ ├── AssetMapFragment.kt │ │ │ ├── BillFragment.kt │ │ │ ├── BookEditFragment.kt │ │ │ ├── BookFragment.kt │ │ │ ├── CategoryEditFragment.kt │ │ │ ├── CategoryFragment.kt │ │ │ ├── CategoryMapFragment.kt │ │ │ ├── CategoryRuleEditFragment.kt │ │ │ ├── CategoryRulePageFragment.kt │ │ │ ├── DataFilterFragment.kt │ │ │ ├── DataFragment.kt │ │ │ ├── HomeFragment.kt │ │ │ ├── LogFragment.kt │ │ │ ├── RuleDataPageFragment.kt │ │ │ ├── RuleEditFragment.kt │ │ │ ├── RuleEditJsFragment.kt │ │ │ ├── RuleManageFragment.kt │ │ │ ├── SettingFragment.kt │ │ │ ├── StatisticFragment.kt │ │ │ ├── TagEditFragment.kt │ │ │ ├── TagFragment.kt │ │ │ ├── components │ │ │ │ ├── AssetComponent.kt │ │ │ │ ├── BookCardComponent.kt │ │ │ │ ├── BookComponent.kt │ │ │ │ ├── CategoryComponent.kt │ │ │ │ ├── CategoryRuleEditComponent.kt │ │ │ │ ├── MonthlyCardComponent.kt │ │ │ │ ├── StatusCardComponent.kt │ │ │ │ └── TagComponent.kt │ │ │ ├── intro │ │ │ │ ├── BaseIntroPageFragment.kt │ │ │ │ ├── IntroPageAIFragment.kt │ │ │ │ ├── IntroPageAppFragment.kt │ │ │ │ ├── IntroPageFeatureFragment.kt │ │ │ │ ├── IntroPageHomeFragment.kt │ │ │ │ ├── IntroPageKeepFragment.kt │ │ │ │ ├── IntroPageModeFragment.kt │ │ │ │ ├── IntroPagePermissionFragment.kt │ │ │ │ ├── IntroPageSuccessFragment.kt │ │ │ │ └── IntroPageSyncFragment.kt │ │ │ └── settings │ │ │ │ ├── AIAssistantPreferenceFragment.kt │ │ │ │ ├── AboutPreferenceFragment.kt │ │ │ │ ├── AiComponent.kt │ │ │ │ ├── AiConfigFragment.kt │ │ │ │ ├── DataManagementPreferenceFragment.kt │ │ │ │ ├── InteractionPreferenceFragment.kt │ │ │ │ ├── RecordingPreferenceFragment.kt │ │ │ │ ├── RemarkFormatFragment.kt │ │ │ │ └── SystemPreferenceFragment.kt │ │ ├── model │ │ │ └── ReplaceItem.kt │ │ ├── models │ │ │ ├── AppInfo.kt │ │ │ ├── OrderGroup.kt │ │ │ ├── RailMenuItem.kt │ │ │ └── ToolbarMenuItem.kt │ │ ├── theme │ │ │ └── DynamicColors.kt │ │ ├── utils │ │ │ ├── AppUpdateHelper.kt │ │ │ ├── AppUtils.kt │ │ │ ├── AssetsUtils.kt │ │ │ ├── CategoryUtils.kt │ │ │ ├── Desensitizer.kt │ │ │ ├── DisplayUtils.kt │ │ │ ├── ImageUtils.kt │ │ │ ├── ListPopupUtilsGeneric.kt │ │ │ ├── LoadingUtils.kt │ │ │ ├── PaletteManager.kt │ │ │ ├── RuleUpdateHelper.kt │ │ │ ├── TagUtils.kt │ │ │ ├── ToastUtils.kt │ │ │ └── ViewUtils.kt │ │ └── vm │ │ │ └── IntroSharedVm.kt │ │ ├── utils │ │ ├── AppUtils.kt │ │ ├── BillTool.kt │ │ ├── CoroutineUtils.kt │ │ ├── CustomTabsHelper.kt │ │ ├── DateUtils.kt │ │ ├── DebugUtils.kt │ │ ├── ExceptionHandler.kt │ │ ├── LanguageUtils.kt │ │ ├── PackageManagerCompat.kt │ │ ├── PrefManager.kt │ │ ├── SystemUtils.kt │ │ ├── ThemeUtils.kt │ │ ├── Throttle.kt │ │ └── VersionUtils.kt │ │ └── xposed │ │ ├── README.md │ │ ├── XposedModule.kt │ │ ├── core │ │ ├── App.kt │ │ ├── README.md │ │ ├── api │ │ │ ├── HookerClazz.kt │ │ │ ├── HookerManifest.kt │ │ │ └── PartHooker.kt │ │ ├── hook │ │ │ └── Hooker.kt │ │ ├── logger │ │ │ └── Logger.kt │ │ ├── ui │ │ │ ├── ColorUtils.kt │ │ │ └── ViewUtils.kt │ │ └── utils │ │ │ ├── AdaptationUtils.kt │ │ │ ├── AnalysisUtils.kt │ │ │ ├── AppRuntime.kt │ │ │ ├── CoroutineUtils.kt │ │ │ ├── DataUtils.kt │ │ │ ├── MessageUtils.kt │ │ │ ├── NetSecurityUtils.kt │ │ │ └── VersionUtils.kt │ │ └── hooks │ │ ├── README.md │ │ ├── alipay │ │ ├── AliPayHooker.kt │ │ └── hooks │ │ │ ├── MessageBoxHooker.kt │ │ │ ├── RedPackageHooker.kt │ │ │ ├── SecurityHooker.kt │ │ │ └── WebViewHooker.kt │ │ ├── android │ │ ├── AndroidHooker.kt │ │ └── hooks │ │ │ ├── NotificationHooker.kt │ │ │ ├── PermissionCheckHooker.kt │ │ │ ├── PermissionHooker.kt │ │ │ └── permission │ │ │ ├── PermissionHooker29.kt │ │ │ ├── PermissionHooker30.kt │ │ │ ├── PermissionHooker31.kt │ │ │ ├── PermissionHooker33.kt │ │ │ └── PermissionHooker34.kt │ │ ├── auto │ │ ├── AutoHooker.kt │ │ └── hooks │ │ │ └── ActiveHooker.kt │ │ ├── bluetooth │ │ └── BluetoothHook.kt │ │ ├── common │ │ ├── AppInstaller.kt │ │ ├── CommonHooker.kt │ │ ├── JsEngine.kt │ │ └── UnLockScreen.kt │ │ ├── qianji │ │ ├── QianjiHooker.kt │ │ ├── activity │ │ │ ├── AddBillIntentAct.kt │ │ │ ├── MainActivity.kt │ │ │ └── MainDrawerLayout.kt │ │ ├── debt │ │ │ ├── BaseDebt.kt │ │ │ ├── ExpendLendingUtils.kt │ │ │ ├── ExpendRepaymentUtils.kt │ │ │ ├── IncomeLendingUtils.kt │ │ │ └── IncomeRepaymentUtils.kt │ │ ├── filter │ │ │ ├── AssetsFilter.kt │ │ │ ├── BillFlagFilter.kt │ │ │ ├── BookFilter.kt │ │ │ ├── DataFilter.kt │ │ │ ├── ImageFilter.kt │ │ │ ├── MoneyFilter.kt │ │ │ ├── PlatformFilter.kt │ │ │ ├── SortFilter.kt │ │ │ ├── TagsFilter.kt │ │ │ └── TypesFilter.kt │ │ ├── helper │ │ │ ├── AssetDbHelper.kt │ │ │ └── BillDbHelper.kt │ │ ├── hooks │ │ │ ├── AutoHooker.kt │ │ │ └── SideBarHooker.kt │ │ ├── impl │ │ │ ├── AssetPreviewPresenterImpl.kt │ │ │ ├── BaseSubmitAssetPresenterImpl.kt │ │ │ ├── BookManagerImpl.kt │ │ │ ├── BxPresenterImpl.kt │ │ │ ├── CateInitPresenterImpl.kt │ │ │ ├── GetCategoryListInterface.kt │ │ │ ├── RefundPresenterImpl.kt │ │ │ ├── SearchPresenterImpl.kt │ │ │ └── ViewInterface.kt │ │ ├── models │ │ │ ├── AutoTaskLogModel.kt │ │ │ ├── BillExtraModel.kt │ │ │ ├── LoanInfoModel.kt │ │ │ ├── QjAssetAccountModel.kt │ │ │ ├── QjBillModel.kt │ │ │ ├── QjBookModel.kt │ │ │ ├── QjCategoryModel.kt │ │ │ ├── QjTagModel.kt │ │ │ └── UserModel.kt │ │ ├── tools │ │ │ ├── QianJiAssetType.kt │ │ │ ├── QianJiBillType.kt │ │ │ ├── QianJiUi.kt │ │ │ └── QianJiUri.kt │ │ └── utils │ │ │ ├── BroadcastUtils.kt │ │ │ └── TimeRecordUtils.kt │ │ ├── sms │ │ ├── SmsHooker.kt │ │ ├── hooks │ │ │ └── SmsIntentHooker.kt │ │ └── utils │ │ │ └── SmsMessageUtils.kt │ │ └── wechat │ │ ├── WechatHooker.kt │ │ ├── hooks │ │ ├── ChatUserHooker.kt │ │ ├── DatabaseHooker.kt │ │ ├── PayToolsHooker.kt │ │ ├── RedPackageHooker.kt │ │ ├── TransferHooker.kt │ │ └── WebViewHooker.kt │ │ └── models │ │ ├── LuckMoneyModel.kt │ │ ├── RemittanceModel.kt │ │ └── WechatUserModel.kt │ └── res │ ├── anim │ ├── fade_in.xml │ └── fade_out.xml │ ├── drawable-night │ ├── bg_pro_gradient_active.xml │ ├── bg_pro_gradient_image.xml │ └── bg_pro_gradient_inactive.xml │ ├── drawable │ ├── alipay.png │ ├── app_qianji.webp │ ├── bg_danger_icon.xml │ ├── bg_layout_tip.xml │ ├── bg_layout_tip_left.xml │ ├── bg_mode_tag.xml │ ├── bg_pro_gradient_active.xml │ ├── bg_pro_gradient_image.xml │ ├── bg_pro_gradient_inactive.xml │ ├── bg_round_default.xml │ ├── bg_success_icon.xml │ ├── bg_three.xml │ ├── bottom_data_selector.xml │ ├── bottom_home_selector.xml │ ├── bottom_order_selector.xml │ ├── bottom_rule_selector.xml │ ├── bottom_select_data.xml │ ├── bottom_select_home.xml │ ├── bottom_select_order.xml │ ├── bottom_select_rule.xml │ ├── bottom_select_setting.xml │ ├── bottom_setting_selector.xml │ ├── bottom_unselect_data.xml │ ├── bottom_unselect_home.xml │ ├── bottom_unselect_order.xml │ ├── bottom_unselect_rule.xml │ ├── bottom_unselect_setting.xml │ ├── circle_background.xml │ ├── currency_label_background.xml │ ├── data_filter.xml │ ├── data_sms.xml │ ├── default_asset.png │ ├── default_book.webp │ ├── default_cate.png │ ├── float_add.xml │ ├── float_minus.xml │ ├── float_money.xml │ ├── float_round.xml │ ├── float_time.xml │ ├── head_1.gif │ ├── head_2.jpg │ ├── head_3.jpg │ ├── home_active_error.xml │ ├── home_active_success.xml │ ├── home_app_assets.xml │ ├── home_app_book.xml │ ├── home_app_book_data.xml │ ├── home_app_category.xml │ ├── home_msg_qq.xml │ ├── home_msg_telegram.xml │ ├── home_rule.xml │ ├── ic_account_balance_wallet.xml │ ├── ic_ai.xml │ ├── ic_apps.xml │ ├── ic_arrow_back.xml │ ├── ic_arrow_drop_down.xml │ ├── ic_arrow_forward_24.xml │ ├── ic_arrow_right.xml │ ├── ic_article.xml │ ├── ic_auto_schedule.xml │ ├── ic_autorenew.xml │ ├── ic_autostart.xml │ ├── ic_backup.xml │ ├── ic_battery.xml │ ├── ic_book.xml │ ├── ic_bug_report.xml │ ├── ic_calendar_month.xml │ ├── ic_calendar_month2.xml │ ├── ic_calendar_view_year.xml │ ├── ic_calendar_week.xml │ ├── ic_cancel.xml │ ├── ic_category.xml │ ├── ic_category_stats.xml │ ├── ic_chat_bubble.xml │ ├── ic_check.xml │ ├── ic_check_circle.xml │ ├── ic_close_themed.xml │ ├── ic_cloud.xml │ ├── ic_code.xml │ ├── ic_compare_arrows.xml │ ├── ic_date_range.xml │ ├── ic_email.xml │ ├── ic_empty.xml │ ├── ic_error.xml │ ├── ic_explore.xml │ ├── ic_history.xml │ ├── ic_info.xml │ ├── ic_info_outline.xml │ ├── ic_key.xml │ ├── ic_label.xml │ ├── ic_link.xml │ ├── ic_lock.xml │ ├── ic_more2.xml │ ├── ic_net_error.xml │ ├── ic_network.xml │ ├── ic_no_sync.xml │ ├── ic_notifications.xml │ ├── ic_ocr.xml │ ├── ic_open_in_new.xml │ ├── ic_overlay.xml │ ├── ic_palette.xml │ ├── ic_payments.xml │ ├── ic_receipt_long.xml │ ├── ic_restore.xml │ ├── ic_save.xml │ ├── ic_science.xml │ ├── ic_screenshot.xml │ ├── ic_sms.xml │ ├── ic_statistic.xml │ ├── ic_storage.xml │ ├── ic_success.xml │ ├── ic_summary.xml │ ├── ic_support.xml │ ├── ic_swap_horiz.xml │ ├── ic_switch.xml │ ├── ic_sync.xml │ ├── ic_sync2.xml │ ├── ic_tag.xml │ ├── ic_theme.xml │ ├── ic_tip.xml │ ├── ic_trend.xml │ ├── ic_trending_down.xml │ ├── ic_trending_up.xml │ ├── ic_usage.xml │ ├── ic_verified.xml │ ├── ic_warning.xml │ ├── icon_arrow_back.xml │ ├── icon_auto.xml │ ├── icon_delete.xml │ ├── icon_edit.xml │ ├── icon_eye.xml │ ├── icon_map.xml │ ├── icon_map_right.xml │ ├── icon_proactive.xml │ ├── icon_question.xml │ ├── icon_restart.xml │ ├── icon_test.xml │ ├── icon_upload.xml │ ├── img_geekbar.xml │ ├── menu_icon_clear.xml │ ├── menu_icon_search.xml │ ├── menu_icon_share.xml │ ├── menu_item_log.xml │ ├── menu_item_more.xml │ ├── menu_item_notice.xml │ ├── navigation_rail_item_background.xml │ ├── play_arrow.xml │ ├── popup_background.xml │ ├── progress_bar_drawable.xml │ ├── progress_bar_rounded.xml │ ├── rail_selected_bg.xml │ ├── ripple_effect.xml │ ├── rounded_all.xml │ ├── rounded_border.xml │ ├── rounded_border3.xml │ ├── rounded_border_.xml │ ├── rounded_border_2.xml │ ├── rounded_border_dashed.xml │ ├── rounded_top.xml │ ├── scanner_svgrepo_com.xml │ ├── setting2_icon_anonymous.xml │ ├── setting2_icon_backup.xml │ ├── setting2_icon_category.xml │ ├── setting2_icon_dark_theme.xml │ ├── setting2_icon_dark_true_theme.xml │ ├── setting2_icon_debug.xml │ ├── setting2_icon_dir.xml │ ├── setting2_icon_from_local.xml │ ├── setting2_icon_language.xml │ ├── setting2_icon_round_theme.xml │ ├── setting2_icon_rule.xml │ ├── setting2_icon_system_theme.xml │ ├── setting2_icon_theme.xml │ ├── setting2_icon_to_local.xml │ ├── setting2_icon_translate.xml │ ├── setting2_icon_update.xml │ ├── setting2_icon_update_channel.xml │ ├── setting2_icon_webdav_download.xml │ ├── setting2_icon_webdav_upload.xml │ ├── setting_duplicated.xml │ ├── setting_icon_ai_map.xml │ ├── setting_icon_auto.xml │ ├── setting_icon_click.xml │ ├── setting_icon_color.xml │ ├── setting_icon_debt.xml │ ├── setting_icon_fee.xml │ ├── setting_icon_long_click.xml │ ├── setting_icon_map.xml │ ├── setting_icon_parent.xml │ ├── setting_icon_reimbursement.xml │ ├── setting_icon_remark.xml │ ├── setting_icon_repeat.xml │ ├── setting_icon_success.xml │ ├── setting_icon_timeout.xml │ ├── setting_landscape_dnd.xml │ ├── shape_circle.xml │ ├── shopping_cart.xml │ ├── status_indicator.xml │ ├── status_running.xml │ ├── status_stopped.xml │ ├── toast_error_bg.xml │ ├── toast_hint_bg.xml │ ├── toast_warn_bg.xml │ ├── wechat.png │ └── xposed_framework_icon.xml │ ├── layout │ ├── about_dialog.xml │ ├── activity_error.xml │ ├── activity_intro.xml │ ├── activity_main.xml │ ├── adapter_app.xml │ ├── adapter_asset_list.xml │ ├── adapter_assets.xml │ ├── adapter_auto_app.xml │ ├── adapter_backup.xml │ ├── adapter_book.xml │ ├── adapter_book_bill.xml │ ├── adapter_category_list.xml │ ├── adapter_category_stats.xml │ ├── adapter_data.xml │ ├── adapter_data_rule.xml │ ├── adapter_log.xml │ ├── adapter_map.xml │ ├── adapter_order.xml │ ├── adapter_order_item.xml │ ├── adapter_replace_preview.xml │ ├── adapter_rule.xml │ ├── adapter_tag_list.xml │ ├── card_book.xml │ ├── card_monthly.xml │ ├── card_status.xml │ ├── component_action_buttons.xml │ ├── component_ai.xml │ ├── component_amount_display.xml │ ├── component_asset.xml │ ├── component_basic_info.xml │ ├── component_book.xml │ ├── component_book_header.xml │ ├── component_category.xml │ ├── component_category_edit.xml │ ├── component_category_icon_more.xml │ ├── component_payment_info.xml │ ├── component_rule_info.xml │ ├── component_tag.xml │ ├── component_transaction_type_selector.xml │ ├── custom_date_time_picker.xml │ ├── custom_navigation_rail_item.xml │ ├── dialog_app.xml │ ├── dialog_assets_map.xml │ ├── dialog_bill_category.xml │ ├── dialog_bill_more.xml │ ├── dialog_bill_select.xml │ ├── dialog_bottom_sheet.xml │ ├── dialog_category_select.xml │ ├── dialog_color_picker.xml │ ├── dialog_data_editor.xml │ ├── dialog_loading.xml │ ├── dialog_map.xml │ ├── dialog_regex_input.xml │ ├── dialog_regex_money.xml │ ├── dialog_replace_preview.xml │ ├── dialog_update.xml │ ├── float_editor_refactored.xml │ ├── float_tip.xml │ ├── float_tip_left.xml │ ├── float_tip_top.xml │ ├── fragment_ai_config.xml │ ├── fragment_ai_summary.xml │ ├── fragment_analysis_detail.xml │ ├── fragment_asset.xml │ ├── fragment_asset_edit.xml │ ├── fragment_bill.xml │ ├── fragment_book.xml │ ├── fragment_book_edit.xml │ ├── fragment_category.xml │ ├── fragment_category_edit.xml │ ├── fragment_category_map.xml │ ├── fragment_category_rule.xml │ ├── fragment_category_rule_edit.xml │ ├── fragment_category_rule_page.xml │ ├── fragment_data_filter.xml │ ├── fragment_intro_page_ai.xml │ ├── fragment_intro_page_app.xml │ ├── fragment_intro_page_feature.xml │ ├── fragment_intro_page_home.xml │ ├── fragment_intro_page_keep.xml │ ├── fragment_intro_page_mode.xml │ ├── fragment_intro_page_permission.xml │ ├── fragment_intro_page_success.xml │ ├── fragment_intro_page_sync.xml │ ├── fragment_log.xml │ ├── fragment_map.xml │ ├── fragment_notice.xml │ ├── fragment_plugin_data.xml │ ├── fragment_plugin_home.xml │ ├── fragment_plugin_rule_list.xml │ ├── fragment_preference_base.xml │ ├── fragment_remark_format.xml │ ├── fragment_rule_data_page.xml │ ├── fragment_rule_edit.xml │ ├── fragment_rule_js_edit.xml │ ├── fragment_rule_manage.xml │ ├── fragment_setting.xml │ ├── fragment_setting_detail.xml │ ├── fragment_statistic.xml │ ├── fragment_tag.xml │ ├── fragment_tag_edit.xml │ ├── icon_view_layout.xml │ ├── item_analysis_task.xml │ ├── item_color.xml │ ├── item_currency_dropdown.xml │ ├── item_whitelist_info.xml │ ├── list_popup_window_item.xml │ ├── menu_item.xml │ ├── ocr_view.xml │ ├── repeat_toast.xml │ ├── setting_item_card.xml │ ├── setting_item_color.xml │ ├── setting_item_input.xml │ ├── setting_item_switch.xml │ ├── setting_item_text.xml │ ├── setting_item_title.xml │ ├── status_page.xml │ ├── toast_error.xml │ ├── toast_info.xml │ ├── toast_warn.xml │ ├── view_expandable_card.xml │ └── view_setting_item.xml │ ├── menu │ ├── analysis_menu.xml │ ├── asset_map_menu.xml │ ├── asset_menu.xml │ ├── bill_menu.xml │ ├── bottom_navigation_menu.xml │ ├── category_map_menu.xml │ ├── category_menu.xml │ ├── data_menu.xml │ ├── home_menu.xml │ ├── log_menu.xml │ ├── menu_rule_js_edit.xml │ ├── notice_menu.xml │ ├── rule_menu.xml │ ├── setting_menu.xml │ └── tag_menu.xml │ ├── mipmap-anydpi-v26 │ ├── ic_launcher.xml │ └── ic_launcher_round.xml │ ├── mipmap-hdpi │ ├── ic_launcher.webp │ ├── ic_launcher_background.webp │ ├── ic_launcher_foreground.webp │ └── ic_launcher_round.webp │ ├── mipmap-mdpi │ ├── ic_launcher.webp │ ├── ic_launcher_background.webp │ ├── ic_launcher_foreground.webp │ └── ic_launcher_round.webp │ ├── mipmap-xhdpi │ ├── ic_launcher.webp │ ├── ic_launcher_background.webp │ ├── ic_launcher_foreground.webp │ └── ic_launcher_round.webp │ ├── mipmap-xxhdpi │ ├── ic_launcher.webp │ ├── ic_launcher_background.webp │ ├── ic_launcher_foreground.webp │ └── ic_launcher_round.webp │ ├── mipmap-xxxhdpi │ ├── ic_launcher.webp │ ├── ic_launcher_background.webp │ ├── ic_launcher_foreground.webp │ └── ic_launcher_round.webp │ ├── navigation │ └── nav_graph.xml │ ├── raw │ ├── assets.json │ ├── category.json │ ├── default_category.json │ └── default_tags.json │ ├── values-night │ ├── colors.xml │ ├── styles.xml │ └── themes.xml │ ├── values-zh │ ├── arrays.xml │ └── strings.xml │ ├── values │ ├── arrays.xml │ ├── attrs.xml │ ├── colors.xml │ ├── dimens.xml │ ├── ids.xml │ ├── integers.xml │ ├── strings.xml │ ├── themes.xml │ ├── themes_custom.xml │ └── themes_overlay.xml │ └── xml │ ├── backup_rules.xml │ ├── data_extraction_rules.xml │ ├── file_paths.xml │ ├── network_security_config.xml │ ├── settings_about.xml │ ├── settings_ai_assistant.xml │ ├── settings_data_management.xml │ ├── settings_interaction.xml │ ├── settings_recording.xml │ ├── settings_system.xml │ └── shortcuts.xml ├── commit-prompt.txt ├── dex ├── .gitignore ├── build.gradle.kts └── src │ └── main │ └── java │ └── net │ └── ankio │ └── dex │ ├── Dex.kt │ ├── DexString.kt │ ├── model │ ├── Clazz.kt │ ├── ClazzField.kt │ └── ClazzMethod.kt │ └── result │ ├── ClazzResult.kt │ └── MethodResult.kt ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── logo ├── android-chrome-192x192.png ├── android-chrome-512x512.png ├── apple-touch-icon.png ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── 前景.png ├── 原图.psd ├── 合并.png └── 背景.png ├── ocr ├── .gitignore ├── build.gradle.kts ├── consumer-rules.pro ├── libs │ └── OcrLibrary-1.3.0-release.aar ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── net │ │ └── ankio │ │ └── ocr │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ └── java │ │ └── net │ │ └── ankio │ │ └── ocr │ │ └── OcrProcessor.kt │ └── test │ └── java │ └── net │ └── ankio │ └── ocr │ └── ExampleUnitTest.kt ├── server ├── .gitignore ├── build.gradle.kts ├── consumer-rules.pro ├── proguard-rules.pro └── src │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── org │ │ │ └── ezbook │ │ │ └── server │ │ │ ├── README.md │ │ │ ├── Server.kt │ │ │ ├── ai │ │ │ ├── AiManager.kt │ │ │ ├── providers │ │ │ │ ├── BaseAIProvider.kt │ │ │ │ ├── BaseOpenAIProvider.kt │ │ │ │ ├── BigModelProvider.kt │ │ │ │ ├── ChatGPTProvider.kt │ │ │ │ ├── DeepSeekProvider.kt │ │ │ │ ├── GeminiProvider.kt │ │ │ │ ├── KimiProvider.kt │ │ │ │ ├── OpenRouterProvider.kt │ │ │ │ ├── QWenProvider.kt │ │ │ │ └── SiliconFlowProvider.kt │ │ │ └── tools │ │ │ │ ├── AssetTool.kt │ │ │ │ ├── BillTool.kt │ │ │ │ └── CategoryTool.kt │ │ │ ├── constant │ │ │ ├── AnalysisTaskStatus.kt │ │ │ ├── AssetsType.kt │ │ │ ├── BillAction.kt │ │ │ ├── BillState.kt │ │ │ ├── BillType.kt │ │ │ ├── Currency.kt │ │ │ ├── DataType.kt │ │ │ ├── DefaultData.kt │ │ │ ├── LogLevel.kt │ │ │ └── Setting.kt │ │ │ ├── db │ │ │ ├── AppDatabase.kt │ │ │ ├── Db.kt │ │ │ ├── README.md │ │ │ ├── dao │ │ │ │ ├── AnalysisTaskDao.kt │ │ │ │ ├── AppDataDao.kt │ │ │ │ ├── AssetMapDao.kt │ │ │ │ ├── AssetsDao.kt │ │ │ │ ├── BillInfoDao.kt │ │ │ │ ├── BookBillDao.kt │ │ │ │ ├── BookNameDao.kt │ │ │ │ ├── CategoryDao.kt │ │ │ │ ├── CategoryMapDao.kt │ │ │ │ ├── CategoryRuleDao.kt │ │ │ │ ├── LogDao.kt │ │ │ │ ├── RuleDao.kt │ │ │ │ ├── SettingDao.kt │ │ │ │ └── TagDao.kt │ │ │ └── model │ │ │ │ ├── AnalysisTaskModel.kt │ │ │ │ ├── AppDataModel.kt │ │ │ │ ├── AssetsMapModel.kt │ │ │ │ ├── AssetsModel.kt │ │ │ │ ├── BillInfoModel.kt │ │ │ │ ├── BillSummaryModel.kt │ │ │ │ ├── BookBillModel.kt │ │ │ │ ├── BookNameModel.kt │ │ │ │ ├── CategoryAggregateRow.kt │ │ │ │ ├── CategoryMapModel.kt │ │ │ │ ├── CategoryModel.kt │ │ │ │ ├── CategoryRuleModel.kt │ │ │ │ ├── CategoryStatsModel.kt │ │ │ │ ├── LogModel.kt │ │ │ │ ├── RuleModel.kt │ │ │ │ ├── SettingModel.kt │ │ │ │ ├── ShopStatsModel.kt │ │ │ │ ├── TagModel.kt │ │ │ │ └── TrendRowModel.kt │ │ │ ├── engine │ │ │ ├── JsExecutor.kt │ │ │ └── RuleGenerator.kt │ │ │ ├── intent │ │ │ ├── BaseIntent.kt │ │ │ ├── BillInfoIntent.kt │ │ │ ├── IntentType.kt │ │ │ └── OCRIntent.kt │ │ │ ├── models │ │ │ ├── BillResultModel.kt │ │ │ ├── ResultModel.kt │ │ │ └── StatsModels.kt │ │ │ ├── server │ │ │ ├── AiApiRoutes.kt │ │ │ ├── AnalysisTaskRoutes.kt │ │ │ ├── AssetsMapRoutes.kt │ │ │ ├── AssetsRoutes.kt │ │ │ ├── BaseRoutes.kt │ │ │ ├── BillRoutes.kt │ │ │ ├── BookRoutes.kt │ │ │ ├── CategoryMapRoutes.kt │ │ │ ├── CategoryRoutes.kt │ │ │ ├── CategoryRuleRoutes.kt │ │ │ ├── DataRoutes.kt │ │ │ ├── DatabaseRoutes.kt │ │ │ ├── JsRoutes.kt │ │ │ ├── LogRoutes.kt │ │ │ ├── README.md │ │ │ ├── RuleRoutes.kt │ │ │ ├── ServerApplication.kt │ │ │ ├── SettingRoutes.kt │ │ │ └── TagRoutes.kt │ │ │ └── tools │ │ │ ├── AssetsMap.kt │ │ │ ├── BaseLogger.kt │ │ │ ├── BillManager.kt │ │ │ ├── BillMerger.kt │ │ │ ├── BillService.kt │ │ │ ├── CategoryProcessor.kt │ │ │ ├── CoroutinesUtils.kt │ │ │ ├── DateUtils.kt │ │ │ ├── DuplicateDetector.kt │ │ │ ├── ILogger.kt │ │ │ ├── JsonExtensions.kt │ │ │ ├── MD5HashTable.kt │ │ │ ├── MemoryCache.kt │ │ │ ├── ServerLog.kt │ │ │ ├── SettingUtils.kt │ │ │ ├── StatisticsService.kt │ │ │ ├── SummaryService.kt │ │ │ └── TransferRecognizer.kt │ └── res │ │ ├── values-en │ │ └── strings.xml │ │ └── values │ │ └── strings.xml │ └── test │ ├── java │ └── org │ │ └── ezbook │ │ └── server │ │ └── test │ │ └── ConcurrentBillTest.kt │ └── resources │ ├── test_data_didi.json │ ├── test_data_meituan.json │ └── test_data_transfer.json ├── settings.gradle.kts └── shell ├── .gitignore ├── build.gradle.kts ├── consumer-rules.pro ├── proguard-rules.pro └── src ├── androidTest └── java │ └── net │ └── ankio │ └── shell │ └── ExampleInstrumentedTest.kt ├── main ├── AndroidManifest.xml ├── aidl │ └── net │ │ └── ankio │ │ └── shell │ │ └── IUserService.aidl └── java │ └── net │ └── ankio │ └── shell │ ├── RootShell.kt │ ├── Shell.kt │ ├── ShizukuShell.kt │ └── shizuku │ └── UserService.kt └── test └── java └── net └── ankio └── shell └── ExampleUnitTest.kt /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/function_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/.github/ISSUE_TEMPLATE/function_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/.github/ISSUE_TEMPLATE/question_report.yml -------------------------------------------------------------------------------- /.github/workflows/beta.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/.github/workflows/beta.yml -------------------------------------------------------------------------------- /.github/workflows/canary.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/.github/workflows/canary.yml -------------------------------------------------------------------------------- /.github/workflows/configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/.github/workflows/configuration.json -------------------------------------------------------------------------------- /.github/workflows/key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/.github/workflows/key -------------------------------------------------------------------------------- /.github/workflows/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/.github/workflows/main.py -------------------------------------------------------------------------------- /.github/workflows/stable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/.github/workflows/stable.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | AutoAccounting -------------------------------------------------------------------------------- /.idea/androidTestResultsUserPreferences.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/.idea/androidTestResultsUserPreferences.xml -------------------------------------------------------------------------------- /.idea/appInsightsSettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/.idea/appInsightsSettings.xml -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/copyright/Ankio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/.idea/copyright/Ankio.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/deploymentTargetDropDown.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/.idea/deploymentTargetDropDown.xml -------------------------------------------------------------------------------- /.idea/deploymentTargetSelector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/.idea/deploymentTargetSelector.xml -------------------------------------------------------------------------------- /.idea/detekt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/.idea/detekt.xml -------------------------------------------------------------------------------- /.idea/deviceManager.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/.idea/deviceManager.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/.idea/kotlinc.xml -------------------------------------------------------------------------------- /.idea/ktlint-plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/.idea/ktlint-plugin.xml -------------------------------------------------------------------------------- /.idea/migrations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/.idea/migrations.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/SECURITY.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/build.gradle.kts -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/assets/textmate/abyss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/assets/textmate/abyss.json -------------------------------------------------------------------------------- /app/src/main/assets/textmate/darcula.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/assets/textmate/darcula.json -------------------------------------------------------------------------------- /app/src/main/assets/textmate/languages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/assets/textmate/languages.json -------------------------------------------------------------------------------- /app/src/main/assets/textmate/quietlight.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/assets/textmate/quietlight.json -------------------------------------------------------------------------------- /app/src/main/assets/textmate/solarized_dark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/assets/textmate/solarized_dark.json -------------------------------------------------------------------------------- /app/src/main/assets/xposed_init: -------------------------------------------------------------------------------- 1 | net.ankio.auto.xposed.core.App -------------------------------------------------------------------------------- /app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/App.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/App.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/adapter/AppAdapterManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/adapter/AppAdapterManager.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/adapter/AutoAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/adapter/AutoAdapter.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/adapter/IAppAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/adapter/IAppAdapter.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/adapter/QianJiAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/adapter/QianJiAdapter.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/adapter/XiaoXinAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/adapter/XiaoXinAdapter.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/adapter/YiMuAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/adapter/YiMuAdapter.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/adapter/YiYuAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/adapter/YiYuAdapter.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/ai/JsTool.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/ai/JsTool.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/constant/BookFeatures.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/constant/BookFeatures.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/constant/FloatEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/constant/FloatEvent.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/constant/WorkMode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/constant/WorkMode.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/exceptions/BillException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/exceptions/BillException.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/http/LicenseNetwork.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/http/LicenseNetwork.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/http/LocalNetwork.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/http/LocalNetwork.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/http/Pastebin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/http/Pastebin.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/http/RequestsUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/http/RequestsUtils.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/http/api/AiAPI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/http/api/AiAPI.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/http/api/AnalysisTaskAPI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/http/api/AnalysisTaskAPI.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/http/api/AppDataAPI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/http/api/AppDataAPI.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/http/api/AssetsAPI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/http/api/AssetsAPI.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/http/api/AssetsMapAPI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/http/api/AssetsMapAPI.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/http/api/BillAPI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/http/api/BillAPI.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/http/api/BookBillAPI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/http/api/BookBillAPI.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/http/api/BookNameAPI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/http/api/BookNameAPI.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/http/api/CategoryAPI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/http/api/CategoryAPI.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/http/api/CategoryMapAPI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/http/api/CategoryMapAPI.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/http/api/CategoryRuleAPI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/http/api/CategoryRuleAPI.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/http/api/DatabaseAPI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/http/api/DatabaseAPI.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/http/api/HomeAPI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/http/api/HomeAPI.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/http/api/JsAPI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/http/api/JsAPI.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/http/api/LogAPI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/http/api/LogAPI.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/http/api/RuleManageAPI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/http/api/RuleManageAPI.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/http/api/SettingAPI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/http/api/SettingAPI.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/http/api/TagAPI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/http/api/TagAPI.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/http/license/ActivateAPI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/http/license/ActivateAPI.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/http/license/AppAPI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/http/license/AppAPI.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/http/license/RuleAPI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/http/license/RuleAPI.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/service/BackgroundHttpService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/service/BackgroundHttpService.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/service/CoreService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/service/CoreService.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/service/NotificationService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/service/NotificationService.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/service/OcrService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/service/OcrService.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/service/OcrTileService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/service/OcrTileService.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/service/OverlayService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/service/OverlayService.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/service/SmsReceiver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/service/SmsReceiver.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/service/api/ICoreService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/service/api/ICoreService.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/service/api/IService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/service/api/IService.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/service/ocr/FlipDetector.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/service/ocr/FlipDetector.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/service/ocr/OcrViews.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/service/ocr/OcrViews.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/service/overlay/FloatingTip.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/service/overlay/FloatingTip.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/service/overlay/RepeatToast.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/service/overlay/RepeatToast.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/storage/CacheManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/storage/CacheManager.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/storage/Constants.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/storage/Constants.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/storage/Logger.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/storage/Logger.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/storage/ZipUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/storage/ZipUtils.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/storage/backup/BackupManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/storage/backup/BackupManager.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/storage/backup/BackupResult.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/storage/backup/BackupResult.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/storage/backup/RestoreManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/storage/backup/RestoreManager.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/storage/backup/WebDAVManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/storage/backup/WebDAVManager.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/ui/activity/ErrorActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/ui/activity/ErrorActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/ui/activity/HomeActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/ui/activity/HomeActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/ui/activity/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/ui/activity/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/ui/adapter/AppAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/ui/adapter/AppAdapter.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/ui/adapter/AppDataAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/ui/adapter/AppDataAdapter.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/ui/adapter/AppListAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/ui/adapter/AppListAdapter.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/ui/adapter/AssetsMapAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/ui/adapter/AssetsMapAdapter.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/ui/adapter/BillAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/ui/adapter/BillAdapter.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/ui/adapter/BillItemAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/ui/adapter/BillItemAdapter.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/ui/adapter/CategoryMapAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/ui/adapter/CategoryMapAdapter.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/ui/adapter/DataRuleAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/ui/adapter/DataRuleAdapter.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/ui/adapter/IntroPagerAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/ui/adapter/IntroPagerAdapter.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/ui/adapter/LogAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/ui/adapter/LogAdapter.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/ui/adapter/TagSelectorAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/ui/adapter/TagSelectorAdapter.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/ui/api/BaseActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/ui/api/BaseActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/ui/api/BaseAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/ui/api/BaseAdapter.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/ui/api/BaseComponent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/ui/api/BaseComponent.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/ui/api/BaseFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/ui/api/BaseFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/ui/api/BasePageFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/ui/api/BasePageFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/ui/api/BasePreferenceFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/ui/api/BasePreferenceFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/ui/api/BaseSheetDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/ui/api/BaseSheetDialog.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/ui/api/BaseViewHolder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/ui/api/BaseViewHolder.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/ui/components/FlowElement.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/ui/components/FlowElement.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/ui/components/IconTileView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/ui/components/IconTileView.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/ui/components/IconView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/ui/components/IconView.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/ui/components/LineChartView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/ui/components/LineChartView.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/ui/components/SettingItemView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/ui/components/SettingItemView.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/ui/components/StatusPage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/ui/components/StatusPage.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/ui/dialog/AppDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/ui/dialog/AppDialog.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/ui/dialog/AssetsMapDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/ui/dialog/AssetsMapDialog.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/ui/dialog/BillEditorDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/ui/dialog/BillEditorDialog.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/ui/dialog/BillMoreDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/ui/dialog/BillMoreDialog.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/ui/dialog/BillSelectorDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/ui/dialog/BillSelectorDialog.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/ui/dialog/BookSelectorDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/ui/dialog/BookSelectorDialog.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/ui/dialog/ColorPickerDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/ui/dialog/ColorPickerDialog.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/ui/dialog/DataEditorDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/ui/dialog/DataEditorDialog.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/ui/dialog/EditorDialogBuilder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/ui/dialog/EditorDialogBuilder.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/ui/dialog/UpdateDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/ui/dialog/UpdateDialog.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/ui/fragment/AiSummaryFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/ui/fragment/AiSummaryFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/ui/fragment/AssetEditFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/ui/fragment/AssetEditFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/ui/fragment/AssetFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/ui/fragment/AssetFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/ui/fragment/AssetMapFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/ui/fragment/AssetMapFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/ui/fragment/BillFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/ui/fragment/BillFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/ui/fragment/BookEditFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/ui/fragment/BookEditFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/ui/fragment/BookFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/ui/fragment/BookFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/ui/fragment/CategoryFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/ui/fragment/CategoryFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/ui/fragment/DataFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/ui/fragment/DataFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/ui/fragment/HomeFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/ui/fragment/HomeFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/ui/fragment/LogFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/ui/fragment/LogFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/ui/fragment/RuleEditFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/ui/fragment/RuleEditFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/ui/fragment/SettingFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/ui/fragment/SettingFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/ui/fragment/StatisticFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/ui/fragment/StatisticFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/ui/fragment/TagEditFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/ui/fragment/TagEditFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/ui/fragment/TagFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/ui/fragment/TagFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/ui/model/ReplaceItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/ui/model/ReplaceItem.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/ui/models/AppInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/ui/models/AppInfo.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/ui/models/OrderGroup.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/ui/models/OrderGroup.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/ui/models/RailMenuItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/ui/models/RailMenuItem.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/ui/models/ToolbarMenuItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/ui/models/ToolbarMenuItem.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/ui/theme/DynamicColors.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/ui/theme/DynamicColors.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/ui/utils/AppUpdateHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/ui/utils/AppUpdateHelper.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/ui/utils/AppUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/ui/utils/AppUtils.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/ui/utils/AssetsUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/ui/utils/AssetsUtils.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/ui/utils/CategoryUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/ui/utils/CategoryUtils.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/ui/utils/Desensitizer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/ui/utils/Desensitizer.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/ui/utils/DisplayUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/ui/utils/DisplayUtils.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/ui/utils/ImageUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/ui/utils/ImageUtils.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/ui/utils/LoadingUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/ui/utils/LoadingUtils.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/ui/utils/PaletteManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/ui/utils/PaletteManager.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/ui/utils/RuleUpdateHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/ui/utils/RuleUpdateHelper.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/ui/utils/TagUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/ui/utils/TagUtils.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/ui/utils/ToastUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/ui/utils/ToastUtils.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/ui/utils/ViewUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/ui/utils/ViewUtils.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/ui/vm/IntroSharedVm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/ui/vm/IntroSharedVm.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/utils/AppUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/utils/AppUtils.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/utils/BillTool.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/utils/BillTool.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/utils/CoroutineUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/utils/CoroutineUtils.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/utils/CustomTabsHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/utils/CustomTabsHelper.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/utils/DateUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/utils/DateUtils.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/utils/DebugUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/utils/DebugUtils.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/utils/ExceptionHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/utils/ExceptionHandler.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/utils/LanguageUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/utils/LanguageUtils.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/utils/PackageManagerCompat.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/utils/PackageManagerCompat.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/utils/PrefManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/utils/PrefManager.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/utils/SystemUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/utils/SystemUtils.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/utils/ThemeUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/utils/ThemeUtils.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/utils/Throttle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/utils/Throttle.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/utils/VersionUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/utils/VersionUtils.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/xposed/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/xposed/README.md -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/xposed/XposedModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/xposed/XposedModule.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/xposed/core/App.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/xposed/core/App.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/xposed/core/README.md: -------------------------------------------------------------------------------- 1 | 本目录为Xposed Api核心的抽象实现,添加了一些常用的工具类,方便开发者使用。 -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/xposed/core/api/HookerClazz.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/xposed/core/api/HookerClazz.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/xposed/core/api/PartHooker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/xposed/core/api/PartHooker.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/xposed/core/hook/Hooker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/xposed/core/hook/Hooker.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/xposed/core/logger/Logger.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/xposed/core/logger/Logger.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/xposed/core/ui/ColorUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/xposed/core/ui/ColorUtils.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/xposed/core/ui/ViewUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/xposed/core/ui/ViewUtils.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/xposed/core/utils/AppRuntime.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/xposed/core/utils/AppRuntime.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/xposed/core/utils/DataUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/xposed/core/utils/DataUtils.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/xposed/hooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/xposed/hooks/README.md -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/xposed/hooks/auto/AutoHooker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/xposed/hooks/auto/AutoHooker.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/xposed/hooks/common/JsEngine.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/xposed/hooks/common/JsEngine.kt -------------------------------------------------------------------------------- /app/src/main/java/net/ankio/auto/xposed/hooks/sms/SmsHooker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/java/net/ankio/auto/xposed/hooks/sms/SmsHooker.kt -------------------------------------------------------------------------------- /app/src/main/res/anim/fade_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/anim/fade_in.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/fade_out.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/anim/fade_out.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-night/bg_pro_gradient_active.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable-night/bg_pro_gradient_active.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-night/bg_pro_gradient_image.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable-night/bg_pro_gradient_image.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-night/bg_pro_gradient_inactive.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable-night/bg_pro_gradient_inactive.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/alipay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/alipay.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/app_qianji.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/app_qianji.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/bg_danger_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/bg_danger_icon.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/bg_layout_tip.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/bg_layout_tip.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/bg_layout_tip_left.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/bg_layout_tip_left.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/bg_mode_tag.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/bg_mode_tag.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/bg_pro_gradient_active.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/bg_pro_gradient_active.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/bg_pro_gradient_image.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/bg_pro_gradient_image.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/bg_pro_gradient_inactive.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/bg_pro_gradient_inactive.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/bg_round_default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/bg_round_default.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/bg_success_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/bg_success_icon.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/bg_three.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/bg_three.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/bottom_data_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/bottom_data_selector.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/bottom_home_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/bottom_home_selector.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/bottom_order_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/bottom_order_selector.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/bottom_rule_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/bottom_rule_selector.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/bottom_select_data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/bottom_select_data.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/bottom_select_home.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/bottom_select_home.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/bottom_select_order.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/bottom_select_order.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/bottom_select_rule.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/bottom_select_rule.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/bottom_select_setting.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/bottom_select_setting.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/bottom_setting_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/bottom_setting_selector.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/bottom_unselect_data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/bottom_unselect_data.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/bottom_unselect_home.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/bottom_unselect_home.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/bottom_unselect_order.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/bottom_unselect_order.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/bottom_unselect_rule.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/bottom_unselect_rule.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/bottom_unselect_setting.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/bottom_unselect_setting.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/circle_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/circle_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/currency_label_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/currency_label_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/data_filter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/data_filter.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/data_sms.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/data_sms.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/default_asset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/default_asset.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/default_book.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/default_book.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/default_cate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/default_cate.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/float_add.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/float_add.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/float_minus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/float_minus.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/float_money.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/float_money.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/float_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/float_round.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/float_time.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/float_time.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/head_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/head_1.gif -------------------------------------------------------------------------------- /app/src/main/res/drawable/head_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/head_2.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/head_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/head_3.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/home_active_error.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/home_active_error.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/home_active_success.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/home_active_success.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/home_app_assets.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/home_app_assets.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/home_app_book.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/home_app_book.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/home_app_book_data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/home_app_book_data.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/home_app_category.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/home_app_category.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/home_msg_qq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/home_msg_qq.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/home_msg_telegram.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/home_msg_telegram.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/home_rule.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/home_rule.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_account_balance_wallet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/ic_account_balance_wallet.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_ai.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/ic_ai.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_apps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/ic_apps.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_arrow_back.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/ic_arrow_back.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_arrow_drop_down.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/ic_arrow_drop_down.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_arrow_forward_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/ic_arrow_forward_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_arrow_right.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/ic_arrow_right.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_article.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/ic_article.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_auto_schedule.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/ic_auto_schedule.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_autorenew.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/ic_autorenew.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_autostart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/ic_autostart.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_backup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/ic_backup.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_battery.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/ic_battery.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_book.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/ic_book.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_bug_report.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/ic_bug_report.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_calendar_month.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/ic_calendar_month.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_calendar_month2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/ic_calendar_month2.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_calendar_view_year.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/ic_calendar_view_year.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_calendar_week.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/ic_calendar_week.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_cancel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/ic_cancel.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_category.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/ic_category.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_category_stats.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/ic_category_stats.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_chat_bubble.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/ic_chat_bubble.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_check.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/ic_check.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_check_circle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/ic_check_circle.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_close_themed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/ic_close_themed.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_cloud.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/ic_cloud.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_code.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/ic_code.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_compare_arrows.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/ic_compare_arrows.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_date_range.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/ic_date_range.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_email.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/ic_email.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_empty.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/ic_empty.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_error.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/ic_error.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_explore.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/ic_explore.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_history.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/ic_history.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/ic_info.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_info_outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/ic_info_outline.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_key.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/ic_key.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_label.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/ic_label.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_link.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/ic_link.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_lock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/ic_lock.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_more2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/ic_more2.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_net_error.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/ic_net_error.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_network.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/ic_network.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_no_sync.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/ic_no_sync.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_notifications.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/ic_notifications.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_ocr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/ic_ocr.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_open_in_new.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/ic_open_in_new.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_overlay.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/ic_overlay.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_palette.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/ic_palette.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_payments.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/ic_payments.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_receipt_long.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/ic_receipt_long.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_restore.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/ic_restore.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_save.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/ic_save.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_science.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/ic_science.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_screenshot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/ic_screenshot.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_sms.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/ic_sms.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_statistic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/ic_statistic.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_storage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/ic_storage.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_success.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/ic_success.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_summary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/ic_summary.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_support.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/ic_support.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_swap_horiz.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/ic_swap_horiz.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_switch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/ic_switch.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_sync.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/ic_sync.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_sync2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/ic_sync2.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_tag.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/ic_tag.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/ic_theme.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_tip.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/ic_tip.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_trend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/ic_trend.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_trending_down.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/ic_trending_down.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_trending_up.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/ic_trending_up.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_usage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/ic_usage.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_verified.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/ic_verified.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_warning.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/ic_warning.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/icon_arrow_back.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/icon_arrow_back.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/icon_auto.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/icon_auto.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/icon_delete.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/icon_delete.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/icon_edit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/icon_edit.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/icon_eye.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/icon_eye.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/icon_map.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/icon_map.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/icon_map_right.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/icon_map_right.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/icon_proactive.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/icon_proactive.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/icon_question.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/icon_question.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/icon_restart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/icon_restart.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/icon_test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/icon_test.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/icon_upload.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/icon_upload.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/img_geekbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/img_geekbar.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/menu_icon_clear.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/menu_icon_clear.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/menu_icon_search.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/menu_icon_search.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/menu_icon_share.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/menu_icon_share.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/menu_item_log.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/menu_item_log.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/menu_item_more.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/menu_item_more.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/menu_item_notice.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/menu_item_notice.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/navigation_rail_item_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/navigation_rail_item_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/play_arrow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/play_arrow.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/popup_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/popup_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/progress_bar_drawable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/progress_bar_drawable.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/progress_bar_rounded.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/progress_bar_rounded.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/rail_selected_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/rail_selected_bg.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ripple_effect.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/ripple_effect.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/rounded_all.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/rounded_all.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/rounded_border.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/rounded_border.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/rounded_border3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/rounded_border3.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/rounded_border_.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/rounded_border_.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/rounded_border_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/rounded_border_2.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/rounded_border_dashed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/rounded_border_dashed.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/rounded_top.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/rounded_top.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/scanner_svgrepo_com.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/scanner_svgrepo_com.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/setting2_icon_anonymous.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/setting2_icon_anonymous.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/setting2_icon_backup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/setting2_icon_backup.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/setting2_icon_category.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/setting2_icon_category.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/setting2_icon_dark_theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/setting2_icon_dark_theme.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/setting2_icon_dark_true_theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/setting2_icon_dark_true_theme.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/setting2_icon_debug.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/setting2_icon_debug.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/setting2_icon_dir.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/setting2_icon_dir.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/setting2_icon_from_local.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/setting2_icon_from_local.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/setting2_icon_language.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/setting2_icon_language.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/setting2_icon_round_theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/setting2_icon_round_theme.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/setting2_icon_rule.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/setting2_icon_rule.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/setting2_icon_system_theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/setting2_icon_system_theme.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/setting2_icon_theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/setting2_icon_theme.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/setting2_icon_to_local.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/setting2_icon_to_local.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/setting2_icon_translate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/setting2_icon_translate.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/setting2_icon_update.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/setting2_icon_update.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/setting2_icon_update_channel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/setting2_icon_update_channel.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/setting2_icon_webdav_download.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/setting2_icon_webdav_download.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/setting2_icon_webdav_upload.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/setting2_icon_webdav_upload.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/setting_duplicated.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/setting_duplicated.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/setting_icon_ai_map.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/setting_icon_ai_map.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/setting_icon_auto.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/setting_icon_auto.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/setting_icon_click.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/setting_icon_click.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/setting_icon_color.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/setting_icon_color.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/setting_icon_debt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/setting_icon_debt.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/setting_icon_fee.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/setting_icon_fee.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/setting_icon_long_click.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/setting_icon_long_click.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/setting_icon_map.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/setting_icon_map.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/setting_icon_parent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/setting_icon_parent.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/setting_icon_reimbursement.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/setting_icon_reimbursement.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/setting_icon_remark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/setting_icon_remark.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/setting_icon_repeat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/setting_icon_repeat.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/setting_icon_success.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/setting_icon_success.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/setting_icon_timeout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/setting_icon_timeout.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/setting_landscape_dnd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/setting_landscape_dnd.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/shape_circle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/shape_circle.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/shopping_cart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/shopping_cart.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/status_indicator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/status_indicator.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/status_running.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/status_running.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/status_stopped.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/status_stopped.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/toast_error_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/toast_error_bg.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/toast_hint_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/toast_hint_bg.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/toast_warn_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/toast_warn_bg.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/wechat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/wechat.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/xposed_framework_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/drawable/xposed_framework_icon.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/about_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/about_dialog.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_error.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/activity_error.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_intro.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/activity_intro.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/adapter_app.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/adapter_app.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/adapter_asset_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/adapter_asset_list.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/adapter_assets.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/adapter_assets.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/adapter_auto_app.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/adapter_auto_app.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/adapter_backup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/adapter_backup.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/adapter_book.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/adapter_book.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/adapter_book_bill.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/adapter_book_bill.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/adapter_category_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/adapter_category_list.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/adapter_category_stats.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/adapter_category_stats.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/adapter_data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/adapter_data.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/adapter_data_rule.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/adapter_data_rule.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/adapter_log.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/adapter_log.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/adapter_map.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/adapter_map.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/adapter_order.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/adapter_order.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/adapter_order_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/adapter_order_item.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/adapter_replace_preview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/adapter_replace_preview.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/adapter_rule.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/adapter_rule.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/adapter_tag_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/adapter_tag_list.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/card_book.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/card_book.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/card_monthly.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/card_monthly.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/card_status.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/card_status.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/component_action_buttons.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/component_action_buttons.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/component_ai.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/component_ai.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/component_amount_display.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/component_amount_display.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/component_asset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/component_asset.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/component_basic_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/component_basic_info.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/component_book.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/component_book.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/component_book_header.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/component_book_header.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/component_category.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/component_category.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/component_category_edit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/component_category_edit.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/component_category_icon_more.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/component_category_icon_more.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/component_payment_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/component_payment_info.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/component_rule_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/component_rule_info.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/component_tag.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/component_tag.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/component_transaction_type_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/component_transaction_type_selector.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/custom_date_time_picker.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/custom_date_time_picker.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/custom_navigation_rail_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/custom_navigation_rail_item.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/dialog_app.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/dialog_app.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/dialog_assets_map.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/dialog_assets_map.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/dialog_bill_category.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/dialog_bill_category.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/dialog_bill_more.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/dialog_bill_more.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/dialog_bill_select.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/dialog_bill_select.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/dialog_bottom_sheet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/dialog_bottom_sheet.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/dialog_category_select.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/dialog_category_select.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/dialog_color_picker.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/dialog_color_picker.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/dialog_data_editor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/dialog_data_editor.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/dialog_loading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/dialog_loading.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/dialog_map.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/dialog_map.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/dialog_regex_input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/dialog_regex_input.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/dialog_regex_money.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/dialog_regex_money.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/dialog_replace_preview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/dialog_replace_preview.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/dialog_update.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/dialog_update.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/float_editor_refactored.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/float_editor_refactored.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/float_tip.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/float_tip.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/float_tip_left.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/float_tip_left.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/float_tip_top.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/float_tip_top.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_ai_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/fragment_ai_config.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_ai_summary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/fragment_ai_summary.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_analysis_detail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/fragment_analysis_detail.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_asset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/fragment_asset.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_asset_edit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/fragment_asset_edit.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_bill.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/fragment_bill.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_book.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/fragment_book.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_book_edit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/fragment_book_edit.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_category.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/fragment_category.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_category_edit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/fragment_category_edit.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_category_map.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/fragment_category_map.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_category_rule.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/fragment_category_rule.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_category_rule_edit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/fragment_category_rule_edit.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_category_rule_page.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/fragment_category_rule_page.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_data_filter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/fragment_data_filter.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_intro_page_ai.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/fragment_intro_page_ai.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_intro_page_app.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/fragment_intro_page_app.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_intro_page_feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/fragment_intro_page_feature.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_intro_page_home.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/fragment_intro_page_home.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_intro_page_keep.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/fragment_intro_page_keep.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_intro_page_mode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/fragment_intro_page_mode.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_intro_page_permission.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/fragment_intro_page_permission.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_intro_page_success.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/fragment_intro_page_success.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_intro_page_sync.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/fragment_intro_page_sync.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_log.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/fragment_log.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_map.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/fragment_map.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_notice.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/fragment_notice.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_plugin_data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/fragment_plugin_data.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_plugin_home.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/fragment_plugin_home.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_plugin_rule_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/fragment_plugin_rule_list.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_preference_base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/fragment_preference_base.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_remark_format.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/fragment_remark_format.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_rule_data_page.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/fragment_rule_data_page.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_rule_edit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/fragment_rule_edit.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_rule_js_edit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/fragment_rule_js_edit.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_rule_manage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/fragment_rule_manage.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_setting.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/fragment_setting.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_setting_detail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/fragment_setting_detail.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_statistic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/fragment_statistic.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_tag.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/fragment_tag.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_tag_edit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/fragment_tag_edit.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/icon_view_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/icon_view_layout.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/item_analysis_task.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/item_analysis_task.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/item_color.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/item_color.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/item_currency_dropdown.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/item_currency_dropdown.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/item_whitelist_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/item_whitelist_info.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/list_popup_window_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/list_popup_window_item.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/menu_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/menu_item.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/ocr_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/ocr_view.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/repeat_toast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/repeat_toast.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/setting_item_card.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/setting_item_card.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/setting_item_color.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/setting_item_color.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/setting_item_input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/setting_item_input.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/setting_item_switch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/setting_item_switch.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/setting_item_text.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/setting_item_text.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/setting_item_title.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/setting_item_title.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/status_page.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/status_page.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/toast_error.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/toast_error.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/toast_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/toast_info.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/toast_warn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/toast_warn.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/view_expandable_card.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/view_expandable_card.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/view_setting_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/layout/view_setting_item.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/analysis_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/menu/analysis_menu.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/asset_map_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/menu/asset_map_menu.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/asset_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/menu/asset_menu.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/bill_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/menu/bill_menu.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/bottom_navigation_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/menu/bottom_navigation_menu.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/category_map_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/menu/category_map_menu.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/category_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/menu/category_menu.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/data_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/menu/data_menu.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/home_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/menu/home_menu.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/log_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/menu/log_menu.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/menu_rule_js_edit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/menu/menu_rule_js_edit.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/notice_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/menu/notice_menu.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/rule_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/menu/rule_menu.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/setting_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/menu/setting_menu.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/tag_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/menu/tag_menu.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_background.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_background.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_background.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_background.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_background.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_background.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_background.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_background.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_background.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_background.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/navigation/nav_graph.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/navigation/nav_graph.xml -------------------------------------------------------------------------------- /app/src/main/res/raw/assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/raw/assets.json -------------------------------------------------------------------------------- /app/src/main/res/raw/category.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/raw/category.json -------------------------------------------------------------------------------- /app/src/main/res/raw/default_category.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/raw/default_category.json -------------------------------------------------------------------------------- /app/src/main/res/raw/default_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/raw/default_tags.json -------------------------------------------------------------------------------- /app/src/main/res/values-night/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/values-night/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/values-zh/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/values-zh/arrays.xml -------------------------------------------------------------------------------- /app/src/main/res/values-zh/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/values-zh/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/values/arrays.xml -------------------------------------------------------------------------------- /app/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/ids.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/values/ids.xml -------------------------------------------------------------------------------- /app/src/main/res/values/integers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/values/integers.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/values/themes_custom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/values/themes_custom.xml -------------------------------------------------------------------------------- /app/src/main/res/values/themes_overlay.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/values/themes_overlay.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/file_paths.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/xml/file_paths.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/network_security_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/xml/network_security_config.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/settings_about.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/xml/settings_about.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/settings_ai_assistant.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/xml/settings_ai_assistant.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/settings_data_management.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/xml/settings_data_management.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/settings_interaction.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/xml/settings_interaction.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/settings_recording.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/xml/settings_recording.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/settings_system.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/xml/settings_system.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/shortcuts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/app/src/main/res/xml/shortcuts.xml -------------------------------------------------------------------------------- /commit-prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/commit-prompt.txt -------------------------------------------------------------------------------- /dex/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /dex/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/dex/build.gradle.kts -------------------------------------------------------------------------------- /dex/src/main/java/net/ankio/dex/Dex.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/dex/src/main/java/net/ankio/dex/Dex.kt -------------------------------------------------------------------------------- /dex/src/main/java/net/ankio/dex/DexString.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/dex/src/main/java/net/ankio/dex/DexString.kt -------------------------------------------------------------------------------- /dex/src/main/java/net/ankio/dex/model/Clazz.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/dex/src/main/java/net/ankio/dex/model/Clazz.kt -------------------------------------------------------------------------------- /dex/src/main/java/net/ankio/dex/model/ClazzField.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/dex/src/main/java/net/ankio/dex/model/ClazzField.kt -------------------------------------------------------------------------------- /dex/src/main/java/net/ankio/dex/model/ClazzMethod.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/dex/src/main/java/net/ankio/dex/model/ClazzMethod.kt -------------------------------------------------------------------------------- /dex/src/main/java/net/ankio/dex/result/ClazzResult.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/dex/src/main/java/net/ankio/dex/result/ClazzResult.kt -------------------------------------------------------------------------------- /dex/src/main/java/net/ankio/dex/result/MethodResult.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/dex/src/main/java/net/ankio/dex/result/MethodResult.kt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/gradlew.bat -------------------------------------------------------------------------------- /logo/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/logo/android-chrome-192x192.png -------------------------------------------------------------------------------- /logo/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/logo/android-chrome-512x512.png -------------------------------------------------------------------------------- /logo/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/logo/apple-touch-icon.png -------------------------------------------------------------------------------- /logo/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/logo/favicon-16x16.png -------------------------------------------------------------------------------- /logo/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/logo/favicon-32x32.png -------------------------------------------------------------------------------- /logo/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/logo/favicon.ico -------------------------------------------------------------------------------- /logo/前景.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/logo/前景.png -------------------------------------------------------------------------------- /logo/原图.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/logo/原图.psd -------------------------------------------------------------------------------- /logo/合并.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/logo/合并.png -------------------------------------------------------------------------------- /logo/背景.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/logo/背景.png -------------------------------------------------------------------------------- /ocr/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /ocr/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/ocr/build.gradle.kts -------------------------------------------------------------------------------- /ocr/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ocr/libs/OcrLibrary-1.3.0-release.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/ocr/libs/OcrLibrary-1.3.0-release.aar -------------------------------------------------------------------------------- /ocr/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/ocr/proguard-rules.pro -------------------------------------------------------------------------------- /ocr/src/androidTest/java/net/ankio/ocr/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/ocr/src/androidTest/java/net/ankio/ocr/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /ocr/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/ocr/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /ocr/src/main/java/net/ankio/ocr/OcrProcessor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/ocr/src/main/java/net/ankio/ocr/OcrProcessor.kt -------------------------------------------------------------------------------- /ocr/src/test/java/net/ankio/ocr/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/ocr/src/test/java/net/ankio/ocr/ExampleUnitTest.kt -------------------------------------------------------------------------------- /server/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /server/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/build.gradle.kts -------------------------------------------------------------------------------- /server/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/proguard-rules.pro -------------------------------------------------------------------------------- /server/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /server/src/main/java/org/ezbook/server/README.md: -------------------------------------------------------------------------------- 1 | 这里是自动记账的服务端 2 | 禁止涉及任何UI的处理,包括Toast,Dialog、Activity、Fragment、悬浮窗等 -------------------------------------------------------------------------------- /server/src/main/java/org/ezbook/server/Server.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/main/java/org/ezbook/server/Server.kt -------------------------------------------------------------------------------- /server/src/main/java/org/ezbook/server/ai/AiManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/main/java/org/ezbook/server/ai/AiManager.kt -------------------------------------------------------------------------------- /server/src/main/java/org/ezbook/server/ai/tools/AssetTool.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/main/java/org/ezbook/server/ai/tools/AssetTool.kt -------------------------------------------------------------------------------- /server/src/main/java/org/ezbook/server/ai/tools/BillTool.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/main/java/org/ezbook/server/ai/tools/BillTool.kt -------------------------------------------------------------------------------- /server/src/main/java/org/ezbook/server/ai/tools/CategoryTool.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/main/java/org/ezbook/server/ai/tools/CategoryTool.kt -------------------------------------------------------------------------------- /server/src/main/java/org/ezbook/server/constant/AssetsType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/main/java/org/ezbook/server/constant/AssetsType.kt -------------------------------------------------------------------------------- /server/src/main/java/org/ezbook/server/constant/BillAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/main/java/org/ezbook/server/constant/BillAction.kt -------------------------------------------------------------------------------- /server/src/main/java/org/ezbook/server/constant/BillState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/main/java/org/ezbook/server/constant/BillState.kt -------------------------------------------------------------------------------- /server/src/main/java/org/ezbook/server/constant/BillType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/main/java/org/ezbook/server/constant/BillType.kt -------------------------------------------------------------------------------- /server/src/main/java/org/ezbook/server/constant/Currency.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/main/java/org/ezbook/server/constant/Currency.kt -------------------------------------------------------------------------------- /server/src/main/java/org/ezbook/server/constant/DataType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/main/java/org/ezbook/server/constant/DataType.kt -------------------------------------------------------------------------------- /server/src/main/java/org/ezbook/server/constant/DefaultData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/main/java/org/ezbook/server/constant/DefaultData.kt -------------------------------------------------------------------------------- /server/src/main/java/org/ezbook/server/constant/LogLevel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/main/java/org/ezbook/server/constant/LogLevel.kt -------------------------------------------------------------------------------- /server/src/main/java/org/ezbook/server/constant/Setting.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/main/java/org/ezbook/server/constant/Setting.kt -------------------------------------------------------------------------------- /server/src/main/java/org/ezbook/server/db/AppDatabase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/main/java/org/ezbook/server/db/AppDatabase.kt -------------------------------------------------------------------------------- /server/src/main/java/org/ezbook/server/db/Db.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/main/java/org/ezbook/server/db/Db.kt -------------------------------------------------------------------------------- /server/src/main/java/org/ezbook/server/db/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/main/java/org/ezbook/server/db/README.md -------------------------------------------------------------------------------- /server/src/main/java/org/ezbook/server/db/dao/AnalysisTaskDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/main/java/org/ezbook/server/db/dao/AnalysisTaskDao.kt -------------------------------------------------------------------------------- /server/src/main/java/org/ezbook/server/db/dao/AppDataDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/main/java/org/ezbook/server/db/dao/AppDataDao.kt -------------------------------------------------------------------------------- /server/src/main/java/org/ezbook/server/db/dao/AssetMapDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/main/java/org/ezbook/server/db/dao/AssetMapDao.kt -------------------------------------------------------------------------------- /server/src/main/java/org/ezbook/server/db/dao/AssetsDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/main/java/org/ezbook/server/db/dao/AssetsDao.kt -------------------------------------------------------------------------------- /server/src/main/java/org/ezbook/server/db/dao/BillInfoDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/main/java/org/ezbook/server/db/dao/BillInfoDao.kt -------------------------------------------------------------------------------- /server/src/main/java/org/ezbook/server/db/dao/BookBillDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/main/java/org/ezbook/server/db/dao/BookBillDao.kt -------------------------------------------------------------------------------- /server/src/main/java/org/ezbook/server/db/dao/BookNameDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/main/java/org/ezbook/server/db/dao/BookNameDao.kt -------------------------------------------------------------------------------- /server/src/main/java/org/ezbook/server/db/dao/CategoryDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/main/java/org/ezbook/server/db/dao/CategoryDao.kt -------------------------------------------------------------------------------- /server/src/main/java/org/ezbook/server/db/dao/CategoryMapDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/main/java/org/ezbook/server/db/dao/CategoryMapDao.kt -------------------------------------------------------------------------------- /server/src/main/java/org/ezbook/server/db/dao/CategoryRuleDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/main/java/org/ezbook/server/db/dao/CategoryRuleDao.kt -------------------------------------------------------------------------------- /server/src/main/java/org/ezbook/server/db/dao/LogDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/main/java/org/ezbook/server/db/dao/LogDao.kt -------------------------------------------------------------------------------- /server/src/main/java/org/ezbook/server/db/dao/RuleDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/main/java/org/ezbook/server/db/dao/RuleDao.kt -------------------------------------------------------------------------------- /server/src/main/java/org/ezbook/server/db/dao/SettingDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/main/java/org/ezbook/server/db/dao/SettingDao.kt -------------------------------------------------------------------------------- /server/src/main/java/org/ezbook/server/db/dao/TagDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/main/java/org/ezbook/server/db/dao/TagDao.kt -------------------------------------------------------------------------------- /server/src/main/java/org/ezbook/server/db/model/AppDataModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/main/java/org/ezbook/server/db/model/AppDataModel.kt -------------------------------------------------------------------------------- /server/src/main/java/org/ezbook/server/db/model/AssetsMapModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/main/java/org/ezbook/server/db/model/AssetsMapModel.kt -------------------------------------------------------------------------------- /server/src/main/java/org/ezbook/server/db/model/AssetsModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/main/java/org/ezbook/server/db/model/AssetsModel.kt -------------------------------------------------------------------------------- /server/src/main/java/org/ezbook/server/db/model/BillInfoModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/main/java/org/ezbook/server/db/model/BillInfoModel.kt -------------------------------------------------------------------------------- /server/src/main/java/org/ezbook/server/db/model/BookBillModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/main/java/org/ezbook/server/db/model/BookBillModel.kt -------------------------------------------------------------------------------- /server/src/main/java/org/ezbook/server/db/model/BookNameModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/main/java/org/ezbook/server/db/model/BookNameModel.kt -------------------------------------------------------------------------------- /server/src/main/java/org/ezbook/server/db/model/CategoryModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/main/java/org/ezbook/server/db/model/CategoryModel.kt -------------------------------------------------------------------------------- /server/src/main/java/org/ezbook/server/db/model/LogModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/main/java/org/ezbook/server/db/model/LogModel.kt -------------------------------------------------------------------------------- /server/src/main/java/org/ezbook/server/db/model/RuleModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/main/java/org/ezbook/server/db/model/RuleModel.kt -------------------------------------------------------------------------------- /server/src/main/java/org/ezbook/server/db/model/SettingModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/main/java/org/ezbook/server/db/model/SettingModel.kt -------------------------------------------------------------------------------- /server/src/main/java/org/ezbook/server/db/model/ShopStatsModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/main/java/org/ezbook/server/db/model/ShopStatsModel.kt -------------------------------------------------------------------------------- /server/src/main/java/org/ezbook/server/db/model/TagModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/main/java/org/ezbook/server/db/model/TagModel.kt -------------------------------------------------------------------------------- /server/src/main/java/org/ezbook/server/db/model/TrendRowModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/main/java/org/ezbook/server/db/model/TrendRowModel.kt -------------------------------------------------------------------------------- /server/src/main/java/org/ezbook/server/engine/JsExecutor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/main/java/org/ezbook/server/engine/JsExecutor.kt -------------------------------------------------------------------------------- /server/src/main/java/org/ezbook/server/engine/RuleGenerator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/main/java/org/ezbook/server/engine/RuleGenerator.kt -------------------------------------------------------------------------------- /server/src/main/java/org/ezbook/server/intent/BaseIntent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/main/java/org/ezbook/server/intent/BaseIntent.kt -------------------------------------------------------------------------------- /server/src/main/java/org/ezbook/server/intent/BillInfoIntent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/main/java/org/ezbook/server/intent/BillInfoIntent.kt -------------------------------------------------------------------------------- /server/src/main/java/org/ezbook/server/intent/IntentType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/main/java/org/ezbook/server/intent/IntentType.kt -------------------------------------------------------------------------------- /server/src/main/java/org/ezbook/server/intent/OCRIntent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/main/java/org/ezbook/server/intent/OCRIntent.kt -------------------------------------------------------------------------------- /server/src/main/java/org/ezbook/server/models/BillResultModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/main/java/org/ezbook/server/models/BillResultModel.kt -------------------------------------------------------------------------------- /server/src/main/java/org/ezbook/server/models/ResultModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/main/java/org/ezbook/server/models/ResultModel.kt -------------------------------------------------------------------------------- /server/src/main/java/org/ezbook/server/models/StatsModels.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/main/java/org/ezbook/server/models/StatsModels.kt -------------------------------------------------------------------------------- /server/src/main/java/org/ezbook/server/server/AiApiRoutes.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/main/java/org/ezbook/server/server/AiApiRoutes.kt -------------------------------------------------------------------------------- /server/src/main/java/org/ezbook/server/server/AssetsMapRoutes.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/main/java/org/ezbook/server/server/AssetsMapRoutes.kt -------------------------------------------------------------------------------- /server/src/main/java/org/ezbook/server/server/AssetsRoutes.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/main/java/org/ezbook/server/server/AssetsRoutes.kt -------------------------------------------------------------------------------- /server/src/main/java/org/ezbook/server/server/BaseRoutes.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/main/java/org/ezbook/server/server/BaseRoutes.kt -------------------------------------------------------------------------------- /server/src/main/java/org/ezbook/server/server/BillRoutes.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/main/java/org/ezbook/server/server/BillRoutes.kt -------------------------------------------------------------------------------- /server/src/main/java/org/ezbook/server/server/BookRoutes.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/main/java/org/ezbook/server/server/BookRoutes.kt -------------------------------------------------------------------------------- /server/src/main/java/org/ezbook/server/server/DataRoutes.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/main/java/org/ezbook/server/server/DataRoutes.kt -------------------------------------------------------------------------------- /server/src/main/java/org/ezbook/server/server/JsRoutes.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/main/java/org/ezbook/server/server/JsRoutes.kt -------------------------------------------------------------------------------- /server/src/main/java/org/ezbook/server/server/LogRoutes.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/main/java/org/ezbook/server/server/LogRoutes.kt -------------------------------------------------------------------------------- /server/src/main/java/org/ezbook/server/server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/main/java/org/ezbook/server/server/README.md -------------------------------------------------------------------------------- /server/src/main/java/org/ezbook/server/server/RuleRoutes.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/main/java/org/ezbook/server/server/RuleRoutes.kt -------------------------------------------------------------------------------- /server/src/main/java/org/ezbook/server/server/SettingRoutes.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/main/java/org/ezbook/server/server/SettingRoutes.kt -------------------------------------------------------------------------------- /server/src/main/java/org/ezbook/server/server/TagRoutes.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/main/java/org/ezbook/server/server/TagRoutes.kt -------------------------------------------------------------------------------- /server/src/main/java/org/ezbook/server/tools/AssetsMap.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/main/java/org/ezbook/server/tools/AssetsMap.kt -------------------------------------------------------------------------------- /server/src/main/java/org/ezbook/server/tools/BaseLogger.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/main/java/org/ezbook/server/tools/BaseLogger.kt -------------------------------------------------------------------------------- /server/src/main/java/org/ezbook/server/tools/BillManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/main/java/org/ezbook/server/tools/BillManager.kt -------------------------------------------------------------------------------- /server/src/main/java/org/ezbook/server/tools/BillMerger.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/main/java/org/ezbook/server/tools/BillMerger.kt -------------------------------------------------------------------------------- /server/src/main/java/org/ezbook/server/tools/BillService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/main/java/org/ezbook/server/tools/BillService.kt -------------------------------------------------------------------------------- /server/src/main/java/org/ezbook/server/tools/DateUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/main/java/org/ezbook/server/tools/DateUtils.kt -------------------------------------------------------------------------------- /server/src/main/java/org/ezbook/server/tools/ILogger.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/main/java/org/ezbook/server/tools/ILogger.kt -------------------------------------------------------------------------------- /server/src/main/java/org/ezbook/server/tools/JsonExtensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/main/java/org/ezbook/server/tools/JsonExtensions.kt -------------------------------------------------------------------------------- /server/src/main/java/org/ezbook/server/tools/MD5HashTable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/main/java/org/ezbook/server/tools/MD5HashTable.kt -------------------------------------------------------------------------------- /server/src/main/java/org/ezbook/server/tools/MemoryCache.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/main/java/org/ezbook/server/tools/MemoryCache.kt -------------------------------------------------------------------------------- /server/src/main/java/org/ezbook/server/tools/ServerLog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/main/java/org/ezbook/server/tools/ServerLog.kt -------------------------------------------------------------------------------- /server/src/main/java/org/ezbook/server/tools/SettingUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/main/java/org/ezbook/server/tools/SettingUtils.kt -------------------------------------------------------------------------------- /server/src/main/java/org/ezbook/server/tools/SummaryService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/main/java/org/ezbook/server/tools/SummaryService.kt -------------------------------------------------------------------------------- /server/src/main/res/values-en/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/main/res/values-en/strings.xml -------------------------------------------------------------------------------- /server/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /server/src/test/resources/test_data_didi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/test/resources/test_data_didi.json -------------------------------------------------------------------------------- /server/src/test/resources/test_data_meituan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/test/resources/test_data_meituan.json -------------------------------------------------------------------------------- /server/src/test/resources/test_data_transfer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/server/src/test/resources/test_data_transfer.json -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/settings.gradle.kts -------------------------------------------------------------------------------- /shell/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /shell/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/shell/build.gradle.kts -------------------------------------------------------------------------------- /shell/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shell/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/shell/proguard-rules.pro -------------------------------------------------------------------------------- /shell/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/shell/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /shell/src/main/aidl/net/ankio/shell/IUserService.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/shell/src/main/aidl/net/ankio/shell/IUserService.aidl -------------------------------------------------------------------------------- /shell/src/main/java/net/ankio/shell/RootShell.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/shell/src/main/java/net/ankio/shell/RootShell.kt -------------------------------------------------------------------------------- /shell/src/main/java/net/ankio/shell/Shell.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/shell/src/main/java/net/ankio/shell/Shell.kt -------------------------------------------------------------------------------- /shell/src/main/java/net/ankio/shell/ShizukuShell.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/shell/src/main/java/net/ankio/shell/ShizukuShell.kt -------------------------------------------------------------------------------- /shell/src/main/java/net/ankio/shell/shizuku/UserService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/shell/src/main/java/net/ankio/shell/shizuku/UserService.kt -------------------------------------------------------------------------------- /shell/src/test/java/net/ankio/shell/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoAccountingOrg/AutoAccounting/HEAD/shell/src/test/java/net/ankio/shell/ExampleUnitTest.kt --------------------------------------------------------------------------------