├── .github └── workflows │ └── android.yml ├── .gitignore ├── LICENSE ├── Parabox Development Kit ├── .gitignore ├── build.gradle ├── consumer-rules.pro ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ └── java │ └── com │ └── ojhdtapp │ └── paraboxdevelopmentkit │ ├── extension │ ├── ExtensionPackageActionReceiver.kt │ ├── ParaboxBridge.kt │ ├── ParaboxConnection.kt │ └── ParaboxExtension.kt │ ├── init │ └── ParaboxInitHandler.kt │ └── model │ ├── ParaboxBasicInfo.kt │ ├── ParaboxResult.kt │ ├── ReceiveMessage.kt │ ├── SendMessage.kt │ ├── chat │ └── ParaboxChat.kt │ ├── config_item │ └── ParaboxConfigItem.kt │ ├── contact │ └── ParaboxContact.kt │ ├── init_actions │ └── ParaboxInitAction.kt │ ├── message │ ├── ParaboxMessage.kt │ └── ParaboxMessageElement.kt │ └── res_info │ ├── ParaboxCloudService.kt │ └── ParaboxResourceInfo.kt ├── README.md ├── README_zh_cn.md ├── app ├── .gitignore ├── build.gradle.kts ├── google-services.json ├── hidden-api │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── ojhdtapp │ │ │ └── parabox │ │ │ └── hidden_api │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ └── AndroidManifest.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── ojhdtapp │ │ └── parabox │ │ └── hidden_api │ │ └── ExampleUnitTest.kt ├── libs │ ├── imageViewer.aar │ ├── library.aar │ └── onebot-kotlin-sdk.jar ├── proguard-rules.pro ├── shadow-0.1.0-SNAPSHOT-all.jar └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── ojhdtapp │ │ └── parabox │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── ic_launcher-playstore.png │ ├── kotlin │ │ └── com │ │ │ └── ojhdtapp │ │ │ └── parabox │ │ │ ├── BubbleActivity.kt │ │ │ ├── MainActivity.kt │ │ │ ├── core │ │ │ ├── HiltApplication.kt │ │ │ └── util │ │ │ │ ├── BrowserUtil.kt │ │ │ │ ├── CacheUtil.kt │ │ │ │ ├── ContextExtra.kt │ │ │ │ ├── DataStore.kt │ │ │ │ ├── DeviceUtil.kt │ │ │ │ ├── FileUtil.kt │ │ │ │ ├── FirebaseUtil.kt │ │ │ │ ├── FormUtil.kt │ │ │ │ ├── IOUtil.kt │ │ │ │ ├── ImageUtil.kt │ │ │ │ ├── LocationUtil.kt │ │ │ │ ├── NotificationUtil.kt │ │ │ │ ├── PlayAppUpdateUtil.kt │ │ │ │ ├── Resource.kt │ │ │ │ ├── TimeUtil.kt │ │ │ │ ├── audio │ │ │ │ ├── AudioPlayer.kt │ │ │ │ └── AudioRecorder.kt │ │ │ │ └── backup │ │ │ │ └── RoomBackup.kt │ │ │ ├── data │ │ │ ├── local │ │ │ │ ├── AppDatabase.kt │ │ │ │ ├── ChatDao.kt │ │ │ │ ├── ConnectionInfo.kt │ │ │ │ ├── ContactChatCrossRefDao.kt │ │ │ │ ├── ContactDao.kt │ │ │ │ ├── Converters.kt │ │ │ │ ├── EntityBuilder.kt │ │ │ │ ├── ExtensionInfoDao.kt │ │ │ │ ├── MessageDao.kt │ │ │ │ ├── RecentQueryDao.kt │ │ │ │ └── entity │ │ │ │ │ ├── ChatBeanEntity.kt │ │ │ │ │ ├── ChatEntity.kt │ │ │ │ │ ├── ChatWithLatestMessageEntity.kt │ │ │ │ │ ├── ConnectionInfoEntity.kt │ │ │ │ │ ├── ContactChatCrossRef.kt │ │ │ │ │ ├── ContactEntity.kt │ │ │ │ │ ├── ContactWithExtensionInfoEntity.kt │ │ │ │ │ ├── MessageEntity.kt │ │ │ │ │ ├── MessageWithSenderEntity.kt │ │ │ │ │ ├── QueryMessageEntity.kt │ │ │ │ │ └── RecentQueryEntity.kt │ │ │ └── repository │ │ │ │ ├── ChatRepositoryImpl.kt │ │ │ │ ├── ConnectionInfoRepositoryImpl.kt │ │ │ │ ├── ContactRepositoryImpl.kt │ │ │ │ ├── MainRepositoryImpl.kt │ │ │ │ └── MessageRepositoryImpl.kt │ │ │ ├── di │ │ │ └── AppModule.kt │ │ │ ├── domain │ │ │ ├── built_in │ │ │ │ ├── BuiltInExtensionUtil.kt │ │ │ │ └── onebot11 │ │ │ │ │ ├── OneBot11.kt │ │ │ │ │ ├── OneBot11Connection.kt │ │ │ │ │ ├── OneBot11InitHandler.kt │ │ │ │ │ └── util │ │ │ │ │ └── CompatibilityUtil.kt │ │ │ ├── cloud │ │ │ │ └── KtorCloudServiceImpl.kt │ │ │ ├── model │ │ │ │ ├── ChangeLog.kt │ │ │ │ ├── Chat.kt │ │ │ │ ├── ChatBean.kt │ │ │ │ ├── ChatWithLatestMessage.kt │ │ │ │ ├── Connection.kt │ │ │ │ ├── Contact.kt │ │ │ │ ├── ContactWithExtensionInfo.kt │ │ │ │ ├── Extension.kt │ │ │ │ ├── ExtensionInfo.kt │ │ │ │ ├── Message.kt │ │ │ │ ├── QueryMessage.kt │ │ │ │ ├── RecentQuery.kt │ │ │ │ └── filter │ │ │ │ │ ├── ChatFilter.kt │ │ │ │ │ └── MessageFilter.kt │ │ │ ├── receiver │ │ │ │ ├── MarkAsReadReceiver.kt │ │ │ │ └── ReplyReceiver.kt │ │ │ ├── repository │ │ │ │ ├── ChatRepository.kt │ │ │ │ ├── ConnectionInfoRepository.kt │ │ │ │ ├── ContactRepository.kt │ │ │ │ ├── MainRepository.kt │ │ │ │ └── MessageRepository.kt │ │ │ ├── service │ │ │ │ ├── ExtensionService.kt │ │ │ │ ├── ExtensionServiceConnection.kt │ │ │ │ ├── MyFirebaseMessagingService.kt │ │ │ │ └── extension │ │ │ │ │ ├── ExtensionInitActionWrapper.kt │ │ │ │ │ ├── ExtensionLoader.kt │ │ │ │ │ └── ExtensionManager.kt │ │ │ ├── use_case │ │ │ │ ├── GetChat.kt │ │ │ │ ├── GetContact.kt │ │ │ │ ├── GetLocation.kt │ │ │ │ ├── GetMessage.kt │ │ │ │ ├── Query.kt │ │ │ │ └── UpdateChat.kt │ │ │ └── util │ │ │ │ ├── GsonParser.kt │ │ │ │ └── JsonParser.kt │ │ │ └── ui │ │ │ ├── MainSharedEffect.kt │ │ │ ├── MainSharedEvent.kt │ │ │ ├── MainSharedState.kt │ │ │ ├── MainSharedViewModel.kt │ │ │ ├── base │ │ │ └── BaseViewModel.kt │ │ │ ├── common │ │ │ ├── AnimatedPreloader.kt │ │ │ ├── BlurTransformation.kt │ │ │ ├── ChangeLogBottomSheet.kt │ │ │ ├── ChatPickerDialog.kt │ │ │ ├── CommonAvatar.kt │ │ │ ├── ContactPickerDialog.kt │ │ │ ├── CustomModifier.kt │ │ │ ├── DateRangePickerDialog.kt │ │ │ ├── DismissibleBottomSheet.kt │ │ │ ├── FixedInsets.kt │ │ │ ├── LayoutType.kt │ │ │ ├── ListDetailPaneScaffoldDirective.kt │ │ │ ├── MyDismissiblenavigationDrawer.kt │ │ │ ├── MyFilterChip.kt │ │ │ ├── MyModalNavigationDrawer.kt │ │ │ ├── PickerItem.kt │ │ │ ├── Placeholder.kt │ │ │ ├── Preferences.kt │ │ │ ├── RoundedCornerCascadeDropdownMenu.kt │ │ │ ├── RoundedCornerDropdownMenu.kt │ │ │ ├── SearchContentType.kt │ │ │ ├── SegmentedControl.kt │ │ │ ├── SwipeToDismiss.kt │ │ │ ├── SystemUiController.kt │ │ │ ├── TextInputDialog.kt │ │ │ ├── UnderConstructionPage.kt │ │ │ ├── WindowStateUtil.kt │ │ │ ├── drag_drop │ │ │ │ ├── DragDropExt.kt │ │ │ │ └── DragDropState.kt │ │ │ └── imeVisibleAsState.kt │ │ │ ├── contact │ │ │ ├── ContactDetailPage.kt │ │ │ ├── ContactItem.kt │ │ │ ├── ContactPage.kt │ │ │ ├── ContactPageEffect.kt │ │ │ ├── ContactPageEvent.kt │ │ │ ├── ContactPageState.kt │ │ │ ├── ContactPageViewModel.kt │ │ │ └── ContactPageWrapperUI.kt │ │ │ ├── file │ │ │ ├── FilePage.kt │ │ │ ├── FilePageEvent.kt │ │ │ ├── FilePageState.kt │ │ │ └── FilePageViewModel.kt │ │ │ ├── guide │ │ │ ├── GuideCloudPage.kt │ │ │ ├── GuideExtensionPage.kt │ │ │ ├── GuideFCMReceiverPage.kt │ │ │ ├── GuideFCMSenderPage.kt │ │ │ ├── GuideFCMServerPage.kt │ │ │ ├── GuideFinishPage.kt │ │ │ ├── GuideModePage.kt │ │ │ ├── GuidePageViewModel.kt │ │ │ ├── GuidePersonalisePage.kt │ │ │ ├── GuideTermsPage.kt │ │ │ └── GuideWelcomePage.kt │ │ │ ├── menu │ │ │ ├── MenuNavigationType.kt │ │ │ └── MenuPageEvent.kt │ │ │ ├── message │ │ │ ├── ChatDropdownMenu.kt │ │ │ ├── ChatItem.kt │ │ │ ├── ContactDetailDialog.kt │ │ │ ├── EditChatTagsDialog.kt │ │ │ ├── EmptyChatNoticeBlock.kt │ │ │ ├── EnabledChatFilterDialog.kt │ │ │ ├── MessageAndChatPageWrapperUI.kt │ │ │ ├── MessagePage.kt │ │ │ ├── MessagePageEffect.kt │ │ │ ├── MessagePageEvent.kt │ │ │ ├── MessagePageState.kt │ │ │ ├── MessagePageViewModel.kt │ │ │ └── chat │ │ │ │ ├── AudioRecorderState.kt │ │ │ │ ├── ChatPage.kt │ │ │ │ ├── EditArea.kt │ │ │ │ ├── EditAreaMode.kt │ │ │ │ ├── EmptyChatPage.kt │ │ │ │ ├── InfoArea.kt │ │ │ │ ├── LocationPicker.kt │ │ │ │ ├── MessageDropdownMenu.kt │ │ │ │ ├── MessageItem.kt │ │ │ │ ├── MyImagePreviewer.kt │ │ │ │ ├── PlainContactItem.kt │ │ │ │ ├── TimeDivider.kt │ │ │ │ ├── Toolbar.kt │ │ │ │ ├── ToolbarState.kt │ │ │ │ ├── ZoomableImageViewer.kt │ │ │ │ ├── contents_layout │ │ │ │ ├── MessageContentContainer.kt │ │ │ │ ├── MessageContentLayout.kt │ │ │ │ ├── SendingMessageContentLayout.kt │ │ │ │ └── model │ │ │ │ │ └── ChatPageUiModel.kt │ │ │ │ └── top_bar │ │ │ │ └── NormalChatTopBar.kt │ │ │ ├── navigation │ │ │ ├── BundleSerializer.kt │ │ │ ├── ContactComponent.kt │ │ │ ├── CustomAnimator.kt │ │ │ ├── FileComponent.kt │ │ │ ├── MenuComponent.kt │ │ │ ├── MessageComponent.kt │ │ │ ├── RootComponent.kt │ │ │ ├── SettingComponent.kt │ │ │ ├── ViewModelExtra.kt │ │ │ ├── ViewModelStoreComponent.kt │ │ │ ├── settings │ │ │ │ ├── ApperaranceSettingComponent.kt │ │ │ │ ├── ExperimentalSettingComponent.kt │ │ │ │ ├── ExtensionAddSettingComponent.kt │ │ │ │ ├── ExtensionConfigSettingComponent.kt │ │ │ │ ├── ExtensionSettingComponent.kt │ │ │ │ ├── GeneralSettingComponent.kt │ │ │ │ ├── HelpAndSupportSettingComponent.kt │ │ │ │ ├── LabelDetailSettingComponent.kt │ │ │ │ ├── LabelSettingComponent.kt │ │ │ │ ├── NotificationSettingComponent.kt │ │ │ │ ├── OpenSourceLicenseSettingComponent.kt │ │ │ │ └── StorageSettingComponent.kt │ │ │ └── suite │ │ │ │ ├── NavigationComponents.kt │ │ │ │ └── NavigationSuite.kt │ │ │ ├── setting │ │ │ ├── SettingItem.kt │ │ │ ├── SettingPage.kt │ │ │ ├── SettingPageEffect.kt │ │ │ ├── SettingPageEvent.kt │ │ │ ├── SettingPageState.kt │ │ │ ├── SettingPageViewModel.kt │ │ │ ├── SettingPageWrapperUI.kt │ │ │ └── detail │ │ │ │ ├── AppearanceSettingPage.kt │ │ │ │ ├── CloudSettingPage.kt │ │ │ │ ├── ExperimentalSettingPage.kt │ │ │ │ ├── ExtensionAddSettingPage.kt │ │ │ │ ├── ExtensionConfigSettingPage.kt │ │ │ │ ├── ExtensionSettingPage.kt │ │ │ │ ├── GeneralSettingPage.kt │ │ │ │ ├── HelpAndSupportSettingPage.kt │ │ │ │ ├── LabelDetailSettingPage.kt │ │ │ │ ├── LabelSettingPage.kt │ │ │ │ ├── NotificationSettingPage.kt │ │ │ │ ├── OpenSourceLicenseSettingPage.kt │ │ │ │ └── StorageSettingPage.kt │ │ │ └── theme │ │ │ ├── Color.kt │ │ │ ├── FontSize.kt │ │ │ ├── Shape.kt │ │ │ ├── Theme.kt │ │ │ └── Type.kt │ └── res │ │ ├── drawable-anydpi │ │ └── ic_stat_name.xml │ │ ├── drawable-hdpi │ │ └── ic_stat_name.png │ │ ├── drawable-mdpi │ │ ├── ic_stat_name.png │ │ └── image_lost.jpg │ │ ├── drawable-xhdpi │ │ └── ic_stat_name.png │ │ ├── drawable-xxhdpi │ │ └── ic_stat_name.png │ │ ├── drawable │ │ ├── avd_pathmorph_drawer_arrow_to_cross.xml │ │ ├── avd_pathmorph_drawer_arrow_to_hamburger.xml │ │ ├── avd_pathmorph_drawer_cross_to_arrow.xml │ │ ├── avd_pathmorph_drawer_hamburger_to_arrow.xml │ │ ├── background.xml │ │ ├── background_dynamic.xml │ │ ├── baseline_mark_chat_read_24.xml │ │ ├── baseline_send_24.xml │ │ ├── empty_2_dynamic.xml │ │ ├── empty_2_gardenia.xml │ │ ├── empty_2_purple.xml │ │ ├── empty_2_sakura.xml │ │ ├── empty_2_water.xml │ │ ├── empty_2_willow.xml │ │ ├── empty_dynamic.xml │ │ ├── empty_gardenia.xml │ │ ├── empty_purple.xml │ │ ├── empty_sakura.xml │ │ ├── empty_water.xml │ │ ├── empty_willow.xml │ │ ├── ic_android_black_24dp.xml │ │ ├── ic_launcher_background.xml │ │ ├── ic_launcher_foreground.xml │ │ ├── ic_launcher_foreground_dynamic.xml │ │ ├── ic_launcher_foreground_gardenia.xml │ │ ├── ic_launcher_foreground_purple.xml │ │ ├── ic_launcher_foreground_sakura.xml │ │ ├── ic_launcher_foreground_water.xml │ │ ├── ic_launcher_foreground_willow.xml │ │ ├── ic_launcher_monochrome.xml │ │ ├── vd_pathmorph_drawer_arrow.xml │ │ ├── vd_pathmorph_drawer_arrow_line.xml │ │ ├── vd_pathmorph_drawer_cross_line.xml │ │ └── vd_pathmorph_drawer_hamburger.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── raw │ │ ├── auth_config.json │ │ └── lottie_under_construction.json │ │ ├── values-ja │ │ └── strings.xml │ │ ├── values-night │ │ └── themes.xml │ │ ├── values-zh-rCN │ │ └── strings.xml │ │ ├── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── pathmorph_drawer.xml │ │ ├── strings.xml │ │ └── themes.xml │ │ └── xml │ │ ├── locales_config.xml │ │ ├── provider_paths.xml │ │ └── shortcuts.xml │ └── test │ └── java │ └── com │ └── ojhdtapp │ └── parabox │ └── ExampleUnitTest.kt ├── docs ├── banner.png ├── dark.png └── light.png ├── extensionDemo ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── ojhdt │ │ └── parabox │ │ └── extension │ │ └── demo │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── ojhdt │ │ │ └── parabox │ │ │ └── extension │ │ │ └── demo │ │ │ ├── MainActivity.kt │ │ │ ├── extension_a │ │ │ ├── Connection.kt │ │ │ ├── ExtensionA.kt │ │ │ └── InitHandler.kt │ │ │ ├── ui │ │ │ └── theme │ │ │ │ ├── Color.kt │ │ │ │ ├── Theme.kt │ │ │ │ └── Type.kt │ │ │ └── util │ │ │ └── MessageExtra.kt │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.webp │ │ ├── ic_launcher_round.webp │ │ └── icon.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── themes.xml │ └── test │ └── java │ └── com │ └── ojhdt │ └── parabox │ └── extension │ └── demo │ └── ExampleUnitTest.kt ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── local.defaults.properties └── settings.gradle.kts /.github/workflows/android.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/.github/workflows/android.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/LICENSE -------------------------------------------------------------------------------- /Parabox Development Kit/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /Parabox Development Kit/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/Parabox Development Kit/build.gradle -------------------------------------------------------------------------------- /Parabox Development Kit/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Parabox Development Kit/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/Parabox Development Kit/proguard-rules.pro -------------------------------------------------------------------------------- /Parabox Development Kit/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/Parabox Development Kit/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Parabox Development Kit/src/main/java/com/ojhdtapp/paraboxdevelopmentkit/extension/ExtensionPackageActionReceiver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/Parabox Development Kit/src/main/java/com/ojhdtapp/paraboxdevelopmentkit/extension/ExtensionPackageActionReceiver.kt -------------------------------------------------------------------------------- /Parabox Development Kit/src/main/java/com/ojhdtapp/paraboxdevelopmentkit/extension/ParaboxBridge.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/Parabox Development Kit/src/main/java/com/ojhdtapp/paraboxdevelopmentkit/extension/ParaboxBridge.kt -------------------------------------------------------------------------------- /Parabox Development Kit/src/main/java/com/ojhdtapp/paraboxdevelopmentkit/extension/ParaboxConnection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/Parabox Development Kit/src/main/java/com/ojhdtapp/paraboxdevelopmentkit/extension/ParaboxConnection.kt -------------------------------------------------------------------------------- /Parabox Development Kit/src/main/java/com/ojhdtapp/paraboxdevelopmentkit/extension/ParaboxExtension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/Parabox Development Kit/src/main/java/com/ojhdtapp/paraboxdevelopmentkit/extension/ParaboxExtension.kt -------------------------------------------------------------------------------- /Parabox Development Kit/src/main/java/com/ojhdtapp/paraboxdevelopmentkit/init/ParaboxInitHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/Parabox Development Kit/src/main/java/com/ojhdtapp/paraboxdevelopmentkit/init/ParaboxInitHandler.kt -------------------------------------------------------------------------------- /Parabox Development Kit/src/main/java/com/ojhdtapp/paraboxdevelopmentkit/model/ParaboxBasicInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/Parabox Development Kit/src/main/java/com/ojhdtapp/paraboxdevelopmentkit/model/ParaboxBasicInfo.kt -------------------------------------------------------------------------------- /Parabox Development Kit/src/main/java/com/ojhdtapp/paraboxdevelopmentkit/model/ParaboxResult.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/Parabox Development Kit/src/main/java/com/ojhdtapp/paraboxdevelopmentkit/model/ParaboxResult.kt -------------------------------------------------------------------------------- /Parabox Development Kit/src/main/java/com/ojhdtapp/paraboxdevelopmentkit/model/ReceiveMessage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/Parabox Development Kit/src/main/java/com/ojhdtapp/paraboxdevelopmentkit/model/ReceiveMessage.kt -------------------------------------------------------------------------------- /Parabox Development Kit/src/main/java/com/ojhdtapp/paraboxdevelopmentkit/model/SendMessage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/Parabox Development Kit/src/main/java/com/ojhdtapp/paraboxdevelopmentkit/model/SendMessage.kt -------------------------------------------------------------------------------- /Parabox Development Kit/src/main/java/com/ojhdtapp/paraboxdevelopmentkit/model/chat/ParaboxChat.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/Parabox Development Kit/src/main/java/com/ojhdtapp/paraboxdevelopmentkit/model/chat/ParaboxChat.kt -------------------------------------------------------------------------------- /Parabox Development Kit/src/main/java/com/ojhdtapp/paraboxdevelopmentkit/model/config_item/ParaboxConfigItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/Parabox Development Kit/src/main/java/com/ojhdtapp/paraboxdevelopmentkit/model/config_item/ParaboxConfigItem.kt -------------------------------------------------------------------------------- /Parabox Development Kit/src/main/java/com/ojhdtapp/paraboxdevelopmentkit/model/contact/ParaboxContact.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/Parabox Development Kit/src/main/java/com/ojhdtapp/paraboxdevelopmentkit/model/contact/ParaboxContact.kt -------------------------------------------------------------------------------- /Parabox Development Kit/src/main/java/com/ojhdtapp/paraboxdevelopmentkit/model/init_actions/ParaboxInitAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/Parabox Development Kit/src/main/java/com/ojhdtapp/paraboxdevelopmentkit/model/init_actions/ParaboxInitAction.kt -------------------------------------------------------------------------------- /Parabox Development Kit/src/main/java/com/ojhdtapp/paraboxdevelopmentkit/model/message/ParaboxMessage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/Parabox Development Kit/src/main/java/com/ojhdtapp/paraboxdevelopmentkit/model/message/ParaboxMessage.kt -------------------------------------------------------------------------------- /Parabox Development Kit/src/main/java/com/ojhdtapp/paraboxdevelopmentkit/model/message/ParaboxMessageElement.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/Parabox Development Kit/src/main/java/com/ojhdtapp/paraboxdevelopmentkit/model/message/ParaboxMessageElement.kt -------------------------------------------------------------------------------- /Parabox Development Kit/src/main/java/com/ojhdtapp/paraboxdevelopmentkit/model/res_info/ParaboxCloudService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/Parabox Development Kit/src/main/java/com/ojhdtapp/paraboxdevelopmentkit/model/res_info/ParaboxCloudService.kt -------------------------------------------------------------------------------- /Parabox Development Kit/src/main/java/com/ojhdtapp/paraboxdevelopmentkit/model/res_info/ParaboxResourceInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/Parabox Development Kit/src/main/java/com/ojhdtapp/paraboxdevelopmentkit/model/res_info/ParaboxResourceInfo.kt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/README.md -------------------------------------------------------------------------------- /README_zh_cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/README_zh_cn.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/build.gradle.kts -------------------------------------------------------------------------------- /app/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/google-services.json -------------------------------------------------------------------------------- /app/hidden-api/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/hidden-api/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/hidden-api/build.gradle -------------------------------------------------------------------------------- /app/hidden-api/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/hidden-api/proguard-rules.pro -------------------------------------------------------------------------------- /app/hidden-api/src/androidTest/java/com/ojhdtapp/parabox/hidden_api/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/hidden-api/src/androidTest/java/com/ojhdtapp/parabox/hidden_api/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /app/hidden-api/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/hidden-api/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/hidden-api/src/test/java/com/ojhdtapp/parabox/hidden_api/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/hidden-api/src/test/java/com/ojhdtapp/parabox/hidden_api/ExampleUnitTest.kt -------------------------------------------------------------------------------- /app/libs/imageViewer.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/libs/imageViewer.aar -------------------------------------------------------------------------------- /app/libs/library.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/libs/library.aar -------------------------------------------------------------------------------- /app/libs/onebot-kotlin-sdk.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/libs/onebot-kotlin-sdk.jar -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/shadow-0.1.0-SNAPSHOT-all.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/shadow-0.1.0-SNAPSHOT-all.jar -------------------------------------------------------------------------------- /app/src/androidTest/java/com/ojhdtapp/parabox/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/androidTest/java/com/ojhdtapp/parabox/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/BubbleActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/BubbleActivity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/core/HiltApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/core/HiltApplication.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/core/util/BrowserUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/core/util/BrowserUtil.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/core/util/CacheUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/core/util/CacheUtil.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/core/util/ContextExtra.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/core/util/ContextExtra.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/core/util/DataStore.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/core/util/DataStore.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/core/util/DeviceUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/core/util/DeviceUtil.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/core/util/FileUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/core/util/FileUtil.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/core/util/FirebaseUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/core/util/FirebaseUtil.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/core/util/FormUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/core/util/FormUtil.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/core/util/IOUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/core/util/IOUtil.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/core/util/ImageUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/core/util/ImageUtil.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/core/util/LocationUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/core/util/LocationUtil.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/core/util/NotificationUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/core/util/NotificationUtil.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/core/util/PlayAppUpdateUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/core/util/PlayAppUpdateUtil.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/core/util/Resource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/core/util/Resource.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/core/util/TimeUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/core/util/TimeUtil.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/core/util/audio/AudioPlayer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/core/util/audio/AudioPlayer.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/core/util/audio/AudioRecorder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/core/util/audio/AudioRecorder.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/core/util/backup/RoomBackup.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/core/util/backup/RoomBackup.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/data/local/AppDatabase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/data/local/AppDatabase.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/data/local/ChatDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/data/local/ChatDao.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/data/local/ConnectionInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/data/local/ConnectionInfo.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/data/local/ContactChatCrossRefDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/data/local/ContactChatCrossRefDao.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/data/local/ContactDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/data/local/ContactDao.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/data/local/Converters.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/data/local/Converters.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/data/local/EntityBuilder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/data/local/EntityBuilder.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/data/local/ExtensionInfoDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/data/local/ExtensionInfoDao.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/data/local/MessageDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/data/local/MessageDao.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/data/local/RecentQueryDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/data/local/RecentQueryDao.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/data/local/entity/ChatBeanEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/data/local/entity/ChatBeanEntity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/data/local/entity/ChatEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/data/local/entity/ChatEntity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/data/local/entity/ChatWithLatestMessageEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/data/local/entity/ChatWithLatestMessageEntity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/data/local/entity/ConnectionInfoEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/data/local/entity/ConnectionInfoEntity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/data/local/entity/ContactChatCrossRef.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/data/local/entity/ContactChatCrossRef.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/data/local/entity/ContactEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/data/local/entity/ContactEntity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/data/local/entity/ContactWithExtensionInfoEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/data/local/entity/ContactWithExtensionInfoEntity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/data/local/entity/MessageEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/data/local/entity/MessageEntity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/data/local/entity/MessageWithSenderEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/data/local/entity/MessageWithSenderEntity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/data/local/entity/QueryMessageEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/data/local/entity/QueryMessageEntity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/data/local/entity/RecentQueryEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/data/local/entity/RecentQueryEntity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/data/repository/ChatRepositoryImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/data/repository/ChatRepositoryImpl.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/data/repository/ConnectionInfoRepositoryImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/data/repository/ConnectionInfoRepositoryImpl.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/data/repository/ContactRepositoryImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/data/repository/ContactRepositoryImpl.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/data/repository/MainRepositoryImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/data/repository/MainRepositoryImpl.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/data/repository/MessageRepositoryImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/data/repository/MessageRepositoryImpl.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/di/AppModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/di/AppModule.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/domain/built_in/BuiltInExtensionUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/domain/built_in/BuiltInExtensionUtil.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/domain/built_in/onebot11/OneBot11.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/domain/built_in/onebot11/OneBot11.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/domain/built_in/onebot11/OneBot11Connection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/domain/built_in/onebot11/OneBot11Connection.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/domain/built_in/onebot11/OneBot11InitHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/domain/built_in/onebot11/OneBot11InitHandler.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/domain/built_in/onebot11/util/CompatibilityUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/domain/built_in/onebot11/util/CompatibilityUtil.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/domain/cloud/KtorCloudServiceImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/domain/cloud/KtorCloudServiceImpl.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/domain/model/ChangeLog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/domain/model/ChangeLog.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/domain/model/Chat.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/domain/model/Chat.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/domain/model/ChatBean.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/domain/model/ChatBean.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/domain/model/ChatWithLatestMessage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/domain/model/ChatWithLatestMessage.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/domain/model/Connection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/domain/model/Connection.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/domain/model/Contact.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/domain/model/Contact.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/domain/model/ContactWithExtensionInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/domain/model/ContactWithExtensionInfo.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/domain/model/Extension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/domain/model/Extension.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/domain/model/ExtensionInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/domain/model/ExtensionInfo.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/domain/model/Message.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/domain/model/Message.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/domain/model/QueryMessage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/domain/model/QueryMessage.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/domain/model/RecentQuery.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/domain/model/RecentQuery.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/domain/model/filter/ChatFilter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/domain/model/filter/ChatFilter.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/domain/model/filter/MessageFilter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/domain/model/filter/MessageFilter.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/domain/receiver/MarkAsReadReceiver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/domain/receiver/MarkAsReadReceiver.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/domain/receiver/ReplyReceiver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/domain/receiver/ReplyReceiver.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/domain/repository/ChatRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/domain/repository/ChatRepository.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/domain/repository/ConnectionInfoRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/domain/repository/ConnectionInfoRepository.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/domain/repository/ContactRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/domain/repository/ContactRepository.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/domain/repository/MainRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/domain/repository/MainRepository.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/domain/repository/MessageRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/domain/repository/MessageRepository.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/domain/service/ExtensionService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/domain/service/ExtensionService.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/domain/service/ExtensionServiceConnection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/domain/service/ExtensionServiceConnection.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/domain/service/MyFirebaseMessagingService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/domain/service/MyFirebaseMessagingService.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/domain/service/extension/ExtensionInitActionWrapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/domain/service/extension/ExtensionInitActionWrapper.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/domain/service/extension/ExtensionLoader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/domain/service/extension/ExtensionLoader.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/domain/service/extension/ExtensionManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/domain/service/extension/ExtensionManager.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/domain/use_case/GetChat.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/domain/use_case/GetChat.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/domain/use_case/GetContact.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/domain/use_case/GetContact.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/domain/use_case/GetLocation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/domain/use_case/GetLocation.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/domain/use_case/GetMessage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/domain/use_case/GetMessage.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/domain/use_case/Query.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/domain/use_case/Query.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/domain/use_case/UpdateChat.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/domain/use_case/UpdateChat.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/domain/util/GsonParser.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/domain/util/GsonParser.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/domain/util/JsonParser.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/domain/util/JsonParser.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/MainSharedEffect.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/MainSharedEffect.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/MainSharedEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/MainSharedEvent.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/MainSharedState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/MainSharedState.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/MainSharedViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/MainSharedViewModel.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/base/BaseViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/base/BaseViewModel.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/common/AnimatedPreloader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/common/AnimatedPreloader.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/common/BlurTransformation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/common/BlurTransformation.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/common/ChangeLogBottomSheet.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/common/ChangeLogBottomSheet.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/common/ChatPickerDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/common/ChatPickerDialog.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/common/CommonAvatar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/common/CommonAvatar.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/common/ContactPickerDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/common/ContactPickerDialog.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/common/CustomModifier.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/common/CustomModifier.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/common/DateRangePickerDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/common/DateRangePickerDialog.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/common/DismissibleBottomSheet.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/common/DismissibleBottomSheet.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/common/FixedInsets.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/common/FixedInsets.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/common/LayoutType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/common/LayoutType.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/common/ListDetailPaneScaffoldDirective.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/common/ListDetailPaneScaffoldDirective.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/common/MyDismissiblenavigationDrawer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/common/MyDismissiblenavigationDrawer.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/common/MyFilterChip.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/common/MyFilterChip.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/common/MyModalNavigationDrawer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/common/MyModalNavigationDrawer.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/common/PickerItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/common/PickerItem.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/common/Placeholder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/common/Placeholder.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/common/Preferences.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/common/Preferences.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/common/RoundedCornerCascadeDropdownMenu.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/common/RoundedCornerCascadeDropdownMenu.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/common/RoundedCornerDropdownMenu.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/common/RoundedCornerDropdownMenu.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/common/SearchContentType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/common/SearchContentType.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/common/SegmentedControl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/common/SegmentedControl.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/common/SwipeToDismiss.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/common/SwipeToDismiss.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/common/SystemUiController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/common/SystemUiController.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/common/TextInputDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/common/TextInputDialog.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/common/UnderConstructionPage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/common/UnderConstructionPage.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/common/WindowStateUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/common/WindowStateUtil.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/common/drag_drop/DragDropExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/common/drag_drop/DragDropExt.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/common/drag_drop/DragDropState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/common/drag_drop/DragDropState.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/common/imeVisibleAsState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/common/imeVisibleAsState.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/contact/ContactDetailPage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/contact/ContactDetailPage.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/contact/ContactItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/contact/ContactItem.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/contact/ContactPage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/contact/ContactPage.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/contact/ContactPageEffect.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/contact/ContactPageEffect.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/contact/ContactPageEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/contact/ContactPageEvent.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/contact/ContactPageState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/contact/ContactPageState.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/contact/ContactPageViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/contact/ContactPageViewModel.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/contact/ContactPageWrapperUI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/contact/ContactPageWrapperUI.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/file/FilePage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/file/FilePage.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/file/FilePageEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/file/FilePageEvent.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/file/FilePageState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/file/FilePageState.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/file/FilePageViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/file/FilePageViewModel.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/guide/GuideCloudPage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/guide/GuideCloudPage.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/guide/GuideExtensionPage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/guide/GuideExtensionPage.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/guide/GuideFCMReceiverPage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/guide/GuideFCMReceiverPage.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/guide/GuideFCMSenderPage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/guide/GuideFCMSenderPage.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/guide/GuideFCMServerPage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/guide/GuideFCMServerPage.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/guide/GuideFinishPage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/guide/GuideFinishPage.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/guide/GuideModePage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/guide/GuideModePage.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/guide/GuidePageViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/guide/GuidePageViewModel.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/guide/GuidePersonalisePage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/guide/GuidePersonalisePage.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/guide/GuideTermsPage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/guide/GuideTermsPage.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/guide/GuideWelcomePage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/guide/GuideWelcomePage.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/menu/MenuNavigationType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/menu/MenuNavigationType.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/menu/MenuPageEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/menu/MenuPageEvent.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/message/ChatDropdownMenu.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/message/ChatDropdownMenu.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/message/ChatItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/message/ChatItem.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/message/ContactDetailDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/message/ContactDetailDialog.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/message/EditChatTagsDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/message/EditChatTagsDialog.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/message/EmptyChatNoticeBlock.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/message/EmptyChatNoticeBlock.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/message/EnabledChatFilterDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/message/EnabledChatFilterDialog.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/message/MessageAndChatPageWrapperUI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/message/MessageAndChatPageWrapperUI.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/message/MessagePage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/message/MessagePage.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/message/MessagePageEffect.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/message/MessagePageEffect.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/message/MessagePageEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/message/MessagePageEvent.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/message/MessagePageState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/message/MessagePageState.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/message/MessagePageViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/message/MessagePageViewModel.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/message/chat/AudioRecorderState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/message/chat/AudioRecorderState.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/message/chat/ChatPage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/message/chat/ChatPage.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/message/chat/EditArea.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/message/chat/EditArea.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/message/chat/EditAreaMode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/message/chat/EditAreaMode.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/message/chat/EmptyChatPage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/message/chat/EmptyChatPage.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/message/chat/InfoArea.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/message/chat/InfoArea.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/message/chat/LocationPicker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/message/chat/LocationPicker.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/message/chat/MessageDropdownMenu.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/message/chat/MessageDropdownMenu.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/message/chat/MessageItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/message/chat/MessageItem.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/message/chat/MyImagePreviewer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/message/chat/MyImagePreviewer.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/message/chat/PlainContactItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/message/chat/PlainContactItem.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/message/chat/TimeDivider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/message/chat/TimeDivider.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/message/chat/Toolbar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/message/chat/Toolbar.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/message/chat/ToolbarState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/message/chat/ToolbarState.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/message/chat/ZoomableImageViewer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/message/chat/ZoomableImageViewer.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/message/chat/contents_layout/MessageContentContainer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/message/chat/contents_layout/MessageContentContainer.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/message/chat/contents_layout/MessageContentLayout.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/message/chat/contents_layout/MessageContentLayout.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/message/chat/contents_layout/SendingMessageContentLayout.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/message/chat/contents_layout/SendingMessageContentLayout.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/message/chat/contents_layout/model/ChatPageUiModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/message/chat/contents_layout/model/ChatPageUiModel.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/message/chat/top_bar/NormalChatTopBar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/message/chat/top_bar/NormalChatTopBar.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/navigation/BundleSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/navigation/BundleSerializer.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/navigation/ContactComponent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/navigation/ContactComponent.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/navigation/CustomAnimator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/navigation/CustomAnimator.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/navigation/FileComponent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/navigation/FileComponent.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/navigation/MenuComponent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/navigation/MenuComponent.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/navigation/MessageComponent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/navigation/MessageComponent.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/navigation/RootComponent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/navigation/RootComponent.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/navigation/SettingComponent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/navigation/SettingComponent.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/navigation/ViewModelExtra.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/navigation/ViewModelExtra.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/navigation/ViewModelStoreComponent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/navigation/ViewModelStoreComponent.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/navigation/settings/ApperaranceSettingComponent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/navigation/settings/ApperaranceSettingComponent.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/navigation/settings/ExperimentalSettingComponent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/navigation/settings/ExperimentalSettingComponent.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/navigation/settings/ExtensionAddSettingComponent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/navigation/settings/ExtensionAddSettingComponent.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/navigation/settings/ExtensionConfigSettingComponent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/navigation/settings/ExtensionConfigSettingComponent.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/navigation/settings/ExtensionSettingComponent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/navigation/settings/ExtensionSettingComponent.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/navigation/settings/GeneralSettingComponent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/navigation/settings/GeneralSettingComponent.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/navigation/settings/HelpAndSupportSettingComponent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/navigation/settings/HelpAndSupportSettingComponent.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/navigation/settings/LabelDetailSettingComponent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/navigation/settings/LabelDetailSettingComponent.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/navigation/settings/LabelSettingComponent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/navigation/settings/LabelSettingComponent.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/navigation/settings/NotificationSettingComponent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/navigation/settings/NotificationSettingComponent.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/navigation/settings/OpenSourceLicenseSettingComponent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/navigation/settings/OpenSourceLicenseSettingComponent.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/navigation/settings/StorageSettingComponent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/navigation/settings/StorageSettingComponent.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/navigation/suite/NavigationComponents.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/navigation/suite/NavigationComponents.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/navigation/suite/NavigationSuite.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/navigation/suite/NavigationSuite.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/setting/SettingItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/setting/SettingItem.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/setting/SettingPage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/setting/SettingPage.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/setting/SettingPageEffect.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/setting/SettingPageEffect.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/setting/SettingPageEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/setting/SettingPageEvent.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/setting/SettingPageState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/setting/SettingPageState.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/setting/SettingPageViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/setting/SettingPageViewModel.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/setting/SettingPageWrapperUI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/setting/SettingPageWrapperUI.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/setting/detail/AppearanceSettingPage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/setting/detail/AppearanceSettingPage.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/setting/detail/CloudSettingPage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/setting/detail/CloudSettingPage.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/setting/detail/ExperimentalSettingPage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/setting/detail/ExperimentalSettingPage.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/setting/detail/ExtensionAddSettingPage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/setting/detail/ExtensionAddSettingPage.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/setting/detail/ExtensionConfigSettingPage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/setting/detail/ExtensionConfigSettingPage.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/setting/detail/ExtensionSettingPage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/setting/detail/ExtensionSettingPage.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/setting/detail/GeneralSettingPage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/setting/detail/GeneralSettingPage.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/setting/detail/HelpAndSupportSettingPage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/setting/detail/HelpAndSupportSettingPage.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/setting/detail/LabelDetailSettingPage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/setting/detail/LabelDetailSettingPage.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/setting/detail/LabelSettingPage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/setting/detail/LabelSettingPage.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/setting/detail/NotificationSettingPage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/setting/detail/NotificationSettingPage.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/setting/detail/OpenSourceLicenseSettingPage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/setting/detail/OpenSourceLicenseSettingPage.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/setting/detail/StorageSettingPage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/setting/detail/StorageSettingPage.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/theme/Color.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/theme/Color.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/theme/FontSize.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/theme/FontSize.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/theme/Shape.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/theme/Shape.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/theme/Theme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/theme/Theme.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/ojhdtapp/parabox/ui/theme/Type.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/kotlin/com/ojhdtapp/parabox/ui/theme/Type.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable-anydpi/ic_stat_name.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/res/drawable-anydpi/ic_stat_name.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_stat_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/res/drawable-hdpi/ic_stat_name.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_stat_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/res/drawable-mdpi/ic_stat_name.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/image_lost.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/res/drawable-mdpi/image_lost.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_stat_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/res/drawable-xhdpi/ic_stat_name.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_stat_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/res/drawable-xxhdpi/ic_stat_name.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/avd_pathmorph_drawer_arrow_to_cross.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/res/drawable/avd_pathmorph_drawer_arrow_to_cross.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/avd_pathmorph_drawer_arrow_to_hamburger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/res/drawable/avd_pathmorph_drawer_arrow_to_hamburger.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/avd_pathmorph_drawer_cross_to_arrow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/res/drawable/avd_pathmorph_drawer_cross_to_arrow.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/avd_pathmorph_drawer_hamburger_to_arrow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/res/drawable/avd_pathmorph_drawer_hamburger_to_arrow.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/res/drawable/background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/background_dynamic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/res/drawable/background_dynamic.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/baseline_mark_chat_read_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/res/drawable/baseline_mark_chat_read_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/baseline_send_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/res/drawable/baseline_send_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/empty_2_dynamic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/res/drawable/empty_2_dynamic.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/empty_2_gardenia.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/res/drawable/empty_2_gardenia.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/empty_2_purple.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/res/drawable/empty_2_purple.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/empty_2_sakura.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/res/drawable/empty_2_sakura.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/empty_2_water.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/res/drawable/empty_2_water.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/empty_2_willow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/res/drawable/empty_2_willow.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/empty_dynamic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/res/drawable/empty_dynamic.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/empty_gardenia.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/res/drawable/empty_gardenia.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/empty_purple.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/res/drawable/empty_purple.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/empty_sakura.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/res/drawable/empty_sakura.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/empty_water.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/res/drawable/empty_water.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/empty_willow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/res/drawable/empty_willow.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_android_black_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/res/drawable/ic_android_black_24dp.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_foreground_dynamic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/res/drawable/ic_launcher_foreground_dynamic.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_foreground_gardenia.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/res/drawable/ic_launcher_foreground_gardenia.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_foreground_purple.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/res/drawable/ic_launcher_foreground_purple.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_foreground_sakura.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/res/drawable/ic_launcher_foreground_sakura.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_foreground_water.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/res/drawable/ic_launcher_foreground_water.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_foreground_willow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/res/drawable/ic_launcher_foreground_willow.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_monochrome.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/res/drawable/ic_launcher_monochrome.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/vd_pathmorph_drawer_arrow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/res/drawable/vd_pathmorph_drawer_arrow.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/vd_pathmorph_drawer_arrow_line.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/res/drawable/vd_pathmorph_drawer_arrow_line.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/vd_pathmorph_drawer_cross_line.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/res/drawable/vd_pathmorph_drawer_cross_line.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/vd_pathmorph_drawer_hamburger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/res/drawable/vd_pathmorph_drawer_hamburger.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/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/Parabox-App/Parabox/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/raw/auth_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/res/raw/auth_config.json -------------------------------------------------------------------------------- /app/src/main/res/raw/lottie_under_construction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/res/raw/lottie_under_construction.json -------------------------------------------------------------------------------- /app/src/main/res/values-ja/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/res/values-ja/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/values-zh-rCN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/res/values-zh-rCN/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/pathmorph_drawer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/res/values/pathmorph_drawer.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/locales_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/res/xml/locales_config.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/provider_paths.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/res/xml/provider_paths.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/shortcuts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/main/res/xml/shortcuts.xml -------------------------------------------------------------------------------- /app/src/test/java/com/ojhdtapp/parabox/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/app/src/test/java/com/ojhdtapp/parabox/ExampleUnitTest.kt -------------------------------------------------------------------------------- /docs/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/docs/banner.png -------------------------------------------------------------------------------- /docs/dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/docs/dark.png -------------------------------------------------------------------------------- /docs/light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/docs/light.png -------------------------------------------------------------------------------- /extensionDemo/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /extensionDemo/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/extensionDemo/build.gradle -------------------------------------------------------------------------------- /extensionDemo/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/extensionDemo/proguard-rules.pro -------------------------------------------------------------------------------- /extensionDemo/src/androidTest/java/com/ojhdt/parabox/extension/demo/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/extensionDemo/src/androidTest/java/com/ojhdt/parabox/extension/demo/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /extensionDemo/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/extensionDemo/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /extensionDemo/src/main/java/com/ojhdt/parabox/extension/demo/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/extensionDemo/src/main/java/com/ojhdt/parabox/extension/demo/MainActivity.kt -------------------------------------------------------------------------------- /extensionDemo/src/main/java/com/ojhdt/parabox/extension/demo/extension_a/Connection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/extensionDemo/src/main/java/com/ojhdt/parabox/extension/demo/extension_a/Connection.kt -------------------------------------------------------------------------------- /extensionDemo/src/main/java/com/ojhdt/parabox/extension/demo/extension_a/ExtensionA.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/extensionDemo/src/main/java/com/ojhdt/parabox/extension/demo/extension_a/ExtensionA.kt -------------------------------------------------------------------------------- /extensionDemo/src/main/java/com/ojhdt/parabox/extension/demo/extension_a/InitHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/extensionDemo/src/main/java/com/ojhdt/parabox/extension/demo/extension_a/InitHandler.kt -------------------------------------------------------------------------------- /extensionDemo/src/main/java/com/ojhdt/parabox/extension/demo/ui/theme/Color.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/extensionDemo/src/main/java/com/ojhdt/parabox/extension/demo/ui/theme/Color.kt -------------------------------------------------------------------------------- /extensionDemo/src/main/java/com/ojhdt/parabox/extension/demo/ui/theme/Theme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/extensionDemo/src/main/java/com/ojhdt/parabox/extension/demo/ui/theme/Theme.kt -------------------------------------------------------------------------------- /extensionDemo/src/main/java/com/ojhdt/parabox/extension/demo/ui/theme/Type.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/extensionDemo/src/main/java/com/ojhdt/parabox/extension/demo/ui/theme/Type.kt -------------------------------------------------------------------------------- /extensionDemo/src/main/java/com/ojhdt/parabox/extension/demo/util/MessageExtra.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/extensionDemo/src/main/java/com/ojhdt/parabox/extension/demo/util/MessageExtra.kt -------------------------------------------------------------------------------- /extensionDemo/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/extensionDemo/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /extensionDemo/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/extensionDemo/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /extensionDemo/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/extensionDemo/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /extensionDemo/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/extensionDemo/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /extensionDemo/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/extensionDemo/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /extensionDemo/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/extensionDemo/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /extensionDemo/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/extensionDemo/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /extensionDemo/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/extensionDemo/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /extensionDemo/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/extensionDemo/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /extensionDemo/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/extensionDemo/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /extensionDemo/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/extensionDemo/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /extensionDemo/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/extensionDemo/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /extensionDemo/src/main/res/mipmap-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/extensionDemo/src/main/res/mipmap-xxhdpi/icon.png -------------------------------------------------------------------------------- /extensionDemo/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/extensionDemo/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /extensionDemo/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/extensionDemo/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /extensionDemo/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/extensionDemo/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /extensionDemo/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/extensionDemo/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /extensionDemo/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/extensionDemo/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /extensionDemo/src/test/java/com/ojhdt/parabox/extension/demo/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/extensionDemo/src/test/java/com/ojhdt/parabox/extension/demo/ExampleUnitTest.kt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/gradlew.bat -------------------------------------------------------------------------------- /local.defaults.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/local.defaults.properties -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parabox-App/Parabox/HEAD/settings.gradle.kts --------------------------------------------------------------------------------