├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ ├── documentation_change_template.md │ └── new_feature_template.md ├── pull_request_template.md └── stale.yml ├── .gitignore ├── .well-known └── funding-manifest-urls ├── LICENSE ├── NOTICE.txt ├── README.md ├── docs ├── Server.gif ├── Tella2.0-feature.png ├── camouflage.gif ├── data_collection.gif ├── encrypting.gif └── feature_image.png ├── fastlane └── metadata │ └── android │ ├── en-US │ ├── changelogs │ │ ├── 142.txt │ │ └── 186.txt │ ├── full_description.txt │ ├── images │ │ ├── featureGraphic.png │ │ ├── icon.png │ │ └── phoneScreenshots │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── 8.png │ │ │ └── 9.png │ ├── short_description.txt │ ├── title.txt │ └── video.txt │ └── es │ ├── changelogs │ ├── 142.txt │ └── 186.txt │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── mobile ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── rs │ │ └── readahead │ │ └── washington │ │ └── ApplicationTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── calculate-playstore.png │ ├── calculator-playstore.png │ ├── calculatorplus-playstore.png │ ├── clock-playstore.png │ ├── easyweather-playstore.png │ ├── gamestation-playstore.png │ ├── icalculator-playstore.png │ ├── icamera-playstore.png │ ├── java │ │ └── rs │ │ │ └── readahead │ │ │ └── washington │ │ │ └── mobile │ │ │ ├── MyApplication.java │ │ │ ├── bus │ │ │ ├── EventCompositeDisposable.java │ │ │ ├── EventObserver.java │ │ │ ├── IEvent.java │ │ │ ├── RxBus.java │ │ │ ├── SingleLiveEvent.java │ │ │ ├── TellaBus.java │ │ │ └── event │ │ │ │ ├── CameraFlingUpEvent.java │ │ │ │ ├── CamouflageAliasChangedEvent.java │ │ │ │ ├── CancelPendingFormInstanceEvent.java │ │ │ │ ├── CaptureEvent.kt │ │ │ │ ├── CloseSettingsActivityEvent.kt │ │ │ │ ├── CreateUwaziServerEvent.java │ │ │ │ ├── EditMediaSavedEvent.kt │ │ │ │ ├── FileUploadProgressEvent.java │ │ │ │ ├── FormAttachmentsUpdatedEvent.java │ │ │ │ ├── GPSProviderRequiredEvent.java │ │ │ │ ├── GalleryFlingTopEvent.java │ │ │ │ ├── GoToReportsScreenEvent.kt │ │ │ │ ├── LocaleChangedEvent.java │ │ │ │ ├── LocationPermissionRequiredEvent.java │ │ │ │ ├── MediaFileBinaryWidgetCleared.java │ │ │ │ ├── MediaFileDeletedEvent.java │ │ │ │ ├── ReSubmitFormInstanceEvent.java │ │ │ │ ├── RecentBackgroundActivitiesEvent.kt │ │ │ │ ├── RefreshEvidenceListEvent.java │ │ │ │ ├── ReportUploadProgressEvent.kt │ │ │ │ ├── ShowBlankFormEntryEvent.java │ │ │ │ ├── ShowFormInstanceEntryEvent.java │ │ │ │ ├── SubmitActiveFormEvent.java │ │ │ │ ├── ToggleBlankFormPinnedEvent.java │ │ │ │ ├── UpdateUwaziServerEvent.java │ │ │ │ └── VaultFileRenameEvent.kt │ │ │ ├── data │ │ │ ├── ParamsNetwork.kt │ │ │ ├── StatusError.kt │ │ │ ├── database │ │ │ │ ├── CipherOpenHelper.java │ │ │ │ ├── D.java │ │ │ │ ├── DataSource.java │ │ │ │ ├── KeyDataSource.java │ │ │ │ ├── ResourceDataSource.java │ │ │ │ ├── UwaziDataSource.java │ │ │ │ └── WashingtonSQLiteOpenHelper.java │ │ │ ├── entity │ │ │ │ ├── FeedbackEntity.java │ │ │ │ ├── FormEntity.java │ │ │ │ ├── FormMediaFileRegisterEntity.java │ │ │ │ ├── FormsEntity.java │ │ │ │ ├── MediaFileEntity.java │ │ │ │ ├── MetadataEntity.java │ │ │ │ ├── OpenRosaResponseEntity.java │ │ │ │ ├── TrainModuleEntity.java │ │ │ │ ├── XFormEntity.java │ │ │ │ ├── XFormsEntity.java │ │ │ │ ├── XFormsGroupEntity.java │ │ │ │ ├── feedback │ │ │ │ │ ├── FeedbackBodyEntity.kt │ │ │ │ │ ├── FeedbackMapper.kt │ │ │ │ │ └── FeedbackPostResponse.kt │ │ │ │ ├── mapper │ │ │ │ │ ├── EntityMapper.java │ │ │ │ │ └── OpenRosaDataMapper.java │ │ │ │ ├── reports │ │ │ │ │ ├── LoginEntity.kt │ │ │ │ │ ├── ProjectSlugResourceResponse.kt │ │ │ │ │ ├── ProjectSlugResponse.kt │ │ │ │ │ ├── ReportBodyEntity.kt │ │ │ │ │ ├── ReportPostResponse.kt │ │ │ │ │ ├── ReportsLoginResponse.kt │ │ │ │ │ ├── ResourcesGetResponse.kt │ │ │ │ │ ├── UserResponse.kt │ │ │ │ │ └── mapper │ │ │ │ │ │ ├── ReportMapper.kt │ │ │ │ │ │ ├── ResourceMapper.kt │ │ │ │ │ │ └── UserSettingsMapper.kt │ │ │ │ └── uwazi │ │ │ │ │ ├── CommonPropertyEntity.kt │ │ │ │ │ ├── DictionaryResponse.kt │ │ │ │ │ ├── FeaturesEntity.kt │ │ │ │ │ ├── LanguageEntity.kt │ │ │ │ │ ├── LinkEntity.kt │ │ │ │ │ ├── LoginEntity.kt │ │ │ │ │ ├── LoginResult.kt │ │ │ │ │ ├── MapStartingPoint.kt │ │ │ │ │ ├── NestedValueEntity.kt │ │ │ │ │ ├── PropertyEntity.kt │ │ │ │ │ ├── RelationShipEntitiesResponse.kt │ │ │ │ │ ├── RowDictionaryEntity.kt │ │ │ │ │ ├── SettingsResponse.kt │ │ │ │ │ ├── SublinkEntity.kt │ │ │ │ │ ├── TemplateEntity.kt │ │ │ │ │ ├── TemplateResponse.kt │ │ │ │ │ ├── TranslationContextEntity.kt │ │ │ │ │ ├── TranslationResponse.kt │ │ │ │ │ ├── TranslationRowEntity.kt │ │ │ │ │ ├── UwaziEntityRow.kt │ │ │ │ │ ├── UwaziRelationShipRow.kt │ │ │ │ │ ├── Value.kt │ │ │ │ │ ├── ValueEntity.kt │ │ │ │ │ ├── answer │ │ │ │ │ ├── IUwaziAnswer.java │ │ │ │ │ ├── UwaziDateRange.kt │ │ │ │ │ ├── UwaziInteger.kt │ │ │ │ │ ├── UwaziLink.kt │ │ │ │ │ ├── UwaziLocation.kt │ │ │ │ │ ├── UwaziLong.kt │ │ │ │ │ └── UwaziString.kt │ │ │ │ │ └── mapper │ │ │ │ │ ├── Mappers.kt │ │ │ │ │ ├── SettingsMapper.kt │ │ │ │ │ └── TranslationMapper.kt │ │ │ ├── feedback │ │ │ │ ├── remote │ │ │ │ │ └── FeedbackApiService.kt │ │ │ │ └── repository │ │ │ │ │ └── FeedbackRepositoryImp.kt │ │ │ ├── http │ │ │ │ ├── HttpStatus.java │ │ │ │ └── QuotePreservingCookieJar.java │ │ │ ├── openrosa │ │ │ │ ├── IOpenRosaApi.java │ │ │ │ └── OpenRosaService.java │ │ │ ├── provider │ │ │ │ └── EncryptedFileProvider.java │ │ │ ├── reports │ │ │ │ ├── remote │ │ │ │ │ └── ReportsApiService.kt │ │ │ │ ├── repository │ │ │ │ │ └── ReportsRepositoryImp.kt │ │ │ │ └── utils │ │ │ │ │ └── ParamsNetwork.kt │ │ │ ├── repository │ │ │ │ ├── ErrorBundle.java │ │ │ │ ├── FeedbackRepository.java │ │ │ │ ├── MediaFileRepository.java │ │ │ │ ├── MediaFileRequestBody.java │ │ │ │ ├── OpenRosaRepository.kt │ │ │ │ ├── ProgressListener.kt │ │ │ │ ├── SkippableMediaFileRequestBody.java │ │ │ │ ├── TLSSocketFactory.java │ │ │ │ ├── UwaziRepository.kt │ │ │ │ └── XErrorBundle.java │ │ │ ├── resources │ │ │ │ ├── remote │ │ │ │ │ └── ResourcesApiService.kt │ │ │ │ ├── repository │ │ │ │ │ └── ResourcesRepositoryImp.kt │ │ │ │ └── utils │ │ │ │ │ └── ParamsNetwork.kt │ │ │ ├── rest │ │ │ │ ├── BaseApi.java │ │ │ │ ├── ErrorResponse.java │ │ │ │ ├── FeedbackApi.java │ │ │ │ ├── IFeedbackApi.java │ │ │ │ ├── IReportsApi.java │ │ │ │ ├── ITrainApi.java │ │ │ │ ├── IUwaziApi.kt │ │ │ │ ├── ReportsApi.java │ │ │ │ ├── Response.java │ │ │ │ └── TrainApi.java │ │ │ ├── sharedpref │ │ │ │ ├── Preferences.java │ │ │ │ └── SharedPrefs.java │ │ │ ├── upload │ │ │ │ └── TUSClient.java │ │ │ └── uwazi │ │ │ │ ├── UvCookieJar.kt │ │ │ │ ├── UwaziClient.java │ │ │ │ ├── UwaziConstants.java │ │ │ │ └── UwaziService.java │ │ │ ├── domain │ │ │ ├── entity │ │ │ │ ├── EntityStatus.kt │ │ │ │ ├── Feedback.java │ │ │ │ ├── FileUploadBundle.java │ │ │ │ ├── FileUploadInstance.java │ │ │ │ ├── IErrorBundle.java │ │ │ │ ├── IErrorCode.java │ │ │ │ ├── IProgressListener.java │ │ │ │ ├── KeyBundle.java │ │ │ │ ├── LoginResponse.kt │ │ │ │ ├── OldMediaFile.java │ │ │ │ ├── RawFile.java │ │ │ │ ├── ReportFileUploadInstance.java │ │ │ │ ├── Server.java │ │ │ │ ├── ServerType.kt │ │ │ │ ├── Settings.java │ │ │ │ ├── UWaziUploadServer.java │ │ │ │ ├── UploadProgressInfo.java │ │ │ │ ├── background_activity │ │ │ │ │ ├── BackgroundActivityModel.kt │ │ │ │ │ ├── BackgroundActivityStatus.kt │ │ │ │ │ └── BackgroundActivityType.kt │ │ │ │ ├── collect │ │ │ │ │ ├── CollectForm.java │ │ │ │ │ ├── CollectFormInstance.java │ │ │ │ │ ├── CollectFormInstanceStatus.java │ │ │ │ │ ├── CollectInstanceVaultFile.java │ │ │ │ │ ├── CollectServer.java │ │ │ │ │ ├── CollectServerType.java │ │ │ │ │ ├── FormMediaFile.java │ │ │ │ │ ├── FormMediaFileStatus.java │ │ │ │ │ ├── FormPair.java │ │ │ │ │ ├── ListFormResult.java │ │ │ │ │ ├── NegotiatedCollectServer.java │ │ │ │ │ ├── OdkForm.java │ │ │ │ │ ├── OpenRosaPartResponse.java │ │ │ │ │ └── OpenRosaResponse.java │ │ │ │ ├── feedback │ │ │ │ │ ├── FeedbackInstance.kt │ │ │ │ │ ├── FeedbackPostResult.kt │ │ │ │ │ └── FeedbackStatus.kt │ │ │ │ ├── reports │ │ │ │ │ ├── Author.kt │ │ │ │ │ ├── FileInfo.kt │ │ │ │ │ ├── ProjectSlugResult.kt │ │ │ │ │ ├── ReportInstance.kt │ │ │ │ │ ├── ReportInstanceBundle.kt │ │ │ │ │ ├── ReportPostResult.kt │ │ │ │ │ ├── ReportStatus.kt │ │ │ │ │ ├── ReportsLoginResult.kt │ │ │ │ │ ├── TellaReportServer.kt │ │ │ │ │ └── User.kt │ │ │ │ ├── resources │ │ │ │ │ ├── ListResourceResult.kt │ │ │ │ │ └── Resource.kt │ │ │ │ └── uwazi │ │ │ │ │ ├── CollectTemplate.kt │ │ │ │ │ ├── CommonProperty.kt │ │ │ │ │ ├── EntityInstanceBundle.kt │ │ │ │ │ ├── Language.kt │ │ │ │ │ ├── ListTemplateResult.java │ │ │ │ │ ├── NestedSelectValue.kt │ │ │ │ │ ├── Property.kt │ │ │ │ │ ├── RelationShipRow.kt │ │ │ │ │ ├── RowDictionary.kt │ │ │ │ │ ├── SelectValue.kt │ │ │ │ │ ├── Settings.kt │ │ │ │ │ ├── TranslationContext.kt │ │ │ │ │ ├── TranslationRow.kt │ │ │ │ │ ├── UwaziEntityInstance.kt │ │ │ │ │ ├── UwaziRow.kt │ │ │ │ │ └── Value.kt │ │ │ ├── exception │ │ │ │ ├── NoConnectivityException.java │ │ │ │ ├── NotFountException.java │ │ │ │ ├── OpenRosaNegotiationErrorBundle.java │ │ │ │ └── OpenRosaSubmissionErrorBundle.java │ │ │ ├── repository │ │ │ │ ├── ICollectFormsRepository.java │ │ │ │ ├── ICollectServersRepository.java │ │ │ │ ├── IFeedbackRepository.java │ │ │ │ ├── IMediaFileRecordRepository.java │ │ │ │ ├── IMediaFileRepository.java │ │ │ │ ├── IOpenRosaRepository.java │ │ │ │ ├── IServersRepository.java │ │ │ │ ├── ITellaUploadServersRepository.java │ │ │ │ ├── ITellaUploadsRepository.java │ │ │ │ ├── IUWAZIServersRepository.java │ │ │ │ ├── feedback │ │ │ │ │ ├── FeedBackRepository.kt │ │ │ │ │ └── ITellaFeedBackRepository.kt │ │ │ │ ├── reports │ │ │ │ │ ├── ITellaReportsRepository.kt │ │ │ │ │ └── ReportsRepository.kt │ │ │ │ ├── resources │ │ │ │ │ ├── ITellaResourcesRepository.kt │ │ │ │ │ └── ResourcesRepository.kt │ │ │ │ └── uwazi │ │ │ │ │ ├── ICollectUwaziTemplatesRepository.java │ │ │ │ │ └── IUwaziUserRepository.kt │ │ │ └── usecases │ │ │ │ ├── base │ │ │ │ ├── CompletableUseCase.kt │ │ │ │ ├── SingleUseCase.kt │ │ │ │ └── UseCase.kt │ │ │ │ ├── reports │ │ │ │ ├── CheckReportsServerUseCase.kt │ │ │ │ ├── DeleteReportUseCase.kt │ │ │ │ ├── GetReportBundleUseCase.kt │ │ │ │ ├── GetReportsServersUseCase.kt │ │ │ │ ├── GetReportsUseCase.kt │ │ │ │ ├── SaveReportFormInstanceUseCase.kt │ │ │ │ └── SubmitReportUseCase.kt │ │ │ │ └── shared │ │ │ │ └── ScheduleUploadReportFilesUseCase.kt │ │ │ ├── javarosa │ │ │ ├── FormParser.java │ │ │ ├── FormSaver.java │ │ │ ├── FormUtils.java │ │ │ ├── IFormParserContract.java │ │ │ ├── IFormSaverContract.java │ │ │ ├── JavaRosa.java │ │ │ └── PropertyManager.java │ │ │ ├── media │ │ │ ├── AudioPlayer.java │ │ │ ├── AudioRecorder.java │ │ │ ├── FileWalker.java │ │ │ ├── MediaFileHandler.java │ │ │ ├── MediaFileHttpServer.java │ │ │ ├── camera │ │ │ │ ├── LuminosityAnalyzer.kt │ │ │ │ └── ThreadExecutor.kt │ │ │ └── exo │ │ │ │ ├── MediaFileDataSource.java │ │ │ │ └── MediaFileDataSourceFactory.java │ │ │ ├── mvp │ │ │ ├── contract │ │ │ │ ├── IAudioCapturePresenterContract.java │ │ │ │ ├── IAudioPlayPresenterContract.java │ │ │ │ ├── IBasePresenter.java │ │ │ │ ├── ICameraPresenterContract.java │ │ │ │ ├── ICheckOdkServerContract.java │ │ │ │ ├── ICheckTUSServerContract.java │ │ │ │ ├── ICheckUwaziServer.kt │ │ │ │ ├── ICheckUwaziServerContract.kt │ │ │ │ ├── ICollectAttachmentMediaFilePresenterContract.java │ │ │ │ ├── ICollectBlankFormListRefreshPresenterContract.java │ │ │ │ ├── ICollectServersPresenterContract.java │ │ │ │ ├── IFeedbackPresenterContract.java │ │ │ │ ├── IHomeScreenPresenterContract.java │ │ │ │ ├── ILocationGettingPresenterContract.java │ │ │ │ ├── IMediaFileViewerPresenterContract.java │ │ │ │ ├── IMediaImportPresenterContract.java │ │ │ │ ├── IMetadataAttachPresenterContract.java │ │ │ │ ├── INewReportPresenterContract.java │ │ │ │ ├── IServersPresenterContract.java │ │ │ │ ├── ISignaturePresenterContract.java │ │ │ │ ├── ITellaFileUploadPresenterContract.java │ │ │ │ ├── ITellaFileUploadSchedulePresenterContract.java │ │ │ │ ├── ITellaUploadDialogPresenterContract.java │ │ │ │ ├── ITellaUploadServersPresenterContract.java │ │ │ │ └── IUWAZIServersPresenterContract.java │ │ │ └── presenter │ │ │ │ ├── AudioPlayPresenter.java │ │ │ │ ├── CameraPresenter.java │ │ │ │ ├── CheckOdkServerPresenter.java │ │ │ │ ├── CheckTUSServerPresenter.java │ │ │ │ ├── CheckUwaziServerPresenter.kt │ │ │ │ ├── CollectAttachmentMediaFilePresenter.java │ │ │ │ ├── CollectBlankFormListRefreshPresenter.java │ │ │ │ ├── CollectServersPresenter.java │ │ │ │ ├── FeedbackPresenter.java │ │ │ │ ├── HomeScreenPresenter.java │ │ │ │ ├── LocationGettingPresenter.java │ │ │ │ ├── MediaImportPresenter.java │ │ │ │ ├── MetadataAttacher.java │ │ │ │ ├── NewReportPresenter.java │ │ │ │ ├── ServersPresenter.java │ │ │ │ ├── SignaturePresenter.java │ │ │ │ ├── TellaFileUploadSchedulePresenter.java │ │ │ │ ├── TellaUploadDialogPresenter.java │ │ │ │ ├── TellaUploadServersPresenter.java │ │ │ │ └── UwaziServersPresenter.kt │ │ │ ├── mvvm │ │ │ └── viewmodel │ │ │ │ └── TellaFileUploadSchedulerViewModel.kt │ │ │ ├── odk │ │ │ ├── FormController.java │ │ │ └── exception │ │ │ │ └── JavaRosaException.java │ │ │ ├── presentation │ │ │ ├── entity │ │ │ │ ├── CamouflageOption.java │ │ │ │ ├── DownloadState.java │ │ │ │ ├── MediaFilesData.java │ │ │ │ ├── PublicMetadata.java │ │ │ │ ├── SensorData.java │ │ │ │ ├── ViewType.java │ │ │ │ └── mapper │ │ │ │ │ └── PublicMetadataMapper.java │ │ │ └── uwazi │ │ │ │ ├── Attachment.kt │ │ │ │ ├── Metadata.kt │ │ │ │ ├── SendEntityRequest.kt │ │ │ │ ├── UwaziGeoData.kt │ │ │ │ ├── UwaziRelationShipEntity.kt │ │ │ │ ├── UwaziValue.kt │ │ │ │ └── UwaziValueAttachment.kt │ │ │ ├── util │ │ │ ├── C.java │ │ │ ├── CamouflageConstant.kt │ │ │ ├── CamouflageManager.java │ │ │ ├── ConnectionLiveData.kt │ │ │ ├── DateUtil.java │ │ │ ├── DialogsUtil.java │ │ │ ├── Extensions.kt │ │ │ ├── FailedUnlockManager.kt │ │ │ ├── FileUtil.java │ │ │ ├── IOCipherMountHelper.java │ │ │ ├── KeyboardLiveData.kt │ │ │ ├── LimitedInputStream.java │ │ │ ├── LocaleManager.java │ │ │ ├── LocationProvider.java │ │ │ ├── LocationUtil.java │ │ │ ├── LockTimeoutManager.java │ │ │ ├── MetadataUtils.java │ │ │ ├── NavigationManager.kt │ │ │ ├── OpenPassword.java │ │ │ ├── PermissionUtil.kt │ │ │ ├── RealPathUtil.kt │ │ │ ├── ReplaceCallback.java │ │ │ ├── StatusProvider.kt │ │ │ ├── StatusProviderImpl.kt │ │ │ ├── StringUtils.java │ │ │ ├── TelephonyUtils.java │ │ │ ├── TellaUpgrader.java │ │ │ ├── ThemeStyleManager.kt │ │ │ ├── ThreadUtil.java │ │ │ ├── TopSheetTestUtils.kt │ │ │ ├── Util.java │ │ │ ├── ViewUtil.java │ │ │ ├── exception │ │ │ │ ├── ExceptionHandler.kt │ │ │ │ └── ExceptionType.kt │ │ │ ├── helper │ │ │ │ └── OrderType.java │ │ │ └── jobs │ │ │ │ ├── EncryptionWorker.kt │ │ │ │ ├── WorkerSendFeedBack.kt │ │ │ │ └── WorkerUploadReport.kt │ │ │ └── views │ │ │ ├── activity │ │ │ ├── CameraActivity.kt │ │ │ ├── CollectFormEntryActivity.kt │ │ │ ├── ExitActivity.java │ │ │ ├── FormSubmitActivity.kt │ │ │ ├── LocationMapActivity.java │ │ │ ├── MainActivity.kt │ │ │ ├── MetaDataFragment.java │ │ │ ├── MetadataActivity.java │ │ │ ├── MetadataHelpActivity.java │ │ │ ├── MetadataViewerActivity.java │ │ │ ├── NewPatternActivity.java │ │ │ ├── PatternUpgradeActivity.java │ │ │ ├── QuestionAttachmentActivity.kt │ │ │ ├── ServersSettingsActivity.java │ │ │ ├── SettingsActivity.java │ │ │ ├── SignatureActivity.java │ │ │ ├── SplashActivity.kt │ │ │ ├── WebViewerActivity.kt │ │ │ ├── analytics │ │ │ │ ├── AnalyticsActions.kt │ │ │ │ ├── AnalyticsContributeFragment.kt │ │ │ │ ├── AnalyticsHowWorksFragment.kt │ │ │ │ ├── AnalyticsIntroActivity.kt │ │ │ │ ├── AnalyticsQuestionsFragment.kt │ │ │ │ ├── AnalyticsShareDataFragment.kt │ │ │ │ ├── AnalyticsWeWillNotFragment.kt │ │ │ │ └── ViewPagerFragmentAdapter.kt │ │ │ ├── camera │ │ │ │ ├── CameraActivity.kt │ │ │ │ ├── CameraFragment.kt │ │ │ │ └── SharedCameraViewModel.kt │ │ │ ├── onboarding │ │ │ │ ├── IOnBoardPresenterContract.java │ │ │ │ ├── OnBoardActivityInterface.kt │ │ │ │ ├── OnBoardAdvancedComplete.kt │ │ │ │ ├── OnBoardAllDoneFragment.kt │ │ │ │ ├── OnBoardCalculatorFragment.kt │ │ │ │ ├── OnBoardCameraFragment.kt │ │ │ │ ├── OnBoardConnectedFragment.kt │ │ │ │ ├── OnBoardFilesFragment.kt │ │ │ │ ├── OnBoardHideNameLogoFragment.kt │ │ │ │ ├── OnBoardHideOptionFragment.kt │ │ │ │ ├── OnBoardHideTellaFragment.kt │ │ │ │ ├── OnBoardHideTellaSet.kt │ │ │ │ ├── OnBoardIntroFragment.kt │ │ │ │ ├── OnBoardLockFragment.kt │ │ │ │ ├── OnBoardLockSetFragment.kt │ │ │ │ ├── OnBoardPresenter.java │ │ │ │ ├── OnBoardRecorderFragment.kt │ │ │ │ ├── OnBoardShareDataFragment.kt │ │ │ │ ├── OnBoardingActivity.kt │ │ │ │ └── OnboardCollectDataFragment.kt │ │ │ └── viewer │ │ │ │ ├── AudioPlayActivity.kt │ │ │ │ ├── MediaFileDeleteConfirmation.kt │ │ │ │ ├── MediaFileExportStatus.kt │ │ │ │ ├── PDFReaderActivity.kt │ │ │ │ ├── PdfScrollListener.kt │ │ │ │ ├── PermissionsActionsHelper.kt │ │ │ │ ├── PhotoViewerActivity.kt │ │ │ │ ├── SharedMediaFileViewModel.kt │ │ │ │ ├── VaultActionsHelper.kt │ │ │ │ └── VideoViewerActivity.kt │ │ │ ├── adapters │ │ │ ├── AttachmentsRecycleViewAdapter.java │ │ │ ├── CamouflageRecycleViewAdapter.java │ │ │ ├── CollectDraftFormInstanceRecycleViewAdapter.java │ │ │ ├── CollectOutboxFormInstanceRecycleViewAdapter.java │ │ │ ├── CollectSubmittedFormInstanceRecycleViewAdapter.java │ │ │ ├── GalleryRecycleViewAdapter.java │ │ │ ├── reports │ │ │ │ └── ReportsFilesRecyclerViewAdapter.kt │ │ │ └── uwazi │ │ │ │ ├── LanguageSelectorAdapter.kt │ │ │ │ ├── UwaziTemplatesAdapter.kt │ │ │ │ └── ViewLanguageItem.kt │ │ │ ├── base_ui │ │ │ ├── BaseActivity.kt │ │ │ ├── BaseBindingDialogFragment.kt │ │ │ ├── BaseBindingFragment.kt │ │ │ ├── BaseFragment.kt │ │ │ ├── BaseLockActivity.kt │ │ │ └── MetadataBaseLockFragment.kt │ │ │ ├── collect │ │ │ ├── CollectFormEndView.java │ │ │ ├── CollectFormView.java │ │ │ └── widgets │ │ │ │ ├── AudioWidget.java │ │ │ │ ├── DateWidget.java │ │ │ │ ├── GeoPointHiddenWidget.java │ │ │ │ ├── GeoPointWidget.java │ │ │ │ ├── ImageWidget.java │ │ │ │ ├── LongWidget.java │ │ │ │ ├── MediaFileBinaryWidget.java │ │ │ │ ├── QuestionWidget.java │ │ │ │ ├── SelectMultiWidget.java │ │ │ │ ├── SelectOneWidget.java │ │ │ │ ├── SignatureWidget.java │ │ │ │ ├── SpinnerWidget.java │ │ │ │ ├── StringHiddenWidget.java │ │ │ │ ├── StringWidget.java │ │ │ │ ├── TimeWidget.java │ │ │ │ ├── TriggerWidget.java │ │ │ │ ├── VideoWidget.java │ │ │ │ └── WidgetFactory.java │ │ │ ├── custom │ │ │ ├── AnimatedArrowsView.java │ │ │ ├── CameraCaptureButton.java │ │ │ ├── CameraDurationTextView.java │ │ │ ├── CameraFlashButton.java │ │ │ ├── CameraGridButton.java │ │ │ ├── CameraPreviewAnonymousButton.java │ │ │ ├── CameraResolutionButton.java │ │ │ ├── CameraSwitchButton.java │ │ │ ├── CollectAttachmentPreviewView.java │ │ │ ├── CollectRelationShipPreviewView.kt │ │ │ ├── CountdownImageView.java │ │ │ ├── CountdownTextView.java │ │ │ ├── FormSubmitButtonView.java │ │ │ ├── GalleryRecyclerView.java │ │ │ ├── HomeScreenGradient.java │ │ │ ├── MapViewOverlay.kt │ │ │ ├── SpacesItemDecoration.java │ │ │ └── SquareRelativeLayout.java │ │ │ ├── dialog │ │ │ ├── CollectServerDialogFragment.java │ │ │ ├── ConnectFlowUtils.kt │ │ │ ├── Constants.kt │ │ │ ├── SharedLiveData.kt │ │ │ ├── TellaUploadServerDialogFragment.kt │ │ │ ├── UwaziServerLanguageDialogFragment.kt │ │ │ ├── UwaziServerLanguageViewModel.kt │ │ │ ├── reports │ │ │ │ ├── ReportsConnectFlowActivity.kt │ │ │ │ ├── ReportsConnectFlowViewModel.kt │ │ │ │ ├── edit │ │ │ │ │ └── EditTellaServerFragment.kt │ │ │ │ ├── step1 │ │ │ │ │ └── EnterUploadServerFragment.kt │ │ │ │ ├── step2 │ │ │ │ │ └── ChooseUserNamePasswordFragment.kt │ │ │ │ ├── step3 │ │ │ │ │ └── LoginReportsFragment.kt │ │ │ │ ├── step4 │ │ │ │ │ └── SuccessfulLoginFragment.kt │ │ │ │ ├── step5 │ │ │ │ │ └── ServerAdvancedSettingsFragment.kt │ │ │ │ └── step6 │ │ │ │ │ └── SuccessfulSetServerFragment.kt │ │ │ └── uwazi │ │ │ │ ├── UwaziConnectFlowActivity.kt │ │ │ │ ├── UwaziConnectFlowViewModel.kt │ │ │ │ ├── step1 │ │ │ │ └── EnterServerFragment.kt │ │ │ │ ├── step2 │ │ │ │ └── LoginTypeFragment.kt │ │ │ │ ├── step3 │ │ │ │ └── LoginFragment.kt │ │ │ │ ├── step4 │ │ │ │ └── TwoFactorAuthenticationFragment.kt │ │ │ │ ├── step5 │ │ │ │ └── LanguageFragment.kt │ │ │ │ └── step6 │ │ │ │ └── SuccessConnectFragment.kt │ │ │ ├── fragment │ │ │ ├── feedback │ │ │ │ ├── SendFeedbackFragment.kt │ │ │ │ ├── SendFeedbackViewModel.kt │ │ │ │ └── di │ │ │ │ │ └── NetworkModule.kt │ │ │ ├── forms │ │ │ │ ├── BlankFormsListFragment.kt │ │ │ │ ├── CollectMainFragment.kt │ │ │ │ ├── DraftFormsListFragment.kt │ │ │ │ ├── FormListInterface.java │ │ │ │ ├── OutboxFormListFragment.kt │ │ │ │ ├── QuestionAttachmentModel.kt │ │ │ │ ├── SharedFormsViewModel.kt │ │ │ │ ├── SubmitFormsViewModel.kt │ │ │ │ ├── SubmittedFormsListFragment.kt │ │ │ │ └── viewpager │ │ │ │ │ └── ViewPagerAdapter.kt │ │ │ ├── recorder │ │ │ │ ├── AudioCaptureViewModel.kt │ │ │ │ └── MicFragment.kt │ │ │ ├── reports │ │ │ │ ├── ReportsFragment.kt │ │ │ │ ├── ReportsViewModel.kt │ │ │ │ ├── adapter │ │ │ │ │ ├── EntityAdapter.kt │ │ │ │ │ └── ViewEntityTemplateItem.kt │ │ │ │ ├── di │ │ │ │ │ ├── AppModule.kt │ │ │ │ │ ├── NavControllerProvider.kt │ │ │ │ │ ├── NetworkModule.kt │ │ │ │ │ └── RepositoryModule.kt │ │ │ │ ├── entry │ │ │ │ │ └── ReportsEntryFragment.kt │ │ │ │ ├── mappers │ │ │ │ │ └── Mappers.kt │ │ │ │ ├── send │ │ │ │ │ └── ReportsSendFragment.kt │ │ │ │ ├── submitted │ │ │ │ │ └── ReportSubmittedFragment.kt │ │ │ │ ├── viewpager │ │ │ │ │ └── ViewPagerAdapter.kt │ │ │ │ └── viewpagerfragments │ │ │ │ │ ├── DraftsReportsFragment.kt │ │ │ │ │ ├── OutboxReportsFragment.kt │ │ │ │ │ ├── ReportsUtils.kt │ │ │ │ │ └── SubmittedReportsFragment.kt │ │ │ ├── resources │ │ │ │ ├── ResourcesListFragment.kt │ │ │ │ ├── ResourcesViewModel.kt │ │ │ │ └── di │ │ │ │ │ ├── NetworkModule.kt │ │ │ │ │ └── RepositoryModule.kt │ │ │ ├── uwazi │ │ │ │ ├── DraftsUwaziFragment.kt │ │ │ │ ├── OutboxUwaziFragment.kt │ │ │ │ ├── SharedLiveData.kt │ │ │ │ ├── SharedUwaziViewModel.kt │ │ │ │ ├── SubmittedPreviewFragment.kt │ │ │ │ ├── SubmittedUwaziFragment.kt │ │ │ │ ├── TemplatesUwaziFragment.kt │ │ │ │ ├── UwaziFragment.kt │ │ │ │ ├── UwaziListFragment.kt │ │ │ │ ├── adapters │ │ │ │ │ ├── EntityMessageViewHolder.kt │ │ │ │ │ ├── UwaziDraftsAdapter.kt │ │ │ │ │ ├── UwaziSubmittedAdapter.kt │ │ │ │ │ ├── ViewEntityInstanceItem.kt │ │ │ │ │ └── ViewEntityTemplateItem.kt │ │ │ │ ├── attachments │ │ │ │ │ ├── AttachmentsActivitySelector.kt │ │ │ │ │ ├── AttachmentsSelectorAdapter.java │ │ │ │ │ ├── AttachmentsSelectorViewModel.kt │ │ │ │ │ └── ISelectorVaultHandler.java │ │ │ │ ├── download │ │ │ │ │ ├── DownloadedTemplatesFragment.kt │ │ │ │ │ ├── DownloadedTemplatesViewModel.kt │ │ │ │ │ └── adapter │ │ │ │ │ │ ├── TemplateContainerAdapter.kt │ │ │ │ │ │ ├── TemplateContainerViewHolder.kt │ │ │ │ │ │ ├── TemplateListAdapter.kt │ │ │ │ │ │ ├── TemplateViewHolder.kt │ │ │ │ │ │ └── ViewTemplateItem.kt │ │ │ │ ├── entry │ │ │ │ │ ├── SharedUwaziSubmissionViewModel.kt │ │ │ │ │ ├── UwaziEntryFragment.kt │ │ │ │ │ ├── UwaziEntryPrompt.java │ │ │ │ │ ├── UwaziFormView.java │ │ │ │ │ ├── UwaziParser.kt │ │ │ │ │ └── UwaziSelectEntitiesFragment.kt │ │ │ │ ├── mappers │ │ │ │ │ └── Mapper.kt │ │ │ │ ├── send │ │ │ │ │ └── UwaziSendFragment.kt │ │ │ │ ├── viewpager │ │ │ │ │ └── ViewPagerAdapter.kt │ │ │ │ └── widgets │ │ │ │ │ ├── OnEntityClickInEntryListener.java │ │ │ │ │ ├── OnSelectEntitiesClickListener.java │ │ │ │ │ ├── ReportsFormEndView.java │ │ │ │ │ ├── UwaziDateRangeWidget.java │ │ │ │ │ ├── UwaziDateWidget.java │ │ │ │ │ ├── UwaziFileBinaryWidget.java │ │ │ │ │ ├── UwaziFormEndView.java │ │ │ │ │ ├── UwaziGeneratedIdWidget.java │ │ │ │ │ ├── UwaziGeoPointWidget.java │ │ │ │ │ ├── UwaziImageWidget.java │ │ │ │ │ ├── UwaziLinkWidget.java │ │ │ │ │ ├── UwaziMediaWidget.java │ │ │ │ │ ├── UwaziMultiDateRangeWidget.java │ │ │ │ │ ├── UwaziMultiDateWidget.java │ │ │ │ │ ├── UwaziMultiFileWidget.java │ │ │ │ │ ├── UwaziMultiSelectWidget.java │ │ │ │ │ ├── UwaziNumericWidget.java │ │ │ │ │ ├── UwaziQuestionWidget.java │ │ │ │ │ ├── UwaziRelationShipWidget.java │ │ │ │ │ ├── UwaziSelectOneWidget.java │ │ │ │ │ ├── UwaziStringWidget.java │ │ │ │ │ ├── UwaziWidgetFactory.java │ │ │ │ │ └── searchable_multi_select │ │ │ │ │ ├── SearchableAdapter.kt │ │ │ │ │ └── SearchableItem.kt │ │ │ └── vault │ │ │ │ ├── adapters │ │ │ │ ├── VaultAdapter.kt │ │ │ │ ├── VaultClickListener.kt │ │ │ │ ├── attachments │ │ │ │ │ ├── AttachmentsRecycleViewAdapter.java │ │ │ │ │ ├── IGalleryVaultHandler.java │ │ │ │ │ ├── RecentAttachmentAdapter.kt │ │ │ │ │ ├── RecentAttachmentViewHolder.kt │ │ │ │ │ └── ViewType.java │ │ │ │ ├── connections │ │ │ │ │ ├── ServerAdapter.kt │ │ │ │ │ ├── ServerDataItem.kt │ │ │ │ │ └── ServerViewHolder.kt │ │ │ │ ├── forms │ │ │ │ │ ├── FavoriteFormViewHolder.kt │ │ │ │ │ └── FavoriteFormsAdapter.kt │ │ │ │ ├── templates │ │ │ │ │ ├── FavoriteTemplateViewHolder.kt │ │ │ │ │ └── FavoriteTemplatesAdapter.kt │ │ │ │ └── viewholders │ │ │ │ │ ├── FavoriteFormsViewHolder.kt │ │ │ │ │ ├── FavoriteTemplatesViewHolder.kt │ │ │ │ │ ├── FileActionsViewHolder.kt │ │ │ │ │ ├── ImproveViewHolder.kt │ │ │ │ │ ├── PanicModeViewHolder.kt │ │ │ │ │ ├── RecentFilesViewHolder.kt │ │ │ │ │ ├── ServersViewHolder.kt │ │ │ │ │ ├── TitleViewHolder.kt │ │ │ │ │ ├── base │ │ │ │ │ ├── BaseViewHolder.kt │ │ │ │ │ └── ViewHolderExtension.kt │ │ │ │ │ └── data │ │ │ │ │ └── DataItem.kt │ │ │ │ ├── attachements │ │ │ │ ├── AttachmentsFragment.kt │ │ │ │ ├── AttachmentsViewModel.kt │ │ │ │ ├── OnNavBckListener.kt │ │ │ │ └── helpers │ │ │ │ │ ├── AttachmentsConstants.kt │ │ │ │ │ ├── AttachmentsHelper.kt │ │ │ │ │ ├── AttachmentsSheetHelper.kt │ │ │ │ │ ├── MoveModeUIUpdater.kt │ │ │ │ │ └── SelectMode.kt │ │ │ │ ├── edit │ │ │ │ ├── EditMediaViewModel.kt │ │ │ │ └── VaultEditFragment.kt │ │ │ │ ├── home │ │ │ │ ├── HomeVaultFragment.kt │ │ │ │ ├── HomeVaultPresenter.kt │ │ │ │ ├── IHomeVaultPresenter.kt │ │ │ │ └── background_activities │ │ │ │ │ ├── BackgroundActivitiesAdapter.kt │ │ │ │ │ └── ViewHolder.kt │ │ │ │ └── info │ │ │ │ └── VaultInfoFragment.kt │ │ │ ├── interfaces │ │ │ ├── IAttachmentsMediaHandler.java │ │ │ ├── ICollectEntryInterface.java │ │ │ ├── IGalleryMediaHandler.java │ │ │ ├── IGalleryVaultHandler.java │ │ │ ├── IMainNavigationInterface.java │ │ │ ├── IReportAttachmentsHandler.java │ │ │ ├── ISavedFormsInterface.java │ │ │ └── VerificationWorkStatusCallback.kt │ │ │ └── settings │ │ │ ├── AboutAndHelpSettings.kt │ │ │ ├── CamouflageNameAndLogo.kt │ │ │ ├── ChangeRemoveCamouflage.kt │ │ │ ├── GeneralSettings.kt │ │ │ ├── HideBehindCalculator.kt │ │ │ ├── HideTella.kt │ │ │ ├── LanguageSettings.kt │ │ │ ├── MainSettings.kt │ │ │ ├── OnFragmentSelected.kt │ │ │ ├── SecuritySettings.kt │ │ │ └── SettingsCalculatorActivity.kt │ ├── jeweldash-playstore.png │ ├── playnow-playstore.png │ ├── res │ │ ├── anim │ │ │ ├── fade_in.xml │ │ │ ├── fade_out.xml │ │ │ ├── slide_back_to_top.xml │ │ │ ├── slide_in_down.xml │ │ │ ├── slide_in_end.xml │ │ │ ├── slide_in_start.xml │ │ │ ├── slide_in_up.xml │ │ │ ├── slide_out_down.xml │ │ │ ├── slide_out_end.xml │ │ │ ├── slide_out_from_top.xml │ │ │ ├── slide_out_start.xml │ │ │ └── slide_out_up.xml │ │ ├── animator │ │ │ └── fade_in.xml │ │ ├── color │ │ │ ├── bottom_nav_item_color.xml │ │ │ └── dialog_white_tint.xml │ │ ├── drawable-hdpi │ │ │ ├── ic_action_more_vert.png │ │ │ ├── ic_arrow_back_white_24dp.png │ │ │ ├── ic_autorenew_white_24dp.png │ │ │ ├── osm_ic_center_map.png │ │ │ ├── osm_ic_follow_me_on.png │ │ │ └── white.png │ │ ├── drawable-mdpi │ │ │ ├── ic_action_more_vert.png │ │ │ ├── ic_arrow_back_white_24dp.png │ │ │ ├── ic_autorenew_white_24dp.png │ │ │ ├── osm_ic_center_map.png │ │ │ ├── osm_ic_follow_me_on.png │ │ │ └── white.png │ │ ├── drawable-v21 │ │ │ ├── button_pressed.xml │ │ │ ├── button_pressed_transparent.xml │ │ │ ├── button_pressed_yellow.xml │ │ │ ├── dark_outlined_button.xml │ │ │ └── ic_menu_camera.xml │ │ ├── drawable-v24 │ │ │ ├── calculator_foreground.xml │ │ │ ├── jeweldash_foreground.xml │ │ │ ├── stopwatch_foreground.xml │ │ │ └── sunnyday_foreground.xml │ │ ├── drawable-xhdpi │ │ │ ├── ic_action_more_vert.png │ │ │ ├── ic_arrow_back_white_24dp.png │ │ │ ├── ic_autorenew_white_24dp.png │ │ │ ├── osm_ic_center_map.png │ │ │ ├── osm_ic_follow_me_on.png │ │ │ └── white.png │ │ ├── drawable-xxhdpi │ │ │ ├── ic_action_more_vert.png │ │ │ ├── ic_arrow_back_white_24dp.png │ │ │ ├── ic_audio_w_small.xml │ │ │ ├── ic_autorenew_white_24dp.png │ │ │ ├── osm_ic_center_map.png │ │ │ ├── osm_ic_follow_me_on.png │ │ │ └── white.png │ │ ├── drawable-xxxhdpi │ │ │ ├── ic_action_more_vert.png │ │ │ ├── ic_arrow_back_white_24dp.png │ │ │ ├── ic_autorenew_white_24dp.png │ │ │ ├── osm_ic_center_map.png │ │ │ ├── osm_ic_follow_me_on.png │ │ │ └── white.png │ │ ├── drawable │ │ │ ├── action_button_background.xml │ │ │ ├── attach_file_badge_background.xml │ │ │ ├── audio_record_button_background.xml │ │ │ ├── baseline_autorenew_24.xml │ │ │ ├── bg_chechbox_selected.xml │ │ │ ├── bg_checkbox_unselected.xml │ │ │ ├── bg_circle_counter.xml │ │ │ ├── bg_description.xml │ │ │ ├── bg_description_tiger.xml │ │ │ ├── bg_home_btn.xml │ │ │ ├── bg_information_button.xml │ │ │ ├── bg_information_button_selected.xml │ │ │ ├── bg_left_favorite_forms.xml │ │ │ ├── bg_play_circle.xml │ │ │ ├── bg_right_favorite_forms.xml │ │ │ ├── bg_send_later.xml │ │ │ ├── bg_yellow_btn.xml │ │ │ ├── big_white_pause_24p.xml │ │ │ ├── blue_gradient_background.xml │ │ │ ├── blue_skin_calculator.png │ │ │ ├── button_oval_black_background.xml │ │ │ ├── button_pressed.xml │ │ │ ├── button_pressed_transparent.xml │ │ │ ├── button_pressed_yellow.xml │ │ │ ├── calc_blue_skin_foreground.xml │ │ │ ├── calc_green_skin_foreground.xml │ │ │ ├── calc_orange_skin_foreground.xml │ │ │ ├── calc_yellow_skin_foreground.xml │ │ │ ├── calculate_foreground.xml │ │ │ ├── calculator_foreground.xml │ │ │ ├── calculator_foreground_circle.xml │ │ │ ├── calculator_hide.png │ │ │ ├── calculatorplus_foreground.xml │ │ │ ├── camouflage_icon_background.xml │ │ │ ├── camouflage_icon_background_selector.xml │ │ │ ├── camouflage_icon_selected_background.xml │ │ │ ├── cancel_button_background.xml │ │ │ ├── capture_button_background.xml │ │ │ ├── capture_button_stop.xml │ │ │ ├── central_button_background.xml │ │ │ ├── check_tiger_orange.xml │ │ │ ├── circle_check.xml │ │ │ ├── clock_foreground.xml │ │ │ ├── collect_server_dialog_layout_background.xml │ │ │ ├── collect_widget_menu_background.xml │ │ │ ├── countdown_0.png │ │ │ ├── countdown_1.png │ │ │ ├── countdown_2.png │ │ │ ├── countdown_3.png │ │ │ ├── countdown_4.png │ │ │ ├── countdown_5.png │ │ │ ├── crop_rotate.xml │ │ │ ├── dark_outlined_button.xml │ │ │ ├── default_dot.xml │ │ │ ├── easyweather_foreground.xml │ │ │ ├── feedback_icon.xml │ │ │ ├── flip_horizontally.xml │ │ │ ├── flip_vertically.xml │ │ │ ├── gallery_checkbox_selector.xml │ │ │ ├── gallery_gradient.xml │ │ │ ├── gallery_sort_menu_color_selector.xml │ │ │ ├── gamestation_foreground.xml │ │ │ ├── gps_fixed_icon_white.xml │ │ │ ├── green_skin_calculator.png │ │ │ ├── grid.xml │ │ │ ├── ic_add_circle_outline_24_orange.xml │ │ │ ├── ic_add_circle_white.xml │ │ │ ├── ic_arrow_back_white_24dp.xml │ │ │ ├── ic_arrow_up_white.xml │ │ │ ├── ic_assignment_white_24dp.xml │ │ │ ├── ic_attach_file_white_24dp.xml │ │ │ ├── ic_audio.xml │ │ │ ├── ic_back_white.xml │ │ │ ├── ic_baseline_compare_arrows_24px.xml │ │ │ ├── ic_baseline_error_outline_24.xml │ │ │ ├── ic_baseline_markunread_24.xml │ │ │ ├── ic_baseline_more_vert_24.xml │ │ │ ├── ic_calculator_blue_skin_background.xml │ │ │ ├── ic_calculator_launcher_foreground.xml │ │ │ ├── ic_calculator_orange_skin_background.xml │ │ │ ├── ic_calculator_yellow_skin_background.xml │ │ │ ├── ic_calendar.xml │ │ │ ├── ic_camera_front_white.xml │ │ │ ├── ic_camera_illustration.xml │ │ │ ├── ic_camera_launcher_foreground.xml │ │ │ ├── ic_camera_pro_launcher_foreground.xml │ │ │ ├── ic_camera_rear_white.xml │ │ │ ├── ic_cancel_rounded.xml │ │ │ ├── ic_check.xml │ │ │ ├── ic_check_box_off.xml │ │ │ ├── ic_check_box_on.xml │ │ │ ├── ic_check_circle.xml │ │ │ ├── ic_check_select.xml │ │ │ ├── ic_check_white.xml │ │ │ ├── ic_check_white_24dp.xml │ │ │ ├── ic_close.xml │ │ │ ├── ic_close_white.xml │ │ │ ├── ic_close_white_24dp.xml │ │ │ ├── ic_cloud_download_black_24dp.xml │ │ │ ├── ic_collect_menu.xml │ │ │ ├── ic_delete.xml │ │ │ ├── ic_delete_black_24px.xml │ │ │ ├── ic_delete_white_24dp.xml │ │ │ ├── ic_delete_white_24px.xml │ │ │ ├── ic_documents.xml │ │ │ ├── ic_download.xml │ │ │ ├── ic_easy_cam_launcher_foreground.xml │ │ │ ├── ic_easy_math_launcher_foreground.xml │ │ │ ├── ic_edit_orange_24.xml │ │ │ ├── ic_error.xml │ │ │ ├── ic_fast_forward_black_24dp.xml │ │ │ ├── ic_fast_rewind_black_24dp.xml │ │ │ ├── ic_files_illustration.xml │ │ │ ├── ic_flash_auto_white.xml │ │ │ ├── ic_flash_off_white.xml │ │ │ ├── ic_flash_on_white.xml │ │ │ ├── ic_folder_plus.xml │ │ │ ├── ic_gallery.xml │ │ │ ├── ic_gps_fixed_white_24dp.xml │ │ │ ├── ic_grid_off_white_24dp.xml │ │ │ ├── ic_grid_on_white_24dp.xml │ │ │ ├── ic_headset_white_24dp.xml │ │ │ ├── ic_help_outline_white_24.xml │ │ │ ├── ic_help_white_24px.xml │ │ │ ├── ic_info_24px.xml │ │ │ ├── ic_insights_contribute.xml │ │ │ ├── ic_insights_questions.xml │ │ │ ├── ic_insights_share_data.xml │ │ │ ├── ic_insights_will_not.xml │ │ │ ├── ic_launcher_background.xml │ │ │ ├── ic_launcher_foreground.xml │ │ │ ├── ic_list_check.xml │ │ │ ├── ic_local_weather_launcher_foreground.xml │ │ │ ├── ic_location_disabled_white.xml │ │ │ ├── ic_location_searching_black.xml │ │ │ ├── ic_mic_gray.xml │ │ │ ├── ic_mic_illustration.xml │ │ │ ├── ic_mic_white.xml │ │ │ ├── ic_mic_white_small.xml │ │ │ ├── ic_more_vert_black_24dp.xml │ │ │ ├── ic_myfiles.xml │ │ │ ├── ic_onboard_finish.xml │ │ │ ├── ic_others.xml │ │ │ ├── ic_panic_circle.xml │ │ │ ├── ic_pause_white_24.xml │ │ │ ├── ic_pin.xml │ │ │ ├── ic_play.png │ │ │ ├── ic_play_arrow_white_24dp.xml │ │ │ ├── ic_plus_rounded.xml │ │ │ ├── ic_privacy_policy.xml │ │ │ ├── ic_progress_bg.xml │ │ │ ├── ic_refresh.xml │ │ │ ├── ic_reports_settings.xml │ │ │ ├── ic_save_white_24dp.xml │ │ │ ├── ic_search.xml │ │ │ ├── ic_secret_icon.xml │ │ │ ├── ic_send_black_24dp.xml │ │ │ ├── ic_server_universe.xml │ │ │ ├── ic_servers_icon.xml │ │ │ ├── ic_settings_white.xml │ │ │ ├── ic_signal_cellular_black_24dp.xml │ │ │ ├── ic_sort_dark_gray_24dp.xml │ │ │ ├── ic_stop_red.xml │ │ │ ├── ic_super_cam_launcher_foreground.xml │ │ │ ├── ic_super_camera_launcher_foreground.xml │ │ │ ├── ic_tune_white.xml │ │ │ ├── ic_update_black_24dp.xml │ │ │ ├── ic_video.xml │ │ │ ├── ic_videocam.xml │ │ │ ├── ic_warning_orange.xml │ │ │ ├── ic_watch_later_orange_24dp.xml │ │ │ ├── ic_weather_launcher_background.xml │ │ │ ├── ic_weather_launcher_foreground.xml │ │ │ ├── ic_weather_now_launcher_foreground.xml │ │ │ ├── ic_welcome.xml │ │ │ ├── icalculator_foreground.xml │ │ │ ├── img_setup.xml │ │ │ ├── jeweldash_foreground.xml │ │ │ ├── later_clock_white.xml │ │ │ ├── later_white.xml │ │ │ ├── light_purple_circle_background.xml │ │ │ ├── light_selected_background.xml │ │ │ ├── lock_bg.xml │ │ │ ├── lock_bg_s.xml │ │ │ ├── metadata_icon.xml │ │ │ ├── odk_empty_icon.xml │ │ │ ├── onboarding_indicator_active.xml │ │ │ ├── onboarding_indicator_inactive.xml │ │ │ ├── orange_help_24.xml │ │ │ ├── orange_skin_calculator.png │ │ │ ├── panic_seek_var_progress.xml │ │ │ ├── password.xml │ │ │ ├── password_s.xml │ │ │ ├── pattern.xml │ │ │ ├── pattern_s.xml │ │ │ ├── pdf_file_24px.xml │ │ │ ├── pin.xml │ │ │ ├── pin_s.xml │ │ │ ├── playnow_foreground.xml │ │ │ ├── purple_background.xml │ │ │ ├── record_light_red_circle_background.xml │ │ │ ├── record_orange_circle_background.xml │ │ │ ├── record_orange_white_background.xml │ │ │ ├── red_circle_background.xml │ │ │ ├── refresh_phone_device.xml │ │ │ ├── refresh_spin.xml │ │ │ ├── relation_entity_icon.xml │ │ │ ├── relation_ship_icon.xml │ │ │ ├── resource_info.xml │ │ │ ├── rotate_image.xml │ │ │ ├── round_orange_button_selector.xml │ │ │ ├── searchview_holo_light.xml │ │ │ ├── selected_dot.xml │ │ │ ├── shadow_border.xml │ │ │ ├── short_arrow_back.xml │ │ │ ├── short_arrow_next.xml │ │ │ ├── short_arrow_up.xml │ │ │ ├── splash_bg.xml │ │ │ ├── star_border_24dp.xml │ │ │ ├── star_filled_24dp.xml │ │ │ ├── stop_white.xml │ │ │ ├── stopwatch_foreground.xml │ │ │ ├── sunnyday_foreground.xml │ │ │ ├── tab_selector.xml │ │ │ ├── tella_black.xml │ │ │ ├── tella_icon.xml │ │ │ ├── tella_white.xml │ │ │ ├── time_foreground.xml │ │ │ ├── upload_box.xml │ │ │ ├── upload_box_btn.xml │ │ │ ├── upload_box_cut.png │ │ │ ├── upload_box_pressed.xml │ │ │ ├── xml_border_bottom.xml │ │ │ ├── yellow_skin_calculator.png │ │ │ ├── zoom_seek_bar_background.xml │ │ │ ├── zoom_seek_bar_progress.xml │ │ │ └── zoom_seek_bar_thumb.xml │ │ ├── layout-hdpi │ │ │ ├── fragment_security_settings.xml │ │ │ ├── item_report_files.xml │ │ │ ├── onboard_advanced_complete.xml │ │ │ ├── onboard_all_done_fragment.xml │ │ │ ├── onboard_hide_tella_fragment.xml │ │ │ ├── onboard_intro_fragment_1.xml │ │ │ ├── onboard_lock_fragment.xml │ │ │ ├── onboard_lock_set_fragment.xml │ │ │ └── onboard_share_data_fragment.xml │ │ ├── layout-v21 │ │ │ ├── item_vault_favorite_forms.xml │ │ │ ├── item_vault_files.xml │ │ │ ├── item_vault_recent_files.xml │ │ │ └── item_vault_title.xml │ │ ├── layout-xhdpi │ │ │ ├── item_report_files.xml │ │ │ ├── onboard_advanced_complete.xml │ │ │ ├── onboard_all_done_fragment.xml │ │ │ ├── onboard_hide_tella_fragment.xml │ │ │ ├── onboard_intro_fragment_1.xml │ │ │ ├── onboard_lock_fragment.xml │ │ │ ├── onboard_lock_set_fragment.xml │ │ │ └── onboard_share_data_fragment.xml │ │ ├── layout │ │ │ ├── activity_audio_play.xml │ │ │ ├── activity_camera.xml │ │ │ ├── activity_clean_insghts.xml │ │ │ ├── activity_collect_form_entry.xml │ │ │ ├── activity_collect_main.xml │ │ │ ├── activity_documentation_settings.xml │ │ │ ├── activity_form_submit.xml │ │ │ ├── activity_location_map.xml │ │ │ ├── activity_main2.xml │ │ │ ├── activity_metadata_help.xml │ │ │ ├── activity_metadata_viewer.xml │ │ │ ├── activity_on_board_calculator.xml │ │ │ ├── activity_onboarding.xml │ │ │ ├── activity_pdf_reader.xml │ │ │ ├── activity_photo_viewer.xml │ │ │ ├── activity_question_attachment.xml │ │ │ ├── activity_settings.xml │ │ │ ├── activity_signature.xml │ │ │ ├── activity_uwazi_connect_flow.xml │ │ │ ├── activity_video_viewer.xml │ │ │ ├── activity_web_viewer.xml │ │ │ ├── baseactivity_activity.xml │ │ │ ├── blank_collect_form_row.xml │ │ │ ├── card_attachment_media_file.xml │ │ │ ├── card_camouflage_icon.xml │ │ │ ├── card_gallery_attachment_media_file.xml │ │ │ ├── choose_auto_upload_server_dialog.xml │ │ │ ├── choose_server_dialog_layout.xml │ │ │ ├── choose_server_layout.xml │ │ │ ├── choose_server_type_layout.xml │ │ │ ├── collect_attachemnt_preview_view.xml │ │ │ ├── collect_checkbox_item.xml │ │ │ ├── collect_form_delimiter.xml │ │ │ ├── collect_form_end_view.xml │ │ │ ├── collect_form_view.xml │ │ │ ├── collect_radiobutton_item.xml │ │ │ ├── collect_refresh_dialog_layout.xml │ │ │ ├── collect_relationship_preview_view.xml │ │ │ ├── collect_widget_date.xml │ │ │ ├── collect_widget_geo_point.xml │ │ │ ├── collect_widget_media.xml │ │ │ ├── collect_widget_signature.xml │ │ │ ├── collect_widget_spinner.xml │ │ │ ├── collect_widget_time.xml │ │ │ ├── content_audio_play.xml │ │ │ ├── content_documentation_settings.xml │ │ │ ├── content_form_submit.xml │ │ │ ├── content_fragment_mic.xml │ │ │ ├── content_location_map.xml │ │ │ ├── content_metadata_help.xml │ │ │ ├── content_metadata_viewer.xml │ │ │ ├── content_panic_mode_view.xml │ │ │ ├── content_photo_viewer.xml │ │ │ ├── content_question_attachment.xml │ │ │ ├── content_signature.xml │ │ │ ├── dialog_collect_server.xml │ │ │ ├── dialog_radio_button_item.xml │ │ │ ├── dialog_uwazi_server_language.xml │ │ │ ├── draft_collect_form_instance_row.xml │ │ │ ├── draft_uwazi_row.xml │ │ │ ├── enable_metadata_dialog_layout.xml │ │ │ ├── form_parts_list_item.xml │ │ │ ├── form_submit_end_button.xml │ │ │ ├── form_updating_dialog_layout.xml │ │ │ ├── fragment_about_n_help_settings.xml │ │ │ ├── fragment_advanced_settings_success.xml │ │ │ ├── fragment_analytics_contribute.xml │ │ │ ├── fragment_analytics_how_works.xml │ │ │ ├── fragment_analytics_questions.xml │ │ │ ├── fragment_analytics_share_data.xml │ │ │ ├── fragment_analytics_we_will_not.xml │ │ │ ├── fragment_attachments_selector.xml │ │ │ ├── fragment_blank_forms_list.xml │ │ │ ├── fragment_camera.xml │ │ │ ├── fragment_change_remove_camouflage.xml │ │ │ ├── fragment_choose_username_password.xml │ │ │ ├── fragment_collect_main.xml │ │ │ ├── fragment_downloaded_templates.xml │ │ │ ├── fragment_draft_forms_list.xml │ │ │ ├── fragment_drafts_uwazi.xml │ │ │ ├── fragment_edit_server.xml │ │ │ ├── fragment_enter_server.xml │ │ │ ├── fragment_general_settings.xml │ │ │ ├── fragment_hide_tella.xml │ │ │ ├── fragment_language_settings.xml │ │ │ ├── fragment_login_reports_screen.xml │ │ │ ├── fragment_login_type.xml │ │ │ ├── fragment_login_uwazi_screen.xml │ │ │ ├── fragment_main_settings.xml │ │ │ ├── fragment_mic.xml │ │ │ ├── fragment_name_and_logo.xml │ │ │ ├── fragment_outbox_form_list.xml │ │ │ ├── fragment_outbox_uwazi.xml │ │ │ ├── fragment_report_server_advanced_settings.xml │ │ │ ├── fragment_reports.xml │ │ │ ├── fragment_reports_entry.xml │ │ │ ├── fragment_reports_list.xml │ │ │ ├── fragment_resources_list.xml │ │ │ ├── fragment_security_settings.xml │ │ │ ├── fragment_send_feedback.xml │ │ │ ├── fragment_send_report.xml │ │ │ ├── fragment_submitted_forms_list.xml │ │ │ ├── fragment_submitted_uwazi.xml │ │ │ ├── fragment_success_connect_flow.xml │ │ │ ├── fragment_successful_login.xml │ │ │ ├── fragment_successful_set_server.xml │ │ │ ├── fragment_sumbitted_preview.xml │ │ │ ├── fragment_templates_uwazi.xml │ │ │ ├── fragment_two_factor_authentication.xml │ │ │ ├── fragment_uwazi.xml │ │ │ ├── fragment_vault.xml │ │ │ ├── fragment_vault_attachments.xml │ │ │ ├── fragment_vault_edit.xml │ │ │ ├── fragment_vault_info.xml │ │ │ ├── home_panic_button_layout.xml │ │ │ ├── item_background_activity.xml │ │ │ ├── item_download_status_template.xml │ │ │ ├── item_favorite_form.xml │ │ │ ├── item_favorite_template.xml │ │ │ ├── item_home_vault_server.xml │ │ │ ├── item_home_vault_servers_list.xml │ │ │ ├── item_language_selector.xml │ │ │ ├── item_uwazi_collect_container.xml │ │ │ ├── item_uwazi_date.xml │ │ │ ├── item_uwazi_date_range.xml │ │ │ ├── item_vault_attachmenets.xml │ │ │ ├── item_vault_attachment_grid.xml │ │ │ ├── item_vault_attachment_hor.xml │ │ │ ├── item_vault_favorite_forms.xml │ │ │ ├── item_vault_files.xml │ │ │ ├── item_vault_insights_approve.xml │ │ │ ├── item_vault_panic_button.xml │ │ │ ├── item_vault_recent_files.xml │ │ │ ├── item_vault_title.xml │ │ │ ├── language_item_layout.xml │ │ │ ├── metadata_dialog_layout.xml │ │ │ ├── metadata_header.xml │ │ │ ├── metadata_item.xml │ │ │ ├── metadata_line.xml │ │ │ ├── onboard_calculator_fragment.xml │ │ │ ├── onboard_camera_fragment.xml │ │ │ ├── onboard_collect_data.xml │ │ │ ├── onboard_connected_server.xml │ │ │ ├── onboard_files_fragment.xml │ │ │ ├── onboard_hide_option_fragment.xml │ │ │ ├── onboard_hide_set_fragment.xml │ │ │ ├── onboard_recorder_fragment.xml │ │ │ ├── question_widget.xml │ │ │ ├── reports_form_end_view.xml │ │ │ ├── row_multi_select_item.xml │ │ │ ├── searchable_list_layout.xml │ │ │ ├── servers_list_item.xml │ │ │ ├── splash_layout.xml │ │ │ ├── submitted_collect_form_instance_row.xml │ │ │ ├── submitted_uwazi_row.xml │ │ │ ├── templates_uwazi_message_row.xml │ │ │ ├── templates_uwazi_row.xml │ │ │ ├── uwazi_checkbox_layout.xml │ │ │ ├── uwazi_entry_fragment.xml │ │ │ ├── uwazi_form_end_view.xml │ │ │ ├── uwazi_header_checkbox_layout.xml │ │ │ ├── uwazi_nested_checkbox_layout.xml │ │ │ ├── uwazi_select_entities_fragment.xml │ │ │ ├── uwazi_send_fragment.xml │ │ │ ├── uwazi_widget_daterange.xml │ │ │ ├── uwazi_widget_multidate.xml │ │ │ ├── uwazi_widget_multifile.xml │ │ │ └── video_resolution_setting_dialog.xml │ │ ├── menu │ │ │ ├── attachments_menu.xml │ │ │ ├── collect_form_entry_menu.xml │ │ │ ├── collect_server_item_menu.xml │ │ │ ├── form_submit_menu.xml │ │ │ ├── home_menu_selected.xml │ │ │ ├── location_map_menu.xml │ │ │ ├── metadata_viewer_menu.xml │ │ │ ├── pending_forms_list_item_menu.xml │ │ │ ├── photo_view_menu.xml │ │ │ ├── question_attachment_sort_menu.xml │ │ │ ├── signature_menu.xml │ │ │ ├── submit_error_forms_list_item_menu.xml │ │ │ ├── submitted_forms_list_item_menu.xml │ │ │ └── video_view_menu.xml │ │ ├── mipmap-anydpi-v26 │ │ │ ├── calculator.xml │ │ │ ├── calculator_round.xml │ │ │ ├── ic_astrology.xml │ │ │ ├── ic_astrology_round.xml │ │ │ ├── ic_calculate.xml │ │ │ ├── ic_calculate_round.xml │ │ │ ├── ic_calculator.xml │ │ │ ├── ic_calculator_blue_skin.xml │ │ │ ├── ic_calculator_blue_skin_round.xml │ │ │ ├── ic_calculator_orange_skin.xml │ │ │ ├── ic_calculator_orange_skin_round.xml │ │ │ ├── ic_calculator_plus.xml │ │ │ ├── ic_calculator_plus_round.xml │ │ │ ├── ic_calculator_round.xml │ │ │ ├── ic_calculator_yellow_skin.xml │ │ │ ├── ic_calculator_yellow_skin_round.xml │ │ │ ├── ic_camera.xml │ │ │ ├── ic_camera_round.xml │ │ │ ├── ic_clock.xml │ │ │ ├── ic_clock_round.xml │ │ │ ├── ic_dictionary.xml │ │ │ ├── ic_dictionary_round.xml │ │ │ ├── ic_easy_weather.xml │ │ │ ├── ic_easy_weather_round.xml │ │ │ ├── ic_fitness_life.xml │ │ │ ├── ic_fitness_life_round.xml │ │ │ ├── ic_forecast.xml │ │ │ ├── ic_forecast_round.xml │ │ │ ├── ic_game_launcher.xml │ │ │ ├── ic_game_launcher_round.xml │ │ │ ├── ic_game_station.xml │ │ │ ├── ic_game_station_round.xml │ │ │ ├── ic_health.xml │ │ │ ├── ic_health_round.xml │ │ │ ├── ic_i_calculator.xml │ │ │ ├── ic_i_calculator_round.xml │ │ │ ├── ic_jewel_dash.xml │ │ │ ├── ic_jewel_dash_round.xml │ │ │ ├── ic_mi_camera.xml │ │ │ ├── ic_mi_camera_round.xml │ │ │ ├── ic_music.xml │ │ │ ├── ic_music_round.xml │ │ │ ├── ic_period_tracker.xml │ │ │ ├── ic_period_tracker_round.xml │ │ │ ├── ic_plant_care.xml │ │ │ ├── ic_plant_care_round.xml │ │ │ ├── ic_play_now.xml │ │ │ ├── ic_play_now_round.xml │ │ │ ├── ic_selfie_cam.xml │ │ │ ├── ic_selfie_cam_round.xml │ │ │ ├── ic_snap_camera.xml │ │ │ ├── ic_snap_camera_round.xml │ │ │ ├── ic_stop_watch.xml │ │ │ ├── ic_stop_watch_round.xml │ │ │ ├── ic_sunny_day.xml │ │ │ ├── ic_sunny_day_round.xml │ │ │ ├── ic_time.xml │ │ │ ├── ic_time_round.xml │ │ │ ├── ic_watch.xml │ │ │ ├── ic_watch_round.xml │ │ │ ├── ic_weather.xml │ │ │ ├── ic_weather_round.xml │ │ │ ├── ic_workout.xml │ │ │ ├── ic_workout_round.xml │ │ │ ├── tella_icon.xml │ │ │ └── tella_icon_round.xml │ │ ├── mipmap-hdpi │ │ │ ├── calculator.png │ │ │ ├── calculator_round.png │ │ │ ├── ic_astrology.webp │ │ │ ├── ic_astrology_foreground.webp │ │ │ ├── ic_astrology_round.webp │ │ │ ├── ic_calculate.webp │ │ │ ├── ic_calculate_foreground.webp │ │ │ ├── ic_calculate_round.webp │ │ │ ├── ic_calculator.webp │ │ │ ├── ic_calculator_blue_skin.webp │ │ │ ├── ic_calculator_blue_skin_foreground.webp │ │ │ ├── ic_calculator_blue_skin_round.webp │ │ │ ├── ic_calculator_foreground.webp │ │ │ ├── ic_calculator_orange_skin.webp │ │ │ ├── ic_calculator_orange_skin_foreground.webp │ │ │ ├── ic_calculator_orange_skin_round.webp │ │ │ ├── ic_calculator_plus.webp │ │ │ ├── ic_calculator_plus_foreground.webp │ │ │ ├── ic_calculator_plus_round.webp │ │ │ ├── ic_calculator_round.webp │ │ │ ├── ic_calculator_yellow_skin.webp │ │ │ ├── ic_calculator_yellow_skin_foreground.webp │ │ │ ├── ic_calculator_yellow_skin_round.webp │ │ │ ├── ic_camera.webp │ │ │ ├── ic_camera_foreground.webp │ │ │ ├── ic_camera_round.webp │ │ │ ├── ic_clock.webp │ │ │ ├── ic_clock_foreground.webp │ │ │ ├── ic_clock_round.webp │ │ │ ├── ic_dictionary.webp │ │ │ ├── ic_dictionary_foreground.webp │ │ │ ├── ic_dictionary_round.webp │ │ │ ├── ic_easy_weather.webp │ │ │ ├── ic_easy_weather_foreground.webp │ │ │ ├── ic_easy_weather_round.webp │ │ │ ├── ic_fitness_life.webp │ │ │ ├── ic_fitness_life_foreground.webp │ │ │ ├── ic_fitness_life_round.webp │ │ │ ├── ic_forecast.webp │ │ │ ├── ic_forecast_foreground.webp │ │ │ ├── ic_forecast_round.webp │ │ │ ├── ic_game_launcher.webp │ │ │ ├── ic_game_launcher_foreground.webp │ │ │ ├── ic_game_launcher_round.webp │ │ │ ├── ic_game_station.webp │ │ │ ├── ic_game_station_foreground.webp │ │ │ ├── ic_game_station_round.webp │ │ │ ├── ic_health.webp │ │ │ ├── ic_health_foreground.webp │ │ │ ├── ic_health_round.webp │ │ │ ├── ic_i_calculator.webp │ │ │ ├── ic_i_calculator_foreground.webp │ │ │ ├── ic_i_calculator_round.webp │ │ │ ├── ic_jewel_dash.webp │ │ │ ├── ic_jewel_dash_foreground.webp │ │ │ ├── ic_jewel_dash_round.webp │ │ │ ├── ic_launcher.png │ │ │ ├── ic_mi_camera.webp │ │ │ ├── ic_mi_camera_foreground.webp │ │ │ ├── ic_mi_camera_round.webp │ │ │ ├── ic_music.webp │ │ │ ├── ic_music_foreground.webp │ │ │ ├── ic_music_round.webp │ │ │ ├── ic_period_tracker.webp │ │ │ ├── ic_period_tracker_foreground.webp │ │ │ ├── ic_period_tracker_round.webp │ │ │ ├── ic_plant_care.webp │ │ │ ├── ic_plant_care_foreground.webp │ │ │ ├── ic_plant_care_round.webp │ │ │ ├── ic_play_now.webp │ │ │ ├── ic_play_now_foreground.webp │ │ │ ├── ic_play_now_round.webp │ │ │ ├── ic_selfie_cam.webp │ │ │ ├── ic_selfie_cam_foreground.webp │ │ │ ├── ic_selfie_cam_round.webp │ │ │ ├── ic_snap_camera.webp │ │ │ ├── ic_snap_camera_foreground.webp │ │ │ ├── ic_snap_camera_round.webp │ │ │ ├── ic_stop_watch.webp │ │ │ ├── ic_stop_watch_foreground.webp │ │ │ ├── ic_stop_watch_round.webp │ │ │ ├── ic_sunny_day.webp │ │ │ ├── ic_sunny_day_foreground.webp │ │ │ ├── ic_sunny_day_round.webp │ │ │ ├── ic_time.webp │ │ │ ├── ic_time_foreground.webp │ │ │ ├── ic_time_round.webp │ │ │ ├── ic_watch.webp │ │ │ ├── ic_watch_foreground.webp │ │ │ ├── ic_watch_round.webp │ │ │ ├── ic_weather.webp │ │ │ ├── ic_weather_foreground.webp │ │ │ ├── ic_weather_round.webp │ │ │ ├── ic_workout.webp │ │ │ ├── ic_workout_foreground.webp │ │ │ ├── ic_workout_round.webp │ │ │ ├── tella_icon.png │ │ │ └── tella_icon_round.png │ │ ├── mipmap-mdpi │ │ │ ├── calculator.png │ │ │ ├── calculator_round.png │ │ │ ├── ic_astrology.webp │ │ │ ├── ic_astrology_foreground.webp │ │ │ ├── ic_astrology_round.webp │ │ │ ├── ic_calculate.webp │ │ │ ├── ic_calculate_foreground.webp │ │ │ ├── ic_calculate_round.webp │ │ │ ├── ic_calculator.webp │ │ │ ├── ic_calculator_blue_skin.webp │ │ │ ├── ic_calculator_blue_skin_foreground.webp │ │ │ ├── ic_calculator_blue_skin_round.webp │ │ │ ├── ic_calculator_foreground.webp │ │ │ ├── ic_calculator_orange_skin.webp │ │ │ ├── ic_calculator_orange_skin_foreground.webp │ │ │ ├── ic_calculator_orange_skin_round.webp │ │ │ ├── ic_calculator_plus.webp │ │ │ ├── ic_calculator_plus_foreground.webp │ │ │ ├── ic_calculator_plus_round.webp │ │ │ ├── ic_calculator_round.webp │ │ │ ├── ic_calculator_yellow_skin.webp │ │ │ ├── ic_calculator_yellow_skin_foreground.webp │ │ │ ├── ic_calculator_yellow_skin_round.webp │ │ │ ├── ic_camera.webp │ │ │ ├── ic_camera_foreground.webp │ │ │ ├── ic_camera_round.webp │ │ │ ├── ic_clock.webp │ │ │ ├── ic_clock_foreground.webp │ │ │ ├── ic_clock_round.webp │ │ │ ├── ic_dictionary.webp │ │ │ ├── ic_dictionary_foreground.webp │ │ │ ├── ic_dictionary_round.webp │ │ │ ├── ic_easy_weather.webp │ │ │ ├── ic_easy_weather_foreground.webp │ │ │ ├── ic_easy_weather_round.webp │ │ │ ├── ic_fitness_life.webp │ │ │ ├── ic_fitness_life_foreground.webp │ │ │ ├── ic_fitness_life_round.webp │ │ │ ├── ic_forecast.webp │ │ │ ├── ic_forecast_foreground.webp │ │ │ ├── ic_forecast_round.webp │ │ │ ├── ic_game_launcher.webp │ │ │ ├── ic_game_launcher_foreground.webp │ │ │ ├── ic_game_launcher_round.webp │ │ │ ├── ic_game_station.webp │ │ │ ├── ic_game_station_foreground.webp │ │ │ ├── ic_game_station_round.webp │ │ │ ├── ic_health.webp │ │ │ ├── ic_health_foreground.webp │ │ │ ├── ic_health_round.webp │ │ │ ├── ic_i_calculator.webp │ │ │ ├── ic_i_calculator_foreground.webp │ │ │ ├── ic_i_calculator_round.webp │ │ │ ├── ic_jewel_dash.webp │ │ │ ├── ic_jewel_dash_foreground.webp │ │ │ ├── ic_jewel_dash_round.webp │ │ │ ├── ic_launcher.png │ │ │ ├── ic_mi_camera.webp │ │ │ ├── ic_mi_camera_foreground.webp │ │ │ ├── ic_mi_camera_round.webp │ │ │ ├── ic_music.webp │ │ │ ├── ic_music_foreground.webp │ │ │ ├── ic_music_round.webp │ │ │ ├── ic_period_tracker.webp │ │ │ ├── ic_period_tracker_foreground.webp │ │ │ ├── ic_period_tracker_round.webp │ │ │ ├── ic_plant_care.webp │ │ │ ├── ic_plant_care_foreground.webp │ │ │ ├── ic_plant_care_round.webp │ │ │ ├── ic_play_now.webp │ │ │ ├── ic_play_now_foreground.webp │ │ │ ├── ic_play_now_round.webp │ │ │ ├── ic_selfie_cam.webp │ │ │ ├── ic_selfie_cam_foreground.webp │ │ │ ├── ic_selfie_cam_round.webp │ │ │ ├── ic_snap_camera.webp │ │ │ ├── ic_snap_camera_foreground.webp │ │ │ ├── ic_snap_camera_round.webp │ │ │ ├── ic_stop_watch.webp │ │ │ ├── ic_stop_watch_foreground.webp │ │ │ ├── ic_stop_watch_round.webp │ │ │ ├── ic_sunny_day.webp │ │ │ ├── ic_sunny_day_foreground.webp │ │ │ ├── ic_sunny_day_round.webp │ │ │ ├── ic_time.webp │ │ │ ├── ic_time_foreground.webp │ │ │ ├── ic_time_round.webp │ │ │ ├── ic_watch.webp │ │ │ ├── ic_watch_foreground.webp │ │ │ ├── ic_watch_round.webp │ │ │ ├── ic_weather.webp │ │ │ ├── ic_weather_foreground.webp │ │ │ ├── ic_weather_round.webp │ │ │ ├── ic_workout.webp │ │ │ ├── ic_workout_foreground.webp │ │ │ ├── ic_workout_round.webp │ │ │ ├── tella_icon.png │ │ │ └── tella_icon_round.png │ │ ├── mipmap-xhdpi │ │ │ ├── calculator.png │ │ │ ├── calculator_round.png │ │ │ ├── ic_astrology.webp │ │ │ ├── ic_astrology_foreground.webp │ │ │ ├── ic_astrology_round.webp │ │ │ ├── ic_calculate.webp │ │ │ ├── ic_calculate_foreground.webp │ │ │ ├── ic_calculate_round.webp │ │ │ ├── ic_calculator.webp │ │ │ ├── ic_calculator_blue_skin.webp │ │ │ ├── ic_calculator_blue_skin_foreground.webp │ │ │ ├── ic_calculator_blue_skin_round.webp │ │ │ ├── ic_calculator_foreground.webp │ │ │ ├── ic_calculator_orange_skin.webp │ │ │ ├── ic_calculator_orange_skin_foreground.webp │ │ │ ├── ic_calculator_orange_skin_round.webp │ │ │ ├── ic_calculator_plus.webp │ │ │ ├── ic_calculator_plus_foreground.webp │ │ │ ├── ic_calculator_plus_round.webp │ │ │ ├── ic_calculator_round.webp │ │ │ ├── ic_calculator_yellow_skin.webp │ │ │ ├── ic_calculator_yellow_skin_foreground.webp │ │ │ ├── ic_calculator_yellow_skin_round.webp │ │ │ ├── ic_camera.webp │ │ │ ├── ic_camera_foreground.webp │ │ │ ├── ic_camera_round.webp │ │ │ ├── ic_clock.webp │ │ │ ├── ic_clock_foreground.webp │ │ │ ├── ic_clock_round.webp │ │ │ ├── ic_dictionary.webp │ │ │ ├── ic_dictionary_foreground.webp │ │ │ ├── ic_dictionary_round.webp │ │ │ ├── ic_easy_weather.webp │ │ │ ├── ic_easy_weather_foreground.webp │ │ │ ├── ic_easy_weather_round.webp │ │ │ ├── ic_fitness_life.webp │ │ │ ├── ic_fitness_life_foreground.webp │ │ │ ├── ic_fitness_life_round.webp │ │ │ ├── ic_forecast.webp │ │ │ ├── ic_forecast_foreground.webp │ │ │ ├── ic_forecast_round.webp │ │ │ ├── ic_game_launcher.webp │ │ │ ├── ic_game_launcher_foreground.webp │ │ │ ├── ic_game_launcher_round.webp │ │ │ ├── ic_game_station.webp │ │ │ ├── ic_game_station_foreground.webp │ │ │ ├── ic_game_station_round.webp │ │ │ ├── ic_health.webp │ │ │ ├── ic_health_foreground.webp │ │ │ ├── ic_health_round.webp │ │ │ ├── ic_i_calculator.webp │ │ │ ├── ic_i_calculator_foreground.webp │ │ │ ├── ic_i_calculator_round.webp │ │ │ ├── ic_jewel_dash.webp │ │ │ ├── ic_jewel_dash_foreground.webp │ │ │ ├── ic_jewel_dash_round.webp │ │ │ ├── ic_launcher.png │ │ │ ├── ic_mi_camera.webp │ │ │ ├── ic_mi_camera_foreground.webp │ │ │ ├── ic_mi_camera_round.webp │ │ │ ├── ic_music.webp │ │ │ ├── ic_music_foreground.webp │ │ │ ├── ic_music_round.webp │ │ │ ├── ic_period_tracker.webp │ │ │ ├── ic_period_tracker_foreground.webp │ │ │ ├── ic_period_tracker_round.webp │ │ │ ├── ic_plant_care.webp │ │ │ ├── ic_plant_care_foreground.webp │ │ │ ├── ic_plant_care_round.webp │ │ │ ├── ic_play_now.webp │ │ │ ├── ic_play_now_foreground.webp │ │ │ ├── ic_play_now_round.webp │ │ │ ├── ic_selfie_cam.webp │ │ │ ├── ic_selfie_cam_foreground.webp │ │ │ ├── ic_selfie_cam_round.webp │ │ │ ├── ic_snap_camera.webp │ │ │ ├── ic_snap_camera_foreground.webp │ │ │ ├── ic_snap_camera_round.webp │ │ │ ├── ic_stop_watch.webp │ │ │ ├── ic_stop_watch_foreground.webp │ │ │ ├── ic_stop_watch_round.webp │ │ │ ├── ic_sunny_day.webp │ │ │ ├── ic_sunny_day_foreground.webp │ │ │ ├── ic_sunny_day_round.webp │ │ │ ├── ic_time.webp │ │ │ ├── ic_time_foreground.webp │ │ │ ├── ic_time_round.webp │ │ │ ├── ic_watch.webp │ │ │ ├── ic_watch_foreground.webp │ │ │ ├── ic_watch_round.webp │ │ │ ├── ic_weather.webp │ │ │ ├── ic_weather_foreground.webp │ │ │ ├── ic_weather_round.webp │ │ │ ├── ic_workout.webp │ │ │ ├── ic_workout_foreground.webp │ │ │ ├── ic_workout_round.webp │ │ │ ├── tella_icon.png │ │ │ └── tella_icon_round.png │ │ ├── mipmap-xxhdpi │ │ │ ├── calculator.png │ │ │ ├── calculator_round.png │ │ │ ├── ic_astrology.webp │ │ │ ├── ic_astrology_foreground.webp │ │ │ ├── ic_astrology_round.webp │ │ │ ├── ic_calculate.webp │ │ │ ├── ic_calculate_foreground.webp │ │ │ ├── ic_calculate_round.webp │ │ │ ├── ic_calculator.webp │ │ │ ├── ic_calculator_blue_skin.webp │ │ │ ├── ic_calculator_blue_skin_foreground.webp │ │ │ ├── ic_calculator_blue_skin_round.webp │ │ │ ├── ic_calculator_foreground.webp │ │ │ ├── ic_calculator_orange_skin.webp │ │ │ ├── ic_calculator_orange_skin_foreground.webp │ │ │ ├── ic_calculator_orange_skin_round.webp │ │ │ ├── ic_calculator_plus.webp │ │ │ ├── ic_calculator_plus_foreground.webp │ │ │ ├── ic_calculator_plus_round.webp │ │ │ ├── ic_calculator_round.webp │ │ │ ├── ic_calculator_yellow_skin.webp │ │ │ ├── ic_calculator_yellow_skin_foreground.webp │ │ │ ├── ic_calculator_yellow_skin_round.webp │ │ │ ├── ic_camera.webp │ │ │ ├── ic_camera_foreground.webp │ │ │ ├── ic_camera_round.webp │ │ │ ├── ic_clock.webp │ │ │ ├── ic_clock_foreground.webp │ │ │ ├── ic_clock_round.webp │ │ │ ├── ic_dictionary.webp │ │ │ ├── ic_dictionary_foreground.webp │ │ │ ├── ic_dictionary_round.webp │ │ │ ├── ic_easy_weather.webp │ │ │ ├── ic_easy_weather_foreground.webp │ │ │ ├── ic_easy_weather_round.webp │ │ │ ├── ic_fitness_life.webp │ │ │ ├── ic_fitness_life_foreground.webp │ │ │ ├── ic_fitness_life_round.webp │ │ │ ├── ic_forecast.webp │ │ │ ├── ic_forecast_foreground.webp │ │ │ ├── ic_forecast_round.webp │ │ │ ├── ic_game_launcher.webp │ │ │ ├── ic_game_launcher_foreground.webp │ │ │ ├── ic_game_launcher_round.webp │ │ │ ├── ic_game_station.webp │ │ │ ├── ic_game_station_foreground.webp │ │ │ ├── ic_game_station_round.webp │ │ │ ├── ic_health.webp │ │ │ ├── ic_health_foreground.webp │ │ │ ├── ic_health_round.webp │ │ │ ├── ic_i_calculator.webp │ │ │ ├── ic_i_calculator_foreground.webp │ │ │ ├── ic_i_calculator_round.webp │ │ │ ├── ic_jewel_dash.webp │ │ │ ├── ic_jewel_dash_foreground.webp │ │ │ ├── ic_jewel_dash_round.webp │ │ │ ├── ic_launcher.png │ │ │ ├── ic_mi_camera.webp │ │ │ ├── ic_mi_camera_foreground.webp │ │ │ ├── ic_mi_camera_round.webp │ │ │ ├── ic_music.webp │ │ │ ├── ic_music_foreground.webp │ │ │ ├── ic_music_round.webp │ │ │ ├── ic_period_tracker.webp │ │ │ ├── ic_period_tracker_foreground.webp │ │ │ ├── ic_period_tracker_round.webp │ │ │ ├── ic_plant_care.webp │ │ │ ├── ic_plant_care_foreground.webp │ │ │ ├── ic_plant_care_round.webp │ │ │ ├── ic_play_now.webp │ │ │ ├── ic_play_now_foreground.webp │ │ │ ├── ic_play_now_round.webp │ │ │ ├── ic_selfie_cam.webp │ │ │ ├── ic_selfie_cam_foreground.webp │ │ │ ├── ic_selfie_cam_round.webp │ │ │ ├── ic_snap_camera.webp │ │ │ ├── ic_snap_camera_foreground.webp │ │ │ ├── ic_snap_camera_round.webp │ │ │ ├── ic_stop_watch.webp │ │ │ ├── ic_stop_watch_foreground.webp │ │ │ ├── ic_stop_watch_round.webp │ │ │ ├── ic_sunny_day.webp │ │ │ ├── ic_sunny_day_foreground.webp │ │ │ ├── ic_sunny_day_round.webp │ │ │ ├── ic_time.webp │ │ │ ├── ic_time_foreground.webp │ │ │ ├── ic_time_round.webp │ │ │ ├── ic_watch.webp │ │ │ ├── ic_watch_foreground.webp │ │ │ ├── ic_watch_round.webp │ │ │ ├── ic_weather.webp │ │ │ ├── ic_weather_foreground.webp │ │ │ ├── ic_weather_round.webp │ │ │ ├── ic_workout.webp │ │ │ ├── ic_workout_foreground.webp │ │ │ ├── ic_workout_round.webp │ │ │ ├── tella_icon.png │ │ │ └── tella_icon_round.png │ │ ├── mipmap-xxxhdpi │ │ │ ├── calculator.png │ │ │ ├── calculator_round.png │ │ │ ├── ic_astrology.webp │ │ │ ├── ic_astrology_foreground.webp │ │ │ ├── ic_astrology_round.webp │ │ │ ├── ic_calculate.webp │ │ │ ├── ic_calculate_foreground.webp │ │ │ ├── ic_calculate_round.webp │ │ │ ├── ic_calculator.webp │ │ │ ├── ic_calculator_blue_skin.webp │ │ │ ├── ic_calculator_blue_skin_foreground.webp │ │ │ ├── ic_calculator_blue_skin_round.webp │ │ │ ├── ic_calculator_foreground.webp │ │ │ ├── ic_calculator_orange_skin.webp │ │ │ ├── ic_calculator_orange_skin_foreground.webp │ │ │ ├── ic_calculator_orange_skin_round.webp │ │ │ ├── ic_calculator_plus.webp │ │ │ ├── ic_calculator_plus_foreground.webp │ │ │ ├── ic_calculator_plus_round.webp │ │ │ ├── ic_calculator_round.webp │ │ │ ├── ic_calculator_yellow_skin.webp │ │ │ ├── ic_calculator_yellow_skin_foreground.webp │ │ │ ├── ic_calculator_yellow_skin_round.webp │ │ │ ├── ic_camera.webp │ │ │ ├── ic_camera_foreground.webp │ │ │ ├── ic_camera_round.webp │ │ │ ├── ic_clock.webp │ │ │ ├── ic_clock_foreground.webp │ │ │ ├── ic_clock_round.webp │ │ │ ├── ic_dictionary.webp │ │ │ ├── ic_dictionary_foreground.webp │ │ │ ├── ic_dictionary_round.webp │ │ │ ├── ic_easy_weather.webp │ │ │ ├── ic_easy_weather_foreground.webp │ │ │ ├── ic_easy_weather_round.webp │ │ │ ├── ic_fitness_life.webp │ │ │ ├── ic_fitness_life_foreground.webp │ │ │ ├── ic_fitness_life_round.webp │ │ │ ├── ic_forecast.webp │ │ │ ├── ic_forecast_foreground.webp │ │ │ ├── ic_forecast_round.webp │ │ │ ├── ic_game_launcher.webp │ │ │ ├── ic_game_launcher_foreground.webp │ │ │ ├── ic_game_launcher_round.webp │ │ │ ├── ic_game_station.webp │ │ │ ├── ic_game_station_foreground.webp │ │ │ ├── ic_game_station_round.webp │ │ │ ├── ic_health.webp │ │ │ ├── ic_health_foreground.webp │ │ │ ├── ic_health_round.webp │ │ │ ├── ic_i_calculator.webp │ │ │ ├── ic_i_calculator_foreground.webp │ │ │ ├── ic_i_calculator_round.webp │ │ │ ├── ic_jewel_dash.webp │ │ │ ├── ic_jewel_dash_foreground.webp │ │ │ ├── ic_jewel_dash_round.webp │ │ │ ├── ic_launcher.png │ │ │ ├── ic_mi_camera.webp │ │ │ ├── ic_mi_camera_foreground.webp │ │ │ ├── ic_mi_camera_round.webp │ │ │ ├── ic_music.webp │ │ │ ├── ic_music_foreground.webp │ │ │ ├── ic_music_round.webp │ │ │ ├── ic_period_tracker.webp │ │ │ ├── ic_period_tracker_foreground.webp │ │ │ ├── ic_period_tracker_round.webp │ │ │ ├── ic_plant_care.webp │ │ │ ├── ic_plant_care_foreground.webp │ │ │ ├── ic_plant_care_round.webp │ │ │ ├── ic_play_now.webp │ │ │ ├── ic_play_now_foreground.webp │ │ │ ├── ic_play_now_round.webp │ │ │ ├── ic_selfie_cam.webp │ │ │ ├── ic_selfie_cam_foreground.webp │ │ │ ├── ic_selfie_cam_round.webp │ │ │ ├── ic_snap_camera.webp │ │ │ ├── ic_snap_camera_foreground.webp │ │ │ ├── ic_snap_camera_round.webp │ │ │ ├── ic_stop_watch.webp │ │ │ ├── ic_stop_watch_foreground.webp │ │ │ ├── ic_stop_watch_round.webp │ │ │ ├── ic_sunny_day.webp │ │ │ ├── ic_sunny_day_foreground.webp │ │ │ ├── ic_sunny_day_round.webp │ │ │ ├── ic_time.webp │ │ │ ├── ic_time_foreground.webp │ │ │ ├── ic_time_round.webp │ │ │ ├── ic_watch.webp │ │ │ ├── ic_watch_foreground.webp │ │ │ ├── ic_watch_round.webp │ │ │ ├── ic_weather.webp │ │ │ ├── ic_weather_foreground.webp │ │ │ ├── ic_weather_round.webp │ │ │ ├── ic_workout.webp │ │ │ ├── ic_workout_foreground.webp │ │ │ ├── ic_workout_round.webp │ │ │ ├── tella_icon.png │ │ │ └── tella_icon_round.png │ │ ├── navigation │ │ │ ├── camera.xml │ │ │ ├── form.xml │ │ │ ├── home.xml │ │ │ ├── micro.xml │ │ │ ├── nav_graph.xml │ │ │ ├── reports_graph.xml │ │ │ ├── reports_settings.xml │ │ │ ├── settings_navigation.xml │ │ │ └── uwazi.xml │ │ ├── values-ar │ │ │ ├── lock_strings.xml │ │ │ ├── strings.xml │ │ │ └── vault_strings.xml │ │ ├── values-be │ │ │ ├── lock_strings.xml │ │ │ ├── strings.xml │ │ │ └── vault_strings.xml │ │ ├── values-blk │ │ │ └── strings.xml │ │ ├── values-es │ │ │ ├── lock_strings.xml │ │ │ ├── strings.xml │ │ │ └── vault_strings.xml │ │ ├── values-fa-rIR │ │ │ ├── lock_strings.xml │ │ │ ├── strings.xml │ │ │ └── vault_strings.xml │ │ ├── values-fr │ │ │ ├── lock_strings.xml │ │ │ ├── strings.xml │ │ │ └── vault_strings.xml │ │ ├── values-hdpi │ │ │ └── dimens.xml │ │ ├── values-id │ │ │ ├── lock_strings.xml │ │ │ ├── strings.xml │ │ │ └── vault_strings.xml │ │ ├── values-in │ │ │ ├── strings.xml │ │ │ └── vault_strings.xml │ │ ├── values-kac │ │ │ ├── lock_strings.xml │ │ │ ├── strings.xml │ │ │ └── vault_strings.xml │ │ ├── values-kn │ │ │ ├── lock_strings.xml │ │ │ ├── strings.xml │ │ │ └── vault_strings.xml │ │ ├── values-ksw │ │ │ ├── lock_strings.xml │ │ │ ├── strings.xml │ │ │ └── vault_strings.xml │ │ ├── values-ku-rCK │ │ │ ├── lock_strings.xml │ │ │ ├── strings.xml │ │ │ └── vault_strings.xml │ │ ├── values-ku │ │ │ ├── lock_strings.xml │ │ │ ├── strings.xml │ │ │ └── vault_strings.xml │ │ ├── values-ldrtl │ │ │ └── consts.xml │ │ ├── values-mdpi │ │ │ └── dimens.xml │ │ ├── values-ml │ │ │ ├── lock_strings.xml │ │ │ ├── strings.xml │ │ │ └── vault_strings.xml │ │ ├── values-my-rMM │ │ │ ├── strings.xml │ │ │ └── vault_strings.xml │ │ ├── values-my │ │ │ ├── lock_strings.xml │ │ │ ├── strings.xml │ │ │ └── vault_strings.xml │ │ ├── values-pt │ │ │ ├── lock_strings.xml │ │ │ ├── strings.xml │ │ │ └── vault_strings.xml │ │ ├── values-ru │ │ │ ├── lock_strings.xml │ │ │ ├── strings.xml │ │ │ └── vault_strings.xml │ │ ├── values-sw600dp │ │ │ └── attrs.xml │ │ ├── values-ta │ │ │ ├── lock_strings.xml │ │ │ ├── strings.xml │ │ │ └── vault_strings.xml │ │ ├── values-v21 │ │ │ └── styles.xml │ │ ├── values-v26 │ │ │ └── styles.xml │ │ ├── values-vi │ │ │ ├── lock_strings.xml │ │ │ ├── strings.xml │ │ │ └── vault_strings.xml │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ ├── values-xhdpi │ │ │ └── dimens.xml │ │ ├── values-xxhdpi │ │ │ └── dimens.xml │ │ ├── values │ │ │ ├── arrays.xml │ │ │ ├── attrs.xml │ │ │ ├── calculator_background.xml │ │ │ ├── calculator_skins.xml │ │ │ ├── colors.xml │ │ │ ├── config.xml │ │ │ ├── consts.xml │ │ │ ├── dimens.xml │ │ │ ├── drawables.xml │ │ │ ├── ic_black_launcher_background.xml │ │ │ ├── ic_blue_background.xml │ │ │ ├── ic_camera_shutter_launcher_background.xml │ │ │ ├── ic_white_launcher_background.xml │ │ │ ├── lock_strings.xml │ │ │ ├── preloaded_fonts.xml │ │ │ ├── strings.xml │ │ │ ├── styles.xml │ │ │ └── vault_strings.xml │ │ └── xml │ │ │ ├── configure_localhost_media_file_http_server.xml │ │ │ └── encrypted_file_paths.xml │ ├── selfiecamera-playstore.png │ ├── snapcamera-playstore.png │ ├── stopwatch-playstore.png │ ├── sunnyday-playstore.png │ ├── time-playstore.png │ └── weather-playstore.png │ └── test │ └── java │ └── rs │ └── readahead │ └── washington │ ├── ExampleUnitTest.java │ └── mock │ ├── feedback │ ├── SendFeedbackViewModelTest.kt │ └── any.kt │ ├── reports │ └── MockData.kt │ ├── utils │ ├── BaseSchedulerProvider.kt │ └── TrampolineSchedulerProvider.kt │ └── vault │ ├── AttachmentsViewModelTest.kt │ └── any.kt ├── pdfviewer ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── horizontal │ │ └── pdfviewer │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── horizontal │ │ │ └── pdfviewer │ │ │ ├── HeaderData.kt │ │ │ ├── MainActivity.kt │ │ │ ├── PdfRendererCore.kt │ │ │ ├── PdfRendererView.kt │ │ │ ├── PdfViewAdapter.kt │ │ │ ├── PinchZoomRecyclerView.kt │ │ │ ├── ui │ │ │ └── theme │ │ │ │ ├── Color.kt │ │ │ │ ├── Theme.kt │ │ │ │ └── Type.kt │ │ │ └── util │ │ │ ├── CommonUtils.kt │ │ │ ├── FileUtils.kt │ │ │ ├── ParcelFileDescriptorUtil.kt │ │ │ ├── PdfEngine.kt │ │ │ └── ViewExt.kt │ └── res │ │ ├── drawable │ │ ├── pdf_viewer_divider.xml │ │ ├── pdf_viewer_ic_arrow_back.xml │ │ ├── pdf_viewer_ic_arrow_back_alt.xml │ │ ├── pdf_viewer_ic_loading.xml │ │ ├── pdf_viewer_page_counter.xml │ │ └── pdf_viewer_progress_circle.xml │ │ ├── layout │ │ ├── list_item_pdf_page.xml │ │ ├── pdf_rendererview.xml │ │ ├── pdf_view_page_loading_layout.xml │ │ └── pdf_view_page_no.xml │ │ ├── menu │ │ └── menu.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 │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ └── values │ │ ├── attrs.xml │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── themes.xml │ └── test │ └── java │ └── com │ └── horizontal │ └── pdfviewer │ └── ExampleUnitTest.kt ├── settings.gradle ├── shared-ui ├── .gitignore ├── build.gradle ├── consumer-rules.pro ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── org │ │ └── hzontal │ │ └── shared_ui │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── org │ │ │ └── hzontal │ │ │ └── shared_ui │ │ │ ├── appbar │ │ │ ├── CollapsableAppBar.kt │ │ │ └── ToolbarComponent.kt │ │ │ ├── bottomsheet │ │ │ ├── Binder.kt │ │ │ ├── BottomSheetUtils.kt │ │ │ ├── CustomBottomSheetFragment.kt │ │ │ ├── CustomTopSheetFragment.kt │ │ │ ├── KeyboardUtil.java │ │ │ ├── PageHolder.kt │ │ │ ├── SheetExtensionFunctions.kt │ │ │ └── VaultSheetUtils.kt │ │ │ ├── breadcrumb │ │ │ ├── BreadcrumbsAdapter.java │ │ │ ├── BreadcrumbsCallback.java │ │ │ ├── BreadcrumbsDiffCallback.java │ │ │ ├── BreadcrumbsLayoutManager.java │ │ │ ├── BreadcrumbsUtil.java │ │ │ ├── BreadcrumbsView.java │ │ │ ├── DefaultBreadcrumbsCallback.java │ │ │ ├── ViewUtils.java │ │ │ └── model │ │ │ │ ├── BreadcrumbItem.java │ │ │ │ ├── IBreadcrumbItem.java │ │ │ │ └── Item.java │ │ │ ├── buttons │ │ │ ├── HomeButton.kt │ │ │ ├── InformationButton.kt │ │ │ ├── PanelToggleButton.java │ │ │ └── RoundButton.kt │ │ │ ├── data │ │ │ ├── CommonPreferences.java │ │ │ └── CommonPrefs.java │ │ │ ├── dropdownlist │ │ │ ├── CustomDropdownItemClickListener.kt │ │ │ ├── CustomDropdownList.java │ │ │ ├── DropDownItem.kt │ │ │ ├── DropdownListAdapter.kt │ │ │ └── TextWatcherInterface.java │ │ │ ├── extensions │ │ │ ├── ProgressExtensions.kt │ │ │ ├── TextViewExtensions.kt │ │ │ └── onTextChanged.kt │ │ │ ├── pinview │ │ │ ├── CalculatorKeyView.kt │ │ │ ├── CalculatorThemeStyle.kt │ │ │ ├── CustomizationOptionsBundle.java │ │ │ ├── OnKeyBoardClickListener.kt │ │ │ ├── PinLockListener.java │ │ │ ├── PinLockView.kt │ │ │ ├── PinViewListener.kt │ │ │ ├── ResourceUtils.java │ │ │ └── ResultListener.java │ │ │ ├── submission │ │ │ ├── SubmittedItem.kt │ │ │ └── SubmittingItem.kt │ │ │ ├── switches │ │ │ └── TellaSwitchWithMessage.kt │ │ │ ├── textviews │ │ │ ├── CenterMessageTextView.kt │ │ │ └── InfoSettingsView.kt │ │ │ ├── topsheet │ │ │ ├── TopSheetBehavior.java │ │ │ ├── TopSheetDialog.java │ │ │ └── TopSheetUtils.kt │ │ │ └── utils │ │ │ ├── CalculatorTheme.kt │ │ │ ├── CrashlyticsUtil.kt │ │ │ └── DialogUtils.kt │ └── res │ │ ├── anim │ │ ├── slide_in_from_top.xml │ │ └── slide_out_to_top.xml │ │ ├── color │ │ ├── edit_text_box_border.xml │ │ ├── radio_buttons_color.xml │ │ ├── switch_thumb_color.xml │ │ ├── switch_track_color.xml │ │ └── switch_track_color_disabled.xml │ │ ├── drawable-xhdpi │ │ ├── ic_camera.png │ │ ├── ic_forms.png │ │ ├── ic_home.png │ │ ├── ic_mic.png │ │ ├── ic_plus_outline_inverse.xml │ │ ├── ic_reports.png │ │ └── ic_smartphone_white_24dp.xml │ │ ├── drawable │ │ ├── baseline_assignment_24.xml │ │ ├── baseline_mic_none_24.xml │ │ ├── bg_dropdown.xml │ │ ├── bg_dropdown_closed.xml │ │ ├── bg_dropdownlist.xml │ │ ├── bg_edittext.xml │ │ ├── bg_home_btn.xml │ │ ├── bg_information_button.xml │ │ ├── bg_information_button_selected.xml │ │ ├── bg_round_orange16_btn.xml │ │ ├── bg_round_orange_btn.xml │ │ ├── bg_row_forms.xml │ │ ├── bg_topsheet.xml │ │ ├── checkbox_background.xml │ │ ├── collect_check_solid_background.xml │ │ ├── crop_rotate.xml │ │ ├── delete_bg.xml │ │ ├── drag_anchor_drawable.xml │ │ ├── empty_white_check_box.xml │ │ ├── header_check_background.xml │ │ ├── home.xml │ │ ├── ic_arrow_drop_down_24.xml │ │ ├── ic_arrow_drop_up_24.xml │ │ ├── ic_baseline_assignment_24.xml │ │ ├── ic_baseline_close_24_white.xml │ │ ├── ic_baseline_headset_24.xml │ │ ├── ic_camera.png │ │ ├── ic_camera_alt_24px.xml │ │ ├── ic_camo_name_and_icon.xml │ │ ├── ic_camouflage.xml │ │ ├── ic_check_circle_green.xml │ │ ├── ic_chevron_right_black_24dp.xml │ │ ├── ic_chevron_top.xml │ │ ├── ic_customization.xml │ │ ├── ic_data_collection_tuto.xml │ │ ├── ic_delete_outline_white_24.xml │ │ ├── ic_delete_purple_24px.xml │ │ ├── ic_delete_white_24dp.xml │ │ ├── ic_document_24px_filled.xml │ │ ├── ic_edit_white_24.xml │ │ ├── ic_eye_white.xml │ │ ├── ic_folder_24px.xml │ │ ├── ic_forms.png │ │ ├── ic_home.png │ │ ├── ic_home_folder.xml │ │ ├── ic_info_24px.xml │ │ ├── ic_list_numbered_24.xml │ │ ├── ic_menu_gallery.xml │ │ ├── ic_mic.png │ │ ├── ic_more.xml │ │ ├── ic_move.xml │ │ ├── ic_new_folder.xml │ │ ├── ic_notes_camo_real_app.xml │ │ ├── ic_pen.xml │ │ ├── ic_plus.xml │ │ ├── ic_reports.png │ │ ├── ic_save_alt_24px.xml │ │ ├── ic_server.xml │ │ ├── ic_settings.xml │ │ ├── ic_share.xml │ │ ├── ic_upload_cloud.xml │ │ ├── ic_uwazi.xml │ │ ├── ic_uwazi_small.xml │ │ ├── ic_white_headset_24.xml │ │ ├── indeterminate_check_box_24.xml │ │ ├── keyboard_voice_24px_filled.xml │ │ ├── light_rounded_background_48.xml │ │ ├── move_drag_anchor_drawable.xml │ │ ├── orange_check_box.xml │ │ ├── orange_custom_check.xml │ │ ├── orange_help_24.xml │ │ ├── pop_up_background.xml │ │ ├── round_button_selector.xml │ │ ├── rounded_dark_green_button_background.xml │ │ ├── rounded_gray_button_background.xml │ │ ├── rounded_light_button_background.xml │ │ ├── rounded_light_green_button_background.xml │ │ ├── rounded_light_purple_background.xml │ │ ├── solid_white.xml │ │ ├── transparent_solid.xml │ │ ├── white_check_background.xml │ │ ├── white_checkbox_background.xml │ │ └── white_collect_check_background.xml │ │ ├── font │ │ ├── open_sans.xml │ │ └── roboto_regular.ttf │ │ ├── layout-hdpi │ │ └── information_button.xml │ │ ├── layout-v21 │ │ ├── breadcrumbs_view_item_arrow.xml │ │ ├── breadcrumbs_view_item_text.xml │ │ └── radio_list_item_layout.xml │ │ ├── layout-xhdpi │ │ └── information_button.xml │ │ ├── layout │ │ ├── background_activities_topsheet.xml │ │ ├── blue_sheet_rename.xml │ │ ├── breadcrumbs_view_dropdown_item.xml │ │ ├── breadcrumbs_view_item_arrow.xml │ │ ├── breadcrumbs_view_item_text.xml │ │ ├── calculator_keys_view.xml │ │ ├── change_camouflage_layout.xml │ │ ├── collapsable_appbar_layout.xml │ │ ├── component_toolbar.xml │ │ ├── confirm_image_sheet_layout.xml │ │ ├── confirm_sheet_button.xml │ │ ├── custom_dropdown_list.xml │ │ ├── design_top_sheet_dialog.xml │ │ ├── dual_choose_layout.xml │ │ ├── enter_string_bottomsheet_layout.xml │ │ ├── home_button.xml │ │ ├── keyboard_view.xml │ │ ├── layout_bottom_message.xml │ │ ├── layout_bottom_message_with_button.xml │ │ ├── layout_center_textview.xml │ │ ├── layout_item_dropdown.xml │ │ ├── layout_progess_sheet.xml │ │ ├── layout_round_button.xml │ │ ├── layout_sort_vault.xml │ │ ├── manage_files_layout.xml │ │ ├── radio_list_item_layout.xml │ │ ├── radio_list_sheet_layout.xml │ │ ├── server_menu_sheet_layout.xml │ │ ├── settings_info_view.xml │ │ ├── sheet_confirm_delete.xml │ │ ├── sheet_rename.xml │ │ ├── standar_sheet_layout.xml │ │ ├── submit_parts_list_item.xml │ │ ├── submited_list_item.xml │ │ ├── switch_with_text.xml │ │ ├── three_options_sheet_layout.xml │ │ ├── vault_actions_sheet_layout.xml │ │ ├── vault_sheet_actions_selector.xml │ │ └── view_delete_menu_sheet_layout.xml │ │ ├── menu │ │ └── bottom_nav.xml │ │ ├── values-ar │ │ └── strings.xml │ │ ├── values-es │ │ └── strings.xml │ │ ├── values-fr │ │ └── strings.xml │ │ └── values │ │ ├── attrs.xml │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── font_certs.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── org │ └── hzontal │ └── shared_ui │ └── ExampleUnitTest.kt ├── tella-keys ├── .gitignore ├── build.gradle ├── consumer-rules.pro ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── org │ │ └── hzontal │ │ └── tella │ │ └── keys │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ └── java │ │ └── org │ │ └── hzontal │ │ └── tella │ │ └── keys │ │ ├── MainKeyStore.java │ │ ├── TellaKeys.java │ │ ├── config │ │ ├── IUnlockRegistryHolder.java │ │ ├── IUnlocker.java │ │ ├── UnencryptedUnlocker.java │ │ ├── UnlockConfig.java │ │ ├── UnlockRegistry.java │ │ └── UnlockResult.java │ │ ├── key │ │ ├── LifecycleMainKey.java │ │ ├── MainKey.java │ │ └── WrappedMainKey.java │ │ ├── util │ │ ├── PRNGFixes.java │ │ ├── Preferences.java │ │ └── Wiper.java │ │ └── wrapper │ │ ├── AndroidKeyStoreHelper.java │ │ ├── AndroidKeyStoreWrapper.java │ │ ├── IMainKeyWrapper.java │ │ ├── PBEKeyWrapper.java │ │ └── UnencryptedKeyWrapper.java │ └── test │ └── java │ └── org │ └── hzontal │ └── tella │ └── keys │ └── ExampleUnitTest.java ├── tella-locking-ui ├── .gitignore ├── build.gradle ├── consumer-rules.pro ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── hzontal │ │ └── tella_locking_ui │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── hzontal │ │ │ └── tella_locking_ui │ │ │ ├── Constants.kt │ │ │ ├── EncryptionUtil.java │ │ │ ├── TellaKeysUI.java │ │ │ ├── common │ │ │ ├── BaseActivity.kt │ │ │ ├── CommonStates.kt │ │ │ ├── CredentialsCallback.java │ │ │ ├── ErrorMessageUtil.kt │ │ │ ├── extensions │ │ │ │ ├── ChangeVisibility.kt │ │ │ │ └── EditTextExtensions.kt │ │ │ └── util │ │ │ │ └── DivviupUtils.kt │ │ │ ├── patternlock │ │ │ ├── BasePatternActivity.java │ │ │ ├── ConfirmPatternActivity.java │ │ │ ├── ConfirmSetPatternActivity.java │ │ │ ├── PatternUtils.java │ │ │ ├── PatternView.java │ │ │ ├── SetPatternActivity.java │ │ │ └── ViewAccessibilityCompat.java │ │ │ └── ui │ │ │ ├── AppCompatActivityUnlocker.java │ │ │ ├── ConfirmCredentialsActivity.kt │ │ │ ├── DeviceCredentialsUnlockActivity.java │ │ │ ├── SuccessUpdateDialog.kt │ │ │ ├── password │ │ │ ├── ConfirmPasswordActivity.kt │ │ │ ├── PasswordUnlockActivity.kt │ │ │ ├── SetPasswordActivity.kt │ │ │ └── base │ │ │ │ ├── BasePasswordActivity.kt │ │ │ │ └── OnValidatePasswordClickListenr.kt │ │ │ ├── pattern │ │ │ ├── PatternSetActivity.kt │ │ │ ├── PatternSetConfirmActivity.kt │ │ │ └── PatternUnlockActivity.kt │ │ │ ├── pin │ │ │ ├── ConfirmPinActivity.kt │ │ │ ├── PinUnlockActivity.kt │ │ │ ├── SetPinActivity.kt │ │ │ ├── base │ │ │ │ ├── BasePinActivity.kt │ │ │ │ └── onSetPinClickListener.kt │ │ │ ├── calculator │ │ │ │ ├── CalculatorActivity.kt │ │ │ │ ├── Evaluator.java │ │ │ │ └── ThemeManager.kt │ │ │ └── edit_text │ │ │ │ └── NoImeEditText.kt │ │ │ └── settings │ │ │ ├── LockTypeActivity.kt │ │ │ └── UnlockRedirectActivity.kt │ └── res │ │ ├── anim │ │ ├── in.xml │ │ ├── left_to_right.xml │ │ ├── out.xml │ │ └── right_to_left.xml │ │ ├── drawable-xhdpi │ │ ├── eye.png │ │ ├── eye_off.png │ │ ├── password_bg.png │ │ ├── pin_top_bg.png │ │ └── tella_logo_dark_bg.png │ │ ├── drawable-xxhdpi │ │ ├── bg_yellow_btn.xml │ │ ├── eye.png │ │ ├── eye_off.png │ │ ├── lock_bg.xml │ │ ├── password_bg.png │ │ ├── pin_top_bg.png │ │ └── tella_logo_dark_bg.png │ │ ├── drawable │ │ ├── checked_circle.xml │ │ ├── delete_bg.xml │ │ ├── done_unlocking_setting_bg.xml │ │ ├── eye.png │ │ ├── eye_off.png │ │ ├── ic_notification_off.xml │ │ ├── ic_notification_on.xml │ │ ├── icon_left.xml │ │ ├── icon_orange_vector.xml │ │ ├── icon_vector.xml │ │ ├── light_button_background.xml │ │ ├── password_bg.png │ │ ├── pattern_draw_bg.xml │ │ ├── pin_top_bg.png │ │ ├── rounded_button_background.xml │ │ ├── rounded_light_button_background.xml │ │ ├── rounded_ok_button_background.xml │ │ ├── tella_logo_dark_bg.png │ │ └── yellow_button_background.xml │ │ ├── layout │ │ ├── activity_calculator.xml │ │ ├── activity_lock_type.xml │ │ ├── activity_password.xml │ │ ├── activity_pin.xml │ │ ├── calculator_keys_view.xml │ │ ├── confirm_unlocking_activity.xml │ │ ├── dialog_update_lock_success.xml │ │ ├── keyboard_view.xml │ │ ├── layout_bottom_message.xml │ │ └── pl_base_pattern_activity.xml │ │ ├── values-ar │ │ └── strings.xml │ │ ├── values-be │ │ └── strings.xml │ │ ├── values-es │ │ └── strings.xml │ │ ├── values-fr │ │ └── strings.xml │ │ ├── values-hdpi │ │ └── dimens.xml │ │ ├── values-id │ │ └── strings.xml │ │ ├── values-in │ │ └── strings.xml │ │ ├── values-kac │ │ └── strings.xml │ │ ├── values-kn │ │ └── strings.xml │ │ ├── values-ksw │ │ └── strings.xml │ │ ├── values-ml │ │ └── strings.xml │ │ ├── values-my-rMM │ │ └── strings.xml │ │ ├── values-pt │ │ └── strings.xml │ │ ├── values-ru │ │ └── strings.xml │ │ ├── values-ta │ │ └── strings.xml │ │ ├── values-xhdpi │ │ └── dimens.xml │ │ ├── values-xxxhdpi │ │ └── dimens.xml │ │ └── values │ │ ├── attrs.xml │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── divviup.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── hzontal │ └── tella_locking_ui │ └── ExampleUnitTest.kt └── tella-vault ├── .gitignore ├── build.gradle ├── consumer-rules.pro ├── proguard-rules.pro └── src ├── androidTest └── java │ └── com │ └── hzontal │ └── tella_vault │ └── ExampleInstrumentedTest.kt ├── main ├── AndroidManifest.xml └── java │ └── com │ └── hzontal │ ├── tella_vault │ ├── BaseVault.java │ ├── BaseVaultFileBuilder.java │ ├── CipherStreamUtils.java │ ├── IVaultDatabase.java │ ├── Metadata.java │ ├── MyLocation.java │ ├── Vault.java │ ├── VaultException.java │ ├── VaultFile.java │ ├── VaultFileBuilder.java │ ├── database │ │ ├── CipherOpenHelper.java │ │ ├── D.java │ │ ├── VaultDataSource.java │ │ └── VaultSQLiteOpenHelper.java │ ├── exceptions │ │ └── LimitedInputStream.java │ ├── filter │ │ ├── Filter.java │ │ ├── FilterType.java │ │ ├── Limits.java │ │ ├── Sort.java │ │ └── VaultTypeFilter.java │ └── rx │ │ ├── RxVault.java │ │ └── RxVaultFileBuilder.java │ └── utils │ ├── FileUtil.java │ ├── MediaFile.kt │ ├── Preferences.kt │ └── Util.java └── test └── java └── com └── hzontal └── tella_vault └── ExampleUnitTest.kt /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/new_feature_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/.github/ISSUE_TEMPLATE/new_feature_template.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/.gitignore -------------------------------------------------------------------------------- /.well-known/funding-manifest-urls: -------------------------------------------------------------------------------- 1 | https://tella-app.org/data/funding.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/NOTICE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/README.md -------------------------------------------------------------------------------- /docs/Server.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/docs/Server.gif -------------------------------------------------------------------------------- /docs/Tella2.0-feature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/docs/Tella2.0-feature.png -------------------------------------------------------------------------------- /docs/camouflage.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/docs/camouflage.gif -------------------------------------------------------------------------------- /docs/data_collection.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/docs/data_collection.gif -------------------------------------------------------------------------------- /docs/encrypting.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/docs/encrypting.gif -------------------------------------------------------------------------------- /docs/feature_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/docs/feature_image.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/142.txt: -------------------------------------------------------------------------------- 1 | - Initial Tella FOSS release 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/186.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/fastlane/metadata/android/en-US/changelogs/186.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/fastlane/metadata/android/en-US/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/fastlane/metadata/android/en-US/images/icon.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/short_description.txt: -------------------------------------------------------------------------------- 1 | Encrypt and hide files on your device -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/title.txt: -------------------------------------------------------------------------------- 1 | Tella 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/video.txt: -------------------------------------------------------------------------------- 1 | https://vimeo.com/795016049 -------------------------------------------------------------------------------- /fastlane/metadata/android/es/changelogs/142.txt: -------------------------------------------------------------------------------- 1 | - Initial Tella FOSS release 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/es/changelogs/186.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/fastlane/metadata/android/es/changelogs/186.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/es/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/fastlane/metadata/android/es/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/es/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/fastlane/metadata/android/es/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/es/title.txt: -------------------------------------------------------------------------------- 1 | Tella 2 | -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/gradlew.bat -------------------------------------------------------------------------------- /mobile/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/.gitignore -------------------------------------------------------------------------------- /mobile/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/build.gradle -------------------------------------------------------------------------------- /mobile/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/proguard-rules.pro -------------------------------------------------------------------------------- /mobile/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /mobile/src/main/calculate-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/calculate-playstore.png -------------------------------------------------------------------------------- /mobile/src/main/calculator-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/calculator-playstore.png -------------------------------------------------------------------------------- /mobile/src/main/calculatorplus-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/calculatorplus-playstore.png -------------------------------------------------------------------------------- /mobile/src/main/clock-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/clock-playstore.png -------------------------------------------------------------------------------- /mobile/src/main/easyweather-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/easyweather-playstore.png -------------------------------------------------------------------------------- /mobile/src/main/gamestation-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/gamestation-playstore.png -------------------------------------------------------------------------------- /mobile/src/main/icalculator-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/icalculator-playstore.png -------------------------------------------------------------------------------- /mobile/src/main/icamera-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/icamera-playstore.png -------------------------------------------------------------------------------- /mobile/src/main/java/rs/readahead/washington/mobile/bus/IEvent.java: -------------------------------------------------------------------------------- 1 | package rs.readahead.washington.mobile.bus; 2 | 3 | 4 | public interface IEvent { 5 | } 6 | -------------------------------------------------------------------------------- /mobile/src/main/java/rs/readahead/washington/mobile/mvp/contract/INewReportPresenterContract.java: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mobile/src/main/java/rs/readahead/washington/mobile/mvp/presenter/NewReportPresenter.java: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mobile/src/main/jeweldash-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/jeweldash-playstore.png -------------------------------------------------------------------------------- /mobile/src/main/playnow-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/playnow-playstore.png -------------------------------------------------------------------------------- /mobile/src/main/res/anim/fade_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/anim/fade_in.xml -------------------------------------------------------------------------------- /mobile/src/main/res/anim/fade_out.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/anim/fade_out.xml -------------------------------------------------------------------------------- /mobile/src/main/res/anim/slide_back_to_top.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/anim/slide_back_to_top.xml -------------------------------------------------------------------------------- /mobile/src/main/res/anim/slide_in_down.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/anim/slide_in_down.xml -------------------------------------------------------------------------------- /mobile/src/main/res/anim/slide_in_end.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/anim/slide_in_end.xml -------------------------------------------------------------------------------- /mobile/src/main/res/anim/slide_in_start.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/anim/slide_in_start.xml -------------------------------------------------------------------------------- /mobile/src/main/res/anim/slide_in_up.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/anim/slide_in_up.xml -------------------------------------------------------------------------------- /mobile/src/main/res/anim/slide_out_down.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/anim/slide_out_down.xml -------------------------------------------------------------------------------- /mobile/src/main/res/anim/slide_out_end.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/anim/slide_out_end.xml -------------------------------------------------------------------------------- /mobile/src/main/res/anim/slide_out_from_top.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/anim/slide_out_from_top.xml -------------------------------------------------------------------------------- /mobile/src/main/res/anim/slide_out_start.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/anim/slide_out_start.xml -------------------------------------------------------------------------------- /mobile/src/main/res/anim/slide_out_up.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/anim/slide_out_up.xml -------------------------------------------------------------------------------- /mobile/src/main/res/animator/fade_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/animator/fade_in.xml -------------------------------------------------------------------------------- /mobile/src/main/res/color/bottom_nav_item_color.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/color/bottom_nav_item_color.xml -------------------------------------------------------------------------------- /mobile/src/main/res/color/dialog_white_tint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/color/dialog_white_tint.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable-hdpi/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable-hdpi/white.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable-mdpi/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable-mdpi/white.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable-v21/button_pressed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable-v21/button_pressed.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable-v21/ic_menu_camera.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable-v21/ic_menu_camera.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable-xhdpi/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable-xhdpi/white.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable-xxhdpi/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable-xxhdpi/white.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable-xxxhdpi/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable-xxxhdpi/white.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/baseline_autorenew_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/baseline_autorenew_24.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/bg_chechbox_selected.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/bg_chechbox_selected.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/bg_circle_counter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/bg_circle_counter.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/bg_description.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/bg_description.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/bg_description_tiger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/bg_description_tiger.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/bg_home_btn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/bg_home_btn.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/bg_information_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/bg_information_button.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/bg_play_circle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/bg_play_circle.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/bg_send_later.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/bg_send_later.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/bg_yellow_btn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/bg_yellow_btn.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/big_white_pause_24p.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/big_white_pause_24p.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/blue_skin_calculator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/blue_skin_calculator.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/button_pressed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/button_pressed.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/button_pressed_yellow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/button_pressed_yellow.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/calculate_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/calculate_foreground.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/calculator_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/calculator_foreground.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/calculator_hide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/calculator_hide.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/capture_button_stop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/capture_button_stop.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/check_tiger_orange.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/check_tiger_orange.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/circle_check.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/circle_check.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/clock_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/clock_foreground.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/countdown_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/countdown_0.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/countdown_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/countdown_1.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/countdown_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/countdown_2.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/countdown_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/countdown_3.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/countdown_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/countdown_4.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/countdown_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/countdown_5.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/crop_rotate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/crop_rotate.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/dark_outlined_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/dark_outlined_button.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/default_dot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/default_dot.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/feedback_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/feedback_icon.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/flip_horizontally.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/flip_horizontally.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/flip_vertically.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/flip_vertically.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/gallery_gradient.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/gallery_gradient.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/gps_fixed_icon_white.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/gps_fixed_icon_white.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/green_skin_calculator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/green_skin_calculator.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/grid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/grid.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_add_circle_white.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/ic_add_circle_white.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_arrow_up_white.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/ic_arrow_up_white.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_audio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/ic_audio.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_back_white.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/ic_back_white.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_calendar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/ic_calendar.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_camera_front_white.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/ic_camera_front_white.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_camera_rear_white.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/ic_camera_rear_white.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_cancel_rounded.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/ic_cancel_rounded.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_check.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/ic_check.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_check_box_off.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/ic_check_box_off.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_check_box_on.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/ic_check_box_on.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_check_circle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/ic_check_circle.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_check_select.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/ic_check_select.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_check_white.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/ic_check_white.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_check_white_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/ic_check_white_24dp.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_close.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/ic_close.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_close_white.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/ic_close_white.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_close_white_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/ic_close_white_24dp.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_collect_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/ic_collect_menu.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_delete.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/ic_delete.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_delete_black_24px.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/ic_delete_black_24px.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_delete_white_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/ic_delete_white_24dp.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_delete_white_24px.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/ic_delete_white_24px.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_documents.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/ic_documents.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_download.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/ic_download.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_edit_orange_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/ic_edit_orange_24.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_error.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/ic_error.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_files_illustration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/ic_files_illustration.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_flash_auto_white.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/ic_flash_auto_white.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_flash_off_white.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/ic_flash_off_white.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_flash_on_white.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/ic_flash_on_white.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_folder_plus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/ic_folder_plus.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_gallery.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/ic_gallery.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_grid_on_white_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/ic_grid_on_white_24dp.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_headset_white_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/ic_headset_white_24dp.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_help_white_24px.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/ic_help_white_24px.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_info_24px.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/ic_info_24px.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_insights_questions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/ic_insights_questions.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_insights_will_not.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/ic_insights_will_not.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_list_check.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/ic_list_check.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_mic_gray.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/ic_mic_gray.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_mic_illustration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/ic_mic_illustration.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_mic_white.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/ic_mic_white.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_mic_white_small.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/ic_mic_white_small.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_myfiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/ic_myfiles.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_onboard_finish.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/ic_onboard_finish.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_others.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/ic_others.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_panic_circle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/ic_panic_circle.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_pause_white_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/ic_pause_white_24.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_pin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/ic_pin.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/ic_play.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_plus_rounded.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/ic_plus_rounded.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_privacy_policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/ic_privacy_policy.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_progress_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/ic_progress_bg.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_refresh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/ic_refresh.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_reports_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/ic_reports_settings.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_save_white_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/ic_save_white_24dp.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_search.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/ic_search.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_secret_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/ic_secret_icon.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_send_black_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/ic_send_black_24dp.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_server_universe.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/ic_server_universe.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_servers_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/ic_servers_icon.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_settings_white.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/ic_settings_white.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_stop_red.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/ic_stop_red.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_tune_white.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/ic_tune_white.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_update_black_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/ic_update_black_24dp.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_video.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/ic_video.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_videocam.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/ic_videocam.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_warning_orange.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/ic_warning_orange.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_welcome.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/ic_welcome.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/img_setup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/img_setup.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/jeweldash_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/jeweldash_foreground.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/later_clock_white.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/later_clock_white.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/later_white.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/later_white.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/lock_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/lock_bg.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/lock_bg_s.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/lock_bg_s.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/metadata_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/metadata_icon.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/odk_empty_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/odk_empty_icon.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/orange_help_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/orange_help_24.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/password.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/password.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/password_s.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/password_s.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/pattern.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/pattern.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/pattern_s.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/pattern_s.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/pdf_file_24px.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/pdf_file_24px.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/pin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/pin.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/pin_s.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/pin_s.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/playnow_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/playnow_foreground.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/purple_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/purple_background.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/red_circle_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/red_circle_background.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/refresh_phone_device.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/refresh_phone_device.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/refresh_spin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/refresh_spin.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/relation_entity_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/relation_entity_icon.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/relation_ship_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/relation_ship_icon.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/resource_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/resource_info.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/rotate_image.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/rotate_image.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/searchview_holo_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/searchview_holo_light.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/selected_dot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/selected_dot.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/shadow_border.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/shadow_border.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/short_arrow_back.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/short_arrow_back.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/short_arrow_next.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/short_arrow_next.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/short_arrow_up.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/short_arrow_up.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/splash_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/splash_bg.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/star_border_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/star_border_24dp.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/star_filled_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/star_filled_24dp.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/stop_white.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/stop_white.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/stopwatch_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/stopwatch_foreground.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/sunnyday_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/sunnyday_foreground.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/tab_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/tab_selector.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/tella_black.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/tella_black.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/tella_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/tella_icon.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/tella_white.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/tella_white.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/time_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/time_foreground.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/upload_box.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/upload_box.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/upload_box_btn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/upload_box_btn.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/upload_box_cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/upload_box_cut.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/upload_box_pressed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/upload_box_pressed.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/xml_border_bottom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/xml_border_bottom.xml -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/zoom_seek_bar_thumb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/drawable/zoom_seek_bar_thumb.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout-hdpi/item_report_files.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout-hdpi/item_report_files.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout-v21/item_vault_files.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout-v21/item_vault_files.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout-v21/item_vault_title.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout-v21/item_vault_title.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout-xhdpi/item_report_files.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout-xhdpi/item_report_files.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/activity_audio_play.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/activity_audio_play.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/activity_camera.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/activity_camera.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/activity_clean_insghts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/activity_clean_insghts.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/activity_collect_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/activity_collect_main.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/activity_form_submit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/activity_form_submit.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/activity_location_map.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/activity_location_map.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/activity_main2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/activity_main2.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/activity_metadata_help.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/activity_metadata_help.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/activity_onboarding.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/activity_onboarding.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/activity_pdf_reader.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/activity_pdf_reader.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/activity_photo_viewer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/activity_photo_viewer.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/activity_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/activity_settings.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/activity_signature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/activity_signature.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/activity_video_viewer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/activity_video_viewer.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/activity_web_viewer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/activity_web_viewer.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/baseactivity_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/baseactivity_activity.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/blank_collect_form_row.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/blank_collect_form_row.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/card_camouflage_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/card_camouflage_icon.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/choose_server_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/choose_server_layout.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/collect_checkbox_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/collect_checkbox_item.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/collect_form_delimiter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/collect_form_delimiter.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/collect_form_end_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/collect_form_end_view.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/collect_form_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/collect_form_view.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/collect_widget_date.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/collect_widget_date.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/collect_widget_media.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/collect_widget_media.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/collect_widget_spinner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/collect_widget_spinner.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/collect_widget_time.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/collect_widget_time.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/content_audio_play.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/content_audio_play.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/content_form_submit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/content_form_submit.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/content_fragment_mic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/content_fragment_mic.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/content_location_map.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/content_location_map.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/content_metadata_help.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/content_metadata_help.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/content_metadata_viewer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/content_metadata_viewer.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/content_panic_mode_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/content_panic_mode_view.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/content_photo_viewer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/content_photo_viewer.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/content_signature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/content_signature.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/dialog_collect_server.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/dialog_collect_server.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/draft_uwazi_row.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/draft_uwazi_row.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/form_parts_list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/form_parts_list_item.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/form_submit_end_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/form_submit_end_button.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/fragment_camera.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/fragment_camera.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/fragment_collect_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/fragment_collect_main.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/fragment_drafts_uwazi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/fragment_drafts_uwazi.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/fragment_edit_server.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/fragment_edit_server.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/fragment_enter_server.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/fragment_enter_server.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/fragment_hide_tella.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/fragment_hide_tella.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/fragment_login_type.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/fragment_login_type.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/fragment_main_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/fragment_main_settings.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/fragment_mic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/fragment_mic.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/fragment_name_and_logo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/fragment_name_and_logo.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/fragment_outbox_uwazi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/fragment_outbox_uwazi.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/fragment_reports.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/fragment_reports.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/fragment_reports_entry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/fragment_reports_entry.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/fragment_reports_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/fragment_reports_list.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/fragment_resources_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/fragment_resources_list.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/fragment_send_feedback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/fragment_send_feedback.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/fragment_send_report.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/fragment_send_report.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/fragment_uwazi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/fragment_uwazi.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/fragment_vault.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/fragment_vault.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/fragment_vault_edit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/fragment_vault_edit.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/fragment_vault_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/fragment_vault_info.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/item_favorite_form.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/item_favorite_form.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/item_favorite_template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/item_favorite_template.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/item_home_vault_server.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/item_home_vault_server.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/item_language_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/item_language_selector.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/item_uwazi_date.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/item_uwazi_date.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/item_uwazi_date_range.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/item_uwazi_date_range.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/item_vault_attachmenets.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/item_vault_attachmenets.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/item_vault_files.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/item_vault_files.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/item_vault_panic_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/item_vault_panic_button.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/item_vault_recent_files.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/item_vault_recent_files.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/item_vault_title.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/item_vault_title.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/language_item_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/language_item_layout.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/metadata_dialog_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/metadata_dialog_layout.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/metadata_header.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/metadata_header.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/metadata_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/metadata_item.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/metadata_line.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/metadata_line.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/onboard_camera_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/onboard_camera_fragment.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/onboard_collect_data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/onboard_collect_data.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/onboard_files_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/onboard_files_fragment.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/question_widget.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/question_widget.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/reports_form_end_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/reports_form_end_view.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/row_multi_select_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/row_multi_select_item.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/searchable_list_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/searchable_list_layout.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/servers_list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/servers_list_item.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/splash_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/splash_layout.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/submitted_uwazi_row.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/submitted_uwazi_row.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/templates_uwazi_row.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/templates_uwazi_row.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/uwazi_checkbox_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/uwazi_checkbox_layout.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/uwazi_entry_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/uwazi_entry_fragment.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/uwazi_form_end_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/uwazi_form_end_view.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/uwazi_send_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/uwazi_send_fragment.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/uwazi_widget_daterange.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/uwazi_widget_daterange.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/uwazi_widget_multidate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/uwazi_widget_multidate.xml -------------------------------------------------------------------------------- /mobile/src/main/res/layout/uwazi_widget_multifile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/layout/uwazi_widget_multifile.xml -------------------------------------------------------------------------------- /mobile/src/main/res/menu/attachments_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/menu/attachments_menu.xml -------------------------------------------------------------------------------- /mobile/src/main/res/menu/collect_form_entry_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/menu/collect_form_entry_menu.xml -------------------------------------------------------------------------------- /mobile/src/main/res/menu/collect_server_item_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/menu/collect_server_item_menu.xml -------------------------------------------------------------------------------- /mobile/src/main/res/menu/form_submit_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/menu/form_submit_menu.xml -------------------------------------------------------------------------------- /mobile/src/main/res/menu/home_menu_selected.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/menu/home_menu_selected.xml -------------------------------------------------------------------------------- /mobile/src/main/res/menu/location_map_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/menu/location_map_menu.xml -------------------------------------------------------------------------------- /mobile/src/main/res/menu/metadata_viewer_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/menu/metadata_viewer_menu.xml -------------------------------------------------------------------------------- /mobile/src/main/res/menu/photo_view_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/menu/photo_view_menu.xml -------------------------------------------------------------------------------- /mobile/src/main/res/menu/signature_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/menu/signature_menu.xml -------------------------------------------------------------------------------- /mobile/src/main/res/menu/video_view_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/menu/video_view_menu.xml -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-anydpi-v26/calculator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-anydpi-v26/calculator.xml -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-anydpi-v26/ic_astrology.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-anydpi-v26/ic_astrology.xml -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-anydpi-v26/ic_calculate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-anydpi-v26/ic_calculate.xml -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-anydpi-v26/ic_camera.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-anydpi-v26/ic_camera.xml -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-anydpi-v26/ic_clock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-anydpi-v26/ic_clock.xml -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-anydpi-v26/ic_forecast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-anydpi-v26/ic_forecast.xml -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-anydpi-v26/ic_health.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-anydpi-v26/ic_health.xml -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-anydpi-v26/ic_mi_camera.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-anydpi-v26/ic_mi_camera.xml -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-anydpi-v26/ic_music.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-anydpi-v26/ic_music.xml -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-anydpi-v26/ic_play_now.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-anydpi-v26/ic_play_now.xml -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-anydpi-v26/ic_sunny_day.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-anydpi-v26/ic_sunny_day.xml -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-anydpi-v26/ic_time.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-anydpi-v26/ic_time.xml -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-anydpi-v26/ic_watch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-anydpi-v26/ic_watch.xml -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-anydpi-v26/ic_weather.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-anydpi-v26/ic_weather.xml -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-anydpi-v26/ic_workout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-anydpi-v26/ic_workout.xml -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-anydpi-v26/tella_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-anydpi-v26/tella_icon.xml -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-hdpi/calculator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-hdpi/calculator.png -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-hdpi/calculator_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-hdpi/calculator_round.png -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-hdpi/ic_astrology.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-hdpi/ic_astrology.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-hdpi/ic_calculate.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-hdpi/ic_calculate.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-hdpi/ic_calculator.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-hdpi/ic_calculator.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-hdpi/ic_camera.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-hdpi/ic_camera.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-hdpi/ic_camera_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-hdpi/ic_camera_round.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-hdpi/ic_clock.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-hdpi/ic_clock.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-hdpi/ic_clock_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-hdpi/ic_clock_round.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-hdpi/ic_dictionary.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-hdpi/ic_dictionary.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-hdpi/ic_easy_weather.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-hdpi/ic_easy_weather.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-hdpi/ic_fitness_life.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-hdpi/ic_fitness_life.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-hdpi/ic_forecast.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-hdpi/ic_forecast.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-hdpi/ic_forecast_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-hdpi/ic_forecast_round.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-hdpi/ic_game_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-hdpi/ic_game_launcher.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-hdpi/ic_game_station.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-hdpi/ic_game_station.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-hdpi/ic_health.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-hdpi/ic_health.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-hdpi/ic_health_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-hdpi/ic_health_round.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-hdpi/ic_i_calculator.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-hdpi/ic_i_calculator.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-hdpi/ic_jewel_dash.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-hdpi/ic_jewel_dash.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-hdpi/ic_mi_camera.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-hdpi/ic_mi_camera.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-hdpi/ic_music.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-hdpi/ic_music.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-hdpi/ic_music_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-hdpi/ic_music_round.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-hdpi/ic_period_tracker.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-hdpi/ic_period_tracker.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-hdpi/ic_plant_care.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-hdpi/ic_plant_care.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-hdpi/ic_play_now.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-hdpi/ic_play_now.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-hdpi/ic_play_now_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-hdpi/ic_play_now_round.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-hdpi/ic_selfie_cam.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-hdpi/ic_selfie_cam.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-hdpi/ic_snap_camera.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-hdpi/ic_snap_camera.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-hdpi/ic_stop_watch.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-hdpi/ic_stop_watch.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-hdpi/ic_sunny_day.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-hdpi/ic_sunny_day.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-hdpi/ic_time.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-hdpi/ic_time.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-hdpi/ic_time_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-hdpi/ic_time_round.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-hdpi/ic_watch.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-hdpi/ic_watch.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-hdpi/ic_watch_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-hdpi/ic_watch_round.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-hdpi/ic_weather.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-hdpi/ic_weather.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-hdpi/ic_weather_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-hdpi/ic_weather_round.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-hdpi/ic_workout.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-hdpi/ic_workout.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-hdpi/ic_workout_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-hdpi/ic_workout_round.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-hdpi/tella_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-hdpi/tella_icon.png -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-hdpi/tella_icon_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-hdpi/tella_icon_round.png -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-mdpi/calculator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-mdpi/calculator.png -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-mdpi/calculator_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-mdpi/calculator_round.png -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-mdpi/ic_astrology.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-mdpi/ic_astrology.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-mdpi/ic_calculate.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-mdpi/ic_calculate.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-mdpi/ic_calculator.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-mdpi/ic_calculator.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-mdpi/ic_camera.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-mdpi/ic_camera.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-mdpi/ic_camera_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-mdpi/ic_camera_round.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-mdpi/ic_clock.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-mdpi/ic_clock.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-mdpi/ic_clock_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-mdpi/ic_clock_round.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-mdpi/ic_dictionary.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-mdpi/ic_dictionary.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-mdpi/ic_easy_weather.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-mdpi/ic_easy_weather.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-mdpi/ic_fitness_life.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-mdpi/ic_fitness_life.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-mdpi/ic_forecast.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-mdpi/ic_forecast.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-mdpi/ic_forecast_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-mdpi/ic_forecast_round.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-mdpi/ic_game_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-mdpi/ic_game_launcher.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-mdpi/ic_game_station.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-mdpi/ic_game_station.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-mdpi/ic_health.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-mdpi/ic_health.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-mdpi/ic_health_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-mdpi/ic_health_round.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-mdpi/ic_i_calculator.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-mdpi/ic_i_calculator.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-mdpi/ic_jewel_dash.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-mdpi/ic_jewel_dash.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-mdpi/ic_mi_camera.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-mdpi/ic_mi_camera.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-mdpi/ic_music.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-mdpi/ic_music.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-mdpi/ic_music_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-mdpi/ic_music_round.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-mdpi/ic_period_tracker.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-mdpi/ic_period_tracker.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-mdpi/ic_plant_care.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-mdpi/ic_plant_care.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-mdpi/ic_play_now.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-mdpi/ic_play_now.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-mdpi/ic_play_now_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-mdpi/ic_play_now_round.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-mdpi/ic_selfie_cam.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-mdpi/ic_selfie_cam.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-mdpi/ic_snap_camera.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-mdpi/ic_snap_camera.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-mdpi/ic_stop_watch.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-mdpi/ic_stop_watch.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-mdpi/ic_sunny_day.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-mdpi/ic_sunny_day.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-mdpi/ic_time.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-mdpi/ic_time.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-mdpi/ic_time_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-mdpi/ic_time_round.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-mdpi/ic_watch.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-mdpi/ic_watch.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-mdpi/ic_watch_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-mdpi/ic_watch_round.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-mdpi/ic_weather.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-mdpi/ic_weather.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-mdpi/ic_weather_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-mdpi/ic_weather_round.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-mdpi/ic_workout.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-mdpi/ic_workout.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-mdpi/ic_workout_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-mdpi/ic_workout_round.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-mdpi/tella_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-mdpi/tella_icon.png -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-mdpi/tella_icon_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-mdpi/tella_icon_round.png -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xhdpi/calculator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xhdpi/calculator.png -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xhdpi/calculator_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xhdpi/calculator_round.png -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xhdpi/ic_astrology.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xhdpi/ic_astrology.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xhdpi/ic_calculate.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xhdpi/ic_calculate.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xhdpi/ic_calculator.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xhdpi/ic_calculator.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xhdpi/ic_camera.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xhdpi/ic_camera.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xhdpi/ic_camera_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xhdpi/ic_camera_round.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xhdpi/ic_clock.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xhdpi/ic_clock.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xhdpi/ic_clock_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xhdpi/ic_clock_round.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xhdpi/ic_dictionary.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xhdpi/ic_dictionary.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xhdpi/ic_easy_weather.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xhdpi/ic_easy_weather.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xhdpi/ic_fitness_life.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xhdpi/ic_fitness_life.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xhdpi/ic_forecast.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xhdpi/ic_forecast.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xhdpi/ic_game_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xhdpi/ic_game_launcher.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xhdpi/ic_game_station.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xhdpi/ic_game_station.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xhdpi/ic_health.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xhdpi/ic_health.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xhdpi/ic_health_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xhdpi/ic_health_round.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xhdpi/ic_i_calculator.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xhdpi/ic_i_calculator.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xhdpi/ic_jewel_dash.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xhdpi/ic_jewel_dash.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xhdpi/ic_mi_camera.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xhdpi/ic_mi_camera.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xhdpi/ic_music.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xhdpi/ic_music.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xhdpi/ic_music_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xhdpi/ic_music_round.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xhdpi/ic_plant_care.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xhdpi/ic_plant_care.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xhdpi/ic_play_now.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xhdpi/ic_play_now.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xhdpi/ic_selfie_cam.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xhdpi/ic_selfie_cam.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xhdpi/ic_snap_camera.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xhdpi/ic_snap_camera.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xhdpi/ic_stop_watch.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xhdpi/ic_stop_watch.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xhdpi/ic_sunny_day.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xhdpi/ic_sunny_day.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xhdpi/ic_time.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xhdpi/ic_time.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xhdpi/ic_time_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xhdpi/ic_time_round.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xhdpi/ic_watch.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xhdpi/ic_watch.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xhdpi/ic_watch_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xhdpi/ic_watch_round.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xhdpi/ic_weather.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xhdpi/ic_weather.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xhdpi/ic_weather_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xhdpi/ic_weather_round.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xhdpi/ic_workout.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xhdpi/ic_workout.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xhdpi/ic_workout_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xhdpi/ic_workout_round.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xhdpi/tella_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xhdpi/tella_icon.png -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xhdpi/tella_icon_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xhdpi/tella_icon_round.png -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xxhdpi/calculator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xxhdpi/calculator.png -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xxhdpi/calculator_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xxhdpi/calculator_round.png -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xxhdpi/ic_astrology.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xxhdpi/ic_astrology.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xxhdpi/ic_calculate.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xxhdpi/ic_calculate.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xxhdpi/ic_calculator.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xxhdpi/ic_calculator.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xxhdpi/ic_camera.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xxhdpi/ic_camera.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xxhdpi/ic_camera_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xxhdpi/ic_camera_round.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xxhdpi/ic_clock.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xxhdpi/ic_clock.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xxhdpi/ic_clock_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xxhdpi/ic_clock_round.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xxhdpi/ic_dictionary.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xxhdpi/ic_dictionary.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xxhdpi/ic_forecast.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xxhdpi/ic_forecast.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xxhdpi/ic_health.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xxhdpi/ic_health.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xxhdpi/ic_jewel_dash.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xxhdpi/ic_jewel_dash.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xxhdpi/ic_mi_camera.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xxhdpi/ic_mi_camera.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xxhdpi/ic_music.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xxhdpi/ic_music.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xxhdpi/ic_plant_care.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xxhdpi/ic_plant_care.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xxhdpi/ic_play_now.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xxhdpi/ic_play_now.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xxhdpi/ic_selfie_cam.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xxhdpi/ic_selfie_cam.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xxhdpi/ic_stop_watch.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xxhdpi/ic_stop_watch.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xxhdpi/ic_sunny_day.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xxhdpi/ic_sunny_day.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xxhdpi/ic_time.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xxhdpi/ic_time.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xxhdpi/ic_time_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xxhdpi/ic_time_round.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xxhdpi/ic_watch.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xxhdpi/ic_watch.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xxhdpi/ic_weather.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xxhdpi/ic_weather.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xxhdpi/ic_workout.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xxhdpi/ic_workout.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xxhdpi/tella_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xxhdpi/tella_icon.png -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xxxhdpi/calculator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xxxhdpi/calculator.png -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xxxhdpi/ic_astrology.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xxxhdpi/ic_astrology.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xxxhdpi/ic_calculate.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xxxhdpi/ic_calculate.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xxxhdpi/ic_camera.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xxxhdpi/ic_camera.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xxxhdpi/ic_clock.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xxxhdpi/ic_clock.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xxxhdpi/ic_forecast.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xxxhdpi/ic_forecast.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xxxhdpi/ic_health.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xxxhdpi/ic_health.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xxxhdpi/ic_mi_camera.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xxxhdpi/ic_mi_camera.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xxxhdpi/ic_music.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xxxhdpi/ic_music.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xxxhdpi/ic_play_now.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xxxhdpi/ic_play_now.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xxxhdpi/ic_sunny_day.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xxxhdpi/ic_sunny_day.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xxxhdpi/ic_time.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xxxhdpi/ic_time.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xxxhdpi/ic_watch.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xxxhdpi/ic_watch.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xxxhdpi/ic_weather.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xxxhdpi/ic_weather.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xxxhdpi/ic_workout.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xxxhdpi/ic_workout.webp -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xxxhdpi/tella_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/mipmap-xxxhdpi/tella_icon.png -------------------------------------------------------------------------------- /mobile/src/main/res/navigation/camera.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/navigation/camera.xml -------------------------------------------------------------------------------- /mobile/src/main/res/navigation/form.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/navigation/form.xml -------------------------------------------------------------------------------- /mobile/src/main/res/navigation/home.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/navigation/home.xml -------------------------------------------------------------------------------- /mobile/src/main/res/navigation/micro.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/navigation/micro.xml -------------------------------------------------------------------------------- /mobile/src/main/res/navigation/nav_graph.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/navigation/nav_graph.xml -------------------------------------------------------------------------------- /mobile/src/main/res/navigation/reports_graph.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/navigation/reports_graph.xml -------------------------------------------------------------------------------- /mobile/src/main/res/navigation/reports_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/navigation/reports_settings.xml -------------------------------------------------------------------------------- /mobile/src/main/res/navigation/uwazi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/navigation/uwazi.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values-ar/lock_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/values-ar/lock_strings.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values-ar/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/values-ar/strings.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values-ar/vault_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/values-ar/vault_strings.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values-be/lock_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/values-be/lock_strings.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values-be/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/values-be/strings.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values-be/vault_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/values-be/vault_strings.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values-blk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/values-blk/strings.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values-es/lock_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/values-es/lock_strings.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values-es/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/values-es/strings.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values-es/vault_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/values-es/vault_strings.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values-fa-rIR/lock_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/values-fa-rIR/lock_strings.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values-fa-rIR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/values-fa-rIR/strings.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values-fa-rIR/vault_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/values-fa-rIR/vault_strings.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values-fr/lock_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/values-fr/lock_strings.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values-fr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/values-fr/strings.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values-fr/vault_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/values-fr/vault_strings.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values-hdpi/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/values-hdpi/dimens.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values-id/lock_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/values-id/lock_strings.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values-id/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/values-id/strings.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values-id/vault_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/values-id/vault_strings.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values-in/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/values-in/strings.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values-in/vault_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/values-in/vault_strings.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values-kac/lock_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/values-kac/lock_strings.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values-kac/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/values-kac/strings.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values-kac/vault_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/values-kac/vault_strings.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values-kn/lock_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/values-kn/lock_strings.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values-kn/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/values-kn/strings.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values-kn/vault_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/values-kn/vault_strings.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values-ksw/lock_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/values-ksw/lock_strings.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values-ksw/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/values-ksw/strings.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values-ksw/vault_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/values-ksw/vault_strings.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values-ku-rCK/lock_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/values-ku-rCK/lock_strings.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values-ku-rCK/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/values-ku-rCK/strings.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values-ku-rCK/vault_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/values-ku-rCK/vault_strings.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values-ku/lock_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/values-ku/lock_strings.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values-ku/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/values-ku/strings.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values-ku/vault_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/values-ku/vault_strings.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values-ldrtl/consts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/values-ldrtl/consts.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values-mdpi/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/values-mdpi/dimens.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values-ml/lock_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/values-ml/lock_strings.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values-ml/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/values-ml/strings.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values-ml/vault_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/values-ml/vault_strings.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values-my-rMM/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/values-my-rMM/strings.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values-my-rMM/vault_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/values-my-rMM/vault_strings.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values-my/lock_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/values-my/lock_strings.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values-my/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/values-my/strings.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values-my/vault_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/values-my/vault_strings.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values-pt/lock_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/values-pt/lock_strings.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values-pt/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/values-pt/strings.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values-pt/vault_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/values-pt/vault_strings.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values-ru/lock_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/values-ru/lock_strings.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values-ru/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/values-ru/strings.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values-ru/vault_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/values-ru/vault_strings.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values-sw600dp/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/values-sw600dp/attrs.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values-ta/lock_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/values-ta/lock_strings.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values-ta/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/values-ta/strings.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values-ta/vault_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/values-ta/vault_strings.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/values-v21/styles.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values-v26/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/values-v26/styles.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values-vi/lock_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/values-vi/lock_strings.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values-vi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/values-vi/strings.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values-vi/vault_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/values-vi/vault_strings.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values-xhdpi/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/values-xhdpi/dimens.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values-xxhdpi/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/values-xxhdpi/dimens.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/values/arrays.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values/calculator_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/values/calculator_background.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values/calculator_skins.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/values/calculator_skins.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/values/config.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values/consts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/values/consts.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values/drawables.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/values/drawables.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values/ic_blue_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/values/ic_blue_background.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values/lock_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/values/lock_strings.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values/preloaded_fonts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/values/preloaded_fonts.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /mobile/src/main/res/values/vault_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/values/vault_strings.xml -------------------------------------------------------------------------------- /mobile/src/main/res/xml/encrypted_file_paths.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/res/xml/encrypted_file_paths.xml -------------------------------------------------------------------------------- /mobile/src/main/selfiecamera-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/selfiecamera-playstore.png -------------------------------------------------------------------------------- /mobile/src/main/snapcamera-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/snapcamera-playstore.png -------------------------------------------------------------------------------- /mobile/src/main/stopwatch-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/stopwatch-playstore.png -------------------------------------------------------------------------------- /mobile/src/main/sunnyday-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/sunnyday-playstore.png -------------------------------------------------------------------------------- /mobile/src/main/time-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/time-playstore.png -------------------------------------------------------------------------------- /mobile/src/main/weather-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/mobile/src/main/weather-playstore.png -------------------------------------------------------------------------------- /pdfviewer/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /pdfviewer/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/pdfviewer/build.gradle -------------------------------------------------------------------------------- /pdfviewer/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/pdfviewer/proguard-rules.pro -------------------------------------------------------------------------------- /pdfviewer/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/pdfviewer/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /pdfviewer/src/main/res/layout/list_item_pdf_page.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/pdfviewer/src/main/res/layout/list_item_pdf_page.xml -------------------------------------------------------------------------------- /pdfviewer/src/main/res/layout/pdf_rendererview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/pdfviewer/src/main/res/layout/pdf_rendererview.xml -------------------------------------------------------------------------------- /pdfviewer/src/main/res/layout/pdf_view_page_no.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/pdfviewer/src/main/res/layout/pdf_view_page_no.xml -------------------------------------------------------------------------------- /pdfviewer/src/main/res/menu/menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/pdfviewer/src/main/res/menu/menu.xml -------------------------------------------------------------------------------- /pdfviewer/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/pdfviewer/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /pdfviewer/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/pdfviewer/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /pdfviewer/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/pdfviewer/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /pdfviewer/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/pdfviewer/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /pdfviewer/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/pdfviewer/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /pdfviewer/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/pdfviewer/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /pdfviewer/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/pdfviewer/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/settings.gradle -------------------------------------------------------------------------------- /shared-ui/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /shared-ui/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/shared-ui/build.gradle -------------------------------------------------------------------------------- /shared-ui/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shared-ui/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/shared-ui/proguard-rules.pro -------------------------------------------------------------------------------- /shared-ui/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/shared-ui/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /shared-ui/src/main/res/anim/slide_in_from_top.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/shared-ui/src/main/res/anim/slide_in_from_top.xml -------------------------------------------------------------------------------- /shared-ui/src/main/res/anim/slide_out_to_top.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/shared-ui/src/main/res/anim/slide_out_to_top.xml -------------------------------------------------------------------------------- /shared-ui/src/main/res/color/radio_buttons_color.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/shared-ui/src/main/res/color/radio_buttons_color.xml -------------------------------------------------------------------------------- /shared-ui/src/main/res/color/switch_thumb_color.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/shared-ui/src/main/res/color/switch_thumb_color.xml -------------------------------------------------------------------------------- /shared-ui/src/main/res/color/switch_track_color.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/shared-ui/src/main/res/color/switch_track_color.xml -------------------------------------------------------------------------------- /shared-ui/src/main/res/drawable-xhdpi/ic_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/shared-ui/src/main/res/drawable-xhdpi/ic_camera.png -------------------------------------------------------------------------------- /shared-ui/src/main/res/drawable-xhdpi/ic_forms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/shared-ui/src/main/res/drawable-xhdpi/ic_forms.png -------------------------------------------------------------------------------- /shared-ui/src/main/res/drawable-xhdpi/ic_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/shared-ui/src/main/res/drawable-xhdpi/ic_home.png -------------------------------------------------------------------------------- /shared-ui/src/main/res/drawable-xhdpi/ic_mic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/shared-ui/src/main/res/drawable-xhdpi/ic_mic.png -------------------------------------------------------------------------------- /shared-ui/src/main/res/drawable-xhdpi/ic_reports.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/shared-ui/src/main/res/drawable-xhdpi/ic_reports.png -------------------------------------------------------------------------------- /shared-ui/src/main/res/drawable/bg_dropdown.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/shared-ui/src/main/res/drawable/bg_dropdown.xml -------------------------------------------------------------------------------- /shared-ui/src/main/res/drawable/bg_dropdownlist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/shared-ui/src/main/res/drawable/bg_dropdownlist.xml -------------------------------------------------------------------------------- /shared-ui/src/main/res/drawable/bg_edittext.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/shared-ui/src/main/res/drawable/bg_edittext.xml -------------------------------------------------------------------------------- /shared-ui/src/main/res/drawable/bg_home_btn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/shared-ui/src/main/res/drawable/bg_home_btn.xml -------------------------------------------------------------------------------- /shared-ui/src/main/res/drawable/bg_row_forms.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/shared-ui/src/main/res/drawable/bg_row_forms.xml -------------------------------------------------------------------------------- /shared-ui/src/main/res/drawable/bg_topsheet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/shared-ui/src/main/res/drawable/bg_topsheet.xml -------------------------------------------------------------------------------- /shared-ui/src/main/res/drawable/crop_rotate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/shared-ui/src/main/res/drawable/crop_rotate.xml -------------------------------------------------------------------------------- /shared-ui/src/main/res/drawable/delete_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/shared-ui/src/main/res/drawable/delete_bg.xml -------------------------------------------------------------------------------- /shared-ui/src/main/res/drawable/home.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/shared-ui/src/main/res/drawable/home.xml -------------------------------------------------------------------------------- /shared-ui/src/main/res/drawable/ic_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/shared-ui/src/main/res/drawable/ic_camera.png -------------------------------------------------------------------------------- /shared-ui/src/main/res/drawable/ic_camouflage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/shared-ui/src/main/res/drawable/ic_camouflage.xml -------------------------------------------------------------------------------- /shared-ui/src/main/res/drawable/ic_chevron_top.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/shared-ui/src/main/res/drawable/ic_chevron_top.xml -------------------------------------------------------------------------------- /shared-ui/src/main/res/drawable/ic_customization.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/shared-ui/src/main/res/drawable/ic_customization.xml -------------------------------------------------------------------------------- /shared-ui/src/main/res/drawable/ic_edit_white_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/shared-ui/src/main/res/drawable/ic_edit_white_24.xml -------------------------------------------------------------------------------- /shared-ui/src/main/res/drawable/ic_eye_white.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/shared-ui/src/main/res/drawable/ic_eye_white.xml -------------------------------------------------------------------------------- /shared-ui/src/main/res/drawable/ic_folder_24px.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/shared-ui/src/main/res/drawable/ic_folder_24px.xml -------------------------------------------------------------------------------- /shared-ui/src/main/res/drawable/ic_forms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/shared-ui/src/main/res/drawable/ic_forms.png -------------------------------------------------------------------------------- /shared-ui/src/main/res/drawable/ic_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/shared-ui/src/main/res/drawable/ic_home.png -------------------------------------------------------------------------------- /shared-ui/src/main/res/drawable/ic_home_folder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/shared-ui/src/main/res/drawable/ic_home_folder.xml -------------------------------------------------------------------------------- /shared-ui/src/main/res/drawable/ic_info_24px.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/shared-ui/src/main/res/drawable/ic_info_24px.xml -------------------------------------------------------------------------------- /shared-ui/src/main/res/drawable/ic_menu_gallery.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/shared-ui/src/main/res/drawable/ic_menu_gallery.xml -------------------------------------------------------------------------------- /shared-ui/src/main/res/drawable/ic_mic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/shared-ui/src/main/res/drawable/ic_mic.png -------------------------------------------------------------------------------- /shared-ui/src/main/res/drawable/ic_more.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/shared-ui/src/main/res/drawable/ic_more.xml -------------------------------------------------------------------------------- /shared-ui/src/main/res/drawable/ic_move.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/shared-ui/src/main/res/drawable/ic_move.xml -------------------------------------------------------------------------------- /shared-ui/src/main/res/drawable/ic_new_folder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/shared-ui/src/main/res/drawable/ic_new_folder.xml -------------------------------------------------------------------------------- /shared-ui/src/main/res/drawable/ic_pen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/shared-ui/src/main/res/drawable/ic_pen.xml -------------------------------------------------------------------------------- /shared-ui/src/main/res/drawable/ic_plus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/shared-ui/src/main/res/drawable/ic_plus.xml -------------------------------------------------------------------------------- /shared-ui/src/main/res/drawable/ic_reports.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/shared-ui/src/main/res/drawable/ic_reports.png -------------------------------------------------------------------------------- /shared-ui/src/main/res/drawable/ic_save_alt_24px.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/shared-ui/src/main/res/drawable/ic_save_alt_24px.xml -------------------------------------------------------------------------------- /shared-ui/src/main/res/drawable/ic_server.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/shared-ui/src/main/res/drawable/ic_server.xml -------------------------------------------------------------------------------- /shared-ui/src/main/res/drawable/ic_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/shared-ui/src/main/res/drawable/ic_settings.xml -------------------------------------------------------------------------------- /shared-ui/src/main/res/drawable/ic_share.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/shared-ui/src/main/res/drawable/ic_share.xml -------------------------------------------------------------------------------- /shared-ui/src/main/res/drawable/ic_upload_cloud.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/shared-ui/src/main/res/drawable/ic_upload_cloud.xml -------------------------------------------------------------------------------- /shared-ui/src/main/res/drawable/ic_uwazi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/shared-ui/src/main/res/drawable/ic_uwazi.xml -------------------------------------------------------------------------------- /shared-ui/src/main/res/drawable/ic_uwazi_small.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/shared-ui/src/main/res/drawable/ic_uwazi_small.xml -------------------------------------------------------------------------------- /shared-ui/src/main/res/drawable/orange_check_box.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/shared-ui/src/main/res/drawable/orange_check_box.xml -------------------------------------------------------------------------------- /shared-ui/src/main/res/drawable/orange_help_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/shared-ui/src/main/res/drawable/orange_help_24.xml -------------------------------------------------------------------------------- /shared-ui/src/main/res/drawable/solid_white.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/shared-ui/src/main/res/drawable/solid_white.xml -------------------------------------------------------------------------------- /shared-ui/src/main/res/font/open_sans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/shared-ui/src/main/res/font/open_sans.xml -------------------------------------------------------------------------------- /shared-ui/src/main/res/font/roboto_regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/shared-ui/src/main/res/font/roboto_regular.ttf -------------------------------------------------------------------------------- /shared-ui/src/main/res/layout/blue_sheet_rename.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/shared-ui/src/main/res/layout/blue_sheet_rename.xml -------------------------------------------------------------------------------- /shared-ui/src/main/res/layout/component_toolbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/shared-ui/src/main/res/layout/component_toolbar.xml -------------------------------------------------------------------------------- /shared-ui/src/main/res/layout/dual_choose_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/shared-ui/src/main/res/layout/dual_choose_layout.xml -------------------------------------------------------------------------------- /shared-ui/src/main/res/layout/home_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/shared-ui/src/main/res/layout/home_button.xml -------------------------------------------------------------------------------- /shared-ui/src/main/res/layout/keyboard_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/shared-ui/src/main/res/layout/keyboard_view.xml -------------------------------------------------------------------------------- /shared-ui/src/main/res/layout/layout_sort_vault.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/shared-ui/src/main/res/layout/layout_sort_vault.xml -------------------------------------------------------------------------------- /shared-ui/src/main/res/layout/settings_info_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/shared-ui/src/main/res/layout/settings_info_view.xml -------------------------------------------------------------------------------- /shared-ui/src/main/res/layout/sheet_rename.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/shared-ui/src/main/res/layout/sheet_rename.xml -------------------------------------------------------------------------------- /shared-ui/src/main/res/layout/submited_list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/shared-ui/src/main/res/layout/submited_list_item.xml -------------------------------------------------------------------------------- /shared-ui/src/main/res/layout/switch_with_text.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/shared-ui/src/main/res/layout/switch_with_text.xml -------------------------------------------------------------------------------- /shared-ui/src/main/res/menu/bottom_nav.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/shared-ui/src/main/res/menu/bottom_nav.xml -------------------------------------------------------------------------------- /shared-ui/src/main/res/values-ar/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/shared-ui/src/main/res/values-ar/strings.xml -------------------------------------------------------------------------------- /shared-ui/src/main/res/values-es/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/shared-ui/src/main/res/values-es/strings.xml -------------------------------------------------------------------------------- /shared-ui/src/main/res/values-fr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/shared-ui/src/main/res/values-fr/strings.xml -------------------------------------------------------------------------------- /shared-ui/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/shared-ui/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /shared-ui/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/shared-ui/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /shared-ui/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/shared-ui/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /shared-ui/src/main/res/values/font_certs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/shared-ui/src/main/res/values/font_certs.xml -------------------------------------------------------------------------------- /shared-ui/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/shared-ui/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /shared-ui/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/shared-ui/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /tella-keys/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /tella-keys/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/tella-keys/build.gradle -------------------------------------------------------------------------------- /tella-keys/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tella-keys/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/tella-keys/proguard-rules.pro -------------------------------------------------------------------------------- /tella-keys/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/tella-keys/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /tella-locking-ui/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /tella-locking-ui/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/tella-locking-ui/build.gradle -------------------------------------------------------------------------------- /tella-locking-ui/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tella-locking-ui/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/tella-locking-ui/proguard-rules.pro -------------------------------------------------------------------------------- /tella-locking-ui/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/tella-locking-ui/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /tella-locking-ui/src/main/res/anim/in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/tella-locking-ui/src/main/res/anim/in.xml -------------------------------------------------------------------------------- /tella-locking-ui/src/main/res/anim/left_to_right.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/tella-locking-ui/src/main/res/anim/left_to_right.xml -------------------------------------------------------------------------------- /tella-locking-ui/src/main/res/anim/out.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/tella-locking-ui/src/main/res/anim/out.xml -------------------------------------------------------------------------------- /tella-locking-ui/src/main/res/anim/right_to_left.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/tella-locking-ui/src/main/res/anim/right_to_left.xml -------------------------------------------------------------------------------- /tella-locking-ui/src/main/res/drawable-xhdpi/eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/tella-locking-ui/src/main/res/drawable-xhdpi/eye.png -------------------------------------------------------------------------------- /tella-locking-ui/src/main/res/drawable/delete_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/tella-locking-ui/src/main/res/drawable/delete_bg.xml -------------------------------------------------------------------------------- /tella-locking-ui/src/main/res/drawable/eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/tella-locking-ui/src/main/res/drawable/eye.png -------------------------------------------------------------------------------- /tella-locking-ui/src/main/res/drawable/eye_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/tella-locking-ui/src/main/res/drawable/eye_off.png -------------------------------------------------------------------------------- /tella-locking-ui/src/main/res/drawable/icon_left.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/tella-locking-ui/src/main/res/drawable/icon_left.xml -------------------------------------------------------------------------------- /tella-locking-ui/src/main/res/values-ar/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/tella-locking-ui/src/main/res/values-ar/strings.xml -------------------------------------------------------------------------------- /tella-locking-ui/src/main/res/values-be/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/tella-locking-ui/src/main/res/values-be/strings.xml -------------------------------------------------------------------------------- /tella-locking-ui/src/main/res/values-es/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/tella-locking-ui/src/main/res/values-es/strings.xml -------------------------------------------------------------------------------- /tella-locking-ui/src/main/res/values-fr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/tella-locking-ui/src/main/res/values-fr/strings.xml -------------------------------------------------------------------------------- /tella-locking-ui/src/main/res/values-hdpi/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/tella-locking-ui/src/main/res/values-hdpi/dimens.xml -------------------------------------------------------------------------------- /tella-locking-ui/src/main/res/values-id/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/tella-locking-ui/src/main/res/values-id/strings.xml -------------------------------------------------------------------------------- /tella-locking-ui/src/main/res/values-in/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/tella-locking-ui/src/main/res/values-in/strings.xml -------------------------------------------------------------------------------- /tella-locking-ui/src/main/res/values-kac/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/tella-locking-ui/src/main/res/values-kac/strings.xml -------------------------------------------------------------------------------- /tella-locking-ui/src/main/res/values-kn/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/tella-locking-ui/src/main/res/values-kn/strings.xml -------------------------------------------------------------------------------- /tella-locking-ui/src/main/res/values-ksw/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/tella-locking-ui/src/main/res/values-ksw/strings.xml -------------------------------------------------------------------------------- /tella-locking-ui/src/main/res/values-ml/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/tella-locking-ui/src/main/res/values-ml/strings.xml -------------------------------------------------------------------------------- /tella-locking-ui/src/main/res/values-pt/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/tella-locking-ui/src/main/res/values-pt/strings.xml -------------------------------------------------------------------------------- /tella-locking-ui/src/main/res/values-ru/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/tella-locking-ui/src/main/res/values-ru/strings.xml -------------------------------------------------------------------------------- /tella-locking-ui/src/main/res/values-ta/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/tella-locking-ui/src/main/res/values-ta/strings.xml -------------------------------------------------------------------------------- /tella-locking-ui/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/tella-locking-ui/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /tella-locking-ui/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/tella-locking-ui/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /tella-locking-ui/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/tella-locking-ui/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /tella-locking-ui/src/main/res/values/divviup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/tella-locking-ui/src/main/res/values/divviup.xml -------------------------------------------------------------------------------- /tella-locking-ui/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/tella-locking-ui/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /tella-locking-ui/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/tella-locking-ui/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /tella-vault/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /tella-vault/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/tella-vault/build.gradle -------------------------------------------------------------------------------- /tella-vault/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tella-vault/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/tella-vault/proguard-rules.pro -------------------------------------------------------------------------------- /tella-vault/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Horizontal-org/Tella-Android-FOSS/HEAD/tella-vault/src/main/AndroidManifest.xml --------------------------------------------------------------------------------