├── .gitignore ├── .idea ├── .name ├── codeStyleSettings.xml ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── drawable_viewer_plugin.xml ├── encodings.xml ├── findbugs-idea.xml ├── gradle.xml ├── misc.xml ├── modules.xml ├── qaplug_profiles.xml └── runConfigurations.xml ├── BIM.iml ├── app ├── .gitignore ├── app.iml ├── bim ├── build.gradle ├── ic_launcher-web.png ├── local.properties ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── bmtech │ │ └── im │ │ └── debug │ │ └── ApplicationTest.java │ └── main │ ├── AndroidManifest.xml │ ├── assets │ ├── jitsi-bundles-dex.jar │ └── lib │ │ ├── logging.properties │ │ └── osgi.client.run.properties │ ├── java │ └── com │ │ ├── bmtech │ │ └── im │ │ │ ├── BIMApplication.java │ │ │ ├── LauncherActivity.java │ │ │ ├── MainActivity.java │ │ │ ├── ndk │ │ │ └── HelloJni.java │ │ │ └── utils │ │ │ └── SystemUtils.java │ │ └── droidkit │ │ └── opus │ │ └── OpusLib.java │ ├── jni │ └── hello-jni.c │ └── res │ ├── drawable-hdpi │ ├── ic_dashboard.png │ ├── ic_discuss.png │ ├── ic_done.png │ ├── ic_event.png │ ├── ic_forum.png │ ├── ic_headset.png │ └── ic_menu.png │ ├── drawable-mdpi │ ├── ic_dashboard.png │ ├── ic_discuss.png │ ├── ic_done.png │ ├── ic_event.png │ ├── ic_forum.png │ ├── ic_headset.png │ └── ic_menu.png │ ├── drawable-xhdpi │ ├── ic_dashboard.png │ ├── ic_discuss.png │ ├── ic_done.png │ ├── ic_event.png │ ├── ic_forum.png │ ├── ic_headset.png │ └── ic_menu.png │ ├── drawable-xxhdpi │ ├── ic_dashboard.png │ ├── ic_discuss.png │ ├── ic_done.png │ ├── ic_event.png │ ├── ic_forum.png │ ├── ic_headset.png │ └── ic_menu.png │ ├── drawable-xxxhdpi │ ├── ic_done.png │ └── ic_menu.png │ ├── drawable │ ├── circle.xml │ ├── ic_header_background.jpg │ └── profile.jpg │ ├── layout │ ├── activity_launcher.xml │ └── activity_main.xml │ ├── menu │ ├── cab.xml │ └── main.xml │ ├── mipmap-hdpi │ ├── ic_add_white_24dp.png │ ├── ic_launcher.png │ ├── ic_no_user.png │ ├── ic_perm_contact_calendar_white_24dp.png │ └── ic_search_white_24dp.png │ ├── mipmap-mdpi │ ├── ic_add_white_24dp.png │ ├── ic_launcher.png │ ├── ic_no_user.png │ └── ic_search_white_24dp.png │ ├── mipmap-xhdpi │ ├── ic_add_white_24dp.png │ ├── ic_launcher.png │ ├── ic_no_user.png │ └── ic_search_white_24dp.png │ ├── mipmap-xxhdpi │ ├── ic_add_white_24dp.png │ ├── ic_launcher.png │ ├── ic_no_user.png │ └── ic_search_white_24dp.png │ ├── mipmap-xxxhdpi │ ├── ic_add_white_24dp.png │ ├── ic_launcher.png │ ├── ic_no_user.png │ └── ic_search_white_24dp.png │ ├── values-v19 │ └── styles.xml │ ├── values-v21 │ ├── strings.xml │ └── styles.xml │ ├── values-w820dp │ └── dimens.xml │ └── values │ ├── colors.xml │ ├── dimens.xml │ ├── strings.xml │ ├── styles.xml │ └── themes.xml ├── bim ├── .gitignore ├── bim.iml ├── build.gradle ├── libs │ ├── bccontrib.jar │ ├── bouncycastle.jar │ ├── browserlauncher.jar │ ├── callhistory.jar │ ├── certificate.jar │ ├── commons-codec.jar │ ├── contactlist.jar │ ├── contactsource.jar │ ├── credentialsstorage.jar │ ├── defaultresources.jar │ ├── dnsservice.jar │ ├── filehistory.jar │ ├── globaldisplaydetails.jar │ ├── history.jar │ ├── httpclient.jar │ ├── httpcore.jar │ ├── httputil.jar │ ├── java-stubs.jar │ ├── libjitsi.jar │ ├── log4j-1.2.8.jar │ ├── metahistory.jar │ ├── msghistory.jar │ ├── muc.jar │ ├── netaddr.jar │ ├── notification-service.jar │ ├── notification-wiring.jar │ ├── osgi.core.jar │ ├── otr.jar │ ├── plugin-loggingutils.jar │ ├── protocol.jar │ ├── replacement.jar │ ├── resourcemanager.jar │ ├── sdes4j.jar │ ├── smack-sasl.jar │ ├── sysactivitynotifications.jar │ ├── systray-service.jar │ ├── ui-service.jar │ ├── updateservice.jar │ ├── util.jar │ └── zrtp4j.jar ├── proguard-rules.pro ├── src │ ├── androidTest │ │ └── java │ │ │ └── org │ │ │ └── jitsi │ │ │ └── ApplicationTest.java │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ ├── jitsi-bundles-dex.jar │ │ └── lib │ │ │ ├── logging.properties │ │ │ └── osgi.client.run.properties │ │ ├── java │ │ ├── net │ │ │ └── java │ │ │ │ └── sip │ │ │ │ └── communicator │ │ │ │ ├── impl │ │ │ │ ├── configuration │ │ │ │ │ ├── ConfigurationActivator.java │ │ │ │ │ └── SQLiteConfigurationStore.java │ │ │ │ └── sysactivity │ │ │ │ │ └── ConnectivityManagerListenerImpl.java │ │ │ │ ├── plugin │ │ │ │ ├── jabberaccregwizz │ │ │ │ │ ├── AccountRegistrationImpl.java │ │ │ │ │ └── JabberAccountRegistrationActivator.java │ │ │ │ ├── loggingutils │ │ │ │ │ ├── LogUploadServiceImpl.java │ │ │ │ │ └── LoggingUtilsActivatorEx.java │ │ │ │ └── sipaccregwizz │ │ │ │ │ ├── AccountRegistrationImpl.java │ │ │ │ │ └── SIPAccountRegistrationActivator.java │ │ │ │ └── util │ │ │ │ ├── JavaUtilLoggingConfig.java │ │ │ │ ├── StatusUtil.java │ │ │ │ └── call │ │ │ │ ├── CallManager.java │ │ │ │ └── CallUIUtils.java │ │ └── org │ │ │ └── jitsi │ │ │ ├── android │ │ │ ├── JitsiApplication.java │ │ │ ├── gui │ │ │ │ ├── AndroidGUIActivator.java │ │ │ │ ├── AndroidUIServiceImpl.java │ │ │ │ ├── DialogActivity.java │ │ │ │ ├── Jitsi.java │ │ │ │ ├── PresenceStatusHandler.java │ │ │ │ ├── ProgressDialogFragment.java │ │ │ │ ├── ShutdownActivity.java │ │ │ │ ├── account │ │ │ │ │ ├── Account.java │ │ │ │ │ ├── AccountAuthenticatorService.java │ │ │ │ │ ├── AccountEvent.java │ │ │ │ │ ├── AccountLoginActivity.java │ │ │ │ │ ├── AccountLoginFragment.java │ │ │ │ │ ├── AccountsListActivity.java │ │ │ │ │ ├── AccountsListAdapter.java │ │ │ │ │ ├── AndroidLoginRenderer.java │ │ │ │ │ ├── PresenceStatusActivity.java │ │ │ │ │ ├── RemoveAccountDialog.java │ │ │ │ │ └── settings │ │ │ │ │ │ ├── AccountPreferenceFragment.java │ │ │ │ │ │ ├── AccountPreferencesActivity.java │ │ │ │ │ │ ├── EncodingActivity.java │ │ │ │ │ │ ├── EncodingsFragment.java │ │ │ │ │ │ ├── JabberPreferenceFragment.java │ │ │ │ │ │ ├── JingleNodeAdapter.java │ │ │ │ │ │ ├── JingleNodeDialogFragment.java │ │ │ │ │ │ ├── SecProtocolsDialogFragment.java │ │ │ │ │ │ ├── SecurityActivity.java │ │ │ │ │ │ ├── ServerItemAdapter.java │ │ │ │ │ │ ├── ServerListActivity.java │ │ │ │ │ │ ├── SipPreferenceFragment.java │ │ │ │ │ │ ├── StunServerAdapter.java │ │ │ │ │ │ └── StunTurnDialogFragment.java │ │ │ │ ├── authorization │ │ │ │ │ ├── AuthorizationHandlerImpl.java │ │ │ │ │ ├── AuthorizationRequestedDialog.java │ │ │ │ │ └── RequestAuthorizationDialog.java │ │ │ │ ├── call │ │ │ │ │ ├── AndroidCallListener.java │ │ │ │ │ ├── CallContactActivity.java │ │ │ │ │ ├── CallContactFragment.java │ │ │ │ │ ├── CallEnded.java │ │ │ │ │ ├── CallInfoDialogFragment.java │ │ │ │ │ ├── CallTimerFragment.java │ │ │ │ │ ├── CallVolumeCtrlFragment.java │ │ │ │ │ ├── ProximitySensorFragment.java │ │ │ │ │ ├── ReceivedCallActivity.java │ │ │ │ │ ├── RemoteVideoLayout.java │ │ │ │ │ ├── VideoCallActivity.java │ │ │ │ │ ├── VideoHandlerFragment.java │ │ │ │ │ ├── VideoHandlerFragmentAPI18.java │ │ │ │ │ ├── VolumeControlDialog.java │ │ │ │ │ ├── ZrtpInfoDialog.java │ │ │ │ │ └── notification │ │ │ │ │ │ ├── CallControl.java │ │ │ │ │ │ ├── CallNotificationManager.java │ │ │ │ │ │ └── CtrlNotificationThread.java │ │ │ │ ├── chat │ │ │ │ │ ├── ChatActivity.java │ │ │ │ │ ├── ChatController.java │ │ │ │ │ ├── ChatFragment.java │ │ │ │ │ ├── ChatMessage.java │ │ │ │ │ ├── ChatMessageImpl.java │ │ │ │ │ ├── ChatPagerAdapter.java │ │ │ │ │ ├── ChatSession.java │ │ │ │ │ ├── ChatSessionManager.java │ │ │ │ │ ├── ChatTabletFragment.java │ │ │ │ │ ├── JitsiProtocolReceiver.java │ │ │ │ │ ├── MergedMessage.java │ │ │ │ │ └── TypingNotificationHandler.java │ │ │ │ ├── contactlist │ │ │ │ │ ├── AddContactActivity.java │ │ │ │ │ ├── AddGroupDialog.java │ │ │ │ │ ├── ContactListFragment.java │ │ │ │ │ ├── ContactListUtils.java │ │ │ │ │ ├── MetaContactGroupAdapter.java │ │ │ │ │ ├── MetaContactListManager.java │ │ │ │ │ ├── MetaGroupExpandHandler.java │ │ │ │ │ ├── MoveToGroupDialog.java │ │ │ │ │ ├── TabletContactListFragment.java │ │ │ │ │ └── model │ │ │ │ │ │ ├── BaseContactListAdapter.java │ │ │ │ │ │ ├── MetaContactListAdapter.java │ │ │ │ │ │ ├── MetaContactRenderer.java │ │ │ │ │ │ ├── QueryContactListAdapter.java │ │ │ │ │ │ ├── SourceContactRenderer.java │ │ │ │ │ │ ├── UIContactRenderer.java │ │ │ │ │ │ └── UIGroupRenderer.java │ │ │ │ ├── controller │ │ │ │ │ ├── AutoHideController.java │ │ │ │ │ └── SimpleDragController.java │ │ │ │ ├── fragment │ │ │ │ │ ├── ActionBarStatusFragment.java │ │ │ │ │ └── ActionBarToggleFragment.java │ │ │ │ ├── login │ │ │ │ │ ├── AndroidSecurityAuthority.java │ │ │ │ │ └── CredentialsFragment.java │ │ │ │ ├── menu │ │ │ │ │ ├── ExitMenuActivity.java │ │ │ │ │ ├── GlobalStatusMenu.java │ │ │ │ │ └── MainMenuActivity.java │ │ │ │ ├── settings │ │ │ │ │ ├── BasicSettingsActivity.java │ │ │ │ │ ├── ChatSecuritySettings.java │ │ │ │ │ ├── DnsSettings.java │ │ │ │ │ ├── EncodingSettings.java │ │ │ │ │ ├── LoggingSettings.java │ │ │ │ │ ├── MediaCodecList.java │ │ │ │ │ ├── OtrFingerprints.java │ │ │ │ │ ├── OtrPrivatekeys.java │ │ │ │ │ ├── ProvisioningSettings.java │ │ │ │ │ ├── SettingsActivity.java │ │ │ │ │ ├── SipSettings.java │ │ │ │ │ ├── notification │ │ │ │ │ │ ├── NotificationDetails.java │ │ │ │ │ │ ├── NotificationSettings.java │ │ │ │ │ │ └── NotificationsTableSettings.java │ │ │ │ │ ├── util │ │ │ │ │ │ └── SummaryMapper.java │ │ │ │ │ └── widget │ │ │ │ │ │ ├── ConfigCheckBox.java │ │ │ │ │ │ ├── ConfigEditText.java │ │ │ │ │ │ ├── ConfigListPreference.java │ │ │ │ │ │ └── ConfigWidgetUtil.java │ │ │ │ ├── util │ │ │ │ │ ├── AccountUtil.java │ │ │ │ │ ├── ActionBarUtil.java │ │ │ │ │ ├── AlertUIServiceImpl.java │ │ │ │ │ ├── AndroidCallUtil.java │ │ │ │ │ ├── AndroidImageUtil.java │ │ │ │ │ ├── AndroidUtils.java │ │ │ │ │ ├── CollectionAdapter.java │ │ │ │ │ ├── DrawableCache.java │ │ │ │ │ ├── Html.java │ │ │ │ │ ├── HtmlImageGetter.java │ │ │ │ │ ├── PreferenceUtil.java │ │ │ │ │ ├── ViewUtil.java │ │ │ │ │ └── event │ │ │ │ │ │ ├── EventListener.java │ │ │ │ │ │ └── EventListenerList.java │ │ │ │ └── widgets │ │ │ │ │ ├── ActionMenuItem.java │ │ │ │ │ ├── CheckableRelativeLayout.java │ │ │ │ │ ├── ClickableToastController.java │ │ │ │ │ ├── LegacyClickableToastCtrl.java │ │ │ │ │ ├── ScrollingTable.java │ │ │ │ │ └── TouchInterceptor.java │ │ │ ├── plugin │ │ │ │ ├── errorhandler │ │ │ │ │ ├── ExceptionHandler.java │ │ │ │ │ └── ExceptionHandlerActivator.java │ │ │ │ ├── notificationwiring │ │ │ │ │ └── AndroidNotifications.java │ │ │ │ └── otr │ │ │ │ │ ├── AndroidOtrActionHandler.java │ │ │ │ │ ├── AndroidOtrActivator.java │ │ │ │ │ ├── OtrAuthenticateDialog.java │ │ │ │ │ └── OtrFragment.java │ │ │ └── util │ │ │ │ ├── AndroidConsoleHandler.java │ │ │ │ └── AndroidLogFormatter.java │ │ │ ├── impl │ │ │ ├── androidauthwindow │ │ │ │ ├── AuthWindowActivator.java │ │ │ │ ├── AuthWindowActivity.java │ │ │ │ ├── AuthWindowImpl.java │ │ │ │ └── AuthWindowServiceImpl.java │ │ │ ├── androidbrowserlauncher │ │ │ │ ├── AndroidBrowserLauncher.java │ │ │ │ └── BrowserLauncherActivator.java │ │ │ ├── androidcertdialog │ │ │ │ ├── CertInfoDialog.java │ │ │ │ ├── CertificateDialogActivator.java │ │ │ │ ├── CertificateDialogServiceImpl.java │ │ │ │ ├── VerifyCertDialog.java │ │ │ │ └── VerifyCertificateActivity.java │ │ │ ├── androidcontacts │ │ │ │ ├── AndroidContact.java │ │ │ │ ├── AndroidContactQuery.java │ │ │ │ ├── AndroidContactSource.java │ │ │ │ └── AndroidContactsActivator.java │ │ │ ├── androidimageloader │ │ │ │ ├── ImageLoaderActivator.java │ │ │ │ └── ImageLoaderImpl.java │ │ │ ├── androidnotification │ │ │ │ ├── NotificationActivator.java │ │ │ │ └── VibrateHandlerImpl.java │ │ │ ├── androidreconnect │ │ │ │ └── ReconnectPluginActivator.java │ │ │ ├── androidresources │ │ │ │ ├── AndroidResourceManagementActivator.java │ │ │ │ └── AndroidResourceServiceImpl.java │ │ │ ├── androidtray │ │ │ │ ├── AndroidMergedPopup.java │ │ │ │ ├── AndroidPopup.java │ │ │ │ ├── AndroidTrayActivator.java │ │ │ │ ├── NotificationPopupHandler.java │ │ │ │ ├── PopupClickReceiver.java │ │ │ │ ├── SystrayServiceImpl.java │ │ │ │ └── ToastPopupMessageHandler.java │ │ │ ├── androidupdate │ │ │ │ ├── UpdateActivator.java │ │ │ │ └── UpdateServiceImpl.java │ │ │ ├── androidversion │ │ │ │ ├── VersionActivator.java │ │ │ │ ├── VersionImpl.java │ │ │ │ └── VersionServiceImpl.java │ │ │ ├── neomedia │ │ │ │ ├── NeomediaActivator.java │ │ │ │ ├── codec │ │ │ │ │ ├── AndroidMediaCodec.java │ │ │ │ │ └── video │ │ │ │ │ │ ├── AndroidCodec.java │ │ │ │ │ │ ├── AndroidDecoder.java │ │ │ │ │ │ ├── AndroidEncoder.java │ │ │ │ │ │ ├── CodecColorFormat.java │ │ │ │ │ │ ├── CodecInfo.java │ │ │ │ │ │ └── h264 │ │ │ │ │ │ └── OMXDecoder.java │ │ │ │ ├── device │ │ │ │ │ ├── AndroidCameraSystem.java │ │ │ │ │ ├── AudioRecordSystem.java │ │ │ │ │ ├── AudioStreamUtils.java │ │ │ │ │ ├── MediaRecorderSystem.java │ │ │ │ │ ├── OpenSLESSystem.java │ │ │ │ │ ├── WaveHeader.java │ │ │ │ │ └── util │ │ │ │ │ │ ├── AndroidCamera.java │ │ │ │ │ │ ├── CameraTextureRender.java │ │ │ │ │ │ ├── CameraUtils.java │ │ │ │ │ │ ├── CodecInputSurface.java │ │ │ │ │ │ ├── OpenGLContext.java │ │ │ │ │ │ ├── OpenGlCtxProvider.java │ │ │ │ │ │ ├── PreviewSurfaceProvider.java │ │ │ │ │ │ ├── SurfaceTextureManager.java │ │ │ │ │ │ └── ViewDependentProvider.java │ │ │ │ └── jmfext │ │ │ │ │ └── media │ │ │ │ │ ├── protocol │ │ │ │ │ ├── androidcamera │ │ │ │ │ │ ├── CameraStreamBase.java │ │ │ │ │ │ ├── DataSource.java │ │ │ │ │ │ ├── PreviewStream.java │ │ │ │ │ │ └── SurfaceStream.java │ │ │ │ │ ├── audiorecord │ │ │ │ │ │ └── DataSource.java │ │ │ │ │ ├── mediarecorder │ │ │ │ │ │ ├── DataSource.java │ │ │ │ │ │ └── H264Parameters.java │ │ │ │ │ └── opensles │ │ │ │ │ │ └── DataSource.java │ │ │ │ │ └── renderer │ │ │ │ │ ├── audio │ │ │ │ │ ├── AudioTrackRenderer.java │ │ │ │ │ └── OpenSLESRenderer.java │ │ │ │ │ └── video │ │ │ │ │ ├── JAWTRendererAndroidVideoComponent.java │ │ │ │ │ └── SurfaceRenderer.java │ │ │ └── osgi │ │ │ │ ├── OSGiServiceActivator.java │ │ │ │ ├── OSGiServiceBundleContextHolder.java │ │ │ │ ├── OSGiServiceImpl.java │ │ │ │ └── framework │ │ │ │ ├── AsyncExecutor.java │ │ │ │ ├── BundleContextImpl.java │ │ │ │ ├── BundleImpl.java │ │ │ │ ├── LibDexLoader.java │ │ │ │ ├── ServiceRegistrationImpl.java │ │ │ │ ├── launch │ │ │ │ ├── EventDispatcher.java │ │ │ │ ├── EventListenerList.java │ │ │ │ ├── FrameworkFactoryImpl.java │ │ │ │ └── FrameworkImpl.java │ │ │ │ └── startlevel │ │ │ │ ├── BundleStartLevelImpl.java │ │ │ │ └── FrameworkStartLevelImpl.java │ │ │ └── service │ │ │ ├── log │ │ │ └── LogUploadService.java │ │ │ ├── neomedia │ │ │ └── ViewAccessor.java │ │ │ └── osgi │ │ │ ├── BundleContextHolder.java │ │ │ ├── OSGiActivity.java │ │ │ ├── OSGiDialogFragment.java │ │ │ ├── OSGiFragment.java │ │ │ ├── OSGiPreferenceActivity.java │ │ │ ├── OSGiPreferenceFragment.java │ │ │ ├── OSGiService.java │ │ │ └── OSGiUiPart.java │ │ ├── jniLibs │ │ ├── arm64-v8a │ │ │ ├── libjnawtrenderer.so │ │ │ └── libjnopensles.so │ │ ├── armeabi-v7a │ │ │ ├── libjnawtrenderer.so │ │ │ ├── libjnffmpeg.so │ │ │ ├── libjng722.so │ │ │ ├── libjnopensles.so │ │ │ ├── libjnopus.so │ │ │ └── libjnspeex.so │ │ ├── armeabi │ │ │ ├── libjnawtrenderer.so │ │ │ ├── libjnffmpeg.so │ │ │ ├── libjng722.so │ │ │ ├── libjnopensles.so │ │ │ ├── libjnopus.so │ │ │ └── libjnspeex.so │ │ ├── mips │ │ │ ├── libjnawtrenderer.so │ │ │ └── libjnopensles.so │ │ ├── mips64 │ │ │ ├── libjnawtrenderer.so │ │ │ └── libjnopensles.so │ │ ├── x86 │ │ │ ├── libjnawtrenderer.so │ │ │ └── libjnopensles.so │ │ └── x86_64 │ │ │ ├── libjnawtrenderer.so │ │ │ └── libjnopensles.so │ │ ├── res │ │ ├── anim │ │ │ ├── background_fadein.xml │ │ │ ├── disappear.xml │ │ │ ├── fadein.xml │ │ │ ├── grow_from_bottom.xml │ │ │ ├── grow_from_bottomleft_to_topright.xml │ │ │ ├── grow_from_bottomright_to_topleft.xml │ │ │ ├── grow_from_top.xml │ │ │ ├── grow_from_topleft_to_bottomright.xml │ │ │ ├── grow_from_topright_to_bottomleft.xml │ │ │ ├── hide_to_bottom.xml │ │ │ ├── pump_bottom.xml │ │ │ ├── pump_top.xml │ │ │ ├── rail.xml │ │ │ ├── shrink_from_bottom.xml │ │ │ ├── shrink_from_bottomleft_to_topright.xml │ │ │ ├── shrink_from_bottomright_to_topleft.xml │ │ │ ├── shrink_from_top.xml │ │ │ ├── shrink_from_topleft_to_bottomright.xml │ │ │ └── shrink_from_topright_to_bottomleft.xml │ │ ├── color │ │ │ ├── list_details_selection_color.xml │ │ │ └── list_text_selection_color.xml │ │ ├── drawable-hdpi-v11 │ │ │ └── ic_stat_logo_white.png │ │ ├── drawable-hdpi │ │ │ └── ic_stat_logo_white.png │ │ ├── drawable-mdpi-v11 │ │ │ └── ic_stat_logo_white.png │ │ ├── drawable-mdpi │ │ │ ├── action_item_selected.9.png │ │ │ ├── ic_stat_logo_white.png │ │ │ ├── messageholder.9.png │ │ │ ├── messageholder_correction.9.png │ │ │ └── popup.9.png │ │ ├── drawable-xhdpi-v11 │ │ │ └── ic_stat_logo_white.png │ │ ├── drawable-xhdpi │ │ │ └── ic_stat_logo_white.png │ │ ├── drawable-xxhdpi-v11 │ │ │ └── ic_stat_logo_white.png │ │ ├── drawable-xxhdpi │ │ │ └── ic_stat_logo_white.png │ │ ├── drawable-xxxhdpi-v11 │ │ │ └── ic_stat_logo_white.png │ │ ├── drawable-xxxhdpi │ │ │ └── ic_stat_logo_white.png │ │ ├── drawable │ │ │ ├── action_item_btn.xml │ │ │ ├── actionbar_bg.xml │ │ │ ├── avatar_layer_drawable.xml │ │ │ ├── background_with_shadow.xml │ │ │ ├── call_status_bg.xml │ │ │ ├── chatseparator.9.png │ │ │ ├── clickable_toast_bg.xml │ │ │ ├── contact_list_selector.xml │ │ │ ├── image_button_background.xml │ │ │ ├── list_selection_gradient.xml │ │ │ ├── signin_button.xml │ │ │ ├── typing_drawable.xml │ │ │ └── white_rounded.xml │ │ ├── layout-land │ │ │ ├── account_enable_row.xml │ │ │ └── account_list_row.xml │ │ ├── layout-large │ │ │ ├── chat.xml │ │ │ └── main_view.xml │ │ ├── layout-v14 │ │ │ ├── actionbar_toggle_button.xml │ │ │ └── notification_item.xml │ │ ├── layout │ │ │ ├── account_enable_row.xml │ │ │ ├── account_list.xml │ │ │ ├── account_list_row.xml │ │ │ ├── action_bar.xml │ │ │ ├── actionbar_toggle_button.xml │ │ │ ├── activity_new_account.xml │ │ │ ├── add_contact.xml │ │ │ ├── alert_dialog.xml │ │ │ ├── audio_video_info.xml │ │ │ ├── auth_window.xml │ │ │ ├── authorization_requested.xml │ │ │ ├── call_contact.xml │ │ │ ├── call_ended.xml │ │ │ ├── call_info.xml │ │ │ ├── cert_info.xml │ │ │ ├── chat.xml │ │ │ ├── chat_conversation.xml │ │ │ ├── chat_corrected_row.xml │ │ │ ├── chat_error_row.xml │ │ │ ├── chat_incoming_row.xml │ │ │ ├── chat_outgoing_row.xml │ │ │ ├── chat_system_row.xml │ │ │ ├── chat_typing_area.xml │ │ │ ├── clickable_toast.xml │ │ │ ├── contact_list.xml │ │ │ ├── contact_list_group_row.xml │ │ │ ├── contact_list_row.xml │ │ │ ├── create_group.xml │ │ │ ├── credentials.xml │ │ │ ├── dropdown_spinner_item.xml │ │ │ ├── encoding.xml │ │ │ ├── encoding_item.xml │ │ │ ├── jingle_node_dialog.xml │ │ │ ├── list_layout.xml │ │ │ ├── main_view.xml │ │ │ ├── move_to_group.xml │ │ │ ├── notification_details.xml │ │ │ ├── notification_item.xml │ │ │ ├── notification_row.xml │ │ │ ├── notifications_settings.xml │ │ │ ├── otr_authenticate_dialog.xml │ │ │ ├── otr_fingerprint_row.xml │ │ │ ├── otr_privkey_list_row.xml │ │ │ ├── presence_status.xml │ │ │ ├── presence_status_row.xml │ │ │ ├── progress_dialog.xml │ │ │ ├── progressbar.xml │ │ │ ├── received_call.xml │ │ │ ├── request_authorization.xml │ │ │ ├── screen_off.xml │ │ │ ├── sec_protocols_dialog.xml │ │ │ ├── security_toggle_btn.xml │ │ │ ├── select_account_dropdown.xml │ │ │ ├── select_account_row.xml │ │ │ ├── server_list.xml │ │ │ ├── server_list_row.xml │ │ │ ├── simple_spinner_item.xml │ │ │ ├── status_bar_call.xml │ │ │ ├── status_menu.xml │ │ │ ├── status_menu_item.xml │ │ │ ├── stun_turn_dialog.xml │ │ │ ├── verify_certificate.xml │ │ │ ├── video_call.xml │ │ │ ├── volume_control.xml │ │ │ └── zrtp_info_dialog.xml │ │ ├── menu │ │ │ ├── account_ctx_menu.xml │ │ │ ├── account_settings_menu.xml │ │ │ ├── actionbar_toggle_menu.xml │ │ │ ├── camera_menu.xml │ │ │ ├── chat_menu.xml │ │ │ ├── chat_msg_ctx_menu.xml │ │ │ ├── contact_menu.xml │ │ │ ├── exit_menu.xml │ │ │ ├── fingerprint_ctx_menu.xml │ │ │ ├── group_menu.xml │ │ │ ├── main_menu.xml │ │ │ ├── otr_menu.xml │ │ │ ├── pref_security_menu.xml │ │ │ ├── presence_status_menu.xml │ │ │ ├── server_list_menu.xml │ │ │ └── video_call_menu.xml │ │ ├── mipmap-hdpi │ │ │ ├── acceptvideocall.png │ │ │ ├── callbutton.png │ │ │ ├── callhangup.png │ │ │ ├── callhold.png │ │ │ ├── default_jabber_status.png │ │ │ ├── default_sip_status.png │ │ │ ├── ic_action_logo_white.png │ │ │ ├── ic_app_logo.png │ │ │ ├── ic_call_hangup.png │ │ │ ├── ic_call_hold.png │ │ │ ├── ic_call_microphone.png │ │ │ ├── ic_call_speaker.png │ │ │ ├── ic_call_video.png │ │ │ ├── ic_reversal_camera.png │ │ │ ├── jabber_logo.png │ │ │ ├── jabber_status_away.png │ │ │ ├── jabber_status_connecting.png │ │ │ ├── jabber_status_dnd.png │ │ │ ├── jabber_status_ffc.png │ │ │ ├── jabber_status_offline.png │ │ │ ├── jabber_status_online.png │ │ │ ├── jabber_status_phone.png │ │ │ ├── jabber_status_xa.png │ │ │ ├── sip_logo.png │ │ │ ├── sip_status_away.png │ │ │ ├── sip_status_busy.png │ │ │ ├── sip_status_connecting.png │ │ │ ├── sip_status_offline.png │ │ │ ├── sip_status_online.png │ │ │ └── sip_status_phone.png │ │ ├── mipmap-mdpi │ │ │ ├── acceptvideocall.png │ │ │ ├── addcontact.png │ │ │ ├── arrow_down.png │ │ │ ├── arrow_up.png │ │ │ ├── avatar.png │ │ │ ├── background.png │ │ │ ├── buttonseparator.png │ │ │ ├── call.png │ │ │ ├── callbutton.png │ │ │ ├── callbuttonfull.png │ │ │ ├── callhangup.png │ │ │ ├── callhold.png │ │ │ ├── callmessage.png │ │ │ ├── callmicrophone2.png │ │ │ ├── callvideo.png │ │ │ ├── callvolume.png │ │ │ ├── cancel_edit.png │ │ │ ├── chatarrow.png │ │ │ ├── chatvideocall.png │ │ │ ├── collapsed.png │ │ │ ├── contact_away.png │ │ │ ├── contact_call.png │ │ │ ├── contact_call_selected.png │ │ │ ├── contact_dnd.png │ │ │ ├── contact_ffc.png │ │ │ ├── contact_list_h_separator.png │ │ │ ├── contact_list_v_separator.png │ │ │ ├── contact_offline.png │ │ │ ├── contact_online.png │ │ │ ├── contact_otp.png │ │ │ ├── corner.png │ │ │ ├── default_jabber_status.png │ │ │ ├── default_sip_status.png │ │ │ ├── drag.png │ │ │ ├── editing.png │ │ │ ├── encrypted_finished.png │ │ │ ├── encrypted_unsecure.png │ │ │ ├── encrypted_unverified.png │ │ │ ├── encrypted_verified.png │ │ │ ├── expanded.png │ │ │ ├── fade.png │ │ │ ├── global_away.png │ │ │ ├── global_dnd.png │ │ │ ├── global_ffc.png │ │ │ ├── global_offline.png │ │ │ ├── global_online.png │ │ │ ├── global_otp.png │ │ │ ├── hangup.png │ │ │ ├── ic_action_logo_white.png │ │ │ ├── ic_call_hold.png │ │ │ ├── ic_call_microphone.png │ │ │ ├── ic_call_speaker.png │ │ │ ├── ic_call_video.png │ │ │ ├── ic_reversal_camera.png │ │ │ ├── incoming_call.png │ │ │ ├── incoming_message.png │ │ │ ├── jabber_logo.png │ │ │ ├── jabber_status_away.png │ │ │ ├── jabber_status_connecting.png │ │ │ ├── jabber_status_dnd.png │ │ │ ├── jabber_status_ffc.png │ │ │ ├── jabber_status_offline.png │ │ │ ├── jabber_status_online.png │ │ │ ├── jabber_status_phone.png │ │ │ ├── jabber_status_xa.png │ │ │ ├── loginbackground.png │ │ │ ├── loginbutton.png │ │ │ ├── loginbuttonpressed.png │ │ │ ├── menu.png │ │ │ ├── messagearrowin.png │ │ │ ├── messagearrowout.png │ │ │ ├── messagearrowout_correction.png │ │ │ ├── missed_call.png │ │ │ ├── personphoto.png │ │ │ ├── reset_editing.png │ │ │ ├── search.png │ │ │ ├── secure_audio_off.png │ │ │ ├── secure_audio_on.png │ │ │ ├── secure_off.png │ │ │ ├── secure_on.png │ │ │ ├── secure_video_off.png │ │ │ ├── secure_video_on.png │ │ │ ├── selectcallbuttonbackground.png │ │ │ ├── send_message.png │ │ │ ├── sip_logo.png │ │ │ ├── sip_status_away.png │ │ │ ├── sip_status_busy.png │ │ │ ├── sip_status_connecting.png │ │ │ ├── sip_status_offline.png │ │ │ ├── sip_status_online.png │ │ │ ├── sip_status_phone.png │ │ │ ├── smiley1.gif │ │ │ ├── smiley10.gif │ │ │ ├── smiley11.gif │ │ │ ├── smiley12.gif │ │ │ ├── smiley13.gif │ │ │ ├── smiley14.gif │ │ │ ├── smiley15.gif │ │ │ ├── smiley16.gif │ │ │ ├── smiley17.gif │ │ │ ├── smiley18.gif │ │ │ ├── smiley19.gif │ │ │ ├── smiley2.gif │ │ │ ├── smiley20.gif │ │ │ ├── smiley3.gif │ │ │ ├── smiley4.gif │ │ │ ├── smiley5.gif │ │ │ ├── smiley6.gif │ │ │ ├── smiley7.gif │ │ │ ├── smiley8.gif │ │ │ ├── smiley9.gif │ │ │ ├── status_bar_hangup.png │ │ │ ├── status_bar_mute.png │ │ │ ├── status_bar_show_call.png │ │ │ ├── status_bar_speaker.png │ │ │ ├── status_btn_off.png │ │ │ ├── status_btn_on.png │ │ │ ├── typing1.png │ │ │ ├── typing2.png │ │ │ ├── typing3.png │ │ │ ├── typing4.png │ │ │ ├── video_call.png │ │ │ ├── video_call_selected.png │ │ │ ├── whitefield.png │ │ │ └── whitespinner.png │ │ ├── mipmap-xhdpi │ │ │ ├── ic_action_logo_white.png │ │ │ ├── ic_call_hold.png │ │ │ ├── ic_call_microphone.png │ │ │ ├── ic_call_speaker.png │ │ │ ├── ic_call_video.png │ │ │ └── ic_reversal_camera.png │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_action_logo_white.png │ │ │ ├── ic_call_hold.png │ │ │ ├── ic_call_microphone.png │ │ │ ├── ic_call_speaker.png │ │ │ ├── ic_call_video.png │ │ │ └── ic_reversal_camera.png │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_action_logo_white.png │ │ │ ├── ic_call_hold.png │ │ │ ├── ic_call_microphone.png │ │ │ ├── ic_call_speaker.png │ │ │ ├── ic_call_video.png │ │ │ └── ic_reversal_camera.png │ │ ├── raw │ │ │ ├── busy.wav │ │ │ ├── dial.wav │ │ │ ├── hangup.wav │ │ │ ├── incomingcall.wav │ │ │ ├── incomingmessage.wav │ │ │ ├── ring.wav │ │ │ ├── zrtperror.wav │ │ │ └── zrtpsecure.wav │ │ ├── values-en │ │ │ ├── array.xml │ │ │ └── strings.xml │ │ ├── values-land │ │ │ └── dimension.xml │ │ ├── values-large │ │ │ ├── dimension.xml │ │ │ └── styles.xml │ │ ├── values-port │ │ │ └── dimension.xml │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ ├── values │ │ │ ├── array.xml │ │ │ ├── attrs.xml │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── dimension.xml │ │ │ ├── id.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ ├── xml-v16 │ │ │ └── preferences.xml │ │ └── xml │ │ │ ├── acc_encoding_preferences.xml │ │ │ ├── acc_jabber_preferences.xml │ │ │ ├── acc_sip_preferences.xml │ │ │ ├── account_preferences.xml │ │ │ ├── authenticator.xml │ │ │ ├── dns_preferences.xml │ │ │ ├── logging_preferences.xml │ │ │ ├── opus_preferences.xml │ │ │ ├── preferences.xml │ │ │ ├── provisioning_preferences.xml │ │ │ ├── proxy_preferences.xml │ │ │ ├── searchable.xml │ │ │ ├── security_preferences.xml │ │ │ ├── silk_preferences.xml │ │ │ └── sip_preferences.xml │ │ └── resources │ │ ├── jitsi-defaults.properties │ │ └── resources │ │ ├── colors │ │ └── colors.properties │ │ ├── config │ │ └── defaults.properties │ │ ├── images │ │ ├── image_path.properties │ │ └── images.properties │ │ ├── languages │ │ ├── resources.properties │ │ ├── resources_iw.properties │ │ ├── resources_zh.properties │ │ ├── resources_zh_CN.properties │ │ └── resources_zh_CN_zh_CN.properties │ │ └── sounds │ │ └── sounds.properties └── test.text ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── native-awtrenderer ├── .gitignore ├── build.gradle ├── native-awtrenderer.iml ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── btzh │ │ └── awtrenderer │ │ └── ApplicationTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── btzh │ │ │ └── awtrenderer │ │ │ └── MainActivity.java │ ├── jni │ │ ├── JAWTRenderer.h │ │ ├── JAWTRenderer_Android.c │ │ ├── org_jitsi_impl_neomedia_jmfext_media_renderer_video_JAWTRenderer.c │ │ └── org_jitsi_impl_neomedia_jmfext_media_renderer_video_JAWTRenderer.h │ └── res │ │ ├── layout │ │ └── activity_main.xml │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxxhdpi │ │ └── ic_launcher.png │ │ ├── values-w820dp │ │ └── dimens.xml │ │ └── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── btzh │ └── awtrenderer │ └── ExampleUnitTest.java ├── native-ffmpeg ├── .gitignore ├── build.gradle ├── native-ffmpeg.iml ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── btzh │ │ └── ffmpeg │ │ └── ApplicationTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── btzh │ │ │ └── ffmpeg │ │ │ └── MainActivity.java │ ├── jni │ │ ├── org_jitsi_impl_neomedia_codec_FFmpeg.c │ │ └── org_jitsi_impl_neomedia_codec_FFmpeg.h │ └── res │ │ ├── layout │ │ └── activity_main.xml │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxxhdpi │ │ └── ic_launcher.png │ │ ├── values-w820dp │ │ └── dimens.xml │ │ └── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── btzh │ └── ffmpeg │ └── ExampleUnitTest.java ├── native-g722 ├── .gitignore ├── build.gradle ├── native-g722.iml ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── btzh │ │ └── g722 │ │ └── ApplicationTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── btzh │ │ │ └── g722 │ │ │ └── MainActivity.java │ └── res │ │ ├── layout │ │ └── activity_main.xml │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxxhdpi │ │ └── ic_launcher.png │ │ ├── values-w820dp │ │ └── dimens.xml │ │ └── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── btzh │ └── g722 │ └── ExampleUnitTest.java ├── native-openmax ├── .gitignore ├── build.gradle ├── native-openmax.iml ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── btzh │ │ └── openmax │ │ └── ApplicationTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── btzh │ │ │ └── openmax │ │ │ └── MainActivity.java │ ├── jni │ │ ├── org_jitsi_impl_neomedia_codec_video_h264_OMXDecoder.c │ │ └── org_jitsi_impl_neomedia_codec_video_h264_OMXDecoder.h │ └── res │ │ ├── layout │ │ └── activity_main.xml │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxxhdpi │ │ └── ic_launcher.png │ │ ├── values-w820dp │ │ └── dimens.xml │ │ └── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── btzh │ └── openmax │ └── ExampleUnitTest.java ├── native-opensles ├── .gitignore ├── build.gradle ├── native-opensles.iml ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── btzh │ │ └── opensles │ │ └── ApplicationTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── btzh │ │ │ └── opensles │ │ │ └── MainActivity.java │ ├── jni │ │ ├── org_jitsi_impl_neomedia_device_OpenSLESSystem.c │ │ ├── org_jitsi_impl_neomedia_device_OpenSLESSystem.h │ │ ├── org_jitsi_impl_neomedia_jmfext_media_protocol_opensles_DataSource.c │ │ ├── org_jitsi_impl_neomedia_jmfext_media_protocol_opensles_DataSource.h │ │ ├── org_jitsi_impl_neomedia_jmfext_media_renderer_audio_OpenSLESRenderer.c │ │ └── org_jitsi_impl_neomedia_jmfext_media_renderer_audio_OpenSLESRenderer.h │ └── res │ │ ├── layout │ │ └── activity_main.xml │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxxhdpi │ │ └── ic_launcher.png │ │ ├── values-w820dp │ │ └── dimens.xml │ │ └── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── btzh │ └── opensles │ └── ExampleUnitTest.java ├── native-opus ├── .gitignore ├── build.gradle ├── native-opus.iml ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── btzh │ │ └── opus │ │ └── ApplicationTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── btzh │ │ │ └── opus │ │ │ └── MainActivity.java │ ├── jni │ │ ├── org_jitsi_impl_neomedia_codec_audio_opus_Opus.c │ │ └── org_jitsi_impl_neomedia_codec_audio_opus_Opus.h │ └── res │ │ ├── layout │ │ └── activity_main.xml │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxxhdpi │ │ └── ic_launcher.png │ │ ├── values-w820dp │ │ └── dimens.xml │ │ └── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── btzh │ └── opus │ └── ExampleUnitTest.java ├── native-speex ├── .gitignore ├── build.gradle ├── native-speex.iml ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── btzh │ │ └── speex │ │ └── ApplicationTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── btzh │ │ │ └── speex │ │ │ └── MainActivity.java │ ├── jni │ │ └── libjnspeex.so │ └── res │ │ ├── layout │ │ └── activity_main.xml │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxxhdpi │ │ └── ic_launcher.png │ │ ├── values-w820dp │ │ └── dimens.xml │ │ └── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── btzh │ └── speex │ └── ExampleUnitTest.java └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | BIM -------------------------------------------------------------------------------- /.idea/codeStyleSettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/.idea/codeStyleSettings.xml -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/drawable_viewer_plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/.idea/drawable_viewer_plugin.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/findbugs-idea.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/.idea/findbugs-idea.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/qaplug_profiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/.idea/qaplug_profiles.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /BIM.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/BIM.iml -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/app.iml -------------------------------------------------------------------------------- /app/bim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/bim -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/ic_launcher-web.png -------------------------------------------------------------------------------- /app/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/local.properties -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/bmtech/im/debug/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/src/androidTest/java/com/bmtech/im/debug/ApplicationTest.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/assets/jitsi-bundles-dex.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/src/main/assets/jitsi-bundles-dex.jar -------------------------------------------------------------------------------- /app/src/main/assets/lib/logging.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/src/main/assets/lib/logging.properties -------------------------------------------------------------------------------- /app/src/main/assets/lib/osgi.client.run.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/src/main/assets/lib/osgi.client.run.properties -------------------------------------------------------------------------------- /app/src/main/java/com/bmtech/im/BIMApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/src/main/java/com/bmtech/im/BIMApplication.java -------------------------------------------------------------------------------- /app/src/main/java/com/bmtech/im/LauncherActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/src/main/java/com/bmtech/im/LauncherActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/bmtech/im/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/src/main/java/com/bmtech/im/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/bmtech/im/ndk/HelloJni.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/src/main/java/com/bmtech/im/ndk/HelloJni.java -------------------------------------------------------------------------------- /app/src/main/java/com/bmtech/im/utils/SystemUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/src/main/java/com/bmtech/im/utils/SystemUtils.java -------------------------------------------------------------------------------- /app/src/main/java/com/droidkit/opus/OpusLib.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/src/main/java/com/droidkit/opus/OpusLib.java -------------------------------------------------------------------------------- /app/src/main/jni/hello-jni.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/src/main/jni/hello-jni.c -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/src/main/res/drawable-hdpi/ic_dashboard.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_discuss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/src/main/res/drawable-hdpi/ic_discuss.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/src/main/res/drawable-hdpi/ic_done.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_event.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/src/main/res/drawable-hdpi/ic_event.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_forum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/src/main/res/drawable-hdpi/ic_forum.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_headset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/src/main/res/drawable-hdpi/ic_headset.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/src/main/res/drawable-hdpi/ic_menu.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/src/main/res/drawable-mdpi/ic_dashboard.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_discuss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/src/main/res/drawable-mdpi/ic_discuss.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/src/main/res/drawable-mdpi/ic_done.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_event.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/src/main/res/drawable-mdpi/ic_event.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_forum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/src/main/res/drawable-mdpi/ic_forum.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_headset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/src/main/res/drawable-mdpi/ic_headset.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/src/main/res/drawable-mdpi/ic_menu.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/src/main/res/drawable-xhdpi/ic_dashboard.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_discuss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/src/main/res/drawable-xhdpi/ic_discuss.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/src/main/res/drawable-xhdpi/ic_done.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_event.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/src/main/res/drawable-xhdpi/ic_event.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_forum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/src/main/res/drawable-xhdpi/ic_forum.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_headset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/src/main/res/drawable-xhdpi/ic_headset.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/src/main/res/drawable-xhdpi/ic_menu.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/src/main/res/drawable-xxhdpi/ic_dashboard.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_discuss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/src/main/res/drawable-xxhdpi/ic_discuss.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/src/main/res/drawable-xxhdpi/ic_done.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_event.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/src/main/res/drawable-xxhdpi/ic_event.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_forum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/src/main/res/drawable-xxhdpi/ic_forum.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_headset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/src/main/res/drawable-xxhdpi/ic_headset.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/src/main/res/drawable-xxhdpi/ic_menu.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/src/main/res/drawable-xxxhdpi/ic_done.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/src/main/res/drawable-xxxhdpi/ic_menu.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/circle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/src/main/res/drawable/circle.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_header_background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/src/main/res/drawable/ic_header_background.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/src/main/res/drawable/profile.jpg -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/src/main/res/layout/activity_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/cab.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/src/main/res/menu/cab.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/src/main/res/menu/main.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_add_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/src/main/res/mipmap-hdpi/ic_add_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_no_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/src/main/res/mipmap-hdpi/ic_no_user.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_perm_contact_calendar_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/src/main/res/mipmap-hdpi/ic_perm_contact_calendar_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_search_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/src/main/res/mipmap-hdpi/ic_search_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_add_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/src/main/res/mipmap-mdpi/ic_add_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_no_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/src/main/res/mipmap-mdpi/ic_no_user.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_search_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/src/main/res/mipmap-mdpi/ic_search_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_add_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/src/main/res/mipmap-xhdpi/ic_add_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_no_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/src/main/res/mipmap-xhdpi/ic_no_user.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_search_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/src/main/res/mipmap-xhdpi/ic_search_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_add_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/src/main/res/mipmap-xxhdpi/ic_add_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_no_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/src/main/res/mipmap-xxhdpi/ic_no_user.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_search_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/src/main/res/mipmap-xxhdpi/ic_search_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_add_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_add_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_no_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_no_user.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_search_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_search_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/values-v19/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/src/main/res/values-v19/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/values-v21/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/src/main/res/values-v21/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/src/main/res/values-v21/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /bim/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /bim/bim.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/bim.iml -------------------------------------------------------------------------------- /bim/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/build.gradle -------------------------------------------------------------------------------- /bim/libs/bccontrib.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/libs/bccontrib.jar -------------------------------------------------------------------------------- /bim/libs/bouncycastle.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/libs/bouncycastle.jar -------------------------------------------------------------------------------- /bim/libs/browserlauncher.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/libs/browserlauncher.jar -------------------------------------------------------------------------------- /bim/libs/callhistory.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/libs/callhistory.jar -------------------------------------------------------------------------------- /bim/libs/certificate.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/libs/certificate.jar -------------------------------------------------------------------------------- /bim/libs/commons-codec.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/libs/commons-codec.jar -------------------------------------------------------------------------------- /bim/libs/contactlist.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/libs/contactlist.jar -------------------------------------------------------------------------------- /bim/libs/contactsource.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/libs/contactsource.jar -------------------------------------------------------------------------------- /bim/libs/credentialsstorage.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/libs/credentialsstorage.jar -------------------------------------------------------------------------------- /bim/libs/defaultresources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/libs/defaultresources.jar -------------------------------------------------------------------------------- /bim/libs/dnsservice.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/libs/dnsservice.jar -------------------------------------------------------------------------------- /bim/libs/filehistory.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/libs/filehistory.jar -------------------------------------------------------------------------------- /bim/libs/globaldisplaydetails.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/libs/globaldisplaydetails.jar -------------------------------------------------------------------------------- /bim/libs/history.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/libs/history.jar -------------------------------------------------------------------------------- /bim/libs/httpclient.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/libs/httpclient.jar -------------------------------------------------------------------------------- /bim/libs/httpcore.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/libs/httpcore.jar -------------------------------------------------------------------------------- /bim/libs/httputil.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/libs/httputil.jar -------------------------------------------------------------------------------- /bim/libs/java-stubs.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/libs/java-stubs.jar -------------------------------------------------------------------------------- /bim/libs/libjitsi.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/libs/libjitsi.jar -------------------------------------------------------------------------------- /bim/libs/log4j-1.2.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/libs/log4j-1.2.8.jar -------------------------------------------------------------------------------- /bim/libs/metahistory.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/libs/metahistory.jar -------------------------------------------------------------------------------- /bim/libs/msghistory.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/libs/msghistory.jar -------------------------------------------------------------------------------- /bim/libs/muc.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/libs/muc.jar -------------------------------------------------------------------------------- /bim/libs/netaddr.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/libs/netaddr.jar -------------------------------------------------------------------------------- /bim/libs/notification-service.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/libs/notification-service.jar -------------------------------------------------------------------------------- /bim/libs/notification-wiring.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/libs/notification-wiring.jar -------------------------------------------------------------------------------- /bim/libs/osgi.core.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/libs/osgi.core.jar -------------------------------------------------------------------------------- /bim/libs/otr.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/libs/otr.jar -------------------------------------------------------------------------------- /bim/libs/plugin-loggingutils.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/libs/plugin-loggingutils.jar -------------------------------------------------------------------------------- /bim/libs/protocol.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/libs/protocol.jar -------------------------------------------------------------------------------- /bim/libs/replacement.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/libs/replacement.jar -------------------------------------------------------------------------------- /bim/libs/resourcemanager.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/libs/resourcemanager.jar -------------------------------------------------------------------------------- /bim/libs/sdes4j.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/libs/sdes4j.jar -------------------------------------------------------------------------------- /bim/libs/smack-sasl.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/libs/smack-sasl.jar -------------------------------------------------------------------------------- /bim/libs/sysactivitynotifications.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/libs/sysactivitynotifications.jar -------------------------------------------------------------------------------- /bim/libs/systray-service.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/libs/systray-service.jar -------------------------------------------------------------------------------- /bim/libs/ui-service.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/libs/ui-service.jar -------------------------------------------------------------------------------- /bim/libs/updateservice.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/libs/updateservice.jar -------------------------------------------------------------------------------- /bim/libs/util.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/libs/util.jar -------------------------------------------------------------------------------- /bim/libs/zrtp4j.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/libs/zrtp4j.jar -------------------------------------------------------------------------------- /bim/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/proguard-rules.pro -------------------------------------------------------------------------------- /bim/src/androidTest/java/org/jitsi/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/androidTest/java/org/jitsi/ApplicationTest.java -------------------------------------------------------------------------------- /bim/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /bim/src/main/assets/jitsi-bundles-dex.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/assets/jitsi-bundles-dex.jar -------------------------------------------------------------------------------- /bim/src/main/assets/lib/logging.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/assets/lib/logging.properties -------------------------------------------------------------------------------- /bim/src/main/assets/lib/osgi.client.run.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/assets/lib/osgi.client.run.properties -------------------------------------------------------------------------------- /bim/src/main/java/net/java/sip/communicator/util/JavaUtilLoggingConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/net/java/sip/communicator/util/JavaUtilLoggingConfig.java -------------------------------------------------------------------------------- /bim/src/main/java/net/java/sip/communicator/util/StatusUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/net/java/sip/communicator/util/StatusUtil.java -------------------------------------------------------------------------------- /bim/src/main/java/net/java/sip/communicator/util/call/CallManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/net/java/sip/communicator/util/call/CallManager.java -------------------------------------------------------------------------------- /bim/src/main/java/net/java/sip/communicator/util/call/CallUIUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/net/java/sip/communicator/util/call/CallUIUtils.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/android/JitsiApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/android/JitsiApplication.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/android/gui/AndroidGUIActivator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/android/gui/AndroidGUIActivator.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/android/gui/AndroidUIServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/android/gui/AndroidUIServiceImpl.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/android/gui/DialogActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/android/gui/DialogActivity.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/android/gui/Jitsi.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/android/gui/Jitsi.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/android/gui/PresenceStatusHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/android/gui/PresenceStatusHandler.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/android/gui/ProgressDialogFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/android/gui/ProgressDialogFragment.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/android/gui/ShutdownActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/android/gui/ShutdownActivity.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/android/gui/account/Account.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/android/gui/account/Account.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/android/gui/account/AccountEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/android/gui/account/AccountEvent.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/android/gui/account/AccountLoginActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/android/gui/account/AccountLoginActivity.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/android/gui/account/AccountLoginFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/android/gui/account/AccountLoginFragment.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/android/gui/account/AccountsListActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/android/gui/account/AccountsListActivity.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/android/gui/account/AccountsListAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/android/gui/account/AccountsListAdapter.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/android/gui/account/AndroidLoginRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/android/gui/account/AndroidLoginRenderer.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/android/gui/account/PresenceStatusActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/android/gui/account/PresenceStatusActivity.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/android/gui/account/RemoveAccountDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/android/gui/account/RemoveAccountDialog.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/android/gui/call/AndroidCallListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/android/gui/call/AndroidCallListener.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/android/gui/call/CallContactActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/android/gui/call/CallContactActivity.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/android/gui/call/CallContactFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/android/gui/call/CallContactFragment.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/android/gui/call/CallEnded.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/android/gui/call/CallEnded.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/android/gui/call/CallInfoDialogFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/android/gui/call/CallInfoDialogFragment.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/android/gui/call/CallTimerFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/android/gui/call/CallTimerFragment.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/android/gui/call/CallVolumeCtrlFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/android/gui/call/CallVolumeCtrlFragment.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/android/gui/call/ProximitySensorFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/android/gui/call/ProximitySensorFragment.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/android/gui/call/ReceivedCallActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/android/gui/call/ReceivedCallActivity.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/android/gui/call/RemoteVideoLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/android/gui/call/RemoteVideoLayout.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/android/gui/call/VideoCallActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/android/gui/call/VideoCallActivity.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/android/gui/call/VideoHandlerFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/android/gui/call/VideoHandlerFragment.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/android/gui/call/VideoHandlerFragmentAPI18.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/android/gui/call/VideoHandlerFragmentAPI18.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/android/gui/call/VolumeControlDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/android/gui/call/VolumeControlDialog.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/android/gui/call/ZrtpInfoDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/android/gui/call/ZrtpInfoDialog.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/android/gui/chat/ChatActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/android/gui/chat/ChatActivity.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/android/gui/chat/ChatController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/android/gui/chat/ChatController.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/android/gui/chat/ChatFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/android/gui/chat/ChatFragment.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/android/gui/chat/ChatMessage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/android/gui/chat/ChatMessage.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/android/gui/chat/ChatMessageImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/android/gui/chat/ChatMessageImpl.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/android/gui/chat/ChatPagerAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/android/gui/chat/ChatPagerAdapter.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/android/gui/chat/ChatSession.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/android/gui/chat/ChatSession.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/android/gui/chat/ChatSessionManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/android/gui/chat/ChatSessionManager.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/android/gui/chat/ChatTabletFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/android/gui/chat/ChatTabletFragment.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/android/gui/chat/JitsiProtocolReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/android/gui/chat/JitsiProtocolReceiver.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/android/gui/chat/MergedMessage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/android/gui/chat/MergedMessage.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/android/gui/contactlist/AddGroupDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/android/gui/contactlist/AddGroupDialog.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/android/gui/login/CredentialsFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/android/gui/login/CredentialsFragment.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/android/gui/menu/ExitMenuActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/android/gui/menu/ExitMenuActivity.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/android/gui/menu/GlobalStatusMenu.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/android/gui/menu/GlobalStatusMenu.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/android/gui/menu/MainMenuActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/android/gui/menu/MainMenuActivity.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/android/gui/settings/DnsSettings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/android/gui/settings/DnsSettings.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/android/gui/settings/EncodingSettings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/android/gui/settings/EncodingSettings.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/android/gui/settings/LoggingSettings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/android/gui/settings/LoggingSettings.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/android/gui/settings/MediaCodecList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/android/gui/settings/MediaCodecList.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/android/gui/settings/OtrFingerprints.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/android/gui/settings/OtrFingerprints.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/android/gui/settings/OtrPrivatekeys.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/android/gui/settings/OtrPrivatekeys.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/android/gui/settings/SettingsActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/android/gui/settings/SettingsActivity.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/android/gui/settings/SipSettings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/android/gui/settings/SipSettings.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/android/gui/settings/util/SummaryMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/android/gui/settings/util/SummaryMapper.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/android/gui/util/AccountUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/android/gui/util/AccountUtil.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/android/gui/util/ActionBarUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/android/gui/util/ActionBarUtil.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/android/gui/util/AlertUIServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/android/gui/util/AlertUIServiceImpl.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/android/gui/util/AndroidCallUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/android/gui/util/AndroidCallUtil.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/android/gui/util/AndroidImageUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/android/gui/util/AndroidImageUtil.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/android/gui/util/AndroidUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/android/gui/util/AndroidUtils.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/android/gui/util/CollectionAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/android/gui/util/CollectionAdapter.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/android/gui/util/DrawableCache.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/android/gui/util/DrawableCache.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/android/gui/util/Html.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/android/gui/util/Html.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/android/gui/util/HtmlImageGetter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/android/gui/util/HtmlImageGetter.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/android/gui/util/PreferenceUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/android/gui/util/PreferenceUtil.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/android/gui/util/ViewUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/android/gui/util/ViewUtil.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/android/gui/util/event/EventListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/android/gui/util/event/EventListener.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/android/gui/widgets/ActionMenuItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/android/gui/widgets/ActionMenuItem.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/android/gui/widgets/ScrollingTable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/android/gui/widgets/ScrollingTable.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/android/gui/widgets/TouchInterceptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/android/gui/widgets/TouchInterceptor.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/android/plugin/otr/AndroidOtrActivator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/android/plugin/otr/AndroidOtrActivator.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/android/plugin/otr/OtrFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/android/plugin/otr/OtrFragment.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/android/util/AndroidConsoleHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/android/util/AndroidConsoleHandler.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/android/util/AndroidLogFormatter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/android/util/AndroidLogFormatter.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/impl/androidauthwindow/AuthWindowImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/impl/androidauthwindow/AuthWindowImpl.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/impl/androidcertdialog/CertInfoDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/impl/androidcertdialog/CertInfoDialog.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/impl/androidcertdialog/VerifyCertDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/impl/androidcertdialog/VerifyCertDialog.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/impl/androidcontacts/AndroidContact.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/impl/androidcontacts/AndroidContact.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/impl/androidimageloader/ImageLoaderImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/impl/androidimageloader/ImageLoaderImpl.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/impl/androidtray/AndroidMergedPopup.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/impl/androidtray/AndroidMergedPopup.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/impl/androidtray/AndroidPopup.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/impl/androidtray/AndroidPopup.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/impl/androidtray/AndroidTrayActivator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/impl/androidtray/AndroidTrayActivator.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/impl/androidtray/PopupClickReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/impl/androidtray/PopupClickReceiver.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/impl/androidtray/SystrayServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/impl/androidtray/SystrayServiceImpl.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/impl/androidupdate/UpdateActivator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/impl/androidupdate/UpdateActivator.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/impl/androidupdate/UpdateServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/impl/androidupdate/UpdateServiceImpl.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/impl/androidversion/VersionActivator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/impl/androidversion/VersionActivator.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/impl/androidversion/VersionImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/impl/androidversion/VersionImpl.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/impl/androidversion/VersionServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/impl/androidversion/VersionServiceImpl.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/impl/neomedia/NeomediaActivator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/impl/neomedia/NeomediaActivator.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/impl/neomedia/codec/AndroidMediaCodec.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/impl/neomedia/codec/AndroidMediaCodec.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/impl/neomedia/codec/video/AndroidCodec.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/impl/neomedia/codec/video/AndroidCodec.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/impl/neomedia/codec/video/CodecInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/impl/neomedia/codec/video/CodecInfo.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/impl/neomedia/device/AudioRecordSystem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/impl/neomedia/device/AudioRecordSystem.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/impl/neomedia/device/AudioStreamUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/impl/neomedia/device/AudioStreamUtils.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/impl/neomedia/device/OpenSLESSystem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/impl/neomedia/device/OpenSLESSystem.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/impl/neomedia/device/WaveHeader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/impl/neomedia/device/WaveHeader.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/impl/neomedia/device/util/AndroidCamera.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/impl/neomedia/device/util/AndroidCamera.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/impl/neomedia/device/util/CameraUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/impl/neomedia/device/util/CameraUtils.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/impl/neomedia/device/util/OpenGLContext.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/impl/neomedia/device/util/OpenGLContext.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/impl/osgi/OSGiServiceActivator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/impl/osgi/OSGiServiceActivator.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/impl/osgi/OSGiServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/impl/osgi/OSGiServiceImpl.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/impl/osgi/framework/AsyncExecutor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/impl/osgi/framework/AsyncExecutor.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/impl/osgi/framework/BundleContextImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/impl/osgi/framework/BundleContextImpl.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/impl/osgi/framework/BundleImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/impl/osgi/framework/BundleImpl.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/impl/osgi/framework/LibDexLoader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/impl/osgi/framework/LibDexLoader.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/service/log/LogUploadService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/service/log/LogUploadService.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/service/neomedia/ViewAccessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/service/neomedia/ViewAccessor.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/service/osgi/BundleContextHolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/service/osgi/BundleContextHolder.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/service/osgi/OSGiActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/service/osgi/OSGiActivity.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/service/osgi/OSGiDialogFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/service/osgi/OSGiDialogFragment.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/service/osgi/OSGiFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/service/osgi/OSGiFragment.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/service/osgi/OSGiPreferenceActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/service/osgi/OSGiPreferenceActivity.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/service/osgi/OSGiPreferenceFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/service/osgi/OSGiPreferenceFragment.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/service/osgi/OSGiService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/service/osgi/OSGiService.java -------------------------------------------------------------------------------- /bim/src/main/java/org/jitsi/service/osgi/OSGiUiPart.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/java/org/jitsi/service/osgi/OSGiUiPart.java -------------------------------------------------------------------------------- /bim/src/main/jniLibs/arm64-v8a/libjnawtrenderer.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/jniLibs/arm64-v8a/libjnawtrenderer.so -------------------------------------------------------------------------------- /bim/src/main/jniLibs/arm64-v8a/libjnopensles.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/jniLibs/arm64-v8a/libjnopensles.so -------------------------------------------------------------------------------- /bim/src/main/jniLibs/armeabi-v7a/libjnawtrenderer.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/jniLibs/armeabi-v7a/libjnawtrenderer.so -------------------------------------------------------------------------------- /bim/src/main/jniLibs/armeabi-v7a/libjnffmpeg.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/jniLibs/armeabi-v7a/libjnffmpeg.so -------------------------------------------------------------------------------- /bim/src/main/jniLibs/armeabi-v7a/libjng722.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/jniLibs/armeabi-v7a/libjng722.so -------------------------------------------------------------------------------- /bim/src/main/jniLibs/armeabi-v7a/libjnopensles.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/jniLibs/armeabi-v7a/libjnopensles.so -------------------------------------------------------------------------------- /bim/src/main/jniLibs/armeabi-v7a/libjnopus.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/jniLibs/armeabi-v7a/libjnopus.so -------------------------------------------------------------------------------- /bim/src/main/jniLibs/armeabi-v7a/libjnspeex.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/jniLibs/armeabi-v7a/libjnspeex.so -------------------------------------------------------------------------------- /bim/src/main/jniLibs/armeabi/libjnawtrenderer.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/jniLibs/armeabi/libjnawtrenderer.so -------------------------------------------------------------------------------- /bim/src/main/jniLibs/armeabi/libjnffmpeg.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/jniLibs/armeabi/libjnffmpeg.so -------------------------------------------------------------------------------- /bim/src/main/jniLibs/armeabi/libjng722.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/jniLibs/armeabi/libjng722.so -------------------------------------------------------------------------------- /bim/src/main/jniLibs/armeabi/libjnopensles.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/jniLibs/armeabi/libjnopensles.so -------------------------------------------------------------------------------- /bim/src/main/jniLibs/armeabi/libjnopus.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/jniLibs/armeabi/libjnopus.so -------------------------------------------------------------------------------- /bim/src/main/jniLibs/armeabi/libjnspeex.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/jniLibs/armeabi/libjnspeex.so -------------------------------------------------------------------------------- /bim/src/main/jniLibs/mips/libjnawtrenderer.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/jniLibs/mips/libjnawtrenderer.so -------------------------------------------------------------------------------- /bim/src/main/jniLibs/mips/libjnopensles.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/jniLibs/mips/libjnopensles.so -------------------------------------------------------------------------------- /bim/src/main/jniLibs/mips64/libjnawtrenderer.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/jniLibs/mips64/libjnawtrenderer.so -------------------------------------------------------------------------------- /bim/src/main/jniLibs/mips64/libjnopensles.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/jniLibs/mips64/libjnopensles.so -------------------------------------------------------------------------------- /bim/src/main/jniLibs/x86/libjnawtrenderer.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/jniLibs/x86/libjnawtrenderer.so -------------------------------------------------------------------------------- /bim/src/main/jniLibs/x86/libjnopensles.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/jniLibs/x86/libjnopensles.so -------------------------------------------------------------------------------- /bim/src/main/jniLibs/x86_64/libjnawtrenderer.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/jniLibs/x86_64/libjnawtrenderer.so -------------------------------------------------------------------------------- /bim/src/main/jniLibs/x86_64/libjnopensles.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/jniLibs/x86_64/libjnopensles.so -------------------------------------------------------------------------------- /bim/src/main/res/anim/background_fadein.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/anim/background_fadein.xml -------------------------------------------------------------------------------- /bim/src/main/res/anim/disappear.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/anim/disappear.xml -------------------------------------------------------------------------------- /bim/src/main/res/anim/fadein.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/anim/fadein.xml -------------------------------------------------------------------------------- /bim/src/main/res/anim/grow_from_bottom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/anim/grow_from_bottom.xml -------------------------------------------------------------------------------- /bim/src/main/res/anim/grow_from_bottomleft_to_topright.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/anim/grow_from_bottomleft_to_topright.xml -------------------------------------------------------------------------------- /bim/src/main/res/anim/grow_from_bottomright_to_topleft.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/anim/grow_from_bottomright_to_topleft.xml -------------------------------------------------------------------------------- /bim/src/main/res/anim/grow_from_top.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/anim/grow_from_top.xml -------------------------------------------------------------------------------- /bim/src/main/res/anim/grow_from_topleft_to_bottomright.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/anim/grow_from_topleft_to_bottomright.xml -------------------------------------------------------------------------------- /bim/src/main/res/anim/grow_from_topright_to_bottomleft.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/anim/grow_from_topright_to_bottomleft.xml -------------------------------------------------------------------------------- /bim/src/main/res/anim/hide_to_bottom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/anim/hide_to_bottom.xml -------------------------------------------------------------------------------- /bim/src/main/res/anim/pump_bottom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/anim/pump_bottom.xml -------------------------------------------------------------------------------- /bim/src/main/res/anim/pump_top.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/anim/pump_top.xml -------------------------------------------------------------------------------- /bim/src/main/res/anim/rail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/anim/rail.xml -------------------------------------------------------------------------------- /bim/src/main/res/anim/shrink_from_bottom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/anim/shrink_from_bottom.xml -------------------------------------------------------------------------------- /bim/src/main/res/anim/shrink_from_bottomleft_to_topright.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/anim/shrink_from_bottomleft_to_topright.xml -------------------------------------------------------------------------------- /bim/src/main/res/anim/shrink_from_bottomright_to_topleft.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/anim/shrink_from_bottomright_to_topleft.xml -------------------------------------------------------------------------------- /bim/src/main/res/anim/shrink_from_top.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/anim/shrink_from_top.xml -------------------------------------------------------------------------------- /bim/src/main/res/anim/shrink_from_topleft_to_bottomright.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/anim/shrink_from_topleft_to_bottomright.xml -------------------------------------------------------------------------------- /bim/src/main/res/anim/shrink_from_topright_to_bottomleft.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/anim/shrink_from_topright_to_bottomleft.xml -------------------------------------------------------------------------------- /bim/src/main/res/color/list_details_selection_color.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/color/list_details_selection_color.xml -------------------------------------------------------------------------------- /bim/src/main/res/color/list_text_selection_color.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/color/list_text_selection_color.xml -------------------------------------------------------------------------------- /bim/src/main/res/drawable-hdpi-v11/ic_stat_logo_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/drawable-hdpi-v11/ic_stat_logo_white.png -------------------------------------------------------------------------------- /bim/src/main/res/drawable-hdpi/ic_stat_logo_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/drawable-hdpi/ic_stat_logo_white.png -------------------------------------------------------------------------------- /bim/src/main/res/drawable-mdpi-v11/ic_stat_logo_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/drawable-mdpi-v11/ic_stat_logo_white.png -------------------------------------------------------------------------------- /bim/src/main/res/drawable-mdpi/action_item_selected.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/drawable-mdpi/action_item_selected.9.png -------------------------------------------------------------------------------- /bim/src/main/res/drawable-mdpi/ic_stat_logo_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/drawable-mdpi/ic_stat_logo_white.png -------------------------------------------------------------------------------- /bim/src/main/res/drawable-mdpi/messageholder.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/drawable-mdpi/messageholder.9.png -------------------------------------------------------------------------------- /bim/src/main/res/drawable-mdpi/messageholder_correction.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/drawable-mdpi/messageholder_correction.9.png -------------------------------------------------------------------------------- /bim/src/main/res/drawable-mdpi/popup.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/drawable-mdpi/popup.9.png -------------------------------------------------------------------------------- /bim/src/main/res/drawable-xhdpi-v11/ic_stat_logo_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/drawable-xhdpi-v11/ic_stat_logo_white.png -------------------------------------------------------------------------------- /bim/src/main/res/drawable-xhdpi/ic_stat_logo_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/drawable-xhdpi/ic_stat_logo_white.png -------------------------------------------------------------------------------- /bim/src/main/res/drawable-xxhdpi-v11/ic_stat_logo_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/drawable-xxhdpi-v11/ic_stat_logo_white.png -------------------------------------------------------------------------------- /bim/src/main/res/drawable-xxhdpi/ic_stat_logo_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/drawable-xxhdpi/ic_stat_logo_white.png -------------------------------------------------------------------------------- /bim/src/main/res/drawable-xxxhdpi-v11/ic_stat_logo_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/drawable-xxxhdpi-v11/ic_stat_logo_white.png -------------------------------------------------------------------------------- /bim/src/main/res/drawable-xxxhdpi/ic_stat_logo_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/drawable-xxxhdpi/ic_stat_logo_white.png -------------------------------------------------------------------------------- /bim/src/main/res/drawable/action_item_btn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/drawable/action_item_btn.xml -------------------------------------------------------------------------------- /bim/src/main/res/drawable/actionbar_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/drawable/actionbar_bg.xml -------------------------------------------------------------------------------- /bim/src/main/res/drawable/avatar_layer_drawable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/drawable/avatar_layer_drawable.xml -------------------------------------------------------------------------------- /bim/src/main/res/drawable/background_with_shadow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/drawable/background_with_shadow.xml -------------------------------------------------------------------------------- /bim/src/main/res/drawable/call_status_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/drawable/call_status_bg.xml -------------------------------------------------------------------------------- /bim/src/main/res/drawable/chatseparator.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/drawable/chatseparator.9.png -------------------------------------------------------------------------------- /bim/src/main/res/drawable/clickable_toast_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/drawable/clickable_toast_bg.xml -------------------------------------------------------------------------------- /bim/src/main/res/drawable/contact_list_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/drawable/contact_list_selector.xml -------------------------------------------------------------------------------- /bim/src/main/res/drawable/image_button_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/drawable/image_button_background.xml -------------------------------------------------------------------------------- /bim/src/main/res/drawable/list_selection_gradient.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/drawable/list_selection_gradient.xml -------------------------------------------------------------------------------- /bim/src/main/res/drawable/signin_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/drawable/signin_button.xml -------------------------------------------------------------------------------- /bim/src/main/res/drawable/typing_drawable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/drawable/typing_drawable.xml -------------------------------------------------------------------------------- /bim/src/main/res/drawable/white_rounded.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/drawable/white_rounded.xml -------------------------------------------------------------------------------- /bim/src/main/res/layout-land/account_enable_row.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/layout-land/account_enable_row.xml -------------------------------------------------------------------------------- /bim/src/main/res/layout-land/account_list_row.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/layout-land/account_list_row.xml -------------------------------------------------------------------------------- /bim/src/main/res/layout-large/chat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/layout-large/chat.xml -------------------------------------------------------------------------------- /bim/src/main/res/layout-large/main_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/layout-large/main_view.xml -------------------------------------------------------------------------------- /bim/src/main/res/layout-v14/actionbar_toggle_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/layout-v14/actionbar_toggle_button.xml -------------------------------------------------------------------------------- /bim/src/main/res/layout-v14/notification_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/layout-v14/notification_item.xml -------------------------------------------------------------------------------- /bim/src/main/res/layout/account_enable_row.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/layout/account_enable_row.xml -------------------------------------------------------------------------------- /bim/src/main/res/layout/account_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/layout/account_list.xml -------------------------------------------------------------------------------- /bim/src/main/res/layout/account_list_row.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/layout/account_list_row.xml -------------------------------------------------------------------------------- /bim/src/main/res/layout/action_bar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/layout/action_bar.xml -------------------------------------------------------------------------------- /bim/src/main/res/layout/actionbar_toggle_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/layout/actionbar_toggle_button.xml -------------------------------------------------------------------------------- /bim/src/main/res/layout/activity_new_account.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/layout/activity_new_account.xml -------------------------------------------------------------------------------- /bim/src/main/res/layout/add_contact.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/layout/add_contact.xml -------------------------------------------------------------------------------- /bim/src/main/res/layout/alert_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/layout/alert_dialog.xml -------------------------------------------------------------------------------- /bim/src/main/res/layout/audio_video_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/layout/audio_video_info.xml -------------------------------------------------------------------------------- /bim/src/main/res/layout/auth_window.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/layout/auth_window.xml -------------------------------------------------------------------------------- /bim/src/main/res/layout/authorization_requested.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/layout/authorization_requested.xml -------------------------------------------------------------------------------- /bim/src/main/res/layout/call_contact.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/layout/call_contact.xml -------------------------------------------------------------------------------- /bim/src/main/res/layout/call_ended.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/layout/call_ended.xml -------------------------------------------------------------------------------- /bim/src/main/res/layout/call_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/layout/call_info.xml -------------------------------------------------------------------------------- /bim/src/main/res/layout/cert_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/layout/cert_info.xml -------------------------------------------------------------------------------- /bim/src/main/res/layout/chat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/layout/chat.xml -------------------------------------------------------------------------------- /bim/src/main/res/layout/chat_conversation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/layout/chat_conversation.xml -------------------------------------------------------------------------------- /bim/src/main/res/layout/chat_corrected_row.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/layout/chat_corrected_row.xml -------------------------------------------------------------------------------- /bim/src/main/res/layout/chat_error_row.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/layout/chat_error_row.xml -------------------------------------------------------------------------------- /bim/src/main/res/layout/chat_incoming_row.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/layout/chat_incoming_row.xml -------------------------------------------------------------------------------- /bim/src/main/res/layout/chat_outgoing_row.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/layout/chat_outgoing_row.xml -------------------------------------------------------------------------------- /bim/src/main/res/layout/chat_system_row.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/layout/chat_system_row.xml -------------------------------------------------------------------------------- /bim/src/main/res/layout/chat_typing_area.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/layout/chat_typing_area.xml -------------------------------------------------------------------------------- /bim/src/main/res/layout/clickable_toast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/layout/clickable_toast.xml -------------------------------------------------------------------------------- /bim/src/main/res/layout/contact_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/layout/contact_list.xml -------------------------------------------------------------------------------- /bim/src/main/res/layout/contact_list_group_row.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/layout/contact_list_group_row.xml -------------------------------------------------------------------------------- /bim/src/main/res/layout/contact_list_row.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/layout/contact_list_row.xml -------------------------------------------------------------------------------- /bim/src/main/res/layout/create_group.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/layout/create_group.xml -------------------------------------------------------------------------------- /bim/src/main/res/layout/credentials.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/layout/credentials.xml -------------------------------------------------------------------------------- /bim/src/main/res/layout/dropdown_spinner_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/layout/dropdown_spinner_item.xml -------------------------------------------------------------------------------- /bim/src/main/res/layout/encoding.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/layout/encoding.xml -------------------------------------------------------------------------------- /bim/src/main/res/layout/encoding_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/layout/encoding_item.xml -------------------------------------------------------------------------------- /bim/src/main/res/layout/jingle_node_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/layout/jingle_node_dialog.xml -------------------------------------------------------------------------------- /bim/src/main/res/layout/list_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/layout/list_layout.xml -------------------------------------------------------------------------------- /bim/src/main/res/layout/main_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/layout/main_view.xml -------------------------------------------------------------------------------- /bim/src/main/res/layout/move_to_group.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/layout/move_to_group.xml -------------------------------------------------------------------------------- /bim/src/main/res/layout/notification_details.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/layout/notification_details.xml -------------------------------------------------------------------------------- /bim/src/main/res/layout/notification_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/layout/notification_item.xml -------------------------------------------------------------------------------- /bim/src/main/res/layout/notification_row.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/layout/notification_row.xml -------------------------------------------------------------------------------- /bim/src/main/res/layout/notifications_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/layout/notifications_settings.xml -------------------------------------------------------------------------------- /bim/src/main/res/layout/otr_authenticate_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/layout/otr_authenticate_dialog.xml -------------------------------------------------------------------------------- /bim/src/main/res/layout/otr_fingerprint_row.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/layout/otr_fingerprint_row.xml -------------------------------------------------------------------------------- /bim/src/main/res/layout/otr_privkey_list_row.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/layout/otr_privkey_list_row.xml -------------------------------------------------------------------------------- /bim/src/main/res/layout/presence_status.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/layout/presence_status.xml -------------------------------------------------------------------------------- /bim/src/main/res/layout/presence_status_row.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/layout/presence_status_row.xml -------------------------------------------------------------------------------- /bim/src/main/res/layout/progress_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/layout/progress_dialog.xml -------------------------------------------------------------------------------- /bim/src/main/res/layout/progressbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/layout/progressbar.xml -------------------------------------------------------------------------------- /bim/src/main/res/layout/received_call.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/layout/received_call.xml -------------------------------------------------------------------------------- /bim/src/main/res/layout/request_authorization.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/layout/request_authorization.xml -------------------------------------------------------------------------------- /bim/src/main/res/layout/screen_off.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/layout/screen_off.xml -------------------------------------------------------------------------------- /bim/src/main/res/layout/sec_protocols_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/layout/sec_protocols_dialog.xml -------------------------------------------------------------------------------- /bim/src/main/res/layout/security_toggle_btn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/layout/security_toggle_btn.xml -------------------------------------------------------------------------------- /bim/src/main/res/layout/select_account_dropdown.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/layout/select_account_dropdown.xml -------------------------------------------------------------------------------- /bim/src/main/res/layout/select_account_row.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/layout/select_account_row.xml -------------------------------------------------------------------------------- /bim/src/main/res/layout/server_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/layout/server_list.xml -------------------------------------------------------------------------------- /bim/src/main/res/layout/server_list_row.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/layout/server_list_row.xml -------------------------------------------------------------------------------- /bim/src/main/res/layout/simple_spinner_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/layout/simple_spinner_item.xml -------------------------------------------------------------------------------- /bim/src/main/res/layout/status_bar_call.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/layout/status_bar_call.xml -------------------------------------------------------------------------------- /bim/src/main/res/layout/status_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/layout/status_menu.xml -------------------------------------------------------------------------------- /bim/src/main/res/layout/status_menu_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/layout/status_menu_item.xml -------------------------------------------------------------------------------- /bim/src/main/res/layout/stun_turn_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/layout/stun_turn_dialog.xml -------------------------------------------------------------------------------- /bim/src/main/res/layout/verify_certificate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/layout/verify_certificate.xml -------------------------------------------------------------------------------- /bim/src/main/res/layout/video_call.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/layout/video_call.xml -------------------------------------------------------------------------------- /bim/src/main/res/layout/volume_control.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/layout/volume_control.xml -------------------------------------------------------------------------------- /bim/src/main/res/layout/zrtp_info_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/layout/zrtp_info_dialog.xml -------------------------------------------------------------------------------- /bim/src/main/res/menu/account_ctx_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/menu/account_ctx_menu.xml -------------------------------------------------------------------------------- /bim/src/main/res/menu/account_settings_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/menu/account_settings_menu.xml -------------------------------------------------------------------------------- /bim/src/main/res/menu/actionbar_toggle_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/menu/actionbar_toggle_menu.xml -------------------------------------------------------------------------------- /bim/src/main/res/menu/camera_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/menu/camera_menu.xml -------------------------------------------------------------------------------- /bim/src/main/res/menu/chat_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/menu/chat_menu.xml -------------------------------------------------------------------------------- /bim/src/main/res/menu/chat_msg_ctx_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/menu/chat_msg_ctx_menu.xml -------------------------------------------------------------------------------- /bim/src/main/res/menu/contact_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/menu/contact_menu.xml -------------------------------------------------------------------------------- /bim/src/main/res/menu/exit_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/menu/exit_menu.xml -------------------------------------------------------------------------------- /bim/src/main/res/menu/fingerprint_ctx_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/menu/fingerprint_ctx_menu.xml -------------------------------------------------------------------------------- /bim/src/main/res/menu/group_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/menu/group_menu.xml -------------------------------------------------------------------------------- /bim/src/main/res/menu/main_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/menu/main_menu.xml -------------------------------------------------------------------------------- /bim/src/main/res/menu/otr_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/menu/otr_menu.xml -------------------------------------------------------------------------------- /bim/src/main/res/menu/pref_security_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/menu/pref_security_menu.xml -------------------------------------------------------------------------------- /bim/src/main/res/menu/presence_status_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/menu/presence_status_menu.xml -------------------------------------------------------------------------------- /bim/src/main/res/menu/server_list_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/menu/server_list_menu.xml -------------------------------------------------------------------------------- /bim/src/main/res/menu/video_call_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/menu/video_call_menu.xml -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-hdpi/acceptvideocall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-hdpi/acceptvideocall.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-hdpi/callbutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-hdpi/callbutton.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-hdpi/callhangup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-hdpi/callhangup.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-hdpi/callhold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-hdpi/callhold.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-hdpi/default_jabber_status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-hdpi/default_jabber_status.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-hdpi/default_sip_status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-hdpi/default_sip_status.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-hdpi/ic_action_logo_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-hdpi/ic_action_logo_white.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-hdpi/ic_app_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-hdpi/ic_app_logo.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-hdpi/ic_call_hangup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-hdpi/ic_call_hangup.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-hdpi/ic_call_hold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-hdpi/ic_call_hold.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-hdpi/ic_call_microphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-hdpi/ic_call_microphone.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-hdpi/ic_call_speaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-hdpi/ic_call_speaker.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-hdpi/ic_call_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-hdpi/ic_call_video.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-hdpi/ic_reversal_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-hdpi/ic_reversal_camera.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-hdpi/jabber_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-hdpi/jabber_logo.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-hdpi/jabber_status_away.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-hdpi/jabber_status_away.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-hdpi/jabber_status_connecting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-hdpi/jabber_status_connecting.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-hdpi/jabber_status_dnd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-hdpi/jabber_status_dnd.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-hdpi/jabber_status_ffc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-hdpi/jabber_status_ffc.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-hdpi/jabber_status_offline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-hdpi/jabber_status_offline.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-hdpi/jabber_status_online.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-hdpi/jabber_status_online.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-hdpi/jabber_status_phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-hdpi/jabber_status_phone.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-hdpi/jabber_status_xa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-hdpi/jabber_status_xa.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-hdpi/sip_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-hdpi/sip_logo.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-hdpi/sip_status_away.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-hdpi/sip_status_away.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-hdpi/sip_status_busy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-hdpi/sip_status_busy.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-hdpi/sip_status_connecting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-hdpi/sip_status_connecting.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-hdpi/sip_status_offline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-hdpi/sip_status_offline.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-hdpi/sip_status_online.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-hdpi/sip_status_online.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-hdpi/sip_status_phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-hdpi/sip_status_phone.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/acceptvideocall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/acceptvideocall.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/addcontact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/addcontact.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/arrow_down.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/arrow_up.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/avatar.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/background.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/buttonseparator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/buttonseparator.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/call.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/call.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/callbutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/callbutton.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/callbuttonfull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/callbuttonfull.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/callhangup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/callhangup.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/callhold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/callhold.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/callmessage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/callmessage.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/callmicrophone2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/callmicrophone2.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/callvideo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/callvideo.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/callvolume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/callvolume.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/cancel_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/cancel_edit.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/chatarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/chatarrow.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/chatvideocall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/chatvideocall.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/collapsed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/collapsed.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/contact_away.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/contact_away.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/contact_call.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/contact_call.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/contact_call_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/contact_call_selected.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/contact_dnd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/contact_dnd.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/contact_ffc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/contact_ffc.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/contact_list_h_separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/contact_list_h_separator.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/contact_list_v_separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/contact_list_v_separator.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/contact_offline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/contact_offline.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/contact_online.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/contact_online.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/contact_otp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/contact_otp.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/corner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/corner.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/default_jabber_status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/default_jabber_status.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/default_sip_status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/default_sip_status.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/drag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/drag.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/editing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/editing.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/encrypted_finished.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/encrypted_finished.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/encrypted_unsecure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/encrypted_unsecure.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/encrypted_unverified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/encrypted_unverified.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/encrypted_verified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/encrypted_verified.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/expanded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/expanded.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/fade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/fade.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/global_away.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/global_away.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/global_dnd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/global_dnd.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/global_ffc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/global_ffc.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/global_offline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/global_offline.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/global_online.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/global_online.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/global_otp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/global_otp.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/hangup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/hangup.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/ic_action_logo_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/ic_action_logo_white.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/ic_call_hold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/ic_call_hold.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/ic_call_microphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/ic_call_microphone.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/ic_call_speaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/ic_call_speaker.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/ic_call_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/ic_call_video.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/ic_reversal_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/ic_reversal_camera.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/incoming_call.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/incoming_call.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/incoming_message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/incoming_message.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/jabber_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/jabber_logo.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/jabber_status_away.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/jabber_status_away.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/jabber_status_connecting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/jabber_status_connecting.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/jabber_status_dnd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/jabber_status_dnd.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/jabber_status_ffc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/jabber_status_ffc.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/jabber_status_offline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/jabber_status_offline.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/jabber_status_online.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/jabber_status_online.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/jabber_status_phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/jabber_status_phone.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/jabber_status_xa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/jabber_status_xa.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/loginbackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/loginbackground.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/loginbutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/loginbutton.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/loginbuttonpressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/loginbuttonpressed.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/menu.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/messagearrowin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/messagearrowin.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/messagearrowout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/messagearrowout.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/messagearrowout_correction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/messagearrowout_correction.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/missed_call.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/missed_call.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/personphoto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/personphoto.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/reset_editing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/reset_editing.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/search.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/secure_audio_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/secure_audio_off.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/secure_audio_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/secure_audio_on.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/secure_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/secure_off.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/secure_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/secure_on.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/secure_video_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/secure_video_off.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/secure_video_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/secure_video_on.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/selectcallbuttonbackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/selectcallbuttonbackground.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/send_message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/send_message.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/sip_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/sip_logo.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/sip_status_away.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/sip_status_away.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/sip_status_busy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/sip_status_busy.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/sip_status_connecting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/sip_status_connecting.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/sip_status_offline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/sip_status_offline.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/sip_status_online.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/sip_status_online.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/sip_status_phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/sip_status_phone.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/smiley1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/smiley1.gif -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/smiley10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/smiley10.gif -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/smiley11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/smiley11.gif -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/smiley12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/smiley12.gif -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/smiley13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/smiley13.gif -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/smiley14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/smiley14.gif -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/smiley15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/smiley15.gif -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/smiley16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/smiley16.gif -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/smiley17.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/smiley17.gif -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/smiley18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/smiley18.gif -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/smiley19.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/smiley19.gif -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/smiley2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/smiley2.gif -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/smiley20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/smiley20.gif -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/smiley3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/smiley3.gif -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/smiley4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/smiley4.gif -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/smiley5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/smiley5.gif -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/smiley6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/smiley6.gif -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/smiley7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/smiley7.gif -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/smiley8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/smiley8.gif -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/smiley9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/smiley9.gif -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/status_bar_hangup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/status_bar_hangup.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/status_bar_mute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/status_bar_mute.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/status_bar_show_call.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/status_bar_show_call.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/status_bar_speaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/status_bar_speaker.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/status_btn_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/status_btn_off.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/status_btn_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/status_btn_on.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/typing1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/typing1.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/typing2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/typing2.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/typing3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/typing3.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/typing4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/typing4.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/video_call.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/video_call.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/video_call_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/video_call_selected.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/whitefield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/whitefield.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-mdpi/whitespinner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-mdpi/whitespinner.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-xhdpi/ic_action_logo_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-xhdpi/ic_action_logo_white.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-xhdpi/ic_call_hold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-xhdpi/ic_call_hold.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-xhdpi/ic_call_microphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-xhdpi/ic_call_microphone.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-xhdpi/ic_call_speaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-xhdpi/ic_call_speaker.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-xhdpi/ic_call_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-xhdpi/ic_call_video.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-xhdpi/ic_reversal_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-xhdpi/ic_reversal_camera.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-xxhdpi/ic_action_logo_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-xxhdpi/ic_action_logo_white.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-xxhdpi/ic_call_hold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-xxhdpi/ic_call_hold.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-xxhdpi/ic_call_microphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-xxhdpi/ic_call_microphone.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-xxhdpi/ic_call_speaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-xxhdpi/ic_call_speaker.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-xxhdpi/ic_call_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-xxhdpi/ic_call_video.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-xxhdpi/ic_reversal_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-xxhdpi/ic_reversal_camera.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-xxxhdpi/ic_action_logo_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-xxxhdpi/ic_action_logo_white.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-xxxhdpi/ic_call_hold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-xxxhdpi/ic_call_hold.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-xxxhdpi/ic_call_microphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-xxxhdpi/ic_call_microphone.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-xxxhdpi/ic_call_speaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-xxxhdpi/ic_call_speaker.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-xxxhdpi/ic_call_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-xxxhdpi/ic_call_video.png -------------------------------------------------------------------------------- /bim/src/main/res/mipmap-xxxhdpi/ic_reversal_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/mipmap-xxxhdpi/ic_reversal_camera.png -------------------------------------------------------------------------------- /bim/src/main/res/raw/busy.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/raw/busy.wav -------------------------------------------------------------------------------- /bim/src/main/res/raw/dial.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/raw/dial.wav -------------------------------------------------------------------------------- /bim/src/main/res/raw/hangup.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/raw/hangup.wav -------------------------------------------------------------------------------- /bim/src/main/res/raw/incomingcall.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/raw/incomingcall.wav -------------------------------------------------------------------------------- /bim/src/main/res/raw/incomingmessage.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/raw/incomingmessage.wav -------------------------------------------------------------------------------- /bim/src/main/res/raw/ring.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/raw/ring.wav -------------------------------------------------------------------------------- /bim/src/main/res/raw/zrtperror.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/raw/zrtperror.wav -------------------------------------------------------------------------------- /bim/src/main/res/raw/zrtpsecure.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/raw/zrtpsecure.wav -------------------------------------------------------------------------------- /bim/src/main/res/values-en/array.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/values-en/array.xml -------------------------------------------------------------------------------- /bim/src/main/res/values-en/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/values-en/strings.xml -------------------------------------------------------------------------------- /bim/src/main/res/values-land/dimension.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/values-land/dimension.xml -------------------------------------------------------------------------------- /bim/src/main/res/values-large/dimension.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/values-large/dimension.xml -------------------------------------------------------------------------------- /bim/src/main/res/values-large/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/values-large/styles.xml -------------------------------------------------------------------------------- /bim/src/main/res/values-port/dimension.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/values-port/dimension.xml -------------------------------------------------------------------------------- /bim/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /bim/src/main/res/values/array.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/values/array.xml -------------------------------------------------------------------------------- /bim/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /bim/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /bim/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /bim/src/main/res/values/dimension.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/values/dimension.xml -------------------------------------------------------------------------------- /bim/src/main/res/values/id.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/values/id.xml -------------------------------------------------------------------------------- /bim/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /bim/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /bim/src/main/res/xml-v16/preferences.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/xml-v16/preferences.xml -------------------------------------------------------------------------------- /bim/src/main/res/xml/acc_encoding_preferences.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/xml/acc_encoding_preferences.xml -------------------------------------------------------------------------------- /bim/src/main/res/xml/acc_jabber_preferences.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/xml/acc_jabber_preferences.xml -------------------------------------------------------------------------------- /bim/src/main/res/xml/acc_sip_preferences.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/xml/acc_sip_preferences.xml -------------------------------------------------------------------------------- /bim/src/main/res/xml/account_preferences.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/xml/account_preferences.xml -------------------------------------------------------------------------------- /bim/src/main/res/xml/authenticator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/xml/authenticator.xml -------------------------------------------------------------------------------- /bim/src/main/res/xml/dns_preferences.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/xml/dns_preferences.xml -------------------------------------------------------------------------------- /bim/src/main/res/xml/logging_preferences.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/xml/logging_preferences.xml -------------------------------------------------------------------------------- /bim/src/main/res/xml/opus_preferences.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/xml/opus_preferences.xml -------------------------------------------------------------------------------- /bim/src/main/res/xml/preferences.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/xml/preferences.xml -------------------------------------------------------------------------------- /bim/src/main/res/xml/provisioning_preferences.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/xml/provisioning_preferences.xml -------------------------------------------------------------------------------- /bim/src/main/res/xml/proxy_preferences.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/xml/proxy_preferences.xml -------------------------------------------------------------------------------- /bim/src/main/res/xml/searchable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/xml/searchable.xml -------------------------------------------------------------------------------- /bim/src/main/res/xml/security_preferences.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/xml/security_preferences.xml -------------------------------------------------------------------------------- /bim/src/main/res/xml/silk_preferences.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/xml/silk_preferences.xml -------------------------------------------------------------------------------- /bim/src/main/res/xml/sip_preferences.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/res/xml/sip_preferences.xml -------------------------------------------------------------------------------- /bim/src/main/resources/jitsi-defaults.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/resources/jitsi-defaults.properties -------------------------------------------------------------------------------- /bim/src/main/resources/resources/colors/colors.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bim/src/main/resources/resources/config/defaults.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/resources/resources/config/defaults.properties -------------------------------------------------------------------------------- /bim/src/main/resources/resources/images/image_path.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/resources/resources/images/image_path.properties -------------------------------------------------------------------------------- /bim/src/main/resources/resources/images/images.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/resources/resources/images/images.properties -------------------------------------------------------------------------------- /bim/src/main/resources/resources/languages/resources.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bim/src/main/resources/resources/languages/resources_iw.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bim/src/main/resources/resources/languages/resources_zh.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bim/src/main/resources/resources/languages/resources_zh_CN.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bim/src/main/resources/resources/languages/resources_zh_CN_zh_CN.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bim/src/main/resources/resources/sounds/sounds.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/bim/src/main/resources/resources/sounds/sounds.properties -------------------------------------------------------------------------------- /bim/test.text: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/gradlew.bat -------------------------------------------------------------------------------- /native-awtrenderer/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /native-awtrenderer/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-awtrenderer/build.gradle -------------------------------------------------------------------------------- /native-awtrenderer/native-awtrenderer.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-awtrenderer/native-awtrenderer.iml -------------------------------------------------------------------------------- /native-awtrenderer/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-awtrenderer/proguard-rules.pro -------------------------------------------------------------------------------- /native-awtrenderer/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-awtrenderer/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /native-awtrenderer/src/main/java/com/btzh/awtrenderer/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-awtrenderer/src/main/java/com/btzh/awtrenderer/MainActivity.java -------------------------------------------------------------------------------- /native-awtrenderer/src/main/jni/JAWTRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-awtrenderer/src/main/jni/JAWTRenderer.h -------------------------------------------------------------------------------- /native-awtrenderer/src/main/jni/JAWTRenderer_Android.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-awtrenderer/src/main/jni/JAWTRenderer_Android.c -------------------------------------------------------------------------------- /native-awtrenderer/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-awtrenderer/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /native-awtrenderer/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-awtrenderer/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /native-awtrenderer/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-awtrenderer/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /native-awtrenderer/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-awtrenderer/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /native-awtrenderer/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-awtrenderer/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /native-awtrenderer/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-awtrenderer/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /native-awtrenderer/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-awtrenderer/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /native-awtrenderer/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-awtrenderer/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /native-awtrenderer/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-awtrenderer/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /native-awtrenderer/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-awtrenderer/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /native-awtrenderer/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-awtrenderer/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /native-ffmpeg/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /native-ffmpeg/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-ffmpeg/build.gradle -------------------------------------------------------------------------------- /native-ffmpeg/native-ffmpeg.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-ffmpeg/native-ffmpeg.iml -------------------------------------------------------------------------------- /native-ffmpeg/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-ffmpeg/proguard-rules.pro -------------------------------------------------------------------------------- /native-ffmpeg/src/androidTest/java/com/btzh/ffmpeg/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-ffmpeg/src/androidTest/java/com/btzh/ffmpeg/ApplicationTest.java -------------------------------------------------------------------------------- /native-ffmpeg/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-ffmpeg/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /native-ffmpeg/src/main/java/com/btzh/ffmpeg/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-ffmpeg/src/main/java/com/btzh/ffmpeg/MainActivity.java -------------------------------------------------------------------------------- /native-ffmpeg/src/main/jni/org_jitsi_impl_neomedia_codec_FFmpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-ffmpeg/src/main/jni/org_jitsi_impl_neomedia_codec_FFmpeg.c -------------------------------------------------------------------------------- /native-ffmpeg/src/main/jni/org_jitsi_impl_neomedia_codec_FFmpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-ffmpeg/src/main/jni/org_jitsi_impl_neomedia_codec_FFmpeg.h -------------------------------------------------------------------------------- /native-ffmpeg/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-ffmpeg/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /native-ffmpeg/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-ffmpeg/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /native-ffmpeg/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-ffmpeg/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /native-ffmpeg/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-ffmpeg/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /native-ffmpeg/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-ffmpeg/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /native-ffmpeg/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-ffmpeg/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /native-ffmpeg/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-ffmpeg/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /native-ffmpeg/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-ffmpeg/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /native-ffmpeg/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-ffmpeg/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /native-ffmpeg/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-ffmpeg/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /native-ffmpeg/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-ffmpeg/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /native-ffmpeg/src/test/java/com/btzh/ffmpeg/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-ffmpeg/src/test/java/com/btzh/ffmpeg/ExampleUnitTest.java -------------------------------------------------------------------------------- /native-g722/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /native-g722/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-g722/build.gradle -------------------------------------------------------------------------------- /native-g722/native-g722.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-g722/native-g722.iml -------------------------------------------------------------------------------- /native-g722/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-g722/proguard-rules.pro -------------------------------------------------------------------------------- /native-g722/src/androidTest/java/com/btzh/g722/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-g722/src/androidTest/java/com/btzh/g722/ApplicationTest.java -------------------------------------------------------------------------------- /native-g722/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-g722/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /native-g722/src/main/java/com/btzh/g722/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-g722/src/main/java/com/btzh/g722/MainActivity.java -------------------------------------------------------------------------------- /native-g722/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-g722/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /native-g722/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-g722/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /native-g722/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-g722/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /native-g722/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-g722/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /native-g722/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-g722/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /native-g722/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-g722/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /native-g722/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-g722/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /native-g722/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-g722/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /native-g722/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-g722/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /native-g722/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-g722/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /native-g722/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-g722/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /native-g722/src/test/java/com/btzh/g722/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-g722/src/test/java/com/btzh/g722/ExampleUnitTest.java -------------------------------------------------------------------------------- /native-openmax/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /native-openmax/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-openmax/build.gradle -------------------------------------------------------------------------------- /native-openmax/native-openmax.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-openmax/native-openmax.iml -------------------------------------------------------------------------------- /native-openmax/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-openmax/proguard-rules.pro -------------------------------------------------------------------------------- /native-openmax/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-openmax/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /native-openmax/src/main/java/com/btzh/openmax/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-openmax/src/main/java/com/btzh/openmax/MainActivity.java -------------------------------------------------------------------------------- /native-openmax/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-openmax/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /native-openmax/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-openmax/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /native-openmax/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-openmax/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /native-openmax/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-openmax/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /native-openmax/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-openmax/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /native-openmax/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-openmax/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /native-openmax/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-openmax/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /native-openmax/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-openmax/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /native-openmax/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-openmax/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /native-openmax/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-openmax/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /native-openmax/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-openmax/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /native-openmax/src/test/java/com/btzh/openmax/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-openmax/src/test/java/com/btzh/openmax/ExampleUnitTest.java -------------------------------------------------------------------------------- /native-opensles/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /native-opensles/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-opensles/build.gradle -------------------------------------------------------------------------------- /native-opensles/native-opensles.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-opensles/native-opensles.iml -------------------------------------------------------------------------------- /native-opensles/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-opensles/proguard-rules.pro -------------------------------------------------------------------------------- /native-opensles/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-opensles/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /native-opensles/src/main/java/com/btzh/opensles/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-opensles/src/main/java/com/btzh/opensles/MainActivity.java -------------------------------------------------------------------------------- /native-opensles/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-opensles/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /native-opensles/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-opensles/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /native-opensles/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-opensles/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /native-opensles/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-opensles/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /native-opensles/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-opensles/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /native-opensles/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-opensles/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /native-opensles/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-opensles/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /native-opensles/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-opensles/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /native-opensles/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-opensles/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /native-opensles/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-opensles/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /native-opensles/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-opensles/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /native-opensles/src/test/java/com/btzh/opensles/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-opensles/src/test/java/com/btzh/opensles/ExampleUnitTest.java -------------------------------------------------------------------------------- /native-opus/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /native-opus/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-opus/build.gradle -------------------------------------------------------------------------------- /native-opus/native-opus.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-opus/native-opus.iml -------------------------------------------------------------------------------- /native-opus/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-opus/proguard-rules.pro -------------------------------------------------------------------------------- /native-opus/src/androidTest/java/com/btzh/opus/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-opus/src/androidTest/java/com/btzh/opus/ApplicationTest.java -------------------------------------------------------------------------------- /native-opus/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-opus/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /native-opus/src/main/java/com/btzh/opus/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-opus/src/main/java/com/btzh/opus/MainActivity.java -------------------------------------------------------------------------------- /native-opus/src/main/jni/org_jitsi_impl_neomedia_codec_audio_opus_Opus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-opus/src/main/jni/org_jitsi_impl_neomedia_codec_audio_opus_Opus.c -------------------------------------------------------------------------------- /native-opus/src/main/jni/org_jitsi_impl_neomedia_codec_audio_opus_Opus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-opus/src/main/jni/org_jitsi_impl_neomedia_codec_audio_opus_Opus.h -------------------------------------------------------------------------------- /native-opus/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-opus/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /native-opus/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-opus/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /native-opus/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-opus/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /native-opus/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-opus/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /native-opus/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-opus/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /native-opus/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-opus/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /native-opus/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-opus/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /native-opus/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-opus/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /native-opus/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-opus/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /native-opus/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-opus/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /native-opus/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-opus/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /native-opus/src/test/java/com/btzh/opus/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-opus/src/test/java/com/btzh/opus/ExampleUnitTest.java -------------------------------------------------------------------------------- /native-speex/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /native-speex/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-speex/build.gradle -------------------------------------------------------------------------------- /native-speex/native-speex.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-speex/native-speex.iml -------------------------------------------------------------------------------- /native-speex/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-speex/proguard-rules.pro -------------------------------------------------------------------------------- /native-speex/src/androidTest/java/com/btzh/speex/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-speex/src/androidTest/java/com/btzh/speex/ApplicationTest.java -------------------------------------------------------------------------------- /native-speex/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-speex/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /native-speex/src/main/java/com/btzh/speex/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-speex/src/main/java/com/btzh/speex/MainActivity.java -------------------------------------------------------------------------------- /native-speex/src/main/jni/libjnspeex.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-speex/src/main/jni/libjnspeex.so -------------------------------------------------------------------------------- /native-speex/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-speex/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /native-speex/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-speex/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /native-speex/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-speex/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /native-speex/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-speex/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /native-speex/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-speex/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /native-speex/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-speex/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /native-speex/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-speex/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /native-speex/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-speex/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /native-speex/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-speex/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /native-speex/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-speex/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /native-speex/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-speex/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /native-speex/src/test/java/com/btzh/speex/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/native-speex/src/test/java/com/btzh/speex/ExampleUnitTest.java -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzxyouok/BIM/HEAD/settings.gradle --------------------------------------------------------------------------------