Full Code of mustafa1dev/TeleVip-Lsposed for AI

main 9f96215ee5f9 cached
162 files
412.1 KB
92.1k tokens
809 symbols
1 requests
Download .txt
Showing preview only (464K chars total). Download the full file or copy to clipboard to get everything.
Repository: mustafa1dev/TeleVip-Lsposed
Branch: main
Commit: 9f96215ee5f9
Files: 162
Total size: 412.1 KB

Directory structure:
gitextract_bnkwr53f/

├── .gitignore
├── LICENSE
├── README.md
├── SUMMARY
├── app/
│   ├── .gitignore
│   ├── build.gradle
│   ├── proguard-rules.pro
│   └── src/
│       ├── androidTest/
│       │   └── java/
│       │       └── com/
│       │           └── my/
│       │               └── televip/
│       │                   └── ExampleInstrumentedTest.java
│       ├── main/
│       │   ├── AndroidManifest.xml
│       │   ├── assets/
│       │   │   ├── lang/
│       │   │   │   ├── ar.json
│       │   │   │   ├── en.json
│       │   │   │   └── zh.json
│       │   │   └── xposed_init
│       │   ├── java/
│       │   │   └── com/
│       │   │       └── my/
│       │   │           └── televip/
│       │   │               ├── Callback/
│       │   │               │   └── IntCallback.java
│       │   │               ├── Class/
│       │   │               │   ├── ClassLoad.java
│       │   │               │   └── ClassNames.java
│       │   │               ├── ClientChecker.java
│       │   │               ├── Clients/
│       │   │               │   ├── Momogram.java
│       │   │               │   ├── Nagram.java
│       │   │               │   ├── NagramX.java
│       │   │               │   ├── Nicegram.java
│       │   │               │   ├── TGConnect.java
│       │   │               │   ├── Telega.java
│       │   │               │   ├── Telegram.java
│       │   │               │   ├── TelegramBeta.java
│       │   │               │   ├── TelegramPlus.java
│       │   │               │   ├── TelegramWeb.java
│       │   │               │   ├── Telegraph.java
│       │   │               │   ├── XPlus.java
│       │   │               │   ├── forkgram.java
│       │   │               │   ├── forkgramBeta.java
│       │   │               │   ├── iMe.java
│       │   │               │   └── iMeWeb.java
│       │   │               ├── Configs/
│       │   │               │   ├── ConfigItem.java
│       │   │               │   ├── ConfigManager.java
│       │   │               │   └── ConfigPreferences.java
│       │   │               ├── Database/
│       │   │               │   └── MessageDatabase.java
│       │   │               ├── Drawable/
│       │   │               │   ├── ArrowDrawable.java
│       │   │               │   └── GhostDrawable.java
│       │   │               ├── MainHook.java
│       │   │               ├── TeleVip.java
│       │   │               ├── Utils.java
│       │   │               ├── application/
│       │   │               │   ├── AndroidUtilities.java
│       │   │               │   └── ApplicationLoaderHook.java
│       │   │               ├── audio.java
│       │   │               ├── base/
│       │   │               │   └── AbstractMethodHook.java
│       │   │               ├── dex/
│       │   │               │   └── DexInjector.java
│       │   │               ├── features/
│       │   │               │   ├── DisableChannelSwipeBack.java
│       │   │               │   ├── DisableNumberRounding.java
│       │   │               │   ├── DisableProfileSwipeBack.java
│       │   │               │   ├── DisableStories.java
│       │   │               │   ├── DownloadSpeed.java
│       │   │               │   ├── EnableSavingStories.java
│       │   │               │   ├── FixTLError.java
│       │   │               │   ├── GhostMode.java
│       │   │               │   ├── HideOnline.java
│       │   │               │   ├── HidePhone.java
│       │   │               │   ├── HidePinnedMessages.java
│       │   │               │   ├── HideProxySponsor.java
│       │   │               │   ├── HideSeen.java
│       │   │               │   ├── HideStoryRead.java
│       │   │               │   ├── HideTyping.java
│       │   │               │   ├── HideUpdateApp.java
│       │   │               │   ├── PreventMedia.java
│       │   │               │   ├── RemovesContentSaving.java
│       │   │               │   ├── SaveEditsHistory.java
│       │   │               │   ├── SecretMediaSave.java
│       │   │               │   ├── ShowDeletedMessages.java
│       │   │               │   ├── TelePremium.java
│       │   │               │   └── otherFeatures/
│       │   │               │       ├── ChatHook.java
│       │   │               │       ├── CopyNameHook.java
│       │   │               │       ├── FeatureInitializer.java
│       │   │               │       ├── FeatureStateManager.java
│       │   │               │       └── ProfileHook.java
│       │   │               ├── hooks/
│       │   │               │   └── HMethod.java
│       │   │               ├── language/
│       │   │               │   ├── Keys.java
│       │   │               │   └── Translator.java
│       │   │               ├── logging/
│       │   │               │   └── Logger.java
│       │   │               ├── obfuscate/
│       │   │               │   ├── AutomationResolver.java
│       │   │               │   └── struct/
│       │   │               │       ├── ClassInfo.java
│       │   │               │       ├── FieldInfo.java
│       │   │               │       ├── MethodInfo.java
│       │   │               │       └── ResolverRegistry.java
│       │   │               ├── settings/
│       │   │               │   ├── SettingsManager.java
│       │   │               │   ├── controller/
│       │   │               │   │   └── SettingsController.java
│       │   │               │   ├── hook/
│       │   │               │   │   └── SettingsHook.java
│       │   │               │   └── ui/
│       │   │               │       ├── SettingsActivity.java
│       │   │               │       └── SettingsAdapter.java
│       │   │               ├── structs/
│       │   │               │   └── DeletedMessageInfo.java
│       │   │               ├── ui/
│       │   │               │   └── toolBar/
│       │   │               │       └── MainToolBar.java
│       │   │               └── virtuals/
│       │   │                   ├── ActionBar/
│       │   │                   │   ├── ActionBarMenuItem.java
│       │   │                   │   ├── AlertDialog.java
│       │   │                   │   └── SimpleTextView.java
│       │   │                   ├── Adapters/
│       │   │                   │   └── DrawerLayoutAdapter.java
│       │   │                   ├── ChatMessageCellDefault.java
│       │   │                   ├── OfficialChatMessageCell.java
│       │   │                   ├── SQLite/
│       │   │                   │   ├── SQLiteCursor.java
│       │   │                   │   └── SQLiteDatabase.java
│       │   │                   ├── SettingsIconResolver.java
│       │   │                   ├── TeleVip/
│       │   │                   │   └── Bridge/
│       │   │                   │       └── Bridge.java
│       │   │                   ├── Theme.java
│       │   │                   ├── androidx/
│       │   │                   │   └── ViewHolder.java
│       │   │                   ├── messenger/
│       │   │                   │   ├── BaseController.java
│       │   │                   │   ├── DispatchQueue.java
│       │   │                   │   ├── FileLoadOperation.java
│       │   │                   │   ├── FileLoader.java
│       │   │                   │   ├── ImageLocation.java
│       │   │                   │   ├── ImageReceiver.java
│       │   │                   │   ├── LocaleController.java
│       │   │                   │   ├── MessageObject.java
│       │   │                   │   ├── MessagesController.java
│       │   │                   │   ├── MessagesStorage.java
│       │   │                   │   ├── NotificationCenter.java
│       │   │                   │   ├── UserConfig.java
│       │   │                   │   ├── Utilities.java
│       │   │                   │   └── browser/
│       │   │                   │       └── Browser.java
│       │   │                   ├── tgnet/
│       │   │                   │   ├── ConnectionsManager.java
│       │   │                   │   ├── NativeByteBuffer.java
│       │   │                   │   ├── RequestDelegate.java
│       │   │                   │   └── TLRPC.java
│       │   │                   └── ui/
│       │   │                       ├── BaseFragment.java
│       │   │                       ├── Cells/
│       │   │                       │   ├── ChatMessageCell.java
│       │   │                       │   ├── HeaderCell.java
│       │   │                       │   ├── ShadowSectionCell.java
│       │   │                       │   ├── TextCheckCell.java
│       │   │                       │   ├── TextInfoCell.java
│       │   │                       │   └── TextSettingsCell.java
│       │   │                       ├── ChatActivity.java
│       │   │                       ├── Components/
│       │   │                       │   ├── LayoutHelper.java
│       │   │                       │   └── RecyclerListView.java
│       │   │                       ├── LaunchActivity.java
│       │   │                       ├── PhotoViewer.java
│       │   │                       ├── ProfileActivity.java
│       │   │                       └── SecretMediaViewer.java
│       │   └── res/
│       │       ├── drawable/
│       │       │   ├── baseline_arrow_back_24.xml
│       │       │   ├── ic_launcher_background.xml
│       │       │   ├── ic_launcher_foreground.xml
│       │       │   ├── messages.xml
│       │       │   └── sync.xml
│       │       ├── mipmap-anydpi/
│       │       │   ├── ic_launcher.xml
│       │       │   └── ic_launcher_round.xml
│       │       ├── values/
│       │       │   ├── arrays.xml
│       │       │   ├── strings.xml
│       │       │   └── themes.xml
│       │       └── xml/
│       │           ├── backup_rules.xml
│       │           └── data_extraction_rules.xml
│       └── test/
│           └── java/
│               └── com/
│                   └── my/
│                       └── televip/
│                           └── ExampleUnitTest.java
├── build.gradle
├── gradle/
│   ├── libs.versions.toml
│   └── wrapper/
│       ├── gradle-wrapper.jar
│       └── gradle-wrapper.properties
├── gradle.properties
├── gradlew
├── gradlew.bat
├── settings.gradle
└── settingsadapter/
    ├── .gitignore
    ├── build.gradle
    ├── proguard-rules.pro
    └── src/
        ├── main/
        │   ├── AndroidManifest.xml
        │   └── java/
        │       └── com/
        │           └── televip/
        │               └── SettingsAdapter/
        │                   ├── Bridge.java
        │                   └── SettingsAdapter.java
        └── test/
            └── java/
                └── com/
                    └── televip/
                        └── settingsadapter/
                            └── ExampleUnitTest.java

================================================
FILE CONTENTS
================================================

================================================
FILE: .gitignore
================================================
<<<<<<< HEAD
*.iml
.gradle
/local.properties
/.idea/caches
/.idea/libraries
/.idea/modules.xml
/.idea/workspace.xml
/.idea/navEditor.xml
/.idea/assetWizardSettings.xml
.DS_Store
/build
/captures
.externalNativeBuild
.cxx
local.properties
=======
# Gradle files
.gradle/
build/

# Local configuration file (sdk path, etc)
local.properties

# Log/OS Files
*.log

# Android Studio generated files and folders
captures/
.externalNativeBuild/
.cxx/
*.apk
output.json

# IntelliJ
*.iml
.idea/
misc.xml
deploymentTargetDropDown.xml
render.experimental.xml

# Keystore files
*.jks
*.keystore

# Google Services (e.g. APIs or Firebase)
google-services.json

# Android Profiling
*.hprof
>>>>>>> e9865a95eb7ed2d3a6e3c0283d94db23f9eefe06


================================================
FILE: LICENSE
================================================
                           GNU GENERAL PUBLIC LICENSE
                            Version 3, 29 June 2007

 Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
 Everyone is permitted to copy and distribute verbatim copies
 of this license document, but changing it is not allowed.

                            Preamble

  The GNU General Public License is a free, copyleft license for
software and other kinds of works.

  The licenses for most software and other practical works are designed
to take away your freedom to share and change the works.  By contrast,
the GNU General Public License is intended to guarantee your freedom to
share and change all versions of a program--to make sure it remains free
software for all its users.  We, the Free Software Foundation, use the
GNU General Public License for most of our software; it applies also to
any other work released this way by its authors.  You can apply it to
your programs, too.

  When we speak of free software, we are referring to freedom, not
price.  Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
them if you wish), that you receive source code or can get it if you
want it, that you can change the software or use pieces of it in new
free programs, and that you know you can do these things.

  To protect your rights, we need to prevent others from denying you
these rights or asking you to surrender the rights.  Therefore, you have
certain responsibilities if you distribute copies of the software, or if
you modify it: responsibilities to respect the freedom of others.

  For example, if you distribute copies of such a program, whether
gratis or for a fee, you must pass on to the recipients the same
freedoms that you received.  You must make sure that they, too, receive
or can get the source code.  And you must show them these terms so they
know their rights.

  Developers that use the GNU GPL protect your rights with two steps:
(1) assert copyright on the software, and (2) offer you this License
giving you legal permission to copy, distribute and/or modify it.

  For the developers' and authors' protection, the GPL clearly explains
that there is no warranty for this free software.  For both users' and
authors' sake, the GPL requires that modified versions be marked as
changed, so that their problems will not be attributed erroneously to
authors of previous versions.

  Some devices are designed to deny users access to install or run
modified versions of the software inside them, although the manufacturer
can do so.  This is fundamentally incompatible with the aim of
protecting users' freedom to change the software.  The systematic
pattern of such abuse occurs in the area of products for individuals to
use, which is precisely where it is most unacceptable.  Therefore, we
have designed this version of the GPL to prohibit the practice for those
products.  If such problems arise substantially in other domains, we
stand ready to extend this provision to those domains in future versions
of the GPL, as needed to protect the freedom of users.

  Finally, every program is threatened constantly by software patents.
States should not allow patents to restrict development and use of
software on general-purpose computers, but in those that do, we wish to
avoid the special danger that patents applied to a free program could
make it effectively proprietary.  To prevent this, the GPL assures that
patents cannot be used to render the program non-free.

  The precise terms and conditions for copying, distribution and
modification follow.

                       TERMS AND CONDITIONS

  0. Definitions.

  "This License" refers to version 3 of the GNU General Public License.

  "Copyright" also means copyright-like laws that apply to other kinds of
works, such as semiconductor masks.

  "The Program" refers to any copyrightable work licensed under this
License.  Each licensee is addressed as "you".  "Licensees" and
"recipients" may be individuals or organizations.

  To "modify" a work means to copy from or adapt all or part of the work
in a fashion requiring copyright permission, other than the making of an
exact copy.  The resulting work is called a "modified version" of the
earlier work or a work "based on" the earlier work.

  A "covered work" means either the unmodified Program or a work based
on the Program.

  To "propagate" a work means to do anything with it that, without
permission, would make you directly or secondarily liable for
infringement under applicable copyright law, except executing it on a
computer or modifying a private copy.  Propagation includes copying,
distribution (with or without modification), making available to the
public, and in some countries other activities as well.

  To "convey" a work means any kind of propagation that enables other
parties to make or receive copies.  Mere interaction with a user through
a computer network, with no transfer of a copy, is not conveying.

  An interactive user interface displays "Appropriate Legal Notices"
to the extent that it includes a convenient and prominently visible
feature that (1) displays an appropriate copyright notice, and (2)
tells the user that there is no warranty for the work (except to the
extent that warranties are provided), that licensees may convey the
work under this License, and how to view a copy of this License.  If
the interface presents a list of user commands or options, such as a
menu, a prominent item in the list meets this criterion.

  1. Source Code.

  The "source code" for a work means the preferred form of the work
for making modifications to it.  "Object code" means any non-source
form of a work.

  A "Standard Interface" means an interface that either is an official
standard defined by a recognized standards body, or, in the case of
interfaces specified for a particular programming language, one that
is widely used among developers working in that language.

  The "System Libraries" of an executable work include anything, other
than the work as a whole, that (a) is included in the normal form of
packaging a Major Component, but which is not part of that Major
Component, and (b) serves only to enable use of the work with that
Major Component, or to implement a Standard Interface for which an
implementation is available to the public in source code form.  A
"Major Component", in this context, means a major essential component
(kernel, window system, and so on) of the specific operating system
(if any) on which the executable work runs, or a compiler used to
produce the work, or an object code interpreter used to run it.

  The "Corresponding Source" for a work in object code form means all
the source code needed to generate, install, and (for an executable
work) run the object code and to modify the work, including scripts to
control those activities.  However, it does not include the work's
System Libraries, or general-purpose tools or generally available free
programs which are used unmodified in performing those activities but
which are not part of the work.  For example, Corresponding Source
includes interface definition files associated with source files for
the work, and the source code for shared libraries and dynamically
linked subprograms that the work is specifically designed to require,
such as by intimate data communication or control flow between those
subprograms and other parts of the work.

  The Corresponding Source need not include anything that users
can regenerate automatically from other parts of the Corresponding
Source.

  The Corresponding Source for a work in source code form is that
same work.

  2. Basic Permissions.

  All rights granted under this License are granted for the term of
copyright on the Program, and are irrevocable provided the stated
conditions are met.  This License explicitly affirms your unlimited
permission to run the unmodified Program.  The output from running a
covered work is covered by this License only if the output, given its
content, constitutes a covered work.  This License acknowledges your
rights of fair use or other equivalent, as provided by copyright law.

  You may make, run and propagate covered works that you do not
convey, without conditions so long as your license otherwise remains
in force.  You may convey covered works to others for the sole purpose
of having them make modifications exclusively for you, or provide you
with facilities for running those works, provided that you comply with
the terms of this License in conveying all material for which you do
not control copyright.  Those thus making or running the covered works
for you must do so exclusively on your behalf, under your direction
and control, on terms that prohibit them from making any copies of
your copyrighted material outside their relationship with you.

  Conveying under any other circumstances is permitted solely under
the conditions stated below.  Sublicensing is not allowed; section 10
makes it unnecessary.

  3. Protecting Users' Legal Rights From Anti-Circumvention Law.

  No covered work shall be deemed part of an effective technological
measure under any applicable law fulfilling obligations under article
11 of the WIPO copyright treaty adopted on 20 December 1996, or
similar laws prohibiting or restricting circumvention of such
measures.

  When you convey a covered work, you waive any legal power to forbid
circumvention of technological measures to the extent such circumvention
is effected by exercising rights under this License with respect to
the covered work, and you disclaim any intention to limit operation or
modification of the work as a means of enforcing, against the work's
users, your or third parties' legal rights to forbid circumvention of
technological measures.

  4. Conveying Verbatim Copies.

  You may convey verbatim copies of the Program's source code as you
receive it, in any medium, provided that you conspicuously and
appropriately publish on each copy an appropriate copyright notice;
keep intact all notices stating that this License and any
non-permissive terms added in accord with section 7 apply to the code;
keep intact all notices of the absence of any warranty; and give all
recipients a copy of this License along with the Program.

  You may charge any price or no price for each copy that you convey,
and you may offer support or warranty protection for a fee.

  5. Conveying Modified Source Versions.

  You may convey a work based on the Program, or the modifications to
produce it from the Program, in the form of source code under the
terms of section 4, provided that you also meet all of these conditions:

    a) The work must carry prominent notices stating that you modified
    it, and giving a relevant date.

    b) The work must carry prominent notices stating that it is
    released under this License and any conditions added under section
    7.  This requirement modifies the requirement in section 4 to
    "keep intact all notices".

    c) You must license the entire work, as a whole, under this
    License to anyone who comes into possession of a copy.  This
    License will therefore apply, along with any applicable section 7
    additional terms, to the whole of the work, and all its parts,
    regardless of how they are packaged.  This License gives no
    permission to license the work in any other way, but it does not
    invalidate such permission if you have separately received it.

    d) If the work has interactive user interfaces, each must display
    Appropriate Legal Notices; however, if the Program has interactive
    interfaces that do not display Appropriate Legal Notices, your
    work need not make them do so.

  A compilation of a covered work with other separate and independent
works, which are not by their nature extensions of the covered work,
and which are not combined with it such as to form a larger program,
in or on a volume of a storage or distribution medium, is called an
"aggregate" if the compilation and its resulting copyright are not
used to limit the access or legal rights of the compilation's users
beyond what the individual works permit.  Inclusion of a covered work
in an aggregate does not cause this License to apply to the other
parts of the aggregate.

  6. Conveying Non-Source Forms.

  You may convey a covered work in object code form under the terms
of sections 4 and 5, provided that you also convey the
machine-readable Corresponding Source under the terms of this License,
in one of these ways:

    a) Convey the object code in, or embodied in, a physical product
    (including a physical distribution medium), accompanied by the
    Corresponding Source fixed on a durable physical medium
    customarily used for software interchange.

    b) Convey the object code in, or embodied in, a physical product
    (including a physical distribution medium), accompanied by a
    written offer, valid for at least three years and valid for as
    long as you offer spare parts or customer support for that product
    model, to give anyone who possesses the object code either (1) a
    copy of the Corresponding Source for all the software in the
    product that is covered by this License, on a durable physical
    medium customarily used for software interchange, for a price no
    more than your reasonable cost of physically performing this
    conveying of source, or (2) access to copy the
    Corresponding Source from a network server at no charge.

    c) Convey individual copies of the object code with a copy of the
    written offer to provide the Corresponding Source.  This
    alternative is allowed only occasionally and noncommercially, and
    only if you received the object code with such an offer, in accord
    with subsection 6b.

    d) Convey the object code by offering access from a designated
    place (gratis or for a charge), and offer equivalent access to the
    Corresponding Source in the same way through the same place at no
    further charge.  You need not require recipients to copy the
    Corresponding Source along with the object code.  If the place to
    copy the object code is a network server, the Corresponding Source
    may be on a different server (operated by you or a third party)
    that supports equivalent copying facilities, provided you maintain
    clear directions next to the object code saying where to find the
    Corresponding Source.  Regardless of what server hosts the
    Corresponding Source, you remain obligated to ensure that it is
    available for as long as needed to satisfy these requirements.

    e) Convey the object code using peer-to-peer transmission, provided
    you inform other peers where the object code and Corresponding
    Source of the work are being offered to the general public at no
    charge under subsection 6d.

  A separable portion of the object code, whose source code is excluded
from the Corresponding Source as a System Library, need not be
included in conveying the object code work.

  A "User Product" is either (1) a "consumer product", which means any
tangible personal property which is normally used for personal, family,
or household purposes, or (2) anything designed or sold for incorporation
into a dwelling.  In determining whether a product is a consumer product,
doubtful cases shall be resolved in favor of coverage.  For a particular
product received by a particular user, "normally used" refers to a
typical or common use of that class of product, regardless of the status
of the particular user or of the way in which the particular user
actually uses, or expects or is expected to use, the product.  A product
is a consumer product regardless of whether the product has substantial
commercial, industrial or non-consumer uses, unless such uses represent
the only significant mode of use of the product.

  "Installation Information" for a User Product means any methods,
procedures, authorization keys, or other information required to install
and execute modified versions of a covered work in that User Product from
a modified version of its Corresponding Source.  The information must
suffice to ensure that the continued functioning of the modified object
code is in no case prevented or interfered with solely because
modification has been made.

  If you convey an object code work under this section in, or with, or
specifically for use in, a User Product, and the conveying occurs as
part of a transaction in which the right of possession and use of the
User Product is transferred to the recipient in perpetuity or for a
fixed term (regardless of how the transaction is characterized), the
Corresponding Source conveyed under this section must be accompanied
by the Installation Information.  But this requirement does not apply
if neither you nor any third party retains the ability to install
modified object code on the User Product (for example, the work has
been installed in ROM).

  The requirement to provide Installation Information does not include a
requirement to continue to provide support service, warranty, or updates
for a work that has been modified or installed by the recipient, or for
the User Product in which it has been modified or installed.  Access to a
network may be denied when the modification itself materially and
adversely affects the operation of the network or violates the rules and
protocols for communication across the network.

  Corresponding Source conveyed, and Installation Information provided,
in accord with this section must be in a format that is publicly
documented (and with an implementation available to the public in
source code form), and must require no special password or key for
unpacking, reading or copying.

  7. Additional Terms.

  "Additional permissions" are terms that supplement the terms of this
License by making exceptions from one or more of its conditions.
Additional permissions that are applicable to the entire Program shall
be treated as though they were included in this License, to the extent
that they are valid under applicable law.  If additional permissions
apply only to part of the Program, that part may be used separately
under those permissions, but the entire Program remains governed by
this License without regard to the additional permissions.

  When you convey a copy of a covered work, you may at your option
remove any additional permissions from that copy, or from any part of
it.  (Additional permissions may be written to require their own
removal in certain cases when you modify the work.)  You may place
additional permissions on material, added by you to a covered work,
for which you have or can give appropriate copyright permission.

  Notwithstanding any other provision of this License, for material you
add to a covered work, you may (if authorized by the copyright holders of
that material) supplement the terms of this License with terms:

    a) Disclaiming warranty or limiting liability differently from the
    terms of sections 15 and 16 of this License; or

    b) Requiring preservation of specified reasonable legal notices or
    author attributions in that material or in the Appropriate Legal
    Notices displayed by works containing it; or

    c) Prohibiting misrepresentation of the origin of that material, or
    requiring that modified versions of such material be marked in
    reasonable ways as different from the original version; or

    d) Limiting the use for publicity purposes of names of licensors or
    authors of the material; or

    e) Declining to grant rights under trademark law for use of some
    trade names, trademarks, or service marks; or

    f) Requiring indemnification of licensors and authors of that
    material by anyone who conveys the material (or modified versions of
    it) with contractual assumptions of liability to the recipient, for
    any liability that these contractual assumptions directly impose on
    those licensors and authors.

  All other non-permissive additional terms are considered "further
restrictions" within the meaning of section 10.  If the Program as you
received it, or any part of it, contains a notice stating that it is
governed by this License along with a term that is a further
restriction, you may remove that term.  If a license document contains
a further restriction but permits relicensing or conveying under this
License, you may add to a covered work material governed by the terms
of that license document, provided that the further restriction does
not survive such relicensing or conveying.

  If you add terms to a covered work in accord with this section, you
must place, in the relevant source files, a statement of the
additional terms that apply to those files, or a notice indicating
where to find the applicable terms.

  Additional terms, permissive or non-permissive, may be stated in the
form of a separately written license, or stated as exceptions;
the above requirements apply either way.

  8. Termination.

  You may not propagate or modify a covered work except as expressly
provided under this License.  Any attempt otherwise to propagate or
modify it is void, and will automatically terminate your rights under
this License (including any patent licenses granted under the third
paragraph of section 11).

  However, if you cease all violation of this License, then your
license from a particular copyright holder is reinstated (a)
provisionally, unless and until the copyright holder explicitly and
finally terminates your license, and (b) permanently, if the copyright
holder fails to notify you of the violation by some reasonable means
prior to 60 days after the cessation.

  Moreover, your license from a particular copyright holder is
reinstated permanently if the copyright holder notifies you of the
violation by some reasonable means, this is the first time you have
received notice of violation of this License (for any work) from that
copyright holder, and you cure the violation prior to 30 days after
your receipt of the notice.

  Termination of your rights under this section does not terminate the
licenses of parties who have received copies or rights from you under
this License.  If your rights have been terminated and not permanently
reinstated, you do not qualify to receive new licenses for the same
material under section 10.

  9. Acceptance Not Required for Having Copies.

  You are not required to accept this License in order to receive or
run a copy of the Program.  Ancillary propagation of a covered work
occurring solely as a consequence of using peer-to-peer transmission
to receive a copy likewise does not require acceptance.  However,
nothing other than this License grants you permission to propagate or
modify any covered work.  These actions infringe copyright if you do
not accept this License.  Therefore, by modifying or propagating a
covered work, you indicate your acceptance of this License to do so.

  10. Automatic Licensing of Downstream Recipients.

  Each time you convey a covered work, the recipient automatically
receives a license from the original licensors, to run, modify and
propagate that work, subject to this License.  You are not responsible
for enforcing compliance by third parties with this License.

  An "entity transaction" is a transaction transferring control of an
organization, or substantially all assets of one, or subdividing an
organization, or merging organizations.  If propagation of a covered
work results from an entity transaction, each party to that
transaction who receives a copy of the work also receives whatever
licenses to the work the party's predecessor in interest had or could
give under the previous paragraph, plus a right to possession of the
Corresponding Source of the work from the predecessor in interest, if
the predecessor has it or can get it with reasonable efforts.

  You may not impose any further restrictions on the exercise of the
rights granted or affirmed under this License.  For example, you may
not impose a license fee, royalty, or other charge for exercise of
rights granted under this License, and you may not initiate litigation
(including a cross-claim or counterclaim in a lawsuit) alleging that
any patent claim is infringed by making, using, selling, offering for
sale, or importing the Program or any portion of it.

  11. Patents.

  A "contributor" is a copyright holder who authorizes use under this
License of the Program or a work on which the Program is based.  The
work thus licensed is called the contributor's "contributor version".

  A contributor's "essential patent claims" are all patent claims
owned or controlled by the contributor, whether already acquired or
hereafter acquired, that would be infringed by some manner, permitted
by this License, of making, using, or selling its contributor version,
but do not include claims that would be infringed only as a
consequence of further modification of the contributor version.  For
purposes of this definition, "control" includes the right to grant
patent sublicenses in a manner consistent with the requirements of
this License.

  Each contributor grants you a non-exclusive, worldwide, royalty-free
patent license under the contributor's essential patent claims, to
make, use, sell, offer for sale, import and otherwise run, modify and
propagate the contents of its contributor version.

  In the following three paragraphs, a "patent license" is any express
agreement or commitment, however denominated, not to enforce a patent
(such as an express permission to practice a patent or covenant not to
sue for patent infringement).  To "grant" such a patent license to a
party means to make such an agreement or commitment not to enforce a
patent against the party.

  If you convey a covered work, knowingly relying on a patent license,
and the Corresponding Source of the work is not available for anyone
to copy, free of charge and under the terms of this License, through a
publicly available network server or other readily accessible means,
then you must either (1) cause the Corresponding Source to be so
available, or (2) arrange to deprive yourself of the benefit of the
patent license for this particular work, or (3) arrange, in a manner
consistent with the requirements of this License, to extend the patent
license to downstream recipients.  "Knowingly relying" means you have
actual knowledge that, but for the patent license, your conveying the
covered work in a country, or your recipient's use of the covered work
in a country, would infringe one or more identifiable patents in that
country that you have reason to believe are valid.

  If, pursuant to or in connection with a single transaction or
arrangement, you convey, or propagate by procuring conveyance of, a
covered work, and grant a patent license to some of the parties
receiving the covered work authorizing them to use, propagate, modify
or convey a specific copy of the covered work, then the patent license
you grant is automatically extended to all recipients of the covered
work and works based on it.

  A patent license is "discriminatory" if it does not include within
the scope of its coverage, prohibits the exercise of, or is
conditioned on the non-exercise of one or more of the rights that are
specifically granted under this License.  You may not convey a covered
work if you are a party to an arrangement with a third party that is
in the business of distributing software, under which you make payment
to the third party based on the extent of your activity of conveying
the work, and under which the third party grants, to any of the
parties who would receive the covered work from you, a discriminatory
patent license (a) in connection with copies of the covered work
conveyed by you (or copies made from those copies), or (b) primarily
for and in connection with specific products or compilations that
contain the covered work, unless you entered into that arrangement,
or that patent license was granted, prior to 28 March 2007.

  Nothing in this License shall be construed as excluding or limiting
any implied license or other defenses to infringement that may
otherwise be available to you under applicable patent law.

  12. No Surrender of Others' Freedom.

  If conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License.  If you cannot convey a
covered work so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you may
not convey it at all.  For example, if you agree to terms that obligate you
to collect a royalty for further conveying from those to whom you convey
the Program, the only way you could satisfy both those terms and this
License would be to refrain entirely from conveying the Program.

  13. Use with the GNU Affero General Public License.

  Notwithstanding any other provision of this License, you have
permission to link or combine any covered work with a work licensed
under version 3 of the GNU Affero General Public License into a single
combined work, and to convey the resulting work.  The terms of this
License will continue to apply to the part which is the covered work,
but the special requirements of the GNU Affero General Public License,
section 13, concerning interaction through a network will apply to the
combination as such.

  14. Revised Versions of this License.

  The Free Software Foundation may publish revised and/or new versions of
the GNU General Public License from time to time.  Such new versions will
be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.

  Each version is given a distinguishing version number.  If the
Program specifies that a certain numbered version of the GNU General
Public License "or any later version" applies to it, you have the
option of following the terms and conditions either of that numbered
version or of any later version published by the Free Software
Foundation.  If the Program does not specify a version number of the
GNU General Public License, you may choose any version ever published
by the Free Software Foundation.

  If the Program specifies that a proxy can decide which future
versions of the GNU General Public License can be used, that proxy's
public statement of acceptance of a version permanently authorizes you
to choose that version for the Program.

  Later license versions may give you additional or different
permissions.  However, no additional obligations are imposed on any
author or copyright holder as a result of your choosing to follow a
later version.

  15. Disclaimer of Warranty.

  THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
APPLICABLE LAW.  EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
IS WITH YOU.  SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.

  16. Limitation of Liability.

  IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
SUCH DAMAGES.

  17. Interpretation of Sections 15 and 16.

  If the disclaimer of warranty and limitation of liability provided
above cannot be given local legal effect according to their terms,
reviewing courts shall apply local law that most closely approximates
an absolute waiver of all civil liability in connection with the
Program, unless a warranty or assumption of liability accompanies a
copy of the Program in return for a fee.

                     END OF TERMS AND CONDITIONS

            How to Apply These Terms to Your New Programs

  If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these terms.

  To do so, attach the following notices to the program.  It is safest
to attach them to the start of each source file to most effectively
state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.

    <one line to give the program's name and a brief idea of what it does.>
    Copyright (C) <year>  <name of author>

    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <https://www.gnu.org/licenses/>.

Also add information on how to contact you by electronic and paper mail.

  If the program does terminal interaction, make it output a short
notice like this when it starts in an interactive mode:

    <program>  Copyright (C) <year>  <name of author>
    This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
    This is free software, and you are welcome to redistribute it
    under certain conditions; type `show c' for details.

The hypothetical commands `show w' and `show c' should show the appropriate
parts of the General Public License.  Of course, your program's commands
might be different; for a GUI interface, you would use an "about box".

  You should also get your employer (if you work as a programmer) or school,
if any, to sign a "copyright disclaimer" for the program, if necessary.
For more information on this, and how to apply and follow the GNU GPL, see
<https://www.gnu.org/licenses/>.

  The GNU General Public License does not permit incorporating your program
into proprietary programs.  If your program is a subroutine library, you
may consider it more useful to permit linking proprietary applications with
the library.  If this is what you want to do, use the GNU Lesser General
Public License instead of this License.  But first, please read
<https://www.gnu.org/licenses/why-not-lgpl.html>.


================================================
FILE: README.md
================================================
# TeleVip LSPosed

A module for modifying Telegram with the following features:

1. Hide "Seen" status for groups, channels, and private messages.

2. Hide "Typing..." indicator.

3. Hide story view status.

4. Removes Content-Saving.

5. Boost Telegram download speed.

6. Enable Local Premium.

7. Save stories to the gallery, including those that cannot normally be saved.

8. Hide Phone Number.

9. Hide Online Status.

10. Prevent Deletion of Secret Media.

11. Show Deleted Messages.

12. Disable Stories.

13. Hide Update App.

14. Save Messages Edits History.

15. Disable Number Rounding.

16. Disable Channel Swipe

17. Disable Profile Swipe

18. Hide Pinned Messages

19. Enable Secret Media

20. Hide Proxy Sponsor

There are additional features that are not listed here.

# Support clients
1. Telegram 12.6.4 (66662)
2. Plus 12.5.1.1 (22150)
3. TG Connect 11.13.1 (11130109)
4. Nagram 12.6.4 (1235)
5. Skygram 10.20.6 (40639) TeleVip 1.4.6
6. iMe 12.3.6 (12030602)
7. iMe Direct 12.3.6 (12030609)
8. X Plus 12.0.1 (61669)
9. Cherrygram 11.9.1 (59100) TeleVip 2.0
10. Nicegram 1.54.0 (2079)
11. Telegram web 12.6.4 (66669)
12. Telegram Beta 12.7.0 (67369)
13. Nekogram 11.5.3S (55150) TeleVip 1.4.6
14. ForkGram 12.6.6.0 (667008)
15. ForkClient Beta 12.5.2.0 (658109)
16. NagramX 12.6.4-e3e4419 (1247)
17. Teegra 10.3.2 (41469) TeleVip 3.2
18. Telegraph 12.5.1.2 (65832)
19. Telega 2.4.3 (107)
20. Momogram 12.6.4-6a8da4a514 (11269)

# Telegram

All TeleVip updates are posted on my Telegram channel: [TeleVip](https://t.me/t_l0_e)

# Warning
This module is intended for educational purposes only. Its use may result in issues with your Telegram account, including the risk of banning or suspension. Use it at your own risk.

# License

This project is licensed under the GNU General Public License v3.0 (GPLv3).  
See the [LICENSE](./LICENSE) file for more details.

Partially based on [Re-Telegram](https://github.com/Sakion-Team/Re-Telegram).

Developed by an @mustafa1dev


================================================
FILE: SUMMARY
================================================
TeleVip A module for modifying Telegram

================================================
FILE: app/.gitignore
================================================
/build

================================================
FILE: app/build.gradle
================================================
apply plugin: 'com.android.application'

android {
    namespace 'com.my.televip'
    compileSdk 36

    defaultConfig {
        applicationId "com.my.televip"
        minSdk 27
        targetSdk 36
        versionCode 310
        versionName "3.4"

        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
        vectorDrawables {
            useSupportLibrary true
        }
    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
    }
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }

}

dependencies {
    compileOnly libs.api
    implementation(libs.gson)
    implementation(libs.appcompat)
    implementation(libs.material)
}
tasks.register("copyLargestDexAsJava") {

    dependsOn(":settingsadapter:assembleDebug")

    doLast {
        def apkFile = fileTree("$rootDir/settingsadapter/build/intermediates/apk/debug")
                .matching { include "*.apk" }
                .singleFile

        def tempDir = new File(buildDir, "tmp/dexExtract")
        tempDir.mkdirs()

        copy {
            from zipTree(apkFile)
            into tempDir
            include "classes*.dex"
        }

        def dexFiles = fileTree(tempDir).matching { include "classes*.dex" }.files

        if (dexFiles.isEmpty()) {
            throw new GradleException("No dex files found!")
        }

        def largestDex = dexFiles.max { it.length() }

        // قراءة dex كـ bytes
        byte[] dexBytes = largestDex.bytes

        def hex = dexBytes.collect { String.format("%02X", it) }.join("")

        def outputDir = file("$projectDir/src/main/java/com/my/televip/dex")
        outputDir.mkdirs()

        def javaFile = new File(outputDir, "DexHolder.java")

        javaFile.text = """
package com.my.televip.dex;

public class DexHolder {
    public static final byte[] DEX_BYTES = hexToBytes("${hex}");

    private static byte[] hexToBytes(String hex) {
        int len = hex.length();
        byte[] data = new byte[len / 2];
        for (int i = 0; i < len; i += 2) {
            data[i / 2] = (byte) ((Character.digit(hex.charAt(i), 16) << 4)
                                + Character.digit(hex.charAt(i+1), 16));
        }
        return data;
    }
}
"""
        println "Generated DexHolder with largest dex: ${largestDex.name}"
    }
}

preBuild.dependsOn("copyLargestDexAsJava")

================================================
FILE: app/proguard-rules.pro
================================================
# Add project specific ProGuard rules here.
# You can control the set of applied configuration files using the
# proguardFiles setting in build.gradle.
#
# For more details, see
#   http://developer.android.com/guide/developing/tools/proguard.html

# If your project uses WebView with JS, uncomment the following
# and specify the fully qualified class name to the JavaScript interface
# class:
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
#   public *;
#}

# Uncomment this to preserve the line number information for
# debugging stack traces.
#-keepattributes SourceFile,LineNumberTable

# If you keep the line number information, uncomment this to
# hide the original source file name.
#-renamesourcefileattribute SourceFile

================================================
FILE: app/src/androidTest/java/com/my/televip/ExampleInstrumentedTest.java
================================================
package com.my.televip;

import android.content.Context;

import androidx.test.platform.app.InstrumentationRegistry;
import androidx.test.ext.junit.runners.AndroidJUnit4;

import org.junit.Test;
import org.junit.runner.RunWith;

import static org.junit.Assert.*;

/**
 * Instrumented test, which will execute on an Android device.
 *
 * @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
 */
@RunWith(AndroidJUnit4.class)
public class ExampleInstrumentedTest {
    @Test
    public void useAppContext() {
        // Context of the app under test.
        Context appContext = InstrumentationRegistry.getInstrumentation().getTargetContext();
        assertEquals("com.my.televip", appContext.getPackageName());
    }
}

================================================
FILE: app/src/main/AndroidManifest.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools">

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        tools:ignore="UnusedAttribute">

        <meta-data
            android:name="xposedmodule"
            android:value="true" />
        <meta-data
            android:name="xposeddescription"
            android:value="اضافة مميزات جديده لتيلجرام" />
        <meta-data
            android:name="xposedminversion"
            android:value="93+" />
        <meta-data
            android:name="xposedscope"
            android:resource="@array/xposedscope" />
    </application>

</manifest>

================================================
FILE: app/src/main/assets/lang/ar.json
================================================
{
  "ToTheBeginning": "اذهب إلى أول رسالة",
  "ToTheMessage": "إلى الرسالة",
  "InputMessageId": "ادخل معرف الرسالة",
  "Done": "حسناً",
  "NewName": "الاسم الجديد",
  "Change": "تغيير",
  "Cancel": "إلغاء",
  "ChangeTo": "تم التغيير الى",
  "NameDeleted": "تم حذف الاسم",
  "GhostMode": "وضع الشبح 👻",
  "ByMustafa": "تم تطوير من قبل @m_1_iq",
  "HideSeen": "اخفاء علامة الاستلام",
  "HideStoryView": "اخفاء مشاهدة قصة",
  "HideTyping": "اخفاء مؤشر الكتابة",
  "TelegramPremium": "فتح تيليجرام المميز",
  "RemovesContentSaving": "إزالة قيود حفظ المحتوى",
  "EnableSavingStories": "السماح بحفظ القصص",
  "GhostModeSettings": "وضع الشبح",
  "Save": "حفظ",
  "DeveloperChannel": "قناة المطور",
  "HideOnline": "إخفاء حالة الاتصال بالإنترنت",
  "PreventMedia": "تعطيل حذف الوسائط السرية",
  "HidePhone": "اخفاء رقم هاتف",
  "ShowDeletedMessages": "إظهار الرسائل المحذوفة",
  "Deleted": "محذوفه",
  "Copied": "تم نسخ '%s' إلى الحافظة" ,
  "UserOffline": "لست متصلاً بالإنترنت",
  "DisableStories": "اخفاء القصص",
  "HideUpdateApp": "اخفاء تحديث تطبيق",
  "JoinTeleVip": "انضم إلى قناة TeleVip لتكون أول من يحصل على أحدث التحديثات والميزات الجديدة أولاً بأول",
  "Join": "انضم",
  "DontShowAgain": "لا تظهر مرة اخرى",
  "RestartApp": "إعادة تشغيل التطبيق",
  "RestartRequired": "إعادة التشغيل مطلوبة",
  "DisableNumberRounding": "تعطيل تقريب الأرقام",
  "EditsHistory": "تاريخ التعديلات",
  "SaveEditsHistory": "حفظ سجل تعديلات الرسالة",
  "StoriesSettings": "القصص",
  "MessagesSettings": "الرسائل",
  "MediaSettings": "الوسائط",
  "OtherFeaturesSettings": "مميزات اخرى",
  "FixTLError": "إخفاء TL Error",
  "ShowMessageID": "عرض معرف الرسالة",
  "DownloadSpeed": "تنزيل فائق سرعة",
  "ConnectionsSettings": "اتصالات",
  "Message": "رسالة ",
  "Edited": " تم التعديل في ",
  "MarkReadAfterSend": "تعيين الرسائل كمقروءة بعد الإرسال أو عند النقر على تفاعل",
  "OfflineVisibilityInfo": "عند تفعيل ميزة 'إخفاء حالة الاتصال بالإنترنت'، لن يتم إخفاء حالة اتصالك بشكل كامل، بل يتم تقليل عدد مرات ظهورك كمتصل. قد تظهر متصلاً عند التفاعل مع التطبيق، مثل إرسال الرسائل أو التفاعل معها أو قراءة الرسائل. ستعود حالتك إلى غير متصل بعد حوالي 30-60 ثانية. للحصول على أفضل نتيجة، يُنصح بتفعيل جميع خيارات وضع الشبح.",
  "DisableChannelSwipeBack": "تعطيل الرجوع بالسحب في القنوات",
  "DisableProfileSwipeBack": "تعطيل الرجوع بالسحب في الملف الشخصي",
  "HidePinnedMessages": "إخفاء الرسائل المثبتة",
  "UiSettings": "واجهة المستخدم",
  "SecretMediaSave": "تفعيل حفظ الوسائط السرية",
  "HideProxySponsor": "إخفاء راعي الخادم الوسيط"
}

================================================
FILE: app/src/main/assets/lang/en.json
================================================
{
  "ToTheBeginning": "Go to First Message",
  "ToTheMessage": "To The Message",
  "InputMessageId": "Input Message Id",
  "Done": "Done",
  "NewName": "New Name",
  "Change": "Change",
  "Cancel": "Cancel",
  "ChangeTo": "Change to",
  "NameDeleted": "Name deleted",
  "GhostMode": "Ghost Mode 👻",
  "ByMustafa": "by @m_1_iq",
  "HideSeen": "Hide 'Seen' status",
  "HideStoryView": "Hide 'Story View' status",
  "HideTyping": "Hide Typing...",
  "TelegramPremium": "Enable Local Premium",
  "RemovesContentSaving": "Removes Content-Saving",
  "EnableSavingStories": "Enable Saving Stories",
  "GhostModeSettings": "Ghost Mode",
  "Save": "Save",
  "DeveloperChannel": "Developer Channel",
  "HideOnline": "Hide 'Online' status",
  "PreventMedia": "Prevent Deletion of Secret Media.",
  "HidePhone": "Hide 'Phone' number",
  "ShowDeletedMessages": "Show 'Deleted Messages'",
  "Deleted": "deleted",
  "Copied": "Copied '%s' to the clipboard",
  "UserOffline": "You are currently offline",
  "DisableStories": "Disable 'Stories'",
  "HideUpdateApp": "Hide Update App",
  "JoinTeleVip": "Join the TeleVip channel to be among the first to get the latest updates and new features",
  "Join": "Join",
  "DontShowAgain": "Don't show again",
  "RestartApp": "Restart App",
  "RestartRequired": "Restart required",
  "DisableNumberRounding": "Disable Number Rounding",
  "EditsHistory": "Edits History",
  "SaveEditsHistory": "Save Messages Edits History",
  "StoriesSettings": "Stories",
  "MessagesSettings": "Messages",
  "MediaSettings": "Media",
  "OtherFeaturesSettings": "Other Features",
  "FixTLError": "Hide TL Error",
  "ShowMessageID": "Show Message ID",
  "DownloadSpeed": "Download Speed Boost",
  "ConnectionsSettings": "Connections",
  "Message": "Message ",
  "Edited": " Edited on ",
  "MarkReadAfterSend": "Mark messages as read after sending or tap a reaction",
  "OfflineVisibilityInfo": "When the “Hide Online Status” feature is enabled, your online status will not be completely hidden. Instead, it reduces how often you appear as online. You may still appear online when interacting with the app, such as sending messages, reacting to them, or reading messages. Your status will return to offline after about 30–60 seconds. For the best result, it is recommended to enable all Ghost Mode options.",
  "DisableChannelSwipeBack": "Disable Channel Swipe Back",
  "DisableProfileSwipeBack": "Disable Profile Swipe Back",
  "HidePinnedMessages": "Hide Pinned Messages",
  "UiSettings": "UI",
  "SecretMediaSave": "Enable Secret Media Save",
  "HideProxySponsor": "Hide Proxy Sponsor"
}

================================================
FILE: app/src/main/assets/lang/zh.json
================================================
{
  "ToTheBeginning": "跳转到第一条消息",
  "ToTheMessage": "跳转到消息",
  "InputMessageId": "输入消息 ID",
  "Done": "完成",
  "NewName": "新名字",
  "Change": "更改",
  "Cancel": "取消",
  "ChangeTo": "更改为",
  "NameDeleted": "名称已删除",
  "GhostMode": "幽灵模式 👻",
  "ByMustafa": "by @m_1_iq",
  "HideSeen": "隐藏“已查看”状态",
  "HideStoryView": "隐藏 '故事观看' 状态",
  "HideTyping": "隐藏正在输入...",
  "TelegramPremium": "启用 Telegram 本地会员",
  "RemovesContentSaving": "移除内容保存限制",
  "EnableSavingStories": "启用保存故事",
  "GhostModeSettings": "幽灵模式",
  "Save": "保存",
  "DeveloperChannel": "开发者频道",
  "HideOnline": "隐藏 '在线' 状态",
  "PreventMedia": "防止删除秘密媒体",
  "HidePhone": "隐藏 '电话' 号码",
  "ShowDeletedMessages": "显示已删除的消息",
  "Deleted": "已删除",
  "Copied": "已复制“%s”到剪贴板",
  "UserOffline": "您当前处于离线状态",
  "DisableStories": "禁用 故事",
  "HideUpdateApp": "隐藏应用更新",
  "JoinTeleVip": "加入 TeleVip 频道,第一时间获取最新更新和新功能",
  "Join": "加入",
  "DontShowAgain": "不再显示",
  "RestartApp": "重新启动应用",
  "RestartRequired": "需要重新启动",
  "DisableNumberRounding": "禁用数字四舍五入",
  "EditsHistory": "编辑历史",
  "SaveEditsHistory": "保存消息编辑历史",
  "StoriesSettings": "故事",
  "MessagesSettings": "消息",
  "MediaSettings": "媒体",
  "OtherFeaturesSettings": "其他功能",
  "FixTLError": "隐藏 TL Error",
  "ShowMessageID": "显示消息ID",
  "DownloadSpeed": "下载速度加速",
  "ConnectionsSettings": "连接",
  "Message": "消息 ",
  "Edited": " 编辑于 ",
  "MarkReadAfterSend": "发送消息后或点击反应后,将消息标记为已读",
  "OfflineVisibilityInfo": "启用“隐藏在线状态”功能后,您的在线状态不会被完全隐藏,而是会减少您显示为在线的频率。当您与应用进行交互时,例如发送消息、对消息做出反应或阅读消息,您仍可能会显示为在线。大约30–60秒后,您的状态将恢复为离线。为了获得最佳效果,建议启用所有幽灵模式选项。",
  "DisableChannelSwipeBack": "禁用频道滑动返回",
  "DisableProfileSwipeBack": "禁用个人资料滑动返回",
  "HidePinnedMessages": "隐藏置顶消息",
  "UiSettings": "用户界面",
  "SecretMediaSave": "启用秘密媒体保存",
  "HideProxySponsor": "隐藏代理赞助商"
}

================================================
FILE: app/src/main/assets/xposed_init
================================================
com.my.televip.MainHook


================================================
FILE: app/src/main/java/com/my/televip/Callback/IntCallback.java
================================================
package com.my.televip.Callback;

@FunctionalInterface
public interface IntCallback {
    void run(int param);
}

================================================
FILE: app/src/main/java/com/my/televip/Class/ClassLoad.java
================================================
package com.my.televip.Class;

import android.content.Context;

import com.my.televip.ClientChecker;
import com.my.televip.Utils;
import com.my.televip.logging.Logger;
import com.my.televip.obfuscate.AutomationResolver;

import java.util.HashMap;
import java.util.Map;

import de.robv.android.xposed.XposedHelpers;

public class ClassLoad {


    private static final Map<String, Class<?>> cache = new HashMap<>();

    public static Class<?> getClass(String name) {
        String resolved = AutomationResolver.resolve(name);

        if (cache.containsKey(resolved)) {
            return cache.get(resolved);
        }

        try {
            Class<?> cls = XposedHelpers.findClassIfExists(
                    resolved,
                    Utils.classLoader
            );
            if (cls != null) {
                cache.put(resolved, cls);
            } else {
                if ((ClientChecker.check(ClientChecker.ClientType.Nagram) || ClientChecker.check(ClientChecker.ClientType.Momogram)) && name.equals(ClassNames.DRAWABLE)) return null;
                Logger.w("Not found " + name + ", " + resolved + " " + Utils.issue);
            }
            return cls;

        } catch (Throwable e) {
            Logger.e(e);
            return null;
        }
    }

    public static Class<?> getClass(String name, ClassLoader classLoader) {
        String resolved = AutomationResolver.resolve(name);

        if (cache.containsKey(resolved)) {
            return cache.get(resolved);
        }

        try {
            Class<?> cls = XposedHelpers.findClassIfExists(
                    resolved,
                    classLoader
            );
            if (cls != null) {
                cache.put(resolved, cls);
            } else {
                Logger.w("Not found " + name + ", " + resolved + " " + Utils.issue);
            }
            return cls;

        } catch (Throwable e) {
            Logger.e(e);
            return null;
        }
    }

    private static Context applicationContext;

    public static Context getApplicationContext() {
        if (applicationContext == null) {
            applicationContext = (Context) XposedHelpers.getStaticObjectField(
                    getClass(ClassNames.APPLICATION_LOADER),
                    AutomationResolver.resolve("ApplicationLoader", "applicationContext", AutomationResolver.ResolverType.Field)
            );
        }
        return applicationContext;
    }

}


================================================
FILE: app/src/main/java/com/my/televip/Class/ClassNames.java
================================================
package com.my.televip.Class;

public class ClassNames {

    public static final String MESSAGE_OBJECT = "org.telegram.messenger.MessageObject";
    public static final String CHAT_ACTIVITY = "org.telegram.ui.ChatActivity";
    public static final String PROFILE_ACTIVITY = "org.telegram.ui.ProfileActivity";
    public static final String DRAWABLE = "org.telegram.messenger.R$drawable";
    public static final String MESSAGES_CONTROLLER = "org.telegram.messenger.MessagesController";
    public static final String MESSAGES_STORAGE = "org.telegram.messenger.MessagesStorage";
    public static final String THEME = "org.telegram.ui.ActionBar.Theme";
    public static final String APPLICATION_LOADER = "org.telegram.messenger.ApplicationLoader";
    public static final String DRAWER_LAYOUT_ADAPTER = "org.telegram.ui.Adapters.DrawerLayoutAdapter";
    public static final String LOCALE_CONTROLLER = "org.telegram.messenger.LocaleController";
    public static final String NOTIFICATIONS_CONTROLLER = "org.telegram.messenger.NotificationsController";
    public static final String NOTIFICATION_CENTER = "org.telegram.messenger.NotificationCenter";
    public static final String LAUNCH_ACTIVITY = "org.telegram.ui.LaunchActivity";
    public static final String ALERT_DIALOG_BUILDER = "org.telegram.ui.ActionBar.AlertDialog.Builder";
    public static final String TEXT_SETTINGS_CELL = "org.telegram.ui.Cells.TextSettingsCell";
    public static final String TLRPC_ENCRYPTED_CHAT = "org.telegram.tgnet.TLRPC$EncryptedChat";
    public static final String TL_OBJECT = "org.telegram.tgnet.TLObject";
    public static final String STORY_ITEM_HOLDER = "org.telegram.ui.Stories.PeerStoriesView$StoryItemHolder";
    public static final String TLRPC_USER = "org.telegram.tgnet.TLRPC$User";
    public static final String STORIES_CONTROLLER = "org.telegram.ui.Stories.StoriesController";
    public static final String FILE_LOAD_OPERATION = "org.telegram.messenger.FileLoadOperation";
    public static final String CONNECTIONS_MANAGER = "org.telegram.tgnet.ConnectionsManager";
    public static final String TL_ACCOUNT_UPDATE_STATUS = "org.telegram.tgnet.tl.TL_account$updateStatus";
    public static final String REQUEST_DELEGATE = "org.telegram.tgnet.RequestDelegate";
    public static final String REQUEST_DELEGATE_TIMESTAMP = "org.telegram.tgnet.RequestDelegateTimestamp";
    public static final String QUICK_ACK_DELEGATE = "org.telegram.tgnet.QuickAckDelegate";
    public static final String WRITE_TO_SOCKET_DELEGATE = "org.telegram.tgnet.WriteToSocketDelegate";
    public static final String TL_HELP_APP_UPDATE = "org.telegram.tgnet.TLRPC$TL_help_appUpdate";
    public static final String TL_UPDATE_DELETE_MESSAGES = "org.telegram.tgnet.TLRPC$TL_updateDeleteMessages";
    public static final String TL_UPDATE_DELETE_CHANNEL_MESSAGES = "org.telegram.tgnet.TLRPC$TL_updateDeleteChannelMessages";
    public static final String CHAT_MESSAGE_CELL = "org.telegram.ui.Cells.ChatMessageCell";
    public static final String DOWNLOAD_CONTROLLER = "org.telegram.messenger.DownloadController";
    public static final String TL_MESSAGE = "org.telegram.tgnet.TLRPC$Message";
    public static final String SECRET_MEDIA_VIEWER = "org.telegram.ui.SecretMediaViewer";
    public static final String PHOTO_VIEWER = "org.telegram.ui.PhotoViewer";
    public static final String PHOTO_VIEWER_PROVIDER = "org.telegram.ui.PhotoViewer$PhotoViewerProvider";
    public static final String USER_CONFIG = "org.telegram.messenger.UserConfig";
    public static final String TL_MESSAGES_MESSAGES = "org.telegram.tgnet.TLRPC$messages_Messages";
    public static final String ALERT_DIALOG_BUTTON_CLICK = "org.telegram.ui.ActionBar.AlertDialog$OnButtonClickListener";
    public static final String UTILITIES = "org.telegram.messenger.Utilities";
    public static final String TL_MESSAGES_AFFECTED = "org.telegram.tgnet.TLRPC$TL_messages_affectedMessages";
    public static final String TL_CHANNELS_READ_HISTORY = "org.telegram.tgnet.TLRPC$TL_channels_readHistory";
    public static final String TL_MESSAGES_READ_HISTORY = "org.telegram.tgnet.TLRPC$TL_messages_readHistory";
    public static final String SHARED_CONFIG = "org.telegram.messenger.SharedConfig";
    public static final String TLRPC_CHAT = "org.telegram.tgnet.TLRPC$Chat";
    public static final String CHAT_MESSAGE_CELL_DELEGATE = "org.telegram.ui.ChatActivity$ChatMessageCellDelegate";
    public static final String FILE_LOADER = "org.telegram.messenger.FileLoader";
    public static final String SETTINGS_ADAPTER_LIST_ADAPTER = "com.televip.SettingsAdapter.SettingsAdapter$ListAdapter";
    public static final String ANDROID_UTILITIES = "org.telegram.messenger.AndroidUtilities";
    public static final String SETTINGS_ADAPTER_RECYCLER_LIST_VIEW = "com.televip.SettingsAdapter.SettingsAdapter$RecyclerListView";
    public static final String SETTINGS_ADAPTER = "com.televip.SettingsAdapter.SettingsAdapter";

}


================================================
FILE: app/src/main/java/com/my/televip/ClientChecker.java
================================================
package com.my.televip;

import java.util.Arrays;

public class ClientChecker {
    public static boolean check(ClientType client, String pkgName)
    {
        return Arrays.asList(client.getPackageNames()).contains(pkgName);
    }

    public static boolean check(ClientType client)
    {
        return check(client, Utils.pkgName);
    }

    public enum ClientType {
        Telegram("org.telegram.messenger", com.my.televip.Clients.Telegram.class),
        TelegramWeb("org.telegram.messenger.web", com.my.televip.Clients.TelegramWeb.class),
        TelegramPlus("org.telegram.plus", com.my.televip.Clients.TelegramPlus.class),
        TGConnect("com.tgconnect.android", com.my.televip.Clients.TGConnect.class),
        Nagram("xyz.nextalone.nagram", com.my.televip.Clients.Nagram.class),
        Nicegram("app.nicegram", com.my.televip.Clients.Nicegram.class),
        TelegramBeta("org.telegram.messenger.beta", com.my.televip.Clients.TelegramBeta.class),
        NagramX("nu.gpu.nagram", com.my.televip.Clients.NagramX.class),
        XPlus("com.xplus.messenger", com.my.televip.Clients.XPlus.class),
        iMe("com.iMe.android", com.my.televip.Clients.iMe.class),
        iMeWeb("com.iMe.android.web", com.my.televip.Clients.iMeWeb.class),
        forkgram("org.forkgram.messenger", com.my.televip.Clients.forkgram.class),
        forkgramBeta("org.forkclient.messenger.beta", com.my.televip.Clients.forkgramBeta.class),
        Telegraph("ir.ilmili.telegraph", com.my.televip.Clients.Telegraph.class),
        Telega("ru.dahl.messenger", com.my.televip.Clients.Telega.class),
        Momogram(new String[]{"nekox.messenger.broken", "momo.gram"}, com.my.televip.Clients.Momogram.class);

        private final String[] packageNames;
        private final Class<?> resolverClass;

        ClientType(String packageName, Class<?> resolverClass) {
            this.packageNames = new String[]{packageName};
            this.resolverClass = resolverClass;
        }

        ClientType(String[] packageNames, Class<?> resolverClass) {
            this.packageNames = packageNames;
            this.resolverClass = resolverClass;
        }

        public String[] getPackageNames() { return packageNames; }
        public Class<?> getResolverClass() { return resolverClass; }

        public static ClientType fromPackage(String pkg){
            for (ClientType type: ClientType.values()){
                for (String name: type.getPackageNames()){
                    if (name.equals(pkg)) return type;
                }
            }
            return null;
        }

        public static boolean containsPackage(String pkg){
            return fromPackage(pkg) != null;
        }
    }
}


================================================
FILE: app/src/main/java/com/my/televip/Clients/Momogram.java
================================================
package com.my.televip.Clients;

import com.my.televip.Class.ClassLoad;
import com.my.televip.Class.ClassNames;
import com.my.televip.obfuscate.struct.ClassInfo;
import com.my.televip.obfuscate.struct.FieldInfo;
import com.my.televip.obfuscate.struct.MethodInfo;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

public class Momogram {
    private static final List<ClassInfo> classList = new ArrayList<>();
    private static final List<FieldInfo> fieldList = new ArrayList<>();
    private static final List<MethodInfo> methodList = new ArrayList<>();

    public static class ClassResolver
    {
        public static String resolve(String name) {
            for (ClassInfo info : classList)
                if (info.getOriginal().equals(name))
                    return info.getResolved();

            return null;
        }

        public static boolean has(String name)
        {
            boolean has = false;
            for (ClassInfo info : classList) {
                if (info.getOriginal().equals(name)) {
                    has = true;
                    break;
                }
            }
            return has;
        }
    }

    public static class FieldResolver
    {
        public static String resolve(String className, String name) {
            for (FieldInfo info : fieldList)
                if (info.getClassName().equals(className) && info.getOriginal().equals(name))
                    return info.getResolved();

            return null;
        }

        public static boolean has(String className, String name)
        {
            boolean has = false;
            for (FieldInfo info : fieldList) {
                if (info.getClassName().equals(className) && info.getOriginal().equals(name)) {
                    has = true;
                    break;
                }
            }
            return has;
        }
    }

    public static class MethodResolver
    {
        public static String resolve(String className, String name) {
            for (MethodInfo info : methodList)
                if (info.getClassName().equals(className) && info.getOriginal().equals(name))
                    return info.getResolved();

            return null;
        }

        public static boolean has(String className, String name)
        {
            boolean has = false;
            for (MethodInfo info : methodList) {
                if (info.getClassName().equals(className) && info.getOriginal().equals(name)) {
                    has = true;
                    break;
                }
            }
            return has;
        }
    }

    public static class ParameterResolver
    {
        static Map<String,Class<?>[]> objectList = new HashMap<>();

        public static void register(String name,  Class<?>[] classes){
            objectList.put(name, classes);
        }

        public static Class<?>[] resolve(String name) {
            return objectList.get(name);
        }

        public static boolean has(String name)
        {
            boolean has = false;
           Class<?>[] classes = objectList.get(name);
           if (classes != null){
               has = true;
           }
            return has;
        }
    }

    public static void loadParameter() {
        ParameterResolver.register("sendRequestInternal",new Class[]{ClassLoad.getClass(ClassNames.TL_OBJECT), ClassLoad.getClass(ClassNames.REQUEST_DELEGATE), ClassLoad.getClass(ClassNames.REQUEST_DELEGATE_TIMESTAMP), ClassLoad.getClass(ClassNames.QUICK_ACK_DELEGATE), ClassLoad.getClass(ClassNames.WRITE_TO_SOCKET_DELEGATE), int.class, int.class, int.class, boolean.class, int.class, Runnable.class});
    }
}


================================================
FILE: app/src/main/java/com/my/televip/Clients/Nagram.java
================================================
package com.my.televip.Clients;

import com.my.televip.Class.ClassNames;
import com.my.televip.Class.ClassLoad;
import com.my.televip.obfuscate.struct.ClassInfo;
import com.my.televip.obfuscate.struct.FieldInfo;
import com.my.televip.obfuscate.struct.MethodInfo;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;


public class Nagram {
    private static final List<ClassInfo> classList = new ArrayList<>();
    private static final List<FieldInfo> fieldList = new ArrayList<>();
    private static final List<MethodInfo> methodList = new ArrayList<>();

    public static class ClassResolver
    {
        public static String resolve(String name) {
            for (ClassInfo info : classList)
                if (info.getOriginal().equals(name))
                    return info.getResolved();

            return null;
        }

        public static boolean has(String name)
        {
            boolean has = false;
            for (ClassInfo info : classList) {
                if (info.getOriginal().equals(name)) {
                    has = true;
                    break;
                }
            }
            return has;
        }
    }

    public static class FieldResolver
    {
        public static String resolve(String className, String name) {
            for (FieldInfo info : fieldList)
                if (info.getClassName().equals(className) && info.getOriginal().equals(name))
                    return info.getResolved();

            return null;
        }

        public static boolean has(String className, String name)
        {
            boolean has = false;
            for (FieldInfo info : fieldList) {
                if (info.getClassName().equals(className) && info.getOriginal().equals(name)) {
                    has = true;
                    break;
                }
            }
            return has;
        }
    }

    public static class MethodResolver
    {
        public static String resolve(String className, String name) {
            for (MethodInfo info : methodList)
                if (info.getClassName().equals(className) && info.getOriginal().equals(name))
                    return info.getResolved();

            return null;
        }

        public static boolean has(String className, String name)
        {
            boolean has = false;
            for (MethodInfo info : methodList) {
                if (info.getClassName().equals(className) && info.getOriginal().equals(name)) {
                    has = true;
                    break;
                }
            }
            return has;
        }
    }
    public static class ParameterResolver
    {
        static Map<String,Class<?>[]> objectList = new HashMap<>();

        public static void register(String name,  Class<?>[] classes){
            objectList.put(name,classes);
        }

        public static Class<?>[] resolve(String name) {
            return objectList.get(name);
        }

        public static boolean has(String name)
        {
            boolean has = false;
            Class<?>[] classes = objectList.get(name);
            if (classes != null){
                has = true;
            }

            return has;
        }
    }

    public static void loadParameter() {
        ParameterResolver.register("markMessagesAsDeletedInternal",new Class[]{ArrayList.class, boolean.class, int.class, int.class, long.class});

        ParameterResolver.register("putMessages",new Class[]{int.class, int.class, int.class, long.class, long.class, ClassLoad.getClass(ClassNames.TL_MESSAGES_MESSAGES), boolean.class});
    }

}


================================================
FILE: app/src/main/java/com/my/televip/Clients/NagramX.java
================================================
package com.my.televip.Clients;

import com.my.televip.obfuscate.struct.ClassInfo;
import com.my.televip.obfuscate.struct.FieldInfo;
import com.my.televip.obfuscate.struct.MethodInfo;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

public class NagramX {
    private static final List<ClassInfo> classList = new ArrayList<>();
    private static final List<FieldInfo> fieldList = new ArrayList<>();
    private static final List<MethodInfo> methodList = new ArrayList<>();


    public static class ClassResolver
    {
        public static String resolve(String name) {
            for (ClassInfo info : classList)
                if (info.getOriginal().equals(name))
                    return info.getResolved();

            return null;
        }

        public static boolean has(String name)
        {
            boolean has = false;
            for (ClassInfo info : classList) {
                if (info.getOriginal().equals(name)) {
                    has = true;
                    break;
                }
            }
            return has;
        }
    }

    public static class FieldResolver
    {
        public static String resolve(String className, String name) {
            for (FieldInfo info : fieldList)
                if (info.getClassName().equals(className) && info.getOriginal().equals(name))
                    return info.getResolved();

            return null;
        }

        public static boolean has(String className, String name)
        {
            boolean has = false;
            for (FieldInfo info : fieldList) {
                if (info.getClassName().equals(className) && info.getOriginal().equals(name)) {
                    has = true;
                    break;
                }
            }
            return has;
        }
    }

    public static class MethodResolver
    {
        public static String resolve(String className, String name) {
            for (MethodInfo info : methodList)
                if (info.getClassName().equals(className) && info.getOriginal().equals(name))
                    return info.getResolved();

            return null;
        }

        public static boolean has(String className, String name)
        {
            boolean has = false;
            for (MethodInfo info : methodList) {
                if (info.getClassName().equals(className) && info.getOriginal().equals(name)) {
                    has = true;
                    break;
                }
            }
            return has;
        }
    }
    public static class ParameterResolver
    {
        static Map<String,Class<?>[]> objectList = new HashMap<>();

        public static void register(String name,  Class<?>[] classes){
            objectList.put(name,classes);
        }

        public static Class<?>[] resolve(String name) {
            return objectList.get(name);
        }

        public static boolean has(String name)
        {
            boolean has = false;
           Class<?>[] classes = objectList.get(name);
           if (classes != null){
               has = true;
           }
            return has;
        }
    }

    public static void loadParameter() {}
}


================================================
FILE: app/src/main/java/com/my/televip/Clients/Nicegram.java
================================================
package com.my.televip.Clients;

import android.view.View;

import com.my.televip.Class.ClassNames;
import com.my.televip.Class.ClassLoad;
import com.my.televip.obfuscate.struct.ClassInfo;
import com.my.televip.obfuscate.struct.FieldInfo;
import com.my.televip.obfuscate.struct.MethodInfo;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

public class Nicegram {
    private static final List<ClassInfo> classList = new ArrayList<>();
    private static final List<FieldInfo> fieldList = new ArrayList<>();
    private static final List<MethodInfo> methodList = new ArrayList<>();

    public static class ClassResolver
    {
        public static String resolve(String name) {
            for (ClassInfo info : classList)
                if (info.getOriginal().equals(name))
                    return info.getResolved();

            return null;
        }

        public static boolean has(String name)
        {
            boolean has = false;
            for (ClassInfo info : classList) {
                if (info.getOriginal().equals(name)) {
                    has = true;
                    break;
                }
            }
            return has;
        }
    }

    public static class FieldResolver
    {
        public static String resolve(String className, String name) {
            for (FieldInfo info : fieldList)
                if (info.getClassName().equals(className) && info.getOriginal().equals(name))
                    return info.getResolved();

            return null;
        }

        public static boolean has(String className, String name)
        {
            boolean has = false;
            for (FieldInfo info : fieldList) {
                if (info.getClassName().equals(className) && info.getOriginal().equals(name)) {
                    has = true;
                    break;
                }
            }
            return has;
        }
    }

    public static class MethodResolver
    {
        public static String resolve(String className, String name) {
            for (MethodInfo info : methodList)
                if (info.getClassName().equals(className) && info.getOriginal().equals(name))
                    return info.getResolved();

            return null;
        }

        public static boolean has(String className, String name)
        {
            boolean has = false;
            for (MethodInfo info : methodList) {
                if (info.getClassName().equals(className) && info.getOriginal().equals(name)) {
                    has = true;
                    break;
                }
            }
            return has;
        }
    }
    public static class ParameterResolver
    {
        static Map<String,Class<?>[]> objectList = new HashMap<>();

        public static void register(String name,  Class<?>[] classes){
            objectList.put(name,classes);
        }

        public static Class<?>[] resolve(String name) {
            return objectList.get(name);
        }

        public static boolean has(String name)
        {
            boolean has = false;
           Class<?>[] classes = objectList.get(name);
           if (classes != null){
               has = true;
           }
            return has;
        }
    }

    public static void loadParameter() {

        ParameterResolver.register("fillMessageMenu",new Class[]{ClassLoad.getClass(ClassNames.MESSAGE_OBJECT), ArrayList.class, ArrayList.class, ArrayList.class, ArrayList.class, ArrayList.class, ArrayList.class});

        ParameterResolver.register("processSelectedOption",new Class[]{int.class, View.class});


    }
}


================================================
FILE: app/src/main/java/com/my/televip/Clients/TGConnect.java
================================================
package com.my.televip.Clients;

import com.my.televip.obfuscate.struct.ClassInfo;
import com.my.televip.obfuscate.struct.FieldInfo;
import com.my.televip.obfuscate.struct.MethodInfo;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

public class TGConnect {
    private static final List<ClassInfo> classList = new ArrayList<>();
    private static final List<FieldInfo> fieldList = new ArrayList<>();
    private static final List<MethodInfo> methodList = new ArrayList<>();

    public static class ClassResolver
    {
        public static String resolve(String name) {
            for (ClassInfo info : classList)
                if (info.getOriginal().equals(name))
                    return info.getResolved();

            return null;
        }

        public static boolean has(String name)
        {
            boolean has = false;
            for (ClassInfo info : classList) {
                if (info.getOriginal().equals(name)) {
                    has = true;
                    break;
                }
            }
            return has;
        }
    }

    public static class FieldResolver
    {
        public static String resolve(String className, String name) {
            for (FieldInfo info : fieldList)
                if (info.getClassName().equals(className) && info.getOriginal().equals(name))
                    return info.getResolved();

            return null;
        }

        public static boolean has(String className, String name)
        {
            boolean has = false;
            for (FieldInfo info : fieldList) {
                if (info.getClassName().equals(className) && info.getOriginal().equals(name)) {
                    has = true;
                    break;
                }
            }
            return has;
        }
    }

    public static class MethodResolver
    {
        public static String resolve(String className, String name) {
            for (MethodInfo info : methodList)
                if (info.getClassName().equals(className) && info.getOriginal().equals(name))
                    return info.getResolved();

            return null;
        }

        public static boolean has(String className, String name)
        {
            boolean has = false;
            for (MethodInfo info : methodList) {
                if (info.getClassName().equals(className) && info.getOriginal().equals(name)) {
                    has = true;
                    break;
                }
            }
            return has;
        }
    }
    public static class ParameterResolver
    {
        static Map<String,Class<?>[]> objectList = new HashMap<>();

        public static void register(String name,  Class<?>[] classes){
            objectList.put(name,classes);
        }

        public static Class<?>[] resolve(String name) {
            return objectList.get(name);
        }

        public static boolean has(String name)
        {
            boolean has = false;
            Class<?>[] classes = objectList.get(name);
            if (classes != null){
                has = true;
            }
            return has;
        }
    }

    public static void loadParameter() {}
}


================================================
FILE: app/src/main/java/com/my/televip/Clients/Telega.java
================================================
package com.my.televip.Clients;

import com.my.televip.obfuscate.struct.ClassInfo;
import com.my.televip.obfuscate.struct.FieldInfo;
import com.my.televip.obfuscate.struct.MethodInfo;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

public class Telega {
    private static final List<ClassInfo> classList = new ArrayList<>();
    private static final List<FieldInfo> fieldList = new ArrayList<>();
    private static final List<MethodInfo> methodList = new ArrayList<>();


    public static class ClassResolver
    {
        public static String resolve(String name) {
            for (ClassInfo info : classList)
                if (info.getOriginal().equals(name))
                    return info.getResolved();

            return null;
        }

        public static boolean has(String name)
        {
            boolean has = false;
            for (ClassInfo info : classList) {
                if (info.getOriginal().equals(name)) {
                    has = true;
                    break;
                }
            }
            return has;
        }
    }

    public static class FieldResolver
    {
        public static String resolve(String className, String name) {
            for (FieldInfo info : fieldList)
                if (info.getClassName().equals(className) && info.getOriginal().equals(name))
                    return info.getResolved();

            return null;
        }

        public static boolean has(String className, String name)
        {
            boolean has = false;
            for (FieldInfo info : fieldList) {
                if (info.getClassName().equals(className) && info.getOriginal().equals(name)) {
                    has = true;
                    break;
                }
            }
            return has;
        }
    }

    public static class MethodResolver
    {
        public static String resolve(String className, String name) {
            for (MethodInfo info : methodList)
                if (info.getClassName().equals(className) && info.getOriginal().equals(name))
                    return info.getResolved();

            return null;
        }

        public static boolean has(String className, String name)
        {
            boolean has = false;
            for (MethodInfo info : methodList) {
                if (info.getClassName().equals(className) && info.getOriginal().equals(name)) {
                    has = true;
                    break;
                }
            }
            return has;
        }
    }
    public static class ParameterResolver
    {
        static Map<String,Class<?>[]> objectList = new HashMap<>();

        public static void register(String name,  Class<?>[] classes){
            objectList.put(name,classes);
        }

        public static Class<?>[] resolve(String name) {
            return objectList.get(name);
        }

        public static boolean has(String name)
        {
            boolean has = false;
            Class<?>[] classes = objectList.get(name);
            if (classes != null){
                has = true;
            }
            return has;
        }
    }

    public static void loadParameter() {}
}


================================================
FILE: app/src/main/java/com/my/televip/Clients/Telegram.java
================================================
package com.my.televip.Clients;

import com.my.televip.obfuscate.struct.ClassInfo;
import com.my.televip.obfuscate.struct.FieldInfo;
import com.my.televip.obfuscate.struct.MethodInfo;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

public class Telegram {
    private static final List<ClassInfo> classList = new ArrayList<>();
    private static final List<FieldInfo> fieldList = new ArrayList<>();
    private static final List<MethodInfo> methodList = new ArrayList<>();

    public static class ClassResolver
    {
        public static String resolve(String name) {
            for (ClassInfo info : classList)
                if (info.getOriginal().equals(name))
                    return info.getResolved();

            return null;
        }

        public static boolean has(String name)
        {
            boolean has = false;
            for (ClassInfo info : classList) {
                if (info.getOriginal().equals(name)) {
                    has = true;
                    break;
                }
            }
            return has;
        }
    }

    public static class FieldResolver
    {
        public static String resolve(String className, String name) {
            for (FieldInfo info : fieldList)
                if (info.getClassName().equals(className) && info.getOriginal().equals(name))
                    return info.getResolved();

            return null;
        }

        public static boolean has(String className, String name)
        {
            boolean has = false;
            for (FieldInfo info : fieldList) {
                if (info.getClassName().equals(className) && info.getOriginal().equals(name)) {
                    has = true;
                    break;
                }
            }
            return has;
        }
    }

    public static class MethodResolver
    {
        public static String resolve(String className, String name) {
            for (MethodInfo info : methodList)
                if (info.getClassName().equals(className) && info.getOriginal().equals(name))
                    return info.getResolved();

            return null;
        }

        public static boolean has(String className, String name)
        {
            boolean has = false;
            for (MethodInfo info : methodList) {
                if (info.getClassName().equals(className) && info.getOriginal().equals(name)) {
                    has = true;
                    break;
                }
            }
            return has;
        }
    }

    public static class ParameterResolver
    {
        static Map<String,Class<?>[]> objectList = new HashMap<>();

        public static void register(String name,  Class<?>[] classes){
            objectList.put(name, classes);
        }

        public static Class<?>[] resolve(String name) {
            return objectList.get(name);
        }

        public static boolean has(String name)
        {
            boolean has = false;
           Class<?>[] classes = objectList.get(name);
           if (classes != null){
               has = true;
           }
            return has;
        }
    }

    public static void loadParameter() {}
}


================================================
FILE: app/src/main/java/com/my/televip/Clients/TelegramBeta.java
================================================
package com.my.televip.Clients;

import com.my.televip.obfuscate.struct.ClassInfo;
import com.my.televip.obfuscate.struct.FieldInfo;
import com.my.televip.obfuscate.struct.MethodInfo;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

public class TelegramBeta {
    private static final List<ClassInfo> classList = new ArrayList<>();
    private static final List<FieldInfo> fieldList = new ArrayList<>();
    private static final List<MethodInfo> methodList = new ArrayList<>();


    public static class ClassResolver
    {
        public static String resolve(String name) {
            for (ClassInfo info : classList)
                if (info.getOriginal().equals(name))
                    return info.getResolved();

            return null;
        }

        public static boolean has(String name)
        {
            boolean has = false;
            for (ClassInfo info : classList) {
                if (info.getOriginal().equals(name)) {
                    has = true;
                    break;
                }
            }
            return has;
        }
    }

    public static class FieldResolver
    {
        public static String resolve(String className, String name) {
            for (FieldInfo info : fieldList)
                if (info.getClassName().equals(className) && info.getOriginal().equals(name))
                    return info.getResolved();

            return null;
        }

        public static boolean has(String className, String name)
        {
            boolean has = false;
            for (FieldInfo info : fieldList) {
                if (info.getClassName().equals(className) && info.getOriginal().equals(name)) {
                    has = true;
                    break;
                }
            }
            return has;
        }
    }

    public static class MethodResolver
    {
        public static String resolve(String className, String name) {
            for (MethodInfo info : methodList)
                if (info.getClassName().equals(className) && info.getOriginal().equals(name))
                    return info.getResolved();

            return null;
        }

        public static boolean has(String className, String name)
        {
            boolean has = false;
            for (MethodInfo info : methodList) {
                if (info.getClassName().equals(className) && info.getOriginal().equals(name)) {
                    has = true;
                    break;
                }
            }
            return has;
        }
    }
    public static class ParameterResolver
    {
        static Map<String,Class<?>[]> objectList = new HashMap<>();

        public static void register(String name,  Class<?>[] classes){
            objectList.put(name,classes);
        }

        public static Class<?>[] resolve(String name) {
            return objectList.get(name);
        }

        public static boolean has(String name)
        {
            boolean has = false;
           Class<?>[] classes = objectList.get(name);
           if (classes != null){
               has = true;
           }
            return has;
        }
    }

    public static void loadParameter() {}
}


================================================
FILE: app/src/main/java/com/my/televip/Clients/TelegramPlus.java
================================================
package com.my.televip.Clients;

import com.my.televip.obfuscate.struct.ClassInfo;
import com.my.televip.obfuscate.struct.FieldInfo;
import com.my.televip.obfuscate.struct.MethodInfo;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

public class TelegramPlus {
    private static final List<ClassInfo> classList = new ArrayList<>();
    private static final List<FieldInfo> fieldList = new ArrayList<>();
    private static final List<MethodInfo> methodList = new ArrayList<>();

    public static class ClassResolver
    {
        public static String resolve(String name) {
            for (ClassInfo info : classList)
                if (info.getOriginal().equals(name))
                    return info.getResolved();

            return null;
        }

        public static boolean has(String name)
        {
            boolean has = false;
            for (ClassInfo info : classList) {
                if (info.getOriginal().equals(name)) {
                    has = true;
                    break;
                }
            }
            return has;
        }
    }

    public static class FieldResolver
    {
        public static String resolve(String className, String name) {
            for (FieldInfo info : fieldList)
                if (info.getClassName().equals(className) && info.getOriginal().equals(name))
                    return info.getResolved();

            return null;
        }

        public static boolean has(String className, String name)
        {
            boolean has = false;
            for (FieldInfo info : fieldList) {
                if (info.getClassName().equals(className) && info.getOriginal().equals(name)) {
                    has = true;
                    break;
                }
            }
            return has;
        }
    }

    public static class MethodResolver
    {
        public static String resolve(String className, String name) {
            for (MethodInfo info : methodList)
                if (info.getClassName().equals(className) && info.getOriginal().equals(name))
                    return info.getResolved();

            return null;
        }

        public static boolean has(String className, String name)
        {
            boolean has = false;
            for (MethodInfo info : methodList) {
                if (info.getClassName().equals(className) && info.getOriginal().equals(name)) {
                    has = true;
                    break;
                }
            }
            return has;
        }
    }
    public static class ParameterResolver
    {
        static Map<String,Class<?>[]> objectList = new HashMap<>();

        public static void register(String name,  Class<?>[] classes){
            objectList.put(name,classes);
        }

        public static Class<?>[] resolve(String name) {
            return objectList.get(name);
        }

        public static boolean has(String name)
        {
            boolean has = false;
            Class<?>[] classes = objectList.get(name);
            if (classes != null){
                has = true;
            }
            return has;
        }
    }

    public static void loadParameter() {}
}


================================================
FILE: app/src/main/java/com/my/televip/Clients/TelegramWeb.java
================================================
package com.my.televip.Clients;

import com.my.televip.obfuscate.struct.ClassInfo;
import com.my.televip.obfuscate.struct.FieldInfo;
import com.my.televip.obfuscate.struct.MethodInfo;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

public class TelegramWeb {
    private static final List<ClassInfo> classList = new ArrayList<>();
    private static final List<FieldInfo> fieldList = new ArrayList<>();
    private static final List<MethodInfo> methodList = new ArrayList<>();


    public static class ClassResolver
    {
        public static String resolve(String name) {
            for (ClassInfo info : classList)
                if (info.getOriginal().equals(name))
                    return info.getResolved();

            return null;
        }

        public static boolean has(String name)
        {
            boolean has = false;
            for (ClassInfo info : classList) {
                if (info.getOriginal().equals(name)) {
                    has = true;
                    break;
                }
            }
            return has;
        }
    }

    public static class FieldResolver
    {
        public static String resolve(String className, String name) {
            for (FieldInfo info : fieldList)
                if (info.getClassName().equals(className) && info.getOriginal().equals(name))
                    return info.getResolved();

            return null;
        }

        public static boolean has(String className, String name)
        {
            boolean has = false;
            for (FieldInfo info : fieldList) {
                if (info.getClassName().equals(className) && info.getOriginal().equals(name)) {
                    has = true;
                    break;
                }
            }
            return has;
        }
    }

    public static class MethodResolver
    {
        public static String resolve(String className, String name) {
            for (MethodInfo info : methodList)
                if (info.getClassName().equals(className) && info.getOriginal().equals(name))
                    return info.getResolved();

            return null;
        }

        public static boolean has(String className, String name)
        {
            boolean has = false;
            for (MethodInfo info : methodList) {
                if (info.getClassName().equals(className) && info.getOriginal().equals(name)) {
                    has = true;
                    break;
                }
            }
            return has;
        }
    }
    public static class ParameterResolver
    {
        static Map<String,Class<?>[]> objectList = new HashMap<>();

        public static void register(String name,  Class<?>[] classes){
            objectList.put(name,classes);
        }

        public static Class<?>[] resolve(String name) {
            return objectList.get(name);
        }

        public static boolean has(String name)
        {
            boolean has = false;
            Class<?>[] classes = objectList.get(name);
            if (classes != null){
                has = true;
            }
            return has;
        }
    }

    public static void loadParameter() {}
}


================================================
FILE: app/src/main/java/com/my/televip/Clients/Telegraph.java
================================================
package com.my.televip.Clients;

import com.my.televip.Class.ClassNames;
import com.my.televip.Class.ClassLoad;
import com.my.televip.Utils;
import com.my.televip.hooks.HMethod;
import com.my.televip.logging.Logger;
import com.my.televip.obfuscate.struct.ClassInfo;
import com.my.televip.obfuscate.struct.FieldInfo;
import com.my.televip.obfuscate.struct.MethodInfo;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

import de.robv.android.xposed.XC_MethodReplacement;
import de.robv.android.xposed.XposedHelpers;

public class Telegraph {
    private static final List<ClassInfo> classList = new ArrayList<>();
    private static final List<FieldInfo> fieldList = new ArrayList<>();
    private static final List<MethodInfo> methodList = new ArrayList<>();

    public static class ClassResolver
    {
        public static String resolve(String name) {
            for (ClassInfo info : classList)
                if (info.getOriginal().equals(name))
                    return info.getResolved();

            return null;
        }

        public static boolean has(String name)
        {
            boolean has = false;
            for (ClassInfo info : classList) {
                if (info.getOriginal().equals(name)) {
                    has = true;
                    break;
                }
            }
            return has;
        }
    }

    public static class FieldResolver
    {
        public static String resolve(String className, String name) {
            for (FieldInfo info : fieldList)
                if (info.getClassName().equals(className) && info.getOriginal().equals(name))
                    return info.getResolved();

            return null;
        }

        public static boolean has(String className, String name)
        {
            boolean has = false;
            for (FieldInfo info : fieldList) {
                if (info.getClassName().equals(className) && info.getOriginal().equals(name)) {
                    has = true;
                    break;
                }
            }
            return has;
        }
    }

    public static class MethodResolver
    {
        public static String resolve(String className, String name) {
            for (MethodInfo info : methodList)
                if (info.getClassName().equals(className) && info.getOriginal().equals(name))
                    return info.getResolved();

            return null;
        }

        public static boolean has(String className, String name)
        {
            boolean has = false;
            for (MethodInfo info : methodList) {
                if (info.getClassName().equals(className) && info.getOriginal().equals(name)) {
                    has = true;
                    break;
                }
            }
            return has;
        }
    }
    public static class ParameterResolver
    {
        static Map<String,Class<?>[]> objectList = new HashMap<>();

        public static void register(String name,  Class<?>[] classes){
            objectList.put(name,classes);
        }

        public static Class<?>[] resolve(String name) {
            return objectList.get(name);
        }

        public static boolean has(String name)
        {
            boolean has = false;
           Class<?>[] classes = objectList.get(name);
           if (classes != null){
               has = true;
           }
            return has;
        }
    }

    public static void loadParameter() {
        classList.add(new ClassInfo("org.telegram.messenger.ApplicationLoader", "org.telegram.messenger.com5"));
        classList.add(new ClassInfo("org.telegram.ui.ActionBar.AlertDialog$OnButtonClickListener", "org.telegram.ui.ActionBar.AlertDialog$coN"));
        classList.add(new ClassInfo("org.telegram.ui.ActionBar.Theme", "org.telegram.ui.ActionBar.x"));
        classList.add(new ClassInfo("org.telegram.messenger.LocaleController", "org.telegram.messenger.h9"));
        classList.add(new ClassInfo("org.telegram.ui.Cells.ChatMessageCell","org.telegram.ui.Cells.COm7"));
        classList.add(new ClassInfo("org.telegram.messenger.MessagesController","org.telegram.messenger.Zq"));
        classList.add(new ClassInfo("org.telegram.messenger.MessagesStorage","org.telegram.messenger.uw"));
        classList.add(new ClassInfo("org.telegram.messenger.NotificationsController","org.telegram.messenger.Yx"));
        classList.add(new ClassInfo("org.telegram.messenger.NotificationCenter","org.telegram.messenger.Ow"));
        classList.add(new ClassInfo("org.telegram.messenger.MessageObject","org.telegram.messenger.ih"));
        classList.add(new ClassInfo("org.telegram.messenger.UserConfig","org.telegram.messenger.OE"));
        classList.add(new ClassInfo("org.telegram.ui.Stories.StoriesController","org.telegram.ui.Stories.w2"));
        classList.add(new ClassInfo("org.telegram.ui.Stories.PeerStoriesView$StoryItemHolder","org.telegram.ui.Stories.m$coM2"));
        classList.add(new ClassInfo("org.telegram.ui.ActionBar.BaseFragment","org.telegram.ui.ActionBar.com8"));
        classList.add(new ClassInfo("org.telegram.ui.PhotoViewer$PhotoViewerProvider","org.telegram.ui.PhotoViewer$lpt1"));
        classList.add(new ClassInfo("org.telegram.ui.ChatActivity","org.telegram.ui.Og"));
        classList.add(new ClassInfo("org.telegram.messenger.BaseController","org.telegram.messenger.com7"));
        classList.add(new ClassInfo("org.telegram.messenger.AndroidUtilities","org.telegram.messenger.com4"));
        classList.add(new ClassInfo("org.telegram.ui.Cells.TextCheckCell","org.telegram.ui.Cells.N0"));
        classList.add(new ClassInfo("org.telegram.ui.Cells.ShadowSectionCell","org.telegram.ui.Cells.Q"));
        classList.add(new ClassInfo("org.telegram.ui.Cells.HeaderCell","org.telegram.ui.Cells.lPT6"));
        classList.add(new ClassInfo("org.telegram.ui.Cells.TextSettingsCell","org.telegram.ui.Cells.n1"));
        classList.add(new ClassInfo("org.telegram.ui.Components.UniversalAdapter","org.telegram.ui.Components.iN"));
        classList.add(new ClassInfo("org.telegram.messenger.SharedConfig","org.telegram.messenger.DC"));
        classList.add(new ClassInfo("org.telegram.messenger.MessagesStorage$IntCallback","org.telegram.messenger.uw$AUx"));
        classList.add(new ClassInfo("org.telegram.ui.ChatActivity$ChatMessageCellDelegate","org.telegram.ui.Og$LPT6"));

        fieldList.add(new FieldInfo("ApplicationLoader", "applicationContext", "b"));
        fieldList.add(new FieldInfo("LaunchActivity", "drawerLayoutAdapter", "M"));
        fieldList.add(new FieldInfo("LaunchActivity", "drawerLayoutContainer", "L"));
        fieldList.add(new FieldInfo("LocaleController", "currentLocale", "y"));
        fieldList.add(new FieldInfo("ChatMessageCell","currentMessageObject","W6"));
        fieldList.add(new FieldInfo("MessagesController","dialogMessage","C"));
        fieldList.add(new FieldInfo("MessagesController","dialogMessagesByIds","F"));
        fieldList.add(new FieldInfo("NotificationCenter","messagesDeleted","c0"));
        fieldList.add(new FieldInfo("MessagesController$ReadTask","dialogId","a"));
        fieldList.add(new FieldInfo("Theme","chat_timePaint","o3"));
        fieldList.add(new FieldInfo("ChatMessageCell","currentTimeString","fb"));
        fieldList.add(new FieldInfo("ChatMessageCell","timeTextWidth","cb"));
        fieldList.add(new FieldInfo("ChatMessageCell","timeWidth","bb"));
        fieldList.add(new FieldInfo("ProfileActivity","userId","J0"));
        fieldList.add(new FieldInfo("LaunchActivity","frameLayout","H"));
        fieldList.add(new FieldInfo("ChatActivity","selectedObject","S4"));
        fieldList.add(new FieldInfo("MessagesStorage","database","b"));
        fieldList.add(new FieldInfo("UserConfig","clientUserId","i"));
        fieldList.add(new FieldInfo("UserConfig","selectedAccount","j0"));
        fieldList.add(new FieldInfo("UItem","id","d"));
        fieldList.add(new FieldInfo("SettingsActivity$SettingCell","iconView","c"));
        fieldList.add(new FieldInfo("ChatActivity","pinnedMessageView","l2"));
        fieldList.add(new FieldInfo("PhotoViewer$PlaceProviderObject","imageReceiver","a"));

        methodList.add(new MethodInfo("AlertDialog","setTitle", "H"));
        methodList.add(new MethodInfo("AlertDialog","setView", "O"));
        methodList.add(new MethodInfo("AlertDialog","setMessage", "G"));
        methodList.add(new MethodInfo("AlertDialog","setPositiveButton", "F"));
        methodList.add(new MethodInfo("AlertDialog","setNegativeButton", "z"));
        methodList.add(new MethodInfo("AlertDialog","setNeutralButton", "A"));
        methodList.add(new MethodInfo("AlertDialog","show", "R"));
        methodList.add(new MethodInfo("AlertDialog$OnButtonClickListener","onClick", "a"));
        methodList.add(new MethodInfo("Theme","getActiveTheme", "T3"));
        methodList.add(new MethodInfo("Theme","isDark", "J"));
        methodList.add(new MethodInfo("Theme","getEventType", "O2"));
        methodList.add(new MethodInfo("DrawerLayoutContainer", "closeDrawer", "e"));
        methodList.add(new MethodInfo("LocaleController", "getInstance", "E1"));
        methodList.add(new MethodInfo("ChatMessageCell","measureTime","z6"));
        methodList.add(new MethodInfo("MessagesController","deleteMessages","M9"));
        methodList.add(new MethodInfo("MessagesStorage","markMessagesAsDeleted","l7"));
        methodList.add(new MethodInfo("MessagesStorage","markMessagesAsDeletedInternal","o7"));
        methodList.add(new MethodInfo("MessagesStorage","updateDialogsWithDeletedMessagesInternal","h9"));
        methodList.add(new MethodInfo("MessagesStorage","updateDialogsWithDeletedMessages","g9"));
        methodList.add(new MethodInfo("NotificationsController","removeDeletedMessagesFromNotifications","q1"));
        methodList.add(new MethodInfo("NotificationCenter","postNotificationName","B"));
        methodList.add(new MethodInfo("UserConfig","isPremium","N"));
        methodList.add(new MethodInfo("MessagesController","completeReadTask","u9"));
        methodList.add(new MethodInfo("MessagesController","getUser","mc"));
        methodList.add(new MethodInfo("MessagesStorage","getDatabase","z5"));
        methodList.add(new MethodInfo("StoriesController","hasStories","f1"));
        methodList.add(new MethodInfo("StoriesController","hasStories2","g1"));
        methodList.add(new MethodInfo("MessagesController","storiesEnabled","Og"));
        methodList.add(new MethodInfo("MessagesController","storyEntitiesAllowed","Ng"));
        methodList.add(new MethodInfo("MessagesController","storyEntitiesAllowed2","Pg"));
        methodList.add(new MethodInfo("PeerStoriesView$StoryItemHolder","allowScreenshots","r"));
        methodList.add(new MethodInfo("UserConfig","getClientUserId","v"));
        methodList.add(new MethodInfo("ProfileActivity","updateProfileData","Ie"));
        methodList.add(new MethodInfo("MessagesController","isChatNoForwards","Qc"));
        methodList.add(new MethodInfo("ChatActivity","sendSecretMessageRead","Fx"));
        methodList.add(new MethodInfo("ChatActivity","sendSecretMediaDelete","Ex"));
        methodList.add(new MethodInfo("TextCheckCell","setTextAndValueAndCheck","j"));
        methodList.add(new MethodInfo("TextCheckCell","setTextAndCheck","i"));
        methodList.add(new MethodInfo("TextCheckCell","isChecked","d"));
        methodList.add(new MethodInfo("AndroidUtilities","isTablet","u4"));
        methodList.add(new MethodInfo("TextSettingsCell","setText","c"));
        methodList.add(new MethodInfo("LocaleController","formatShortNumber","x0"));
        methodList.add(new MethodInfo("ChatActivity","fillMessageMenu","Ur"));
        methodList.add(new MethodInfo("ChatActivity","processSelectedOption","Qw"));
        methodList.add(new MethodInfo("MessagesStorage","putMessages","P7"));
        methodList.add(new MethodInfo("SettingsActivity$SettingCell","set","a"));
        methodList.add(new MethodInfo("SettingsActivity","fillItems","M0"));
        methodList.add(new MethodInfo("SettingsActivity","onClick","Q0"));
        methodList.add(new MethodInfo("MessagesStorage","getInstance","N5"));
        methodList.add(new MethodInfo("MessagesStorage","getStorageQueue","g6"));
        methodList.add(new MethodInfo("MessagesStorage","getDialogMaxMessageId","E5"));
        methodList.add(new MethodInfo("MessagesController","getInstance","Cb"));
        methodList.add(new MethodInfo("MessagesController","processNewDifferenceParams","af"));
        methodList.add(new MethodInfo("MessagesController","getInputChannel","qb"));
        methodList.add(new MethodInfo("UserConfig","getCurrentUser","w"));
        methodList.add(new MethodInfo("ChatActivity","createPinnedMessageView","mr"));
        methodList.add(new MethodInfo("ChatActivity","updatePinnedMessageView","Uz"));
        methodList.add(new MethodInfo("ChatActivity","hasSelectedNoforwardsMessage","yt"));
        methodList.add(new MethodInfo("Theme","isCurrentThemeDark","U3"));
        methodList.add(new MethodInfo("MessagesController","checkPromoInfoInternal","q9"));
        methodList.add(new MethodInfo("MessagesController","hidePromoDialog","Hc"));
        methodList.add(new MethodInfo("ChatActivity$ChatMessageCellDelegate","didPressImage","C"));
        methodList.add(new MethodInfo("PhotoViewer","getInstance","pc"));
        methodList.add(new MethodInfo("PhotoViewer","setParentActivity","Oe"));
        methodList.add(new MethodInfo("PhotoViewer","openPhoto","Kd"));

        ParameterResolver.register("fillMessageMenu", new Class[]{ClassLoad.getClass(ClassNames.MESSAGE_OBJECT), ClassLoad.getClass(ClassNames.MESSAGE_OBJECT), ArrayList.class, ArrayList.class, ArrayList.class});

    }

    public static void removeAd(){
        try {
            Class<?> connectionsManager = XposedHelpers.findClassIfExists("org.telegram.tgnet.ConnectionsManager", Utils.classLoader);
            if (connectionsManager != null) {
                HMethod.hookMethod(connectionsManager, "native_expireFile", long.class, new XC_MethodReplacement() {
                    @Override
                    protected Object replaceHookedMethod(MethodHookParam param) {
                        return false;
                    }
                });
                HMethod.hookMethod(connectionsManager, "native_daysFile", long.class, new XC_MethodReplacement() {
                    @Override
                    protected Object replaceHookedMethod(MethodHookParam param) {
                        return 999;
                    }
                });
                HMethod.hookMethod(connectionsManager, "native_checkLicense", long.class, new XC_MethodReplacement() {
                    @Override
                    protected Object replaceHookedMethod(MethodHookParam param) {
                        return true;
                    }
                });
                HMethod.hookMethod(connectionsManager, "native_removeInstance", int.class, boolean.class, new XC_MethodReplacement() {
                    @Override
                    protected Object replaceHookedMethod(MethodHookParam param) {
                        return true;
                    }
                });
            }
        } catch (Throwable t){
            Logger.e(t);
        }
    }

}


================================================
FILE: app/src/main/java/com/my/televip/Clients/XPlus.java
================================================
package com.my.televip.Clients;

import com.my.televip.obfuscate.struct.ClassInfo;
import com.my.televip.obfuscate.struct.FieldInfo;
import com.my.televip.obfuscate.struct.MethodInfo;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

public class XPlus {
    private static final List<ClassInfo> classList = new ArrayList<>();
    private static final List<FieldInfo> fieldList = new ArrayList<>();
    private static final List<MethodInfo> methodList = new ArrayList<>();

    public static class ClassResolver {
        public static String resolve(String name) {
            for (ClassInfo info : classList)
                if (info.getOriginal().equals(name))
                    return info.getResolved();

            return null;
        }

        public static boolean has(String name) {
            boolean has = false;
            for (ClassInfo info : classList) {
                if (info.getOriginal().equals(name)) {
                    has = true;
                    break;
                }
            }
            return has;
        }
    }

    public static class FieldResolver {
        public static String resolve(String className, String name) {
            for (FieldInfo info : fieldList)
                if (info.getClassName().equals(className) && info.getOriginal().equals(name))
                    return info.getResolved();

            return null;
        }

        public static boolean has(String className, String name) {
            boolean has = false;
            for (FieldInfo info : fieldList) {
                if (info.getClassName().equals(className) && info.getOriginal().equals(name)) {
                    has = true;
                    break;
                }
            }
            return has;
        }
    }

    public static class MethodResolver {
        public static String resolve(String className, String name) {
            for (MethodInfo info : methodList)
                if (info.getClassName().equals(className) && info.getOriginal().equals(name))
                    return info.getResolved();

            return null;
        }

        public static boolean has(String className, String name) {
            boolean has = false;
            for (MethodInfo info : methodList) {
                if (info.getClassName().equals(className) && info.getOriginal().equals(name)) {
                    has = true;
                    break;
                }
            }
            return has;
        }
    }

    public static class ParameterResolver {
        static Map<String, Class<?>[]> objectList = new HashMap<>();

        public static void register(String name, Class<?>[] classes) {
            objectList.put(name, classes);
        }

        public static Class<?>[] resolve(String name) {
            return objectList.get(name);
        }

        public static boolean has(String name) {
            boolean has = false;
            Class<?>[] classes = objectList.get(name);
            if (classes != null) {
                has = true;
            }
            return has;
        }
    }

    public static void loadParameter() {}
}


================================================
FILE: app/src/main/java/com/my/televip/Clients/forkgram.java
================================================
package com.my.televip.Clients;

import com.my.televip.obfuscate.struct.ClassInfo;
import com.my.televip.obfuscate.struct.FieldInfo;
import com.my.televip.obfuscate.struct.MethodInfo;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

public class forkgram {
    private static final List<ClassInfo> classList = new ArrayList<>();
    private static final List<FieldInfo> fieldList = new ArrayList<>();
    private static final List<MethodInfo> methodList = new ArrayList<>();


    public static class ClassResolver
    {
        public static String resolve(String name) {
            for (ClassInfo info : classList)
                if (info.getOriginal().equals(name))
                    return info.getResolved();

            return null;
        }

        public static boolean has(String name)
        {
            boolean has = false;
            for (ClassInfo info : classList) {
                if (info.getOriginal().equals(name)) {
                    has = true;
                    break;
                }
            }
            return has;
        }
    }

    public static class FieldResolver
    {
        public static String resolve(String className, String name) {
            for (FieldInfo info : fieldList)
                if (info.getClassName().equals(className) && info.getOriginal().equals(name))
                    return info.getResolved();

            return null;
        }

        public static boolean has(String className, String name)
        {
            boolean has = false;
            for (FieldInfo info : fieldList) {
                if (info.getClassName().equals(className) && info.getOriginal().equals(name)) {
                    has = true;
                    break;
                }
            }
            return has;
        }
    }

    public static class MethodResolver
    {
        public static String resolve(String className, String name) {
            for (MethodInfo info : methodList)
                if (info.getClassName().equals(className) && info.getOriginal().equals(name))
                    return info.getResolved();

            return null;
        }

        public static boolean has(String className, String name)
        {
            boolean has = false;
            for (MethodInfo info : methodList) {
                if (info.getClassName().equals(className) && info.getOriginal().equals(name)) {
                    has = true;
                    break;
                }
            }
            return has;
        }
    }
    public static class ParameterResolver
    {
        static Map<String,Class<?>[]> objectList = new HashMap<>();

        public static void register(String name,  Class<?>[] classes){
            objectList.put(name,classes);
        }

        public static Class<?>[] resolve(String name) {
            return objectList.get(name);
        }

        public static boolean has(String name)
        {
            boolean has = false;
           Class<?>[] classes = objectList.get(name);
           if (classes != null){
               has = true;
           }
            return has;
        }
    }
    public static void loadParameter() {}
}


================================================
FILE: app/src/main/java/com/my/televip/Clients/forkgramBeta.java
================================================
package com.my.televip.Clients;

import com.my.televip.obfuscate.struct.ClassInfo;
import com.my.televip.obfuscate.struct.FieldInfo;
import com.my.televip.obfuscate.struct.MethodInfo;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

public class forkgramBeta {
    private static final List<ClassInfo> classList = new ArrayList<>();
    private static final List<FieldInfo> fieldList = new ArrayList<>();
    private static final List<MethodInfo> methodList = new ArrayList<>();

    public static class ClassResolver
    {
        public static String resolve(String name) {
            for (ClassInfo info : classList)
                if (info.getOriginal().equals(name))
                    return info.getResolved();

            return null;
        }

        public static boolean has(String name)
        {
            boolean has = false;
            for (ClassInfo info : classList) {
                if (info.getOriginal().equals(name)) {
                    has = true;
                    break;
                }
            }
            return has;
        }
    }

    public static class FieldResolver
    {
        public static String resolve(String className, String name) {
            for (FieldInfo info : fieldList)
                if (info.getClassName().equals(className) && info.getOriginal().equals(name))
                    return info.getResolved();

            return null;
        }

        public static boolean has(String className, String name)
        {
            boolean has = false;
            for (FieldInfo info : fieldList) {
                if (info.getClassName().equals(className) && info.getOriginal().equals(name)) {
                    has = true;
                    break;
                }
            }
            return has;
        }
    }

    public static class MethodResolver
    {
        public static String resolve(String className, String name) {
            for (MethodInfo info : methodList)
                if (info.getClassName().equals(className) && info.getOriginal().equals(name))
                    return info.getResolved();

            return null;
        }

        public static boolean has(String className, String name)
        {
            boolean has = false;
            for (MethodInfo info : methodList) {
                if (info.getClassName().equals(className) && info.getOriginal().equals(name)) {
                    has = true;
                    break;
                }
            }
            return has;
        }
    }
    public static class ParameterResolver
    {
        static Map<String,Class<?>[]> objectList = new HashMap<>();

        public static void register(String name,  Class<?>[] classes){
            objectList.put(name,classes);
        }

        public static Class<?>[] resolve(String name) {
            return objectList.get(name);
        }

        public static boolean has(String name)
        {
            boolean has = false;
           Class<?>[] classes = objectList.get(name);
           if (classes != null){
               has = true;
           }
            return has;
        }
    }

    public static void loadParameter() {}
}


================================================
FILE: app/src/main/java/com/my/televip/Clients/iMe.java
================================================
package com.my.televip.Clients;

import com.my.televip.obfuscate.struct.ClassInfo;
import com.my.televip.obfuscate.struct.FieldInfo;
import com.my.televip.obfuscate.struct.MethodInfo;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

public class iMe {
    private static final List<ClassInfo> classList = new ArrayList<>();
    private static final List<FieldInfo> fieldList = new ArrayList<>();
    private static final List<MethodInfo> methodList = new ArrayList<>();

    public static class ClassResolver
    {
        public static String resolve(String name) {
            for (ClassInfo info : classList)
                if (info.getOriginal().equals(name))
                    return info.getResolved();

            return null;
        }

        public static boolean has(String name)
        {
            boolean has = false;
            for (ClassInfo info : classList) {
                if (info.getOriginal().equals(name)) {
                    has = true;
                    break;
                }
            }
            return has;
        }
    }

    public static class FieldResolver
    {
        public static String resolve(String className, String name) {
            for (FieldInfo info : fieldList)
                if (info.getClassName().equals(className) && info.getOriginal().equals(name))
                    return info.getResolved();

            return null;
        }

        public static boolean has(String className, String name)
        {
            boolean has = false;
            for (FieldInfo info : fieldList) {
                if (info.getClassName().equals(className) && info.getOriginal().equals(name)) {
                    has = true;
                    break;
                }
            }
            return has;
        }
    }

    public static class MethodResolver
    {
        public static String resolve(String className, String name) {
            for (MethodInfo info : methodList)
                if (info.getClassName().equals(className) && info.getOriginal().equals(name))
                    return info.getResolved();

            return null;
        }

        public static boolean has(String className, String name)
        {
            boolean has = false;
            for (MethodInfo info : methodList) {
                if (info.getClassName().equals(className) && info.getOriginal().equals(name)) {
                    has = true;
                    break;
                }
            }
            return has;
        }
    }
    public static class ParameterResolver
    {
        static Map<String,Class<?>[]> objectList = new HashMap<>();

        public static void register(String name,  Class<?>[] classes){
            objectList.put(name,classes);
        }

        public static Class<?>[] resolve(String name) {
            return objectList.get(name);
        }

        public static boolean has(String name)
        {
            boolean has = false;
           Class<?>[] classes = objectList.get(name);
           if (classes != null){
               has = true;
           }
            return has;
        }
    }

    public static void loadParameter() {}
}


================================================
FILE: app/src/main/java/com/my/televip/Clients/iMeWeb.java
================================================
package com.my.televip.Clients;

import com.my.televip.obfuscate.struct.ClassInfo;
import com.my.televip.obfuscate.struct.FieldInfo;
import com.my.televip.obfuscate.struct.MethodInfo;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

public class iMeWeb {
    private static final List<ClassInfo> classList = new ArrayList<>();
    private static final List<FieldInfo> fieldList = new ArrayList<>();
    private static final List<MethodInfo> methodList = new ArrayList<>();


    public static class ClassResolver
    {
        public static String resolve(String name) {
            for (ClassInfo info : classList)
                if (info.getOriginal().equals(name))
                    return info.getResolved();

            return null;
        }

        public static boolean has(String name)
        {
            boolean has = false;
            for (ClassInfo info : classList) {
                if (info.getOriginal().equals(name)) {
                    has = true;
                    break;
                }
            }
            return has;
        }
    }

    public static class FieldResolver
    {
        public static String resolve(String className, String name) {
            for (FieldInfo info : fieldList)
                if (info.getClassName().equals(className) && info.getOriginal().equals(name))
                    return info.getResolved();

            return null;
        }

        public static boolean has(String className, String name)
        {
            boolean has = false;
            for (FieldInfo info : fieldList) {
                if (info.getClassName().equals(className) && info.getOriginal().equals(name)) {
                    has = true;
                    break;
                }
            }
            return has;
        }
    }

    public static class MethodResolver
    {
        public static String resolve(String className, String name) {
            for (MethodInfo info : methodList)
                if (info.getClassName().equals(className) && info.getOriginal().equals(name))
                    return info.getResolved();

            return null;
        }

        public static boolean has(String className, String name)
        {
            boolean has = false;
            for (MethodInfo info : methodList) {
                if (info.getClassName().equals(className) && info.getOriginal().equals(name)) {
                    has = true;
                    break;
                }
            }
            return has;
        }
    }
    public static class ParameterResolver
    {
        static Map<String,Class<?>[]> objectList = new HashMap<>();

        public static void register(String name,  Class<?>[] classes){
            objectList.put(name,classes);
        }

        public static Class<?>[] resolve(String name) {
            return objectList.get(name);
        }

        public static boolean has(String name)
        {
            boolean has = false;
           Class<?>[] classes = objectList.get(name);
           if (classes != null){
               has = true;
           }
            return has;
        }
    }

    public static void loadParameter() {}
}


================================================
FILE: app/src/main/java/com/my/televip/Configs/ConfigItem.java
================================================
package com.my.televip.Configs;

public class ConfigItem {

    public static final int HEADER = 0,
            SWITCH = 1,
            BUTTON = 2,
            DIVIDER = 3,
            INFO = 4;

    private final int type;
    private String key;
    private String text;
    private boolean value;
    private Runnable runnable;

    public ConfigItem(int type, String key, String text, boolean value, Runnable runnable) {
        this.type = type;
        this.key = key;
        this.text = text;
        this.value = value;
        this.runnable = runnable;
    }

    public ConfigItem(int type, String key, boolean value, Runnable runnable) {
        this.type = type;
        this.key = key;
        this.value = value;
        this.runnable = runnable;
    }

    public ConfigItem(int type, String key) {
        this.type = type;
        this.key = key;
    }

    public ConfigItem(int type) {
        this.type = type;
    }

    public int getType() { return type; }
    public String getKey() { return key; }
    public String getText() { return text; }

    public boolean isEnable() { return value; }
    public void setEnable(boolean value) {
        this.value = value;
        ConfigPreferences.putBoolean(key, value);
    }

    public Runnable getRunnable() { return runnable; }

    public void run() {
        if (runnable != null) runnable.run();
    }

}

================================================
FILE: app/src/main/java/com/my/televip/Configs/ConfigManager.java
================================================
package com.my.televip.Configs;

import android.content.Context;

import com.my.televip.ClientChecker;
import com.my.televip.Clients.Telegraph;
import com.my.televip.features.DisableChannelSwipeBack;
import com.my.televip.features.DisableNumberRounding;
import com.my.televip.features.DisableProfileSwipeBack;
import com.my.televip.features.DisableStories;
import com.my.televip.features.DownloadSpeed;
import com.my.televip.features.EnableSavingStories;
import com.my.televip.features.FixTLError;
import com.my.televip.features.GhostMode;
import com.my.televip.features.HideOnline;
import com.my.televip.features.HidePhone;
import com.my.televip.features.HidePinnedMessages;
import com.my.televip.features.HideProxySponsor;
import com.my.televip.features.HideUpdateApp;
import com.my.televip.features.PreventMedia;
import com.my.televip.features.RemovesContentSaving;
import com.my.televip.features.SaveEditsHistory;
import com.my.televip.features.SecretMediaSave;
import com.my.televip.features.ShowDeletedMessages;
import com.my.televip.features.TelePremium;
import com.my.televip.features.otherFeatures.CopyNameHook;
import com.my.televip.features.otherFeatures.FeatureInitializer;
import com.my.televip.language.Keys;
import com.my.televip.language.Translator;
import com.my.televip.logging.Logger;
import com.my.televip.virtuals.ui.Cells.ChatMessageCell;

import java.util.ArrayList;
import java.util.List;


public class ConfigManager {
    

    private static final List<ConfigItem> configs = new ArrayList<>();


    // GhostMode
    public static ConfigItem ghostModeSettings;
    public static ConfigItem hideSeen;
    public static ConfigItem markReadAfterSend;
    public static ConfigItem hideTyping;
    public static ConfigItem hideStoryView;
    public static ConfigItem hidePhone;
    public static ConfigItem hideOnline;
    public static ConfigItem onlineInfo;

    public static ConfigItem shadows;

    // Stories
    public static ConfigItem stories;
    public static ConfigItem disableStories;

    // Messages
    public static ConfigItem messages;
    public static ConfigItem showDeletedMessages;
    public static ConfigItem showMessageId;
    public static ConfigItem saveEditsHistory;

    // Connections
    public static ConfigItem connections;
    public static ConfigItem downloadSpeed;

    // Media
    public static ConfigItem media;
    public static ConfigItem secretMediaSave;
    public static ConfigItem preventMedia;
    public static ConfigItem enableSavingStories;

    //UI
    public static ConfigItem ui;
    public static ConfigItem hidePinnedMessages;
    public static ConfigItem disableChannelSwipeBack;
    public static ConfigItem disableProfileSwipeBack;
    public static ConfigItem hideProxySponsor;

    // Other Features
    public static ConfigItem otherFeatures;
    public static ConfigItem removesContentSaving;
    public static ConfigItem telegramPremium;
    public static ConfigItem disableNumberRounding;
    public static ConfigItem hideUpdateApp;
    public static ConfigItem fixTLError;

    // Button
    public static ConfigItem btnChannel;
    public static ConfigItem btnRestartApp;

    public static void loadAndRead(Context context){
        ConfigPreferences.init();
        load(context);
        readFeature(context);
    }

    public static void load(Context context) {

        configs.clear();

        // GhostMode
        ghostModeSettings = new ConfigItem(ConfigItem.HEADER, Keys.GhostModeSettings);
        configs.add(ghostModeSettings);

        hideSeen = new ConfigItem(ConfigItem.SWITCH, Keys.HideSeen, ConfigPreferences.getBoolean(Keys.HideSeen), GhostMode::init);
        configs.add(hideSeen);

        markReadAfterSend = new ConfigItem(ConfigItem.SWITCH, Keys.MarkReadAfterSend, ConfigPreferences.getBoolean(Keys.MarkReadAfterSend), GhostMode::init);
        configs.add(markReadAfterSend);

        hideTyping = new ConfigItem(ConfigItem.SWITCH, Keys.HideTyping, ConfigPreferences.getBoolean(Keys.HideTyping), GhostMode::init);
        configs.add(hideTyping);

        hideStoryView = new ConfigItem(ConfigItem.SWITCH, Keys.HideStoryView, ConfigPreferences.getBoolean(Keys.HideStoryView), GhostMode::init);
        configs.add(hideStoryView);

        hidePhone = new ConfigItem(ConfigItem.SWITCH, Keys.HidePhone, Translator.get(Keys.RestartRequired), ConfigPreferences.getBoolean(Keys.HidePhone), HidePhone::init);
        configs.add(hidePhone);

        hideOnline = new ConfigItem(ConfigItem.SWITCH, Keys.HideOnline, Translator.get(Keys.RestartRequired), ConfigPreferences.getBoolean(Keys.HideOnline), () -> {
            GhostMode.init();
            HideOnline.init();
        });
        configs.add(hideOnline);

        onlineInfo = new ConfigItem(ConfigItem.INFO, Keys.OfflineVisibilityInfo);
        configs.add(onlineInfo);

        shadows = new ConfigItem(ConfigItem.DIVIDER);
        configs.add(shadows);

        // Stories
        stories = new ConfigItem(ConfigItem.HEADER, Keys.StoriesSettings);
        configs.add(stories);

        disableStories = new ConfigItem(ConfigItem.SWITCH, Keys.DisableStories, Translator.get(Keys.RestartRequired), ConfigPreferences.getBoolean(Keys.DisableStories), DisableStories::init);
        configs.add(disableStories);

        configs.add(shadows);

        // Messages
        messages = new ConfigItem(ConfigItem.HEADER, Keys.MessagesSettings);
        configs.add(messages);

        showDeletedMessages = new ConfigItem(ConfigItem.SWITCH, Keys.ShowDeletedMessages, ConfigPreferences.getBoolean(Keys.ShowDeletedMessages), ShowDeletedMessages::initProcessing);
        configs.add(showDeletedMessages);

        if (!ClientChecker.check(ClientChecker.ClientType.NagramX)) {
            showMessageId = new ConfigItem(ConfigItem.SWITCH, Keys.ShowMessageID, ConfigPreferences.getBoolean(Keys.ShowMessageID), ChatMessageCell::init);
            configs.add(showMessageId);
        }

        saveEditsHistory = new ConfigItem(ConfigItem.SWITCH, Keys.SaveEditsHistory, ConfigPreferences.getBoolean(Keys.SaveEditsHistory), () -> SaveEditsHistory.init(context));
        configs.add(saveEditsHistory);

        configs.add(shadows);

        // Connections
        connections = new ConfigItem(ConfigItem.HEADER, Keys.ConnectionsSettings);
        configs.add(connections);

        downloadSpeed = new ConfigItem(ConfigItem.SWITCH, Keys.DownloadSpeed, ConfigPreferences.getBoolean(Keys.DownloadSpeed), DownloadSpeed::init);
        configs.add(downloadSpeed);

        configs.add(shadows);

        // Media
        media = new ConfigItem(ConfigItem.HEADER, Keys.MediaSettings);
        configs.add(media);

        secretMediaSave = new ConfigItem(ConfigItem.SWITCH, Keys.SecretMediaSave, ConfigPreferences.getBoolean(Keys.SecretMediaSave), SecretMediaSave::init);
        configs.add(secretMediaSave);

        preventMedia = new ConfigItem(ConfigItem.SWITCH, Keys.PreventMedia, ConfigPreferences.getBoolean(Keys.PreventMedia), PreventMedia::init);
        configs.add(preventMedia);

        enableSavingStories = new ConfigItem(ConfigItem.SWITCH, Keys.EnableSavingStories, ConfigPreferences.getBoolean(Keys.EnableSavingStories), EnableSavingStories::init);
        configs.add(enableSavingStories);

        configs.add(shadows);

        // UI
        ui = new ConfigItem(ConfigItem.HEADER, Keys.UiSettings);
        configs.add(ui);

        hidePinnedMessages = new ConfigItem(ConfigItem.SWITCH, Keys.HidePinnedMessages, ConfigPreferences.getBoolean(Keys.HidePinnedMessages), HidePinnedMessages::init);
        configs.add(hidePinnedMessages);

        disableChannelSwipeBack = new ConfigItem(ConfigItem.SWITCH, Keys.DisableChannelSwipeBack, ConfigPreferences.getBoolean(Keys.DisableChannelSwipeBack), DisableChannelSwipeBack::init);
        configs.add(disableChannelSwipeBack);

        disableProfileSwipeBack = new ConfigItem(ConfigItem.SWITCH, Keys.DisableProfileSwipeBack, ConfigPreferences.getBoolean(Keys.DisableProfileSwipeBack), DisableProfileSwipeBack::init);
        configs.add(disableProfileSwipeBack);

        hideProxySponsor = new ConfigItem(ConfigItem.SWITCH, Keys.HideProxySponsor, Translator.get(Keys.RestartRequired), ConfigPreferences.getBoolean(Keys.HideProxySponsor), GhostMode::init);
        configs.add(hideProxySponsor);

        configs.add(shadows);

        // Other Features
        otherFeatures = new ConfigItem(ConfigItem.HEADER, Keys.OtherFeaturesSettings);
        configs.add(otherFeatures);

        removesContentSaving = new ConfigItem(ConfigItem.SWITCH, Keys.RemovesContentSaving, ConfigPreferences.getBoolean(Keys.RemovesContentSaving), RemovesContentSaving::init);
        configs.add(removesContentSaving);

        telegramPremium = new ConfigItem(ConfigItem.SWITCH, Keys.TelegramPremium, ConfigPreferences.getBoolean(Keys.TelegramPremium), TelePremium::init);
        configs.add(telegramPremium);

        if (!ClientChecker.check(ClientChecker.ClientType.Telegraph)) {
            disableNumberRounding = new ConfigItem(ConfigItem.SWITCH, Keys.DisableNumberRounding, "5.3K -> 5300", ConfigPreferences.getBoolean(Keys.DisableNumberRounding), DisableNumberRounding::init);
            hideUpdateApp = new ConfigItem(ConfigItem.SWITCH, Keys.HideUpdateApp, Translator.get(Keys.RestartRequired), ConfigPreferences.getBoolean(Keys.HideUpdateApp), HideUpdateApp::init);
            fixTLError = new ConfigItem(ConfigItem.SWITCH, Keys.FixTLError, ConfigPreferences.getBoolean(Keys.FixTLError), FixTLError::init);
            configs.add(disableNumberRounding);
            configs.add(hideUpdateApp);
            configs.add(fixTLError);
        }

        configs.add(shadows);

        btnChannel = new ConfigItem(ConfigItem.BUTTON, Keys.DeveloperChannel);
        configs.add(btnChannel);

        configs.add(shadows);

        btnRestartApp = new ConfigItem(ConfigItem.BUTTON, Keys.RestartApp);
        configs.add(btnRestartApp);

        configs.add(shadows);

        if (hideProxySponsor.isEnable()) HideProxySponsor.removePromoDialog();

        if ((showDeletedMessages.isEnable() || showMessageId.isEnable()) && !ChatMessageCell.isEnable) ChatMessageCell.init();
    }

    public static List<ConfigItem> getItems(Context context) {
        load(context);

        List<ConfigItem> items = new ArrayList<>();

        for (ConfigItem configItem : configs) {
            if (configItem == null) continue;
            items.add(new ConfigItem(configItem.getType(), configItem.getKey(), configItem.getText(), configItem.isEnable(), configItem.getRunnable()));
        }
        return items;
    }

    public static void readFeature(Context context) {
        try {
            for (ConfigItem item : configs) {
                if (item == null) continue;
                if (item.getType() != ConfigItem.SWITCH) continue;
                if (item.isEnable()) item.run();
            }

            if (!ClientChecker.check(ClientChecker.ClientType.Telegraph)) {
                FeatureInitializer.init(context);
                CopyNameHook.init(context);
            } else {
                Telegraph.removeAd();
            }

        } catch (Throwable e) {
            Logger.e(e);
        }
    }

    public static boolean isGhostMode(){
        return hideSeen.isEnable() ||
                hideStoryView.isEnable() ||
                hideTyping.isEnable() ||
                hideOnline.isEnable() ||
                markReadAfterSend.isEnable() ||
                hideProxySponsor.isEnable();

    }

}


================================================
FILE: app/src/main/java/com/my/televip/Configs/ConfigPreferences.java
================================================
package com.my.televip.Configs;

import android.app.Activity;
import android.content.SharedPreferences;

import com.my.televip.Class.ClassLoad;
import com.my.televip.logging.Logger;

public class ConfigPreferences {

    private static SharedPreferences sharedPreferences;


    public static void init(){
        sharedPreferences = ClassLoad.getApplicationContext().getSharedPreferences("TeleVip", Activity.MODE_PRIVATE);
    }

    public static boolean getBoolean(String key) {
        try {
            return sharedPreferences.getBoolean(key, false);
        } catch (ClassCastException e) {
            sharedPreferences.edit().remove(key).apply();
            return false;
        }
    }

    public static void putBoolean(String key, boolean b) {
        try {
            sharedPreferences.edit().putBoolean(key, b).apply();
        } catch (ClassCastException e) {
            sharedPreferences.edit().remove(key).apply();
        }
    }

    public static String getString(String key) {
        try {
            return sharedPreferences.getString(key, null);
        } catch (ClassCastException e) {

            sharedPreferences.edit().remove(key).apply();
            return null;
        }
    }

    public static void putString(String key, String v) {
        try {
            sharedPreferences.edit().putString(key, v).apply();
        } catch (ClassCastException e) {
            sharedPreferences.edit().remove(key).apply();
        }
    }

    public static void remove(String key){
        try {
            sharedPreferences.edit().remove(key).apply();
        } catch (Throwable t){
            Logger.e(t);
        }
    }

}


================================================
FILE: app/src/main/java/com/my/televip/Database/MessageDatabase.java
================================================
package com.my.televip.Database;

import android.content.ContentValues;
import android.content.Context;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteOpenHelper;

import com.my.televip.logging.Logger;

import java.io.File;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Locale;

public class MessageDatabase extends SQLiteOpenHelper {

    private final String TABLE_MESSAGES = "messages";
    private final String COLUMN_ID = "id";
    private final String COLUMN_MSG_ID = "msg_id";
    private final String COLUMN_MESSAGE = "message";
    private final String COLUMN_MESSAGE_EDITED = "message_Edited";
    private final String COLUMN_MSG_COUNT = "msg_count";

    public MessageDatabase(Context context) {
        super(context, getDataBasePath(context), null, 1);
    }

    public static String getDataBasePath(Context context) {
        File appDir = new File(context.getDataDir(), "TeleVip");
        if (!appDir.exists()) {
            appDir.mkdirs();
        }
        return new File(appDir, "SaveMessages.db").getAbsolutePath();
    }

    @Override
    public void onCreate(SQLiteDatabase db) {
        String TABLE_CREATE = "CREATE TABLE " + TABLE_MESSAGES + " (" +
                COLUMN_ID + " LONG, " +
                COLUMN_MSG_ID + " INTEGER, " +
                COLUMN_MSG_COUNT + " INTEGER, " +
                COLUMN_MESSAGE + " TEXT, " +
                COLUMN_MESSAGE_EDITED + " TEXT " +
                ");";
        db.execSQL(TABLE_CREATE);
    }

    @Override
    public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
        db.execSQL("DROP TABLE IF EXISTS " + TABLE_MESSAGES);
        onCreate(db);
    }

    public void addMessage(long id, int msgId, String message) {
        try {
            SQLiteDatabase database = getWritableDatabase();
            if (!searchMessage(id, msgId, message)) {
                ContentValues values = new ContentValues();
                values.put(COLUMN_ID, id);
                values.put(COLUMN_MSG_ID, msgId);
                values.put(COLUMN_MESSAGE, message);

                int maxMsgCount = getMaxMessageCount(id, msgId);
                values.put(COLUMN_MSG_COUNT, maxMsgCount + 1);

                String formattedDate = new SimpleDateFormat("yyyy/MM/dd HH:mm:ss", Locale.US).format(new Date());
                values.put(COLUMN_MESSAGE_EDITED, formattedDate);

                database.insert(TABLE_MESSAGES, null, values);
            }
        } catch (Throwable t) {
            Logger.e(t);
        }
    }
    public boolean searchMessage(long id, int msgId, String message) {
        if (message == null) return false;

        try {
            SQLiteDatabase database = getReadableDatabase();
            String query = "SELECT * FROM " + TABLE_MESSAGES +
                    " WHERE " + COLUMN_ID + " = ? AND " +
                    COLUMN_MSG_ID + " = ? AND " +
                    COLUMN_MESSAGE + " = ?";
            Cursor cursor = database.rawQuery(query, new String[]{
                    String.valueOf(id),
                    String.valueOf(msgId),
                    message
            });
            boolean exists = cursor.getCount() > 0;
            cursor.close();
            return exists;
        } catch (Throwable t) {
            Logger.e(t);
        }
        return false;
    }

    public boolean searchMessage(long id, int msgId) {
        try {
            SQLiteDatabase database = getReadableDatabase();
            String query = "SELECT * FROM " + TABLE_MESSAGES +
                    " WHERE " + COLUMN_ID + " = ? AND " +
                    COLUMN_MSG_ID + " = ?";
            Cursor cursor = database.rawQuery(query, new String[]{
                    String.valueOf(id),
                    String.valueOf(msgId)
            });
            boolean exists = cursor.getCount() > 0;
            cursor.close();
            return exists;
        } catch (Throwable t) {
            Logger.e(t);
        }
        return false;
    }


    public String getMessage(long id, int msgId) {
        try {
            SQLiteDatabase database = getReadableDatabase();
            String query = "SELECT " + COLUMN_MESSAGE + " FROM " + TABLE_MESSAGES +
                    " WHERE " + COLUMN_ID + " = ? AND " + COLUMN_MSG_ID + " = ?";
            Cursor cursor = database.rawQuery(query, new String[]{String.valueOf(id), String.valueOf(msgId)});
            String message = null;
            if (cursor.moveToFirst()) {
                message = cursor.getString(cursor.getColumnIndexOrThrow(COLUMN_MESSAGE));
            }
            cursor.close();
            return message;
        } catch (Throwable t) {
            Logger.e(t);
        }
        return null;
    }

    public String getMessage(long id, int msgId, int msgCount) {
        try {
            SQLiteDatabase database = getReadableDatabase();
            String query = "SELECT " + COLUMN_MESSAGE + " FROM " + TABLE_MESSAGES +
                    " WHERE " + COLUMN_ID + " = ? AND " + COLUMN_MSG_ID + " = ? AND " + COLUMN_MSG_COUNT + " = ?";
            Cursor cursor = database.rawQuery(query, new String[]{String.valueOf(id), String.valueOf(msgId), String.valueOf(msgCount)});
            String message = null;
            if (cursor.moveToFirst()) {
                message = cursor.getString(cursor.getColumnIndexOrThrow(COLUMN_MESSAGE));
            }
            cursor.close();
            return message;
        } catch (Throwable t) {
            Logger.e(t);
        }
        return null;
    }

    public String getMessageEdited(long id, int msgId, int msgCount) {
        try {
            SQLiteDatabase database = getReadableDatabase();
            String query = "SELECT " + COLUMN_MESSAGE_EDITED + " FROM " + TABLE_MESSAGES +
                    " WHERE " + COLUMN_ID + " = ? AND " + COLUMN_MSG_ID + " = ? AND " + COLUMN_MSG_COUNT + " = ?";
            Cursor cursor = database.rawQuery(query, new String[]{String.valueOf(id), String.valueOf(msgId), String.valueOf(msgCount)});
            String messageEdited = null;
            if (cursor.moveToFirst()) {
                messageEdited = cursor.getString(cursor.getColumnIndexOrThrow(COLUMN_MESSAGE_EDITED));
            }
            cursor.close();
            return messageEdited;
        } catch (Throwable t) {
            Logger.e(t);
        }
        return null;
    }

    public int getMaxMessageCount(long id, int msgId) {
        int maxCount = 0;
        try {
            SQLiteDatabase database = getReadableDatabase();
            String query = "SELECT MAX(" + COLUMN_MSG_COUNT + ") as max_count FROM " + TABLE_MESSAGES +
                    " WHERE " + COLUMN_ID + " = ? AND " + COLUMN_MSG_ID + " = ?";
            Cursor cursor = database.rawQuery(query, new String[]{String.valueOf(id), String.valueOf(msgId)});
            if (cursor.moveToFirst()) {
                maxCount = cursor.getInt(cursor.getColumnIndexOrThrow("max_count"));
            }
            cursor.close();
        } catch (Throwable t) {
            Logger.e(t);
        }
        return maxCount;
    }
}

================================================
FILE: app/src/main/java/com/my/televip/Drawable/ArrowDrawable.java
================================================
package com.my.televip.Drawable;

import static android.view.View.LAYOUT_DIRECTION_RTL;

import android.graphics.Canvas;
import android.graphics.ColorFilter;
import android.graphics.Paint;
import android.graphics.Path;
import android.graphics.drawable.Drawable;

import com.my.televip.virtuals.Theme;

public class ArrowDrawable extends Drawable {

    private final Paint paint;
    private final Path path;

    public ArrowDrawable() {
        paint = new Paint(Paint.ANTI_ALIAS_FLAG);
        paint.setStyle(Paint.Style.FILL);
        paint.setColor(Theme.getArrowDrawableColor());

        path = new Path();
        path.moveTo(20f, 11f);
        path.lineTo(7.8f, 11f);
        path.lineTo(13.4f, 5.4f);
        path.lineTo(12f, 4f);
        path.lineTo(4f, 12f);
        path.lineTo(12f, 20f);
        path.lineTo(13.4f, 18.6f);
        path.lineTo(7.8f, 13f);
        path.lineTo(20f, 13f);
        path.lineTo(20f, 11f);
        path.close();
    }

    @Override
    public void draw(Canvas canvas) {
        float scaleX = getBounds().width() / 24f;
        float scaleY = getBounds().height() / 24f;
        canvas.save();

        // دعم autoMirrored عند RTL
        if ((getLayoutDirection() == LAYOUT_DIRECTION_RTL)) {
            canvas.translate(getBounds().width(), 0);
            canvas.scale(-scaleX, scaleY);
        } else {
            canvas.scale(scaleX, scaleY);
        }

        canvas.drawPath(path, paint);
        canvas.restore();
    }

    @Override
    public void setAlpha(int alpha) {
        paint.setAlpha(alpha);
        invalidateSelf();
    }

    @Override
    public void setColorFilter(ColorFilter colorFilter) {
        paint.setColorFilter(colorFilter);
        invalidateSelf();
    }

    @Override
    public int getOpacity() {
        return paint.getAlpha() == 255 ? android.graphics.PixelFormat.OPAQUE : android.graphics.PixelFormat.TRANSLUCENT;
    }
}

================================================
FILE: app/src/main/java/com/my/televip/Drawable/GhostDrawable.java
================================================
package com.my.televip.Drawable;

import static android.view.View.LAYOUT_DIRECTION_RTL;

import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.ColorFilter;
import android.graphics.Paint;
import android.graphics.Path;
import android.graphics.PixelFormat;
import android.graphics.drawable.Drawable;

public class GhostDrawable extends Drawable {

    private final Paint paint;
    private final Path bodyPath;
    private final Path eyeLeft;
    private final Path eyeRight;
    private final Paint eyePaint;

    public GhostDrawable() {
        paint = new Paint(Paint.ANTI_ALIAS_FLAG);
        paint.setStyle(Paint.Style.FILL);
        paint.setColor(Color.WHITE);

        // جسم الشبح
        bodyPath = new Path();
        bodyPath.moveTo(12f, 1.83f);
        bodyPath.cubicTo(6.94f, 1.83f, 2.84f, 5.96f, 2.84f, 11.06f);
        bodyPath.lineTo(2.84f, 20.82f);
        bodyPath.cubicTo(2.84f, 21.37f, 3.4f, 21.71f, 3.88f, 21.47f);
        bodyPath.lineTo(6.2f, 20.3f);
        bodyPath.cubicTo(7.77f, 19.51f, 9.67f, 19.97f, 10.73f, 21.38f);
        bodyPath.cubicTo(11.44f, 22.34f, 12.83f, 22.44f, 13.68f, 21.58f);
        bodyPath.lineTo(14.05f, 21.21f);
        bodyPath.cubicTo(15.37f, 19.88f, 17.43f, 19.63f, 19.05f, 20.6f);
        bodyPath.lineTo(20.35f, 21.39f);
        bodyPath.cubicTo(20.7f, 21.59f, 21.15f, 21.35f, 21.15f, 20.92f);
        bodyPath.lineTo(21.15f, 11.06f);
        bodyPath.cubicTo(21.15f, 5.96f, 17.05f, 1.83f, 12f, 1.83f);
        bodyPath.close();

        // العين اليمنى
        eyeRight = new Path();
        eyeRight.addCircle(15.5f, 11f, 1.5f, Path.Direction.CW);

        // العين اليسرى
        eyeLeft = new Path();
        eyeLeft.addCircle(8.5f, 11f, 1.5f, Path.Direction.CW);

        eyePaint = new Paint(Paint.ANTI_ALIAS_FLAG);
        eyePaint.setStyle(Paint.Style.FILL);
        eyePaint.setColor(0xFF000000); // أسود (تقدر تغيّره)
    }

    @Override
    public void draw(Canvas canvas) {
        float scaleX = getBounds().width() / 24f;
        float scaleY = getBounds().height() / 24f;

        canvas.save();

        if (getLayoutDirection() == LAYOUT_DIRECTION_RTL) {
            canvas.translate(getBounds().width(), 0);
            canvas.scale(-scaleX, scaleY);
        } else {
            canvas.scale(scaleX, scaleY);
        }

        // رسم الجسم
        canvas.drawPath(bodyPath, paint);

        // رسم العيون
        canvas.drawPath(eyeLeft, eyePaint);
        canvas.drawPath(eyeRight, eyePaint);

        canvas.restore();
    }

    @Override
    public void setAlpha(int alpha) {
        paint.setAlpha(alpha);
        invalidateSelf();
    }

    @Override
    public void setColorFilter(ColorFilter colorFilter) {
        paint.setColorFilter(colorFilter);
        invalidateSelf();
    }

    @Override
    public int getOpacity() {
        return paint.getAlpha() == 255 ? PixelFormat.OPAQUE : PixelFormat.TRANSLUCENT;
    }
}

================================================
FILE: app/src/main/java/com/my/televip/MainHook.java
================================================
package com.my.televip;


import android.app.Activity;
import android.os.Bundle;

import com.my.televip.Class.ClassLoad;
import com.my.televip.Class.ClassNames;
import com.my.televip.base.AbstractMethodHook;
import com.my.televip.hooks.HMethod;

import de.robv.android.xposed.IXposedHookLoadPackage;
import de.robv.android.xposed.IXposedHookZygoteInit;
import de.robv.android.xposed.callbacks.XC_LoadPackage;

public class MainHook implements IXposedHookLoadPackage, IXposedHookZygoteInit {

    private boolean isStart;

    @Override
    public void initZygote(StartupParam startupParam){ Utils.modulePath = startupParam.modulePath; }

    @Override
    public void handleLoadPackage(final XC_LoadPackage.LoadPackageParam lpparam) {
        if (!ClientChecker.ClientType.containsPackage(lpparam.packageName)) {
            return;
        }
        Utils.pkgName = lpparam.packageName;
        Utils.classLoader = lpparam.classLoader;


        HMethod.hookMethod(ClassLoad.getClass(ClassNames.LAUNCH_ACTIVITY), "onCreate", Bundle.class, new AbstractMethodHook() {
            @Override
            protected void beforeMethod(MethodHookParam param) {
                Activity launchActivity = (Activity) param.thisObject;
                if (!isStart) {
                    TeleVip.startHook(launchActivity);
                    isStart = true;
                }
            }
        });
    }


}



================================================
FILE: app/src/main/java/com/my/televip/TeleVip.java
================================================
package com.my.televip;

import static com.my.televip.obfuscate.AutomationResolver.resolverRegistry;

import android.content.Context;

import com.my.televip.Configs.ConfigManager;
import com.my.televip.application.AndroidUtilities;
import com.my.televip.application.ApplicationLoaderHook;
import com.my.televip.dex.DexInjector;
import com.my.televip.language.Translator;
import com.my.televip.logging.Logger;
import com.my.televip.settings.SettingsManager;
import com.my.televip.settings.controller.SettingsController;
import com.my.televip.virtuals.TeleVip.Bridge.Bridge;

public class TeleVip {
    
    public static void startHook(Context context) {
        try {
            resolverRegistry.loadParameter();
            Translator.init();
            AndroidUtilities.init(context);
            DexInjector.injectDex(Utils.classLoader);

            SettingsController settingsController = new SettingsController(context);

            Bridge.init(context, settingsController);
            ConfigManager.loadAndRead(context);
            SettingsManager.init(settingsController);

            ApplicationLoaderHook.init();

        } catch (Throwable e){
            Logger.e(e);
        }

    }

}


================================================
FILE: app/src/main/java/com/my/televip/Utils.java
================================================
package com.my.televip;

import java.util.ArrayList;

public class Utils {
    public static String pkgName = null;
    public static String modulePath = null;
    public static ClassLoader classLoader = null;
    public static final String issue = "Your Telegram client may be an incompatible version with TeleVip. Please download the latest version that is compatible with TeleVip.";


    public static <T> ArrayList<T> castList(Object obj, Class<T> clazz)
    {
        ArrayList<T> result = new ArrayList<>();
        if (obj instanceof ArrayList<?>)
        {
            for (Object o : (ArrayList<?>) obj)
                result.add(clazz.cast(o));

            return result;
        }
        return result;
    }

}


================================================
FILE: app/src/main/java/com/my/televip/application/AndroidUtilities.java
================================================
package com.my.televip.application;

import android.annotation.SuppressLint;
import android.content.Context;
import android.os.Handler;

import com.my.televip.Class.ClassLoad;
import com.my.televip.logging.Logger;

public class AndroidUtilities {

    private static float density = 1;

    public static volatile Handler applicationHandler;

    public static void runOnUIThread(Runnable runnable) {
        if (applicationHandler == null) {
            return;
        }
        applicationHandler.post(runnable);

    }

    public static void init(Context context) {
        try {
            applicationHandler = new Handler(ClassLoad.getApplicationContext().getMainLooper());
            density = context.getResources().getDisplayMetrics().density;
        } catch (Throwable e) {
            Logger.e(e);
        }
    }

    public static int dp(float value) {
        if (value == 0) {
            return 0;
        }
        return (int) Math.ceil(density * value);
    }

    public static int getStatusBarHeight(Context context) {
        @SuppressLint({"InternalInsetResource", "DiscouragedApi"}) int resourceId = context.getResources().getIdentifier("status_bar_height", "dimen", "android");
        return resourceId > 0 ? context.getResources().getDimensionPixelSize(resourceId) : 0;
    }


}


================================================
FILE: app/src/main/java/com/my/televip/application/ApplicationLoaderHook.java
================================================
package com.my.televip.application;

import android.app.Application;
import android.content.Context;

import com.my.televip.Class.ClassLoad;
import com.my.televip.Class.ClassNames;
import com.my.televip.Utils;
import com.my.televip.hooks.HMethod;
import com.my.televip.logging.Logger;
import com.my.televip.obfuscate.AutomationResolver;

import java.io.File;

import de.robv.android.xposed.XC_MethodHook;

public class ApplicationLoaderHook {
    private static boolean initialized = false;

    public static void init() {
        // our minSdk is 21 so there is no need to wait for MultiDex to initialize
        if (initialized)
            return;


        if (ClassLoad.getClass(ClassNames.APPLICATION_LOADER) == null) { return; }

        HMethod.hookMethod(ClassLoad.getClass(ClassNames.APPLICATION_LOADER), AutomationResolver.resolve("ApplicationLoader", "onCreate", AutomationResolver.ResolverType.Method), new XC_MethodHook(51) {
            @Override
            protected void beforeHookedMethod(MethodHookParam param) {
                Context app = (Application) param.thisObject;

                try {
                    app = app.getApplicationContext();
                } catch (Throwable ignored) {}

                if (app == null)
                {
                    Logger.w("ApplicationLoader is wrong, " + Utils.issue);
                    return;
                }

                File dir = new File(app.getFilesDir().getParentFile(), "TeleVip");
                if (!dir.exists())
                    if (!dir.mkdir())
                    {
                        Logger.w("Cannot create " + dir.getAbsolutePath() + " dir, please create by yourself!");
                    }

            }
        });
        initialized = true;
    }
}

================================================
FILE: app/src/main/java/com/my/televip/audio.java
================================================
package com.my.televip;

import android.media.AudioAttributes;
import android.media.AudioManager;
import android.media.MediaPlayer;

import java.io.IOException;

public class audio {

    public static boolean playing = false;
    private static MediaPlayer mediaPlayer;

    public static void init(){
            mediaPlayer = new MediaPlayer();

            mediaPlayer.setAudioStreamType(AudioManager.STREAM_MUSIC);
            AudioAttributes audioAttributes = new AudioAttributes.Builder()
                    .setUsage(AudioAttributes.USAGE_MEDIA)
                    .setContentType(AudioAttributes.CONTENT_TYPE_MUSIC)
                    .build();

            mediaPlayer.setAudioAttributes(audioAttributes);
    }

    public static void start(){
        int num = (int) (Math.random() * 3);
        String audioUrl;
        if (num == 0) {
            audioUrl = "https://qurango.net/radio/abdulbasit_abdulsamad_mojawwad";
        } else if (num == 1) {
            audioUrl = "https://qurango.net/radio/yasser_aldosari";
        } else {
            audioUrl = "https://backup.qurango.net/radio/maher";
        }

        try {
            mediaPlayer.reset();
            mediaPlayer.setDataSource(audioUrl);
            mediaPlayer.prepareAsync();
            mediaPlayer.setOnPreparedListener(mp -> {
                mediaPlayer.start();
                playing = true;
            });
        } catch (IllegalArgumentException |
                 IllegalStateException |
                 IOException e) {
            playing = false;
            init();
        }
    }

    public static void stop() {
        if (mediaPlayer != null && mediaPlayer.isPlaying()) {
            mediaPlayer.stop();
        }

        if (mediaPlayer != null) {
            mediaPlayer.release();
            init();
        }
        playing = false;
    }

}


================================================
FILE: app/src/main/java/com/my/televip/base/AbstractMethodHook.java
================================================
package com.my.televip.base;

import com.my.televip.logging.Logger;

import de.robv.android.xposed.XC_MethodHook;

public abstract class AbstractMethodHook extends XC_MethodHook {
    protected void beforeMethod(MethodHookParam param) throws Throwable {

    }

    protected void afterMethod(MethodHookParam param) throws Throwable {

    }

    @Override
    protected void beforeHookedMethod(MethodHookParam param) throws Throwable {
        super.beforeHookedMethod(param);
        try {
            beforeMethod(param);
        } catch (Throwable throwable) {
            Logger.e(throwable);
        }
    }

    @Override
    protected void afterHookedMethod(MethodHookParam param) throws Throwable {
        super.afterHookedMethod(param);
        try {
            afterMethod(param);
        } catch (Throwable throwable) {
            Logger.e(throwable);
        }
    }
}


================================================
FILE: app/src/main/java/com/my/televip/dex/DexInjector.java
================================================
package com.my.televip.dex;

import com.my.televip.logging.Logger;

import java.nio.ByteBuffer;

import dalvik.system.InMemoryDexClassLoader;

public class DexInjector {

    public static ClassLoader classLoader;

    public static void injectDex(ClassLoader classLoader) {
        try {
            byte[] dexBytes = DexHolder.DEX_BYTES;

            ByteBuffer buffer = ByteBuffer.wrap(dexBytes);

            DexInjector.classLoader = new InMemoryDexClassLoader(
                    buffer,
                    classLoader
            );
        } catch (Throwable e){
            Logger.e(e);
        }

    }

}


================================================
FILE: app/src/main/java/com/my/televip/features/DisableChannelSwipeBack.java
================================================
package com.my.televip.features;

import android.view.MotionEvent;

import com.my.televip.Class.ClassNames;
import com.my.televip.Class.ClassLoad;
import com.my.televip.Configs.ConfigManager;
import com.my.televip.base.AbstractMethodHook;
import com.my.televip.hooks.HMethod;
import com.my.televip.logging.Logger;
import com.my.televip.obfuscate.AutomationResolver;

public class DisableChannelSwipeBack {
    public static boolean isEnable = false;

    public static void init() {
        try {
            if (!isEnable) {
                isEnable = true;
                if (ClassLoad.getClass(ClassNames.CHAT_ACTIVITY) != null) {
                    HMethod.hookMethod(ClassLoad.getClass(ClassNames.CHAT_ACTIVITY), AutomationResolver.resolve("ChatActivity", "isSwipeBackEnabled", AutomationResolver.ResolverType.Method), AutomationResolver.merge(AutomationResolver.resolveObject("isSwipeBackEnabled", new Class[]{MotionEvent.class}), new AbstractMethodHook() {
                        @Override
                        protected void beforeMethod(MethodHookParam param) {
                            if (ConfigManager.disableChannelSwipeBack.isEnable()) {
                                param.setResult(false);
                            }
                        }
                    }));
                }
            }
        } catch (Throwable e){
            Logger.e(e);
        }
    }

}


================================================
FILE: app/src/main/java/com/my/televip/features/DisableNumberRounding.java
================================================
package com.my.televip.features;

import com.my.televip.Class.ClassNames;
import com.my.televip.Class.ClassLoad;
import com.my.televip.Configs.ConfigManager;
import com.my.televip.base.AbstractMethodHook;
import com.my.televip.hooks.HMethod;
import com.my.televip.logging.Logger;
import com.my.televip.obfuscate.AutomationResolver;

public class DisableNumberRounding {

    public static boolean isEnable = false;

    public static void init() {
        try {
            if (!isEnable) {
                isEnable = true;

                if (ClassLoad.getClass(ClassNames.LOCALE_CONTROLLER) != null) {
                    HMethod.hookMethod(ClassLoad.getClass(ClassNames.LOCALE_CONTROLLER), AutomationResolver.resolve("LocaleController", "formatShortNumber", AutomationResolver.ResolverType.Method), AutomationResolver.merge(AutomationResolver.resolveObject("formatShortNumber", new Class[]{int.class, int[].class}),
                            new AbstractMethodHook() {
                                @Override
                                protected void beforeMethod(MethodHookParam param) {
                                    if (ConfigManager.disableNumberRounding.isEnable()) {
                                        int[] rounded = (int[]) param.args[1];
                                        int number = (int) param.args[0];
                                        if (rounded != null) {
                                            rounded[0] = number;
                                        }
                                        param.setResult(String.valueOf(number));
                                    }
                                }
                            }));
                }
            }
        } catch (Throwable t) {
            Logger.e(t);
        }
    }
}


================================================
FILE: app/src/main/java/com/my/televip/features/DisableProfileSwipeBack.java
================================================
package com.my.televip.features;

import android.view.MotionEvent;

import com.my.televip.Class.ClassNames;
import com.my.televip.Class.ClassLoad;
import com.my.televip.Configs.ConfigManager;
import com.my.televip.base.AbstractMethodHook;
import com.my.televip.hooks.HMethod;
import com.my.televip.logging.Logger;
import com.my.televip.obfuscate.AutomationResolver;

public class DisableProfileSwipeBack {
    public static boolean isEnable = false;

    public static void init() {
        try {
            if (!isEnable) {
                isEnable = true;

                if (ClassLoad.getClass(ClassNames.CHAT_ACTIVITY) != null) {

                    HMethod.hookMethod(ClassLoad.getClass(ClassNames.CHAT_ACTIVITY), AutomationResolver.resolve("ProfileActivity", "isSwipeBackEnabled", AutomationResolver.ResolverType.Method), AutomationResolver.merge(AutomationResolver.resolveObject("isSwipeBackEnabled", new Class[]{MotionEvent.class}), new AbstractMethodHook() {
                        @Override
                        protected void beforeMethod(MethodHookParam param) {
                            if (ConfigManager.disableProfileSwipeBack.isEnable()) {
                                param.setResult(false);
                            }
                        }
                    }));
                }
            }
        } catch (Throwable e){
            Logger.e(e);
        }
    }

}


================================================
FILE: app/src/main/java/com/my/televip/features/DisableStories.java
================================================
package com.my.televip.features;

import com.my.televip.Class.ClassNames;
import com.my.televip.Class.ClassLoad;
import com.my.televip.ClientChecker;
import com.my.televip.Configs.ConfigManager;
import com.my.televip.base.AbstractMethodHook;
import com.my.televip.hooks.HMethod;
import com.my.televip.logging.Logger;
import com.my.televip.obfuscate.AutomationResolver;

public class DisableStories {

    public static boolean isEnable = false;

    public static void init() {
        try {
            if (!isEnable) {
                isEnable = true;

                if (ClassLoad.getClass(ClassNames.MESSAGES_CONTROLLER) != null) {
                    HMethod.hookMethod(ClassLoad.getClass(ClassNames.MESSAGES_CONTROLLER), new String[]{AutomationResolver.resolve("MessagesController", "storiesEnabled", AutomationResolver.ResolverType.Method), AutomationResolver.resolve("MessagesController", "storyEntitiesAllowed", AutomationResolver.ResolverType.Method)}, new AbstractMethodHook() {
                        @Override
                        protected void beforeMethod(MethodHookParam param) {
                            if (ConfigManager.disableStories.isEnable()) param.setResult(false);
                        }
                    });

                    HMethod.hookMethod(ClassLoad.getClass(ClassNames.MESSAGES_CONTROLLER), AutomationResolver.resolve("MessagesController", "storyEntitiesAllowed2", AutomationResolver.ResolverType.Method), AutomationResolver.merge(AutomationResolver.resolveObject("storyEntitiesAllowed", new Class[]{ClassLoad.getClass(ClassNames.TLRPC_USER)}), new AbstractMethodHook() {
                        @Override
                        protected void beforeMethod(MethodHookParam param) {
                            if (ConfigManager.disableStories.isEnable()) param.setResult(false);
                        }
                    }));
                }

                if (ClassLoad.getClass(ClassNames.STORIES_CONTROLLER) != null) {
                    if (ClientChecker.check(ClientChecker.ClientType.NagramX)) {
                        HMethod.hookMethod(ClassLoad.getClass(ClassNames.STORIES_CONTROLLER), AutomationResolver.resolve("StoriesController", "hasStories2", AutomationResolver.ResolverType.Method), long.class, new AbstractMethodHook() {
                            @Override
                            protected void beforeMethod(MethodHookParam param) {
                                if (ConfigManager.disableStories.isEnable())
                                    param.setResult(false);
                            }
                        });
                    } else {
                        HMethod.hookMethod(ClassLoad.getClass(ClassNames.STORIES_CONTROLLER), AutomationResolver.resolve("StoriesController", "hasStories", AutomationResolver.ResolverType.Method), new AbstractMethodHook() {
                            @Override
                            protected void beforeMethod(MethodHookParam param) {
                                if (ConfigManager.disableStories.isEnable())
                                    param.setResult(false);
                            }
                        });
                    }
                }
            }
        } catch (Throwable t){
            Logger.e(t);
        }
    }

}


================================================
FILE: app/src/main/java/com/my/televip/features/DownloadSpeed.java
================================================
package com.my.televip.features;

import com.my.televip.Class.ClassNames;
import com.my.televip.Class.ClassLoad;
import com.my.televip.Configs.ConfigManager;
import com.my.televip.base.AbstractMethodHook;
import com.my.televip.hooks.HMethod;
import com.my.televip.logging.Logger;
import com.my.televip.obfuscate.AutomationResolver;
import com.my.televip.virtuals.messenger.FileLoadOperation;

public class DownloadSpeed {

    public static boolean isEnable = false;

    public static void init(){
        try {
            if (!isEnable) {
                isEnable = true;

                if (ClassLoad.getClass(ClassNames.FILE_LOAD_OPERATION) != null) {
                    HMethod.hookMethod(ClassLoad.getClass(ClassNames.FILE_LOAD_OPERATION), AutomationResolver.resolve("FileLoadOperation", "updateParams", AutomationResolver.ResolverType.Method), new AbstractMethodHook() {
                        @Override
                        protected void afterMethod(MethodHookParam param) {
                            if (ConfigManager.downloadSpeed.isEnable()) {
                                FileLoadOperation fileLoadOperation = new FileLoadOperation(param.thisObject);

                                int downloadChunkSizeBig = 1024 * 512;
                                int maxDownloadRequests = 8;

                                long defaultMaxFileSize = 1024L * 1024L * 2000L;

                                int maxCdnParts = (int) (defaultMaxFileSize / downloadChunkSizeBig);

                                fileLoadOperation.setDownloadChunkSizeBig(downloadChunkSizeBig);
                                fileLoadOperation.setMaxDownloadRequests(maxDownloadRequests);
                                fileLoadOperation.setMaxDownloadRequestsBig(maxDownloadRequests);
                                fileLoadOperation.setMaxCdnParts(maxCdnParts);
                                param.setResult(null);
                            }

                        }
                    });
                }
            }
        } catch (Throwable t){
            Logger.e(t);
        }
    }

}


================================================
FILE: app/src/main/java/com/my/televip/features/EnableSavingStories.java
================================================
package com.my.televip.features;

import com.my.televip.Class.ClassNames;
import com.my.televip.Class.ClassLoad;
import com.my.televip.Configs.ConfigManager;
import com.my.televip.base.AbstractMethodHook;
import com.my.televip.hooks.HMethod;
import com.my.televip.logging.Logger;
import com.my.televip.obfuscate.AutomationResolver;

public class EnableSavingStories {

    public static boolean isEnable = false;

    public static void init() {
        try {
            if (!isEnable) {
                isEnable = true;

                if (ClassLoad.getClass(ClassNames.STORY_ITEM_HOLDER) != null) {
                    HMethod.hookMethod(ClassLoad.getClass(ClassNames.STORY_ITEM_HOLDER), AutomationResolver.resolve("PeerStoriesView$StoryItemHolder", "allowScreenshots", AutomationResolver.ResolverType.Method),
                            new AbstractMethodHook() {
                                @Override
                                protected void beforeMethod(MethodHookParam param) {
                                    if (ConfigManager.enableSavingStories.isEnable())
                                        param.setResult(true);
                                }
                            });
                }
            }
        } catch (Throwable t){
            Logger.e(t);
        }
    }
}


================================================
FILE: app/src/main/java/com/my/televip/features/FixTLError.java
================================================
package com.my.televip.features;

import com.my.televip.Class.ClassNames;
import com.my.televip.Class.ClassLoad;
import com.my.televip.Configs.ConfigManager;
import com.my.televip.base.AbstractMethodHook;
import com.my.televip.hooks.HMethod;
import com.my.televip.logging.Logger;
import com.my.televip.obfuscate.AutomationResolver;
import com.my.televip.virtuals.messenger.NotificationCenter;

public class FixTLError {

    public static boolean isEnable = false;

    public static void init(){
        try {
            if (!isEnable) {
                isEnable = true;
                if (ClassLoad.getClass(ClassNames.LAUNCH_ACTIVITY) != null) {
                    HMethod.hookMethod(ClassLoad.getClass(ClassNames.LAUNCH_ACTIVITY), AutomationResolver.resolve("LaunchActivity", "didReceivedNotification", AutomationResolver.ResolverType.Method), AutomationResolver.merge(AutomationResolver.resolveObject("didReceivedNotification", new Class[]{int.class, int.class, Object[].class}), new AbstractMethodHook() {
                        @Override
                        protected void beforeMethod(MethodHookParam param) {
                            int id = (int) param.args[0];
                            if (id == NotificationCenter.getTlSchemeParseException() && ConfigManager.fixTLError.isEnable())
                                param.setResult(null);
                        }
                    }));
                }
            }
        } catch (Throwable t){
            Logger.e(t);
    }
    }

}


================================================
FILE: app/src/main/java/com/my/televip/features/GhostMode.java
================================================
package com.my.televip.features;

import com.my.televip.Class.ClassLoad;
import com.my.televip.Class.ClassNames;
import com.my.televip.ClientChecker;
import com.my.televip.Configs.ConfigManager;
import com.my.televip.base.AbstractMethodHook;
import com.my.televip.hooks.HMethod;
import com.my.televip.logging.Logger;
import com.my.televip.obfuscate.AutomationResolver;

import de.robv.android.xposed.XposedBridge;
import de.robv.android.xposed.XposedHelpers;

public class GhostMode {

    public static boolean isEnable = false;

    public static void init() {
        try {
            if (!isEnable) {
                isEnable = true;
                if (ClassLoad.getClass(ClassNames.CONNECTIONS_MANAGER) != null && ConfigManager.isGhostMode()) {
                    HMethod.hookMethod(ClassLoad.getClass(ClassNames.CONNECTIONS_MANAGER), AutomationResolver.resolve("ConnectionsManager", "sendRequestInternal", AutomationResolver.ResolverType.Method), AutomationResolver.merge(AutomationResolver.resolveObject("sendRequestInternal", new Class[]{ClassLoad.getClass(ClassNames.TL_OBJECT), ClassLoad.getClass(ClassNames.REQUEST_DELEGATE), ClassLoad.getClass(ClassNames.REQUEST_DELEGATE_TIMESTAMP), ClassLoad.getClass(ClassNames.QUICK_ACK_DELEGATE), ClassLoad.getClass(ClassNames.WRITE_TO_SOCKET_DELEGATE), int.class, int.class, int.class, boolean.class, int.class}), new AbstractMethodHook() {
                        @Override
                        protected void beforeMethod(MethodHookParam param) {
                            try {
                                if (HideSeen.isReadMessages) {
                                    HideSeen.isReadMessages = false;
                                } else if (ConfigManager.isGhostMode()) {
                                    Object object = param.args[0];
                                    if (ClientChecker.check(ClientChecker.ClientType.Nagram)) {
                                        HideSeen.saveReadHistory(object);
                                    }
                                    if (ConfigManager.hideOnline.isEnable()) {
                                        if (ClassLoad.getClass(ClassNames.TL_ACCOUNT_UPDATE_STATUS) != null) {

                                            if (ClassLoad.getClass(ClassNames.TL_ACCOUNT_UPDATE_STATUS).isInstance(object)) {
                                                XposedHelpers.setBooleanField(object, AutomationResolver.resolve("TL_account$updateStatus", "offline", AutomationResolver.ResolverType.Field), true);
                                            }
                                        }
                                    }

                                    if (ConfigManager.hideSeen.isEnable() && HideSeen.isReadMessageRequest(object)) {
                                        HideSeen.sendFakeReadResponse(param.args[1]);
                                        param.setResult(null);
                                        return;
                                    }

                                    if (ConfigManager.hideTyping.isEnable() && HideTyping.isTypingRequest(object)) {
                                        param.setResult(null);
                                        return;
                                    }

                                    if (ConfigManager.hideStoryView.isEnable() && HideStoryRead.isReadStoriesRequest(object)) {
                                        param.setResult(null);
                                        return;
                                    }

                                    if (ConfigManager.hideProxySponsor.isEnable() && HideProxySponsor.isPromoDataRequest(object)) {
                                        param.setResult(null);
                                        return;
                                    }

                                    HideSeen.handleReadAfterSend(object);
                                }
                            } catch (Throwable e) {
                                XposedBridge.log(e);
                            }
                        }
                    }));
                }
            }
        } catch (Throwable t) {
            Logger.e(t);
        }
    }

}


================================================
FILE: app/src/main/java/com/my/televip/features/HideOnline.java
================================================
package com.my.televip.features;


import com.my.televip.Class.ClassNames;
import com.my.televip.Configs.ConfigManager;
import com.my.televip.base.AbstractMethodHook;
import com.my.televip.hooks.HMethod;
import com.my.televip.language.Keys;
import com.my.televip.language.Translator;
import com.my.televip.Class.ClassLoad;
import com.my.televip.obfuscate.AutomationResolver;
import com.my.televip.logging.Logger;
import com.my.televip.virtuals.ActionBar.SimpleTextView;
import com.my.televip.virtuals.ui.ProfileActivity;

public class HideOnline {
    public static boolean isEnable = false;

    public static void init() {
        try {
            if (!isEnable) {
                isEnable = true;

                if (ClassLoad.getClass(ClassNames.PROFILE_ACTIVITY) != null) {

                    HMethod.hookMethod(ClassLoad.getClass(ClassNames.PROFILE_ACTIVITY),
                            AutomationResolver.resolve("ProfileActivity", "updateProfileData", AutomationResolver.ResolverType.Method),
                            AutomationResolver.merge(AutomationResolver.resolveObject("updateProfileData", new Class[]{boolean.class}),
                                    new AbstractMethodHook() {
                                        @Override
                                        protected void afterMethod(MethodHookParam param) {
                                            if (ConfigManager.hideOnline.isEnable()) {
                                                final ProfileActivity profileActivity = new ProfileActivity(param.thisObject);

                                                if (profileActivity.getUserId() != 0 && profileActivity.getUserId() == profileActivity.getBaseFragment().getUserConfig().getClientUserId()) {
                                                    Object[] onlineTextViewArray = profileActivity.getOnlineTextView();

                                                    if (onlineTextViewArray != null && onlineTextViewArray.length > 1) {

                                                        SimpleTextView simpleTextView = new SimpleTextView(onlineTextViewArray[1]);

                                                        if (simpleTextView.getSimpleTextView() != null) {
                                                            simpleTextView.setText(Translator.get(Keys.UserOffline));
                                                        }
                                                    }
                                                }
                                            }
                                        }
                                    })
                    );
                }
            }
        } catch (Throwable t) {
            Logger.e(t);
        }
    }

}


================================================
FILE: app/src/main/java/com/my/televip/features/HidePhone.java
================================================
package com.my.televip.features;

import com.my.televip.Class.ClassNames;
import com.my.televip.Configs.ConfigManager;
import com.my.televip.base.AbstractMethodHook;
import com.my.televip.hooks.HMethod;
import com.my.televip.Class.ClassLoad;
import com.my.televip.obfuscate.AutomationResolver;
import com.my.televip.logging.Logger;
import com.my.televip.virtuals.messenger.UserConfig;
import com.my.televip.virtuals.tgnet.TLRPC;

public class HidePhone {

    public static boolean isEnable = false;

    public static void init() {
        try {
            if (!isEnable) {
                isEnable = true;

                if (ClassLoad.getClass(ClassNames.USER_CONFIG) != null) {
                    HMethod.hookMethod(ClassLoad.getClass(ClassNames.USER_CONFIG), AutomationResolver.resolve("UserConfig", "getClientUserId", AutomationResolver.ResolverType.Method), new AbstractMethodHook() {
                        @Override
                        protected void beforeMethod(MethodHookParam param) {
                            if (ConfigManager.hidePhone.isEnable()) {
                                UserConfig userConfig = new UserConfig(param.thisObject);
                                if (userConfig.getCurrentUser().getUser() != null) {
                                    TLRPC.User user = userConfig.getCurrentUser();
                                    if (user.getPhone() != null) {
                                        user.setPhone(null);
                                    }
                                }
                            }
                        }
                    });
                }
            }
        } catch (Throwable t){
            Logger.e(t);
        }
    }

}


================================================
FILE: app/src/main/java/com/my/televip/features/HidePinnedMessages.java
================================================
package com.my.televip.features;

import android.view.View;

import com.my.televip.Class.ClassNames;
import com.my.televip.Configs.ConfigManager;
import com.my.televip.base.AbstractMethodHook;
import com.my.televip.hooks.HMethod;
import com.my.televip.Class.ClassLoad;
import com.my.televip.obfuscate.AutomationResolver;
import com.my.televip.logging.Logger;
import com.my.televip.virtuals.ui.ChatActivity;

public class HidePinnedMessages {
    public static boolean isEnable = false;

    public static void init() {
        try {
            if (!isEnable) {
                isEnable = true;
                if (ClassLoad.getClass(ClassNames.CHAT_ACTIVITY) != null) {
                    HMethod.hookMethod(ClassLoad.getClass(ClassNames.CHAT_ACTIVITY),
                            AutomationResolver.resolve("ChatActivity", "createPinnedMessageView", AutomationResolver.ResolverType.Method), new AbstractMethodHook() {
                                @Override
                                protected void afterMethod(MethodHookParam param) {
                                    if (ConfigManager.hidePinnedMessages.isEnable()) {
                                        View button = new ChatActivity(param.thisObject).getPinnedMessageView();
                                        if (button != null && button.getVisibility() != View.GONE)
                                            button.setVisibility(View.GONE);
                                    }
                                }
                            });
                    HMethod.hookMethod(ClassLoad.getClass(ClassNames.CHAT_ACTIVITY), AutomationResolver.resolve("ChatActivity", "updatePinnedMessageView", AutomationResolver.ResolverType.Method), boolean.class, int.class, new AbstractMethodHook() {
                        @Override
                        protected void afterMethod(MethodHookParam param) {
                            if (ConfigManager.hidePinnedMessages.isEnable()) {
                                View button = new ChatActivity(param.thisObject).getPinnedMessageView();
                                if (button != null && button.getVisibility() != View.GONE)
                                    button.setVisibility(View.GONE);
                            }
                        }
                    });
                }
            }
        } catch (Throwable e){
            Logger.e(e);
        }
    }

}


================================================
FILE: app/src/main/java/com/my/televip/features/HideProxySponsor.java
================================================
package com.my.televip.features;

import com.my.televip.virtuals.messenger.MessagesController;

public class HideProxySponsor {

    public static boolean isPromoDataRequest(Object object){
        return object.getClass().getName().contains("TL_help_getPromoData");
    }

    public static void removePromoDialog() {
        if (MessagesController.getGlobalMainSettings() == null) return;
        MessagesController.getGlobalMainSettings().edit().remove("proxy_dialog").remove("proxyDialogAddress").remove("nextPromoInfoCheckTime").apply();
    }

}


================================================
FILE: app/src/main/java/com/my/televip/features/HideSeen.java
================================================
package com.my.televip.features;

import com.my.televip.Callback.IntCallback;
import com.my.televip.Class.ClassNames;
import com.my.televip.ClientChecker;
import com.my.televip.Configs.ConfigManager;
import com.my.televip.application.AndroidUtilities;
import com.my.televip.Class.ClassLoad;
import com.my.televip.logging.Logger;
import com.my.televip.virtuals.SQLite.SQLiteCursor;
import com.my.televip.virtuals.messenger.MessagesController;
import com.my.televip.virtuals.messenger.MessagesStorage;
import com.my.televip.virtuals.messenger.UserConfig;
import com.my.televip.virtuals.messenger.Utilities;
import com.my.televip.virtuals.tgnet.ConnectionsManager;
import com.my.televip.virtuals.tgnet.RequestDelegate;
import com.my.televip.virtuals.tgnet.TLRPC;

import de.robv.android.xposed.XposedHelpers;

public class HideSeen {


    public static Object TLChannels_readHistory;
    public static Object TLMessages_readHistory;

    public static void sendFakeReadResponse(Object onCompleteOrig) {
        try {
            TLRPC.TL_messages_affectedMessages fakeRes = new TLRPC.TL_messages_affectedMessages();
            fakeRes.setPts(-1);
            fakeRes.setPtsCount(0);
            RequestDelegate onComplete = new RequestDelegate(onCompleteOrig);
            Utilities.getStageQueue().postRunnable(() -> {
                try {
                    if (onComplete.requestDelegate != null) {
                        onComplete.run(fakeRes.getTL_messages_affectedMessages(), null);
                    }
                } catch (Throwable e) {
                    Logger.e(e);
                }
            });
        } catch (Throwable e) {
            Logger.e(e);
        }
    }

    public static boolean isTLMessagesReadHistoryRequest(Object object) {
        return object.getClass().getName().contains("TL_messages_readHistory");
    }

    public static boolean isTLChannelsReadHistoryRequest(Object object) {
        return object.getClass().getName().contains("TL_channels_readHistory");
    }

    public static boolean isReadMessageRequest(Object object) {
        return object.getClass().getName().contains("TL_messages_readHistory") ||
                object.getClass().getName().contains("TL_messages_readEncryptedHistory") ||
                object.getClass().getName().contains("TL_messages_readDiscussion") ||
                object.getClass().getName().contains("TL_messages_readMessageContents") ||
                object.getClass().getName().contains("TL_channels_readMessageContents") ||
                object.getClass().getName().contains("TL_channels_readHistory");
    }

    public static void saveReadHistory(Object object) {
        if (HideSeen.TLChannels_readHistory == null && HideSeen.isTLChannelsReadHistoryRequest(object)) {
            HideSeen.TLChannels_readHistory = object;
        } else if (HideSeen.TLMessages_readHistory == null && HideSeen.isTLMessagesReadHistoryRequest(object)) {
            HideSeen.TLMessages_readHistory = object;
        }
    }

    public static void handleReadAfterSend(Object object) {
        try {
            if (ConfigManager.hideSeen.isEnable() && ConfigManager.markReadAfterSend.isEnable()) {
                TLRPC.InputPeer peer = extractPeerFromSendObject(object);

                if (peer != null && peer.inputPeer != null) {
                    Long dialogId = getDialogId(peer);
                    MessagesStorage messagesStorage = getMessagesStorage();
                    messagesStorage.getStorageQueue().postRunnable(() ->
                            getDialogMaxMessageId(messagesStorage, dialogId, (param -> markReadOnServer(param, peer))));
                }
            }
        } catch (Throwable e) {
            Logger.e(e);
        }
    }

    public static void getDialogMaxMessageId(MessagesStorage messagesStorage, long dialog_id, IntCallback callback) {
        messagesStorage.getStorageQueue().postRunnable(() -> {
            SQLiteCursor cursor = null;
            int[] max = new int[1];
            try {
                cursor = messagesStorage.getDatabase().queryFinalized("SELECT MAX(mid) FROM messages_v2 WHERE uid = " + dialog_id);
                if (cursor.next()) {
                    max[0] = cursor.intValue(0);
                }
            } catch (Throwable e) {
                Logger.e(e);
            } finally {
                if (cursor != null) {
                    cursor.dispose();
                }
            }
            AndroidUtilities.runOnUIThread(() -> callback.run(max[0]));
        
Download .txt
gitextract_bnkwr53f/

├── .gitignore
├── LICENSE
├── README.md
├── SUMMARY
├── app/
│   ├── .gitignore
│   ├── build.gradle
│   ├── proguard-rules.pro
│   └── src/
│       ├── androidTest/
│       │   └── java/
│       │       └── com/
│       │           └── my/
│       │               └── televip/
│       │                   └── ExampleInstrumentedTest.java
│       ├── main/
│       │   ├── AndroidManifest.xml
│       │   ├── assets/
│       │   │   ├── lang/
│       │   │   │   ├── ar.json
│       │   │   │   ├── en.json
│       │   │   │   └── zh.json
│       │   │   └── xposed_init
│       │   ├── java/
│       │   │   └── com/
│       │   │       └── my/
│       │   │           └── televip/
│       │   │               ├── Callback/
│       │   │               │   └── IntCallback.java
│       │   │               ├── Class/
│       │   │               │   ├── ClassLoad.java
│       │   │               │   └── ClassNames.java
│       │   │               ├── ClientChecker.java
│       │   │               ├── Clients/
│       │   │               │   ├── Momogram.java
│       │   │               │   ├── Nagram.java
│       │   │               │   ├── NagramX.java
│       │   │               │   ├── Nicegram.java
│       │   │               │   ├── TGConnect.java
│       │   │               │   ├── Telega.java
│       │   │               │   ├── Telegram.java
│       │   │               │   ├── TelegramBeta.java
│       │   │               │   ├── TelegramPlus.java
│       │   │               │   ├── TelegramWeb.java
│       │   │               │   ├── Telegraph.java
│       │   │               │   ├── XPlus.java
│       │   │               │   ├── forkgram.java
│       │   │               │   ├── forkgramBeta.java
│       │   │               │   ├── iMe.java
│       │   │               │   └── iMeWeb.java
│       │   │               ├── Configs/
│       │   │               │   ├── ConfigItem.java
│       │   │               │   ├── ConfigManager.java
│       │   │               │   └── ConfigPreferences.java
│       │   │               ├── Database/
│       │   │               │   └── MessageDatabase.java
│       │   │               ├── Drawable/
│       │   │               │   ├── ArrowDrawable.java
│       │   │               │   └── GhostDrawable.java
│       │   │               ├── MainHook.java
│       │   │               ├── TeleVip.java
│       │   │               ├── Utils.java
│       │   │               ├── application/
│       │   │               │   ├── AndroidUtilities.java
│       │   │               │   └── ApplicationLoaderHook.java
│       │   │               ├── audio.java
│       │   │               ├── base/
│       │   │               │   └── AbstractMethodHook.java
│       │   │               ├── dex/
│       │   │               │   └── DexInjector.java
│       │   │               ├── features/
│       │   │               │   ├── DisableChannelSwipeBack.java
│       │   │               │   ├── DisableNumberRounding.java
│       │   │               │   ├── DisableProfileSwipeBack.java
│       │   │               │   ├── DisableStories.java
│       │   │               │   ├── DownloadSpeed.java
│       │   │               │   ├── EnableSavingStories.java
│       │   │               │   ├── FixTLError.java
│       │   │               │   ├── GhostMode.java
│       │   │               │   ├── HideOnline.java
│       │   │               │   ├── HidePhone.java
│       │   │               │   ├── HidePinnedMessages.java
│       │   │               │   ├── HideProxySponsor.java
│       │   │               │   ├── HideSeen.java
│       │   │               │   ├── HideStoryRead.java
│       │   │               │   ├── HideTyping.java
│       │   │               │   ├── HideUpdateApp.java
│       │   │               │   ├── PreventMedia.java
│       │   │               │   ├── RemovesContentSaving.java
│       │   │               │   ├── SaveEditsHistory.java
│       │   │               │   ├── SecretMediaSave.java
│       │   │               │   ├── ShowDeletedMessages.java
│       │   │               │   ├── TelePremium.java
│       │   │               │   └── otherFeatures/
│       │   │               │       ├── ChatHook.java
│       │   │               │       ├── CopyNameHook.java
│       │   │               │       ├── FeatureInitializer.java
│       │   │               │       ├── FeatureStateManager.java
│       │   │               │       └── ProfileHook.java
│       │   │               ├── hooks/
│       │   │               │   └── HMethod.java
│       │   │               ├── language/
│       │   │               │   ├── Keys.java
│       │   │               │   └── Translator.java
│       │   │               ├── logging/
│       │   │               │   └── Logger.java
│       │   │               ├── obfuscate/
│       │   │               │   ├── AutomationResolver.java
│       │   │               │   └── struct/
│       │   │               │       ├── ClassInfo.java
│       │   │               │       ├── FieldInfo.java
│       │   │               │       ├── MethodInfo.java
│       │   │               │       └── ResolverRegistry.java
│       │   │               ├── settings/
│       │   │               │   ├── SettingsManager.java
│       │   │               │   ├── controller/
│       │   │               │   │   └── SettingsController.java
│       │   │               │   ├── hook/
│       │   │               │   │   └── SettingsHook.java
│       │   │               │   └── ui/
│       │   │               │       ├── SettingsActivity.java
│       │   │               │       └── SettingsAdapter.java
│       │   │               ├── structs/
│       │   │               │   └── DeletedMessageInfo.java
│       │   │               ├── ui/
│       │   │               │   └── toolBar/
│       │   │               │       └── MainToolBar.java
│       │   │               └── virtuals/
│       │   │                   ├── ActionBar/
│       │   │                   │   ├── ActionBarMenuItem.java
│       │   │                   │   ├── AlertDialog.java
│       │   │                   │   └── SimpleTextView.java
│       │   │                   ├── Adapters/
│       │   │                   │   └── DrawerLayoutAdapter.java
│       │   │                   ├── ChatMessageCellDefault.java
│       │   │                   ├── OfficialChatMessageCell.java
│       │   │                   ├── SQLite/
│       │   │                   │   ├── SQLiteCursor.java
│       │   │                   │   └── SQLiteDatabase.java
│       │   │                   ├── SettingsIconResolver.java
│       │   │                   ├── TeleVip/
│       │   │                   │   └── Bridge/
│       │   │                   │       └── Bridge.java
│       │   │                   ├── Theme.java
│       │   │                   ├── androidx/
│       │   │                   │   └── ViewHolder.java
│       │   │                   ├── messenger/
│       │   │                   │   ├── BaseController.java
│       │   │                   │   ├── DispatchQueue.java
│       │   │                   │   ├── FileLoadOperation.java
│       │   │                   │   ├── FileLoader.java
│       │   │                   │   ├── ImageLocation.java
│       │   │                   │   ├── ImageReceiver.java
│       │   │                   │   ├── LocaleController.java
│       │   │                   │   ├── MessageObject.java
│       │   │                   │   ├── MessagesController.java
│       │   │                   │   ├── MessagesStorage.java
│       │   │                   │   ├── NotificationCenter.java
│       │   │                   │   ├── UserConfig.java
│       │   │                   │   ├── Utilities.java
│       │   │                   │   └── browser/
│       │   │                   │       └── Browser.java
│       │   │                   ├── tgnet/
│       │   │                   │   ├── ConnectionsManager.java
│       │   │                   │   ├── NativeByteBuffer.java
│       │   │                   │   ├── RequestDelegate.java
│       │   │                   │   └── TLRPC.java
│       │   │                   └── ui/
│       │   │                       ├── BaseFragment.java
│       │   │                       ├── Cells/
│       │   │                       │   ├── ChatMessageCell.java
│       │   │                       │   ├── HeaderCell.java
│       │   │                       │   ├── ShadowSectionCell.java
│       │   │                       │   ├── TextCheckCell.java
│       │   │                       │   ├── TextInfoCell.java
│       │   │                       │   └── TextSettingsCell.java
│       │   │                       ├── ChatActivity.java
│       │   │                       ├── Components/
│       │   │                       │   ├── LayoutHelper.java
│       │   │                       │   └── RecyclerListView.java
│       │   │                       ├── LaunchActivity.java
│       │   │                       ├── PhotoViewer.java
│       │   │                       ├── ProfileActivity.java
│       │   │                       └── SecretMediaViewer.java
│       │   └── res/
│       │       ├── drawable/
│       │       │   ├── baseline_arrow_back_24.xml
│       │       │   ├── ic_launcher_background.xml
│       │       │   ├── ic_launcher_foreground.xml
│       │       │   ├── messages.xml
│       │       │   └── sync.xml
│       │       ├── mipmap-anydpi/
│       │       │   ├── ic_launcher.xml
│       │       │   └── ic_launcher_round.xml
│       │       ├── values/
│       │       │   ├── arrays.xml
│       │       │   ├── strings.xml
│       │       │   └── themes.xml
│       │       └── xml/
│       │           ├── backup_rules.xml
│       │           └── data_extraction_rules.xml
│       └── test/
│           └── java/
│               └── com/
│                   └── my/
│                       └── televip/
│                           └── ExampleUnitTest.java
├── build.gradle
├── gradle/
│   ├── libs.versions.toml
│   └── wrapper/
│       ├── gradle-wrapper.jar
│       └── gradle-wrapper.properties
├── gradle.properties
├── gradlew
├── gradlew.bat
├── settings.gradle
└── settingsadapter/
    ├── .gitignore
    ├── build.gradle
    ├── proguard-rules.pro
    └── src/
        ├── main/
        │   ├── AndroidManifest.xml
        │   └── java/
        │       └── com/
        │           └── televip/
        │               └── SettingsAdapter/
        │                   ├── Bridge.java
        │                   └── SettingsAdapter.java
        └── test/
            └── java/
                └── com/
                    └── televip/
                        └── settingsadapter/
                            └── ExampleUnitTest.java
Download .txt
SYMBOL INDEX (809 symbols across 126 files)

FILE: app/src/androidTest/java/com/my/televip/ExampleInstrumentedTest.java
  class ExampleInstrumentedTest (line 18) | @RunWith(AndroidJUnit4.class)
    method useAppContext (line 20) | @Test

FILE: app/src/main/java/com/my/televip/Callback/IntCallback.java
  type IntCallback (line 3) | @FunctionalInterface
    method run (line 5) | void run(int param);

FILE: app/src/main/java/com/my/televip/Class/ClassLoad.java
  class ClassLoad (line 15) | public class ClassLoad {
    method getClass (line 20) | public static Class<?> getClass(String name) {
    method getClass (line 46) | public static Class<?> getClass(String name, ClassLoader classLoader) {
    method getApplicationContext (line 73) | public static Context getApplicationContext() {

FILE: app/src/main/java/com/my/televip/Class/ClassNames.java
  class ClassNames (line 3) | public class ClassNames {

FILE: app/src/main/java/com/my/televip/ClientChecker.java
  class ClientChecker (line 5) | public class ClientChecker {
    method check (line 6) | public static boolean check(ClientType client, String pkgName)
    method check (line 11) | public static boolean check(ClientType client)
    type ClientType (line 16) | public enum ClientType {
      method ClientType (line 37) | ClientType(String packageName, Class<?> resolverClass) {
      method ClientType (line 42) | ClientType(String[] packageNames, Class<?> resolverClass) {
      method getPackageNames (line 47) | public String[] getPackageNames() { return packageNames; }
      method getResolverClass (line 48) | public Class<?> getResolverClass() { return resolverClass; }
      method fromPackage (line 50) | public static ClientType fromPackage(String pkg){
      method containsPackage (line 59) | public static boolean containsPackage(String pkg){

FILE: app/src/main/java/com/my/televip/Clients/Momogram.java
  class Momogram (line 14) | public class Momogram {
    class ClassResolver (line 19) | public static class ClassResolver
      method resolve (line 21) | public static String resolve(String name) {
      method has (line 29) | public static boolean has(String name)
    class FieldResolver (line 42) | public static class FieldResolver
      method resolve (line 44) | public static String resolve(String className, String name) {
      method has (line 52) | public static boolean has(String className, String name)
    class MethodResolver (line 65) | public static class MethodResolver
      method resolve (line 67) | public static String resolve(String className, String name) {
      method has (line 75) | public static boolean has(String className, String name)
    class ParameterResolver (line 88) | public static class ParameterResolver
      method register (line 92) | public static void register(String name,  Class<?>[] classes){
      method resolve (line 96) | public static Class<?>[] resolve(String name) {
      method has (line 100) | public static boolean has(String name)
    method loadParameter (line 111) | public static void loadParameter() {

FILE: app/src/main/java/com/my/televip/Clients/Nagram.java
  class Nagram (line 15) | public class Nagram {
    class ClassResolver (line 20) | public static class ClassResolver
      method resolve (line 22) | public static String resolve(String name) {
      method has (line 30) | public static boolean has(String name)
    class FieldResolver (line 43) | public static class FieldResolver
      method resolve (line 45) | public static String resolve(String className, String name) {
      method has (line 53) | public static boolean has(String className, String name)
    class MethodResolver (line 66) | public static class MethodResolver
      method resolve (line 68) | public static String resolve(String className, String name) {
      method has (line 76) | public static boolean has(String className, String name)
    class ParameterResolver (line 88) | public static class ParameterResolver
      method register (line 92) | public static void register(String name,  Class<?>[] classes){
      method resolve (line 96) | public static Class<?>[] resolve(String name) {
      method has (line 100) | public static boolean has(String name)
    method loadParameter (line 112) | public static void loadParameter() {

FILE: app/src/main/java/com/my/televip/Clients/NagramX.java
  class NagramX (line 12) | public class NagramX {
    class ClassResolver (line 18) | public static class ClassResolver
      method resolve (line 20) | public static String resolve(String name) {
      method has (line 28) | public static boolean has(String name)
    class FieldResolver (line 41) | public static class FieldResolver
      method resolve (line 43) | public static String resolve(String className, String name) {
      method has (line 51) | public static boolean has(String className, String name)
    class MethodResolver (line 64) | public static class MethodResolver
      method resolve (line 66) | public static String resolve(String className, String name) {
      method has (line 74) | public static boolean has(String className, String name)
    class ParameterResolver (line 86) | public static class ParameterResolver
      method register (line 90) | public static void register(String name,  Class<?>[] classes){
      method resolve (line 94) | public static Class<?>[] resolve(String name) {
      method has (line 98) | public static boolean has(String name)
    method loadParameter (line 109) | public static void loadParameter() {}

FILE: app/src/main/java/com/my/televip/Clients/Nicegram.java
  class Nicegram (line 16) | public class Nicegram {
    class ClassResolver (line 21) | public static class ClassResolver
      method resolve (line 23) | public static String resolve(String name) {
      method has (line 31) | public static boolean has(String name)
    class FieldResolver (line 44) | public static class FieldResolver
      method resolve (line 46) | public static String resolve(String className, String name) {
      method has (line 54) | public static boolean has(String className, String name)
    class MethodResolver (line 67) | public static class MethodResolver
      method resolve (line 69) | public static String resolve(String className, String name) {
      method has (line 77) | public static boolean has(String className, String name)
    class ParameterResolver (line 89) | public static class ParameterResolver
      method register (line 93) | public static void register(String name,  Class<?>[] classes){
      method resolve (line 97) | public static Class<?>[] resolve(String name) {
      method has (line 101) | public static boolean has(String name)
    method loadParameter (line 112) | public static void loadParameter() {

FILE: app/src/main/java/com/my/televip/Clients/TGConnect.java
  class TGConnect (line 12) | public class TGConnect {
    class ClassResolver (line 17) | public static class ClassResolver
      method resolve (line 19) | public static String resolve(String name) {
      method has (line 27) | public static boolean has(String name)
    class FieldResolver (line 40) | public static class FieldResolver
      method resolve (line 42) | public static String resolve(String className, String name) {
      method has (line 50) | public static boolean has(String className, String name)
    class MethodResolver (line 63) | public static class MethodResolver
      method resolve (line 65) | public static String resolve(String className, String name) {
      method has (line 73) | public static boolean has(String className, String name)
    class ParameterResolver (line 85) | public static class ParameterResolver
      method register (line 89) | public static void register(String name,  Class<?>[] classes){
      method resolve (line 93) | public static Class<?>[] resolve(String name) {
      method has (line 97) | public static boolean has(String name)
    method loadParameter (line 108) | public static void loadParameter() {}

FILE: app/src/main/java/com/my/televip/Clients/Telega.java
  class Telega (line 12) | public class Telega {
    class ClassResolver (line 18) | public static class ClassResolver
      method resolve (line 20) | public static String resolve(String name) {
      method has (line 28) | public static boolean has(String name)
    class FieldResolver (line 41) | public static class FieldResolver
      method resolve (line 43) | public static String resolve(String className, String name) {
      method has (line 51) | public static boolean has(String className, String name)
    class MethodResolver (line 64) | public static class MethodResolver
      method resolve (line 66) | public static String resolve(String className, String name) {
      method has (line 74) | public static boolean has(String className, String name)
    class ParameterResolver (line 86) | public static class ParameterResolver
      method register (line 90) | public static void register(String name,  Class<?>[] classes){
      method resolve (line 94) | public static Class<?>[] resolve(String name) {
      method has (line 98) | public static boolean has(String name)
    method loadParameter (line 109) | public static void loadParameter() {}

FILE: app/src/main/java/com/my/televip/Clients/Telegram.java
  class Telegram (line 12) | public class Telegram {
    class ClassResolver (line 17) | public static class ClassResolver
      method resolve (line 19) | public static String resolve(String name) {
      method has (line 27) | public static boolean has(String name)
    class FieldResolver (line 40) | public static class FieldResolver
      method resolve (line 42) | public static String resolve(String className, String name) {
      method has (line 50) | public static boolean has(String className, String name)
    class MethodResolver (line 63) | public static class MethodResolver
      method resolve (line 65) | public static String resolve(String className, String name) {
      method has (line 73) | public static boolean has(String className, String name)
    class ParameterResolver (line 86) | public static class ParameterResolver
      method register (line 90) | public static void register(String name,  Class<?>[] classes){
      method resolve (line 94) | public static Class<?>[] resolve(String name) {
      method has (line 98) | public static boolean has(String name)
    method loadParameter (line 109) | public static void loadParameter() {}

FILE: app/src/main/java/com/my/televip/Clients/TelegramBeta.java
  class TelegramBeta (line 12) | public class TelegramBeta {
    class ClassResolver (line 18) | public static class ClassResolver
      method resolve (line 20) | public static String resolve(String name) {
      method has (line 28) | public static boolean has(String name)
    class FieldResolver (line 41) | public static class FieldResolver
      method resolve (line 43) | public static String resolve(String className, String name) {
      method has (line 51) | public static boolean has(String className, String name)
    class MethodResolver (line 64) | public static class MethodResolver
      method resolve (line 66) | public static String resolve(String className, String name) {
      method has (line 74) | public static boolean has(String className, String name)
    class ParameterResolver (line 86) | public static class ParameterResolver
      method register (line 90) | public static void register(String name,  Class<?>[] classes){
      method resolve (line 94) | public static Class<?>[] resolve(String name) {
      method has (line 98) | public static boolean has(String name)
    method loadParameter (line 109) | public static void loadParameter() {}

FILE: app/src/main/java/com/my/televip/Clients/TelegramPlus.java
  class TelegramPlus (line 12) | public class TelegramPlus {
    class ClassResolver (line 17) | public static class ClassResolver
      method resolve (line 19) | public static String resolve(String name) {
      method has (line 27) | public static boolean has(String name)
    class FieldResolver (line 40) | public static class FieldResolver
      method resolve (line 42) | public static String resolve(String className, String name) {
      method has (line 50) | public static boolean has(String className, String name)
    class MethodResolver (line 63) | public static class MethodResolver
      method resolve (line 65) | public static String resolve(String className, String name) {
      method has (line 73) | public static boolean has(String className, String name)
    class ParameterResolver (line 85) | public static class ParameterResolver
      method register (line 89) | public static void register(String name,  Class<?>[] classes){
      method resolve (line 93) | public static Class<?>[] resolve(String name) {
      method has (line 97) | public static boolean has(String name)
    method loadParameter (line 108) | public static void loadParameter() {}

FILE: app/src/main/java/com/my/televip/Clients/TelegramWeb.java
  class TelegramWeb (line 12) | public class TelegramWeb {
    class ClassResolver (line 18) | public static class ClassResolver
      method resolve (line 20) | public static String resolve(String name) {
      method has (line 28) | public static boolean has(String name)
    class FieldResolver (line 41) | public static class FieldResolver
      method resolve (line 43) | public static String resolve(String className, String name) {
      method has (line 51) | public static boolean has(String className, String name)
    class MethodResolver (line 64) | public static class MethodResolver
      method resolve (line 66) | public static String resolve(String className, String name) {
      method has (line 74) | public static boolean has(String className, String name)
    class ParameterResolver (line 86) | public static class ParameterResolver
      method register (line 90) | public static void register(String name,  Class<?>[] classes){
      method resolve (line 94) | public static Class<?>[] resolve(String name) {
      method has (line 98) | public static boolean has(String name)
    method loadParameter (line 109) | public static void loadParameter() {}

FILE: app/src/main/java/com/my/televip/Clients/Telegraph.java
  class Telegraph (line 20) | public class Telegraph {
    class ClassResolver (line 25) | public static class ClassResolver
      method resolve (line 27) | public static String resolve(String name) {
      method has (line 35) | public static boolean has(String name)
    class FieldResolver (line 48) | public static class FieldResolver
      method resolve (line 50) | public static String resolve(String className, String name) {
      method has (line 58) | public static boolean has(String className, String name)
    class MethodResolver (line 71) | public static class MethodResolver
      method resolve (line 73) | public static String resolve(String className, String name) {
      method has (line 81) | public static boolean has(String className, String name)
    class ParameterResolver (line 93) | public static class ParameterResolver
      method register (line 97) | public static void register(String name,  Class<?>[] classes){
      method resolve (line 101) | public static Class<?>[] resolve(String name) {
      method has (line 105) | public static boolean has(String name)
    method loadParameter (line 116) | public static void loadParameter() {
    method removeAd (line 238) | public static void removeAd(){

FILE: app/src/main/java/com/my/televip/Clients/XPlus.java
  class XPlus (line 12) | public class XPlus {
    class ClassResolver (line 17) | public static class ClassResolver {
      method resolve (line 18) | public static String resolve(String name) {
      method has (line 26) | public static boolean has(String name) {
    class FieldResolver (line 38) | public static class FieldResolver {
      method resolve (line 39) | public static String resolve(String className, String name) {
      method has (line 47) | public static boolean has(String className, String name) {
    class MethodResolver (line 59) | public static class MethodResolver {
      method resolve (line 60) | public static String resolve(String className, String name) {
      method has (line 68) | public static boolean has(String className, String name) {
    class ParameterResolver (line 80) | public static class ParameterResolver {
      method register (line 83) | public static void register(String name, Class<?>[] classes) {
      method resolve (line 87) | public static Class<?>[] resolve(String name) {
      method has (line 91) | public static boolean has(String name) {
    method loadParameter (line 101) | public static void loadParameter() {}

FILE: app/src/main/java/com/my/televip/Clients/forkgram.java
  class forkgram (line 12) | public class forkgram {
    class ClassResolver (line 18) | public static class ClassResolver
      method resolve (line 20) | public static String resolve(String name) {
      method has (line 28) | public static boolean has(String name)
    class FieldResolver (line 41) | public static class FieldResolver
      method resolve (line 43) | public static String resolve(String className, String name) {
      method has (line 51) | public static boolean has(String className, String name)
    class MethodResolver (line 64) | public static class MethodResolver
      method resolve (line 66) | public static String resolve(String className, String name) {
      method has (line 74) | public static boolean has(String className, String name)
    class ParameterResolver (line 86) | public static class ParameterResolver
      method register (line 90) | public static void register(String name,  Class<?>[] classes){
      method resolve (line 94) | public static Class<?>[] resolve(String name) {
      method has (line 98) | public static boolean has(String name)
    method loadParameter (line 108) | public static void loadParameter() {}

FILE: app/src/main/java/com/my/televip/Clients/forkgramBeta.java
  class forkgramBeta (line 12) | public class forkgramBeta {
    class ClassResolver (line 17) | public static class ClassResolver
      method resolve (line 19) | public static String resolve(String name) {
      method has (line 27) | public static boolean has(String name)
    class FieldResolver (line 40) | public static class FieldResolver
      method resolve (line 42) | public static String resolve(String className, String name) {
      method has (line 50) | public static boolean has(String className, String name)
    class MethodResolver (line 63) | public static class MethodResolver
      method resolve (line 65) | public static String resolve(String className, String name) {
      method has (line 73) | public static boolean has(String className, String name)
    class ParameterResolver (line 85) | public static class ParameterResolver
      method register (line 89) | public static void register(String name,  Class<?>[] classes){
      method resolve (line 93) | public static Class<?>[] resolve(String name) {
      method has (line 97) | public static boolean has(String name)
    method loadParameter (line 108) | public static void loadParameter() {}

FILE: app/src/main/java/com/my/televip/Clients/iMe.java
  class iMe (line 12) | public class iMe {
    class ClassResolver (line 17) | public static class ClassResolver
      method resolve (line 19) | public static String resolve(String name) {
      method has (line 27) | public static boolean has(String name)
    class FieldResolver (line 40) | public static class FieldResolver
      method resolve (line 42) | public static String resolve(String className, String name) {
      method has (line 50) | public static boolean has(String className, String name)
    class MethodResolver (line 63) | public static class MethodResolver
      method resolve (line 65) | public static String resolve(String className, String name) {
      method has (line 73) | public static boolean has(String className, String name)
    class ParameterResolver (line 85) | public static class ParameterResolver
      method register (line 89) | public static void register(String name,  Class<?>[] classes){
      method resolve (line 93) | public static Class<?>[] resolve(String name) {
      method has (line 97) | public static boolean has(String name)
    method loadParameter (line 108) | public static void loadParameter() {}

FILE: app/src/main/java/com/my/televip/Clients/iMeWeb.java
  class iMeWeb (line 12) | public class iMeWeb {
    class ClassResolver (line 18) | public static class ClassResolver
      method resolve (line 20) | public static String resolve(String name) {
      method has (line 28) | public static boolean has(String name)
    class FieldResolver (line 41) | public static class FieldResolver
      method resolve (line 43) | public static String resolve(String className, String name) {
      method has (line 51) | public static boolean has(String className, String name)
    class MethodResolver (line 64) | public static class MethodResolver
      method resolve (line 66) | public static String resolve(String className, String name) {
      method has (line 74) | public static boolean has(String className, String name)
    class ParameterResolver (line 86) | public static class ParameterResolver
      method register (line 90) | public static void register(String name,  Class<?>[] classes){
      method resolve (line 94) | public static Class<?>[] resolve(String name) {
      method has (line 98) | public static boolean has(String name)
    method loadParameter (line 109) | public static void loadParameter() {}

FILE: app/src/main/java/com/my/televip/Configs/ConfigItem.java
  class ConfigItem (line 3) | public class ConfigItem {
    method ConfigItem (line 17) | public ConfigItem(int type, String key, String text, boolean value, Ru...
    method ConfigItem (line 25) | public ConfigItem(int type, String key, boolean value, Runnable runnab...
    method ConfigItem (line 32) | public ConfigItem(int type, String key) {
    method ConfigItem (line 37) | public ConfigItem(int type) {
    method getType (line 41) | public int getType() { return type; }
    method getKey (line 42) | public String getKey() { return key; }
    method getText (line 43) | public String getText() { return text; }
    method isEnable (line 45) | public boolean isEnable() { return value; }
    method setEnable (line 46) | public void setEnable(boolean value) {
    method getRunnable (line 51) | public Runnable getRunnable() { return runnable; }
    method run (line 53) | public void run() {

FILE: app/src/main/java/com/my/televip/Configs/ConfigManager.java
  class ConfigManager (line 37) | public class ConfigManager {
    method loadAndRead (line 94) | public static void loadAndRead(Context context){
    method load (line 100) | public static void load(Context context) {
    method getItems (line 239) | public static List<ConfigItem> getItems(Context context) {
    method readFeature (line 251) | public static void readFeature(Context context) {
    method isGhostMode (line 271) | public static boolean isGhostMode(){

FILE: app/src/main/java/com/my/televip/Configs/ConfigPreferences.java
  class ConfigPreferences (line 9) | public class ConfigPreferences {
    method init (line 14) | public static void init(){
    method getBoolean (line 18) | public static boolean getBoolean(String key) {
    method putBoolean (line 27) | public static void putBoolean(String key, boolean b) {
    method getString (line 35) | public static String getString(String key) {
    method putString (line 45) | public static void putString(String key, String v) {
    method remove (line 53) | public static void remove(String key){

FILE: app/src/main/java/com/my/televip/Database/MessageDatabase.java
  class MessageDatabase (line 16) | public class MessageDatabase extends SQLiteOpenHelper {
    method MessageDatabase (line 25) | public MessageDatabase(Context context) {
    method getDataBasePath (line 29) | public static String getDataBasePath(Context context) {
    method onCreate (line 37) | @Override
    method onUpgrade (line 49) | @Override
    method addMessage (line 55) | public void addMessage(long id, int msgId, String message) {
    method searchMessage (line 76) | public boolean searchMessage(long id, int msgId, String message) {
    method searchMessage (line 99) | public boolean searchMessage(long id, int msgId) {
    method getMessage (line 119) | public String getMessage(long id, int msgId) {
    method getMessage (line 137) | public String getMessage(long id, int msgId, int msgCount) {
    method getMessageEdited (line 155) | public String getMessageEdited(long id, int msgId, int msgCount) {
    method getMaxMessageCount (line 173) | public int getMaxMessageCount(long id, int msgId) {

FILE: app/src/main/java/com/my/televip/Drawable/ArrowDrawable.java
  class ArrowDrawable (line 13) | public class ArrowDrawable extends Drawable {
    method ArrowDrawable (line 18) | public ArrowDrawable() {
    method draw (line 37) | @Override
    method setAlpha (line 55) | @Override
    method setColorFilter (line 61) | @Override
    method getOpacity (line 67) | @Override

FILE: app/src/main/java/com/my/televip/Drawable/GhostDrawable.java
  class GhostDrawable (line 13) | public class GhostDrawable extends Drawable {
    method GhostDrawable (line 21) | public GhostDrawable() {
    method draw (line 56) | @Override
    method setAlpha (line 80) | @Override
    method setColorFilter (line 86) | @Override
    method getOpacity (line 92) | @Override

FILE: app/src/main/java/com/my/televip/MainHook.java
  class MainHook (line 16) | public class MainHook implements IXposedHookLoadPackage, IXposedHookZygo...
    method initZygote (line 20) | @Override
    method handleLoadPackage (line 23) | @Override

FILE: app/src/main/java/com/my/televip/TeleVip.java
  class TeleVip (line 17) | public class TeleVip {
    method startHook (line 19) | public static void startHook(Context context) {

FILE: app/src/main/java/com/my/televip/Utils.java
  class Utils (line 5) | public class Utils {
    method castList (line 12) | public static <T> ArrayList<T> castList(Object obj, Class<T> clazz)

FILE: app/src/main/java/com/my/televip/application/AndroidUtilities.java
  class AndroidUtilities (line 10) | public class AndroidUtilities {
    method runOnUIThread (line 16) | public static void runOnUIThread(Runnable runnable) {
    method init (line 24) | public static void init(Context context) {
    method dp (line 33) | public static int dp(float value) {
    method getStatusBarHeight (line 40) | public static int getStatusBarHeight(Context context) {

FILE: app/src/main/java/com/my/televip/application/ApplicationLoaderHook.java
  class ApplicationLoaderHook (line 17) | public class ApplicationLoaderHook {
    method init (line 20) | public static void init() {

FILE: app/src/main/java/com/my/televip/audio.java
  class audio (line 9) | public class audio {
    method init (line 14) | public static void init(){
    method start (line 26) | public static void start(){
    method stop (line 53) | public static void stop() {

FILE: app/src/main/java/com/my/televip/base/AbstractMethodHook.java
  class AbstractMethodHook (line 7) | public abstract class AbstractMethodHook extends XC_MethodHook {
    method beforeMethod (line 8) | protected void beforeMethod(MethodHookParam param) throws Throwable {
    method afterMethod (line 12) | protected void afterMethod(MethodHookParam param) throws Throwable {
    method beforeHookedMethod (line 16) | @Override
    method afterHookedMethod (line 26) | @Override

FILE: app/src/main/java/com/my/televip/dex/DexInjector.java
  class DexInjector (line 9) | public class DexInjector {
    method injectDex (line 13) | public static void injectDex(ClassLoader classLoader) {

FILE: app/src/main/java/com/my/televip/features/DisableChannelSwipeBack.java
  class DisableChannelSwipeBack (line 13) | public class DisableChannelSwipeBack {
    method init (line 16) | public static void init() {

FILE: app/src/main/java/com/my/televip/features/DisableNumberRounding.java
  class DisableNumberRounding (line 11) | public class DisableNumberRounding {
    method init (line 15) | public static void init() {

FILE: app/src/main/java/com/my/televip/features/DisableProfileSwipeBack.java
  class DisableProfileSwipeBack (line 13) | public class DisableProfileSwipeBack {
    method init (line 16) | public static void init() {

FILE: app/src/main/java/com/my/televip/features/DisableStories.java
  class DisableStories (line 12) | public class DisableStories {
    method init (line 16) | public static void init() {

FILE: app/src/main/java/com/my/televip/features/DownloadSpeed.java
  class DownloadSpeed (line 12) | public class DownloadSpeed {
    method init (line 16) | public static void init(){

FILE: app/src/main/java/com/my/televip/features/EnableSavingStories.java
  class EnableSavingStories (line 11) | public class EnableSavingStories {
    method init (line 15) | public static void init() {

FILE: app/src/main/java/com/my/televip/features/FixTLError.java
  class FixTLError (line 12) | public class FixTLError {
    method init (line 16) | public static void init(){

FILE: app/src/main/java/com/my/televip/features/GhostMode.java
  class GhostMode (line 15) | public class GhostMode {
    method init (line 19) | public static void init() {

FILE: app/src/main/java/com/my/televip/features/HideOnline.java
  class HideOnline (line 16) | public class HideOnline {
    method init (line 19) | public static void init() {

FILE: app/src/main/java/com/my/televip/features/HidePhone.java
  class HidePhone (line 13) | public class HidePhone {
    method init (line 17) | public static void init() {

FILE: app/src/main/java/com/my/televip/features/HidePinnedMessages.java
  class HidePinnedMessages (line 14) | public class HidePinnedMessages {
    method init (line 17) | public static void init() {

FILE: app/src/main/java/com/my/televip/features/HideProxySponsor.java
  class HideProxySponsor (line 5) | public class HideProxySponsor {
    method isPromoDataRequest (line 7) | public static boolean isPromoDataRequest(Object object){
    method removePromoDialog (line 11) | public static void removePromoDialog() {

FILE: app/src/main/java/com/my/televip/features/HideSeen.java
  class HideSeen (line 21) | public class HideSeen {
    method sendFakeReadResponse (line 27) | public static void sendFakeReadResponse(Object onCompleteOrig) {
    method isTLMessagesReadHistoryRequest (line 47) | public static boolean isTLMessagesReadHistoryRequest(Object object) {
    method isTLChannelsReadHistoryRequest (line 51) | public static boolean isTLChannelsReadHistoryRequest(Object object) {
    method isReadMessageRequest (line 55) | public static boolean isReadMessageRequest(Object object) {
    method saveReadHistory (line 64) | public static void saveReadHistory(Object object) {
    method handleReadAfterSend (line 72) | public static void handleReadAfterSend(Object object) {
    method getDialogMaxMessageId (line 89) | public static void getDialogMaxMessageId(MessagesStorage messagesStora...
    method markReadOnServer (line 111) | public static void markReadOnServer(int messageId, TLRPC.InputPeer pee...
    method extractPeerFromSendObject (line 157) | private static TLRPC.InputPeer extractPeerFromSendObject(Object object) {
    method getPeer (line 168) | private static Object getPeer(Object msg) {
    method getDialogId (line 172) | public static Long getDialogId(TLRPC.InputPeer peer) {
    method getMessagesStorage (line 185) | public static MessagesStorage getMessagesStorage() {
    method getConnectionsManager (line 189) | public static ConnectionsManager getConnectionsManager() {
    method getMessagesController (line 193) | public static MessagesController getMessagesController() {

FILE: app/src/main/java/com/my/televip/features/HideStoryRead.java
  class HideStoryRead (line 3) | public class HideStoryRead {
    method isReadStoriesRequest (line 5) | public static boolean isReadStoriesRequest(Object object){

FILE: app/src/main/java/com/my/televip/features/HideTyping.java
  class HideTyping (line 3) | public class HideTyping {
    method isTypingRequest (line 5) | public static boolean isTypingRequest(Object object){

FILE: app/src/main/java/com/my/televip/features/HideUpdateApp.java
  class HideUpdateApp (line 14) | public class HideUpdateApp {
    method init (line 18) | public static void init() {

FILE: app/src/main/java/com/my/televip/features/PreventMedia.java
  class PreventMedia (line 14) | public class PreventMedia {
    method init (line 18) | public static void init() {

FILE: app/src/main/java/com/my/televip/features/RemovesContentSaving.java
  class RemovesContentSaving (line 12) | public class RemovesContentSaving {
    method init (line 16) | public static void init() {

FILE: app/src/main/java/com/my/televip/features/SaveEditsHistory.java
  class SaveEditsHistory (line 35) | public class SaveEditsHistory {
    method init (line 41) | public static void init(Context context) {
    method getDialogId (line 238) | private static long getDialogId(TLRPC.Peer peer) {

FILE: app/src/main/java/com/my/televip/features/SecretMediaSave.java
  class SecretMediaSave (line 23) | public class SecretMediaSave {
    method init (line 30) | public static void init() {
    method bindPhotoViewerToActivity (line 91) | private static void bindPhotoViewerToActivity(ChatMessageCell cell) {
    method extractActivityFromContext (line 103) | private static Activity extractActivityFromContext(Context context) {

FILE: app/src/main/java/com/my/televip/features/ShowDeletedMessages.java
  class ShowDeletedMessages (line 35) | public class ShowDeletedMessages {
    method makeLooper (line 50) | public static Looper makeLooper(String str) {
    method markMessagesDeleted (line 56) | public static void markMessagesDeleted(Object thisMessagesStorage, fin...
    method markMessagesDeletedForController (line 97) | public static void markMessagesDeletedForController(Object thisMessage...
    method isShouldDeletedMessage (line 101) | private static DeletedMessageInfo isShouldDeletedMessage(long channelI...
    method isDeletedMessage (line 108) | private static DeletedMessageInfo isDeletedMessage(long channelID, int...
    method isShouldDeletedMessage2 (line 115) | private static DeletedMessageInfo isShouldDeletedMessage2(long channel...
    method addShouldDeletedMessage (line 122) | private static void addShouldDeletedMessage(long channelID, Integer me...
    method addShouldDeletedMessage2 (line 144) | private static void addShouldDeletedMessage2(long channelID, Integer m...
    method init (line 167) | public static void init()
    method initProcessing (line 250) | public static void initProcessing() {
    method initAutoDownload (line 522) | public static void initAutoDownload() {

FILE: app/src/main/java/com/my/televip/features/TelePremium.java
  class TelePremium (line 16) | public class TelePremium {
    method init (line 20) | public static void init() {

FILE: app/src/main/java/com/my/televip/features/otherFeatures/ChatHook.java
  class ChatHook (line 24) | public class ChatHook {
    method init (line 28) | public static void init(Context context, String className) {

FILE: app/src/main/java/com/my/televip/features/otherFeatures/CopyNameHook.java
  class CopyNameHook (line 19) | public class CopyNameHook {
    method init (line 21) | public static void init(Context context) {

FILE: app/src/main/java/com/my/televip/features/otherFeatures/FeatureInitializer.java
  class FeatureInitializer (line 14) | public class FeatureInitializer {
    method init (line 16) | public static void init(Context context) {

FILE: app/src/main/java/com/my/televip/features/otherFeatures/FeatureStateManager.java
  class FeatureStateManager (line 8) | public class FeatureStateManager {
    method isChatEnabled (line 16) | public static boolean isChatEnabled() {
    method isProfileEnabled (line 20) | public static boolean isProfileEnabled() {
    method getChatClass (line 24) | public static String getChatClass() {
    method getProfileClass (line 28) | public static String getProfileClass() {
    method saveChat (line 32) | public static void saveChat(String className) {
    method saveProfile (line 37) | public static void saveProfile(String className) {
    method reset (line 42) | public static void reset(Context context) {

FILE: app/src/main/java/com/my/televip/features/otherFeatures/ProfileHook.java
  class ProfileHook (line 19) | public class ProfileHook {
    method init (line 23) | public static void init(Context context, String className) {
    method getID (line 72) | private static long getID(ProfileActivity profile) {

FILE: app/src/main/java/com/my/televip/hooks/HMethod.java
  class HMethod (line 7) | public class HMethod {
    method hookMethod (line 9) | public static void hookMethod(Class<?> cls, String name, Object... arg...
    method hookMethod (line 19) | public static void hookMethod(Class<?> cls, String[] names, Object... ...

FILE: app/src/main/java/com/my/televip/language/Keys.java
  class Keys (line 3) | public class Keys {

FILE: app/src/main/java/com/my/televip/language/Translator.java
  class Translator (line 17) | public class Translator {
    method init (line 23) | public static void init() {
    method loadAllLanguages (line 33) | private static void loadAllLanguages() {
    method readFully (line 63) | private static String readFully(InputStream is) throws Exception {
    method get (line 75) | public static String get(String key) {
    method get (line 102) | public static String get(String key, Object... args) {

FILE: app/src/main/java/com/my/televip/logging/Logger.java
  class Logger (line 14) | public class Logger {
    method w (line 16) | public static void w(String text)
    method l (line 21) | public static void l(String text)
    method e (line 26) | public static void e(Throwable throwable) {

FILE: app/src/main/java/com/my/televip/obfuscate/AutomationResolver.java
  class AutomationResolver (line 9) | public class AutomationResolver {
    method resolve (line 13) | public static String resolve(String className)
    method resolveObject (line 22) | public static Class<?>[] resolveObject(String name, Class<?>[] classes) {
    method resolve (line 31) | public static String resolve(String className, String name, ResolverTy...
    method merge (line 47) | public static Object[] merge(Class<?>[] classes, XC_MethodHook hook)
    type ResolverType (line 58) | public enum ResolverType

FILE: app/src/main/java/com/my/televip/obfuscate/struct/ClassInfo.java
  class ClassInfo (line 3) | public class ClassInfo {
    method ClassInfo (line 7) | public ClassInfo(String original, String resolved)
    method getOriginal (line 13) | public String getOriginal() {
    method getResolved (line 17) | public String getResolved() {

FILE: app/src/main/java/com/my/televip/obfuscate/struct/FieldInfo.java
  class FieldInfo (line 3) | public class FieldInfo {
    method FieldInfo (line 8) | public FieldInfo(String className, String original, String resolved)
    method getClassName (line 15) | public String getClassName() {
    method getOriginal (line 19) | public String getOriginal() {
    method getResolved (line 23) | public String getResolved() {

FILE: app/src/main/java/com/my/televip/obfuscate/struct/MethodInfo.java
  class MethodInfo (line 3) | public class MethodInfo {
    method MethodInfo (line 8) | public MethodInfo(String className, String original, String resolved)
    method getClassName (line 15) | public String getClassName() {
    method getOriginal (line 19) | public String getOriginal() {
    method getResolved (line 23) | public String getResolved() {

FILE: app/src/main/java/com/my/televip/obfuscate/struct/ResolverRegistry.java
  class ResolverRegistry (line 6) | public class ResolverRegistry {
    method ResolverRegistry (line 14) | public ResolverRegistry(Class<?> clazz){
    method hasClass (line 36) | public boolean hasClass(String className){
    method resolveClass (line 44) | public String resolveClass(String className){
    method hasField (line 52) | public boolean hasField(String className, String name){
    method resolveField (line 60) | public String resolveField(String className, String name){
    method hasMethod (line 68) | public boolean hasMethod(String className, String name){
    method resolveMethod (line 76) | public String resolveMethod(String className, String name){
    method hasParameter (line 84) | public boolean hasParameter(String name){
    method resolveParameter (line 92) | public Class<?>[] resolveParameter(String name){
    method loadParameter (line 100) | public void loadParameter(){
    method getResolverClass (line 106) | public static Class<?> getResolverClass() {

FILE: app/src/main/java/com/my/televip/settings/SettingsManager.java
  class SettingsManager (line 11) | public class SettingsManager {
    method init (line 13) | public static void init(SettingsController settingsController) {

FILE: app/src/main/java/com/my/televip/settings/controller/SettingsController.java
  class SettingsController (line 16) | public class SettingsController {
    method SettingsController (line 21) | public SettingsController(Context context) {
    method openView (line 25) | public void openView(){
    method showDialog (line 43) | private void showDialog() {
    method show (line 66) | public void show(View target) {
    method hide (line 80) | public void hide() {

FILE: app/src/main/java/com/my/televip/settings/hook/SettingsHook.java
  class SettingsHook (line 30) | public class SettingsHook {
    method newSettings (line 35) | public void newSettings(Class<?> SettingsActivityClass, Class<?> Setti...
    method oldSettings (line 113) | public void oldSettings(SettingsController settingsController){

FILE: app/src/main/java/com/my/televip/settings/ui/SettingsActivity.java
  class SettingsActivity (line 28) | public class SettingsActivity {
    method createView (line 38) | public View createView(SettingsController settingsController) {
    method SettingsActivity (line 90) | public SettingsActivity(Context context) {
    method init (line 95) | public static void init(SettingsController settingsController) {

FILE: app/src/main/java/com/my/televip/settings/ui/SettingsAdapter.java
  class SettingsAdapter (line 29) | public class SettingsAdapter {
    method getRow (line 36) | public static int getRow(int position) { return items.get(position).ge...
    method getRowCount (line 38) | public static int getRowCount() {
    method onBindViewHolder (line 42) | public static void onBindViewHolder(Context context, Object holder, Se...
    class HeaderCellHolder (line 159) | public static class HeaderCellHolder {
      method HeaderCellHolder (line 162) | public HeaderCellHolder(Object obj) {
    class TextCheckCellHolder (line 167) | public static class TextCheckCellHolder {
      method TextCheckCellHolder (line 170) | public TextCheckCellHolder(Object obj) {
    class TextSettingsCellHolder (line 175) | public static class TextSettingsCellHolder {
      method TextSettingsCellHolder (line 178) | public TextSettingsCellHolder(Object obj) {
    class ShadowSectionCellHolder (line 183) | public static class ShadowSectionCellHolder {
      method ShadowSectionCellHolder (line 186) | public ShadowSectionCellHolder(Object obj) {
    class TextInfoCellHolder (line 191) | public static class TextInfoCellHolder {
      method TextInfoCellHolder (line 194) | public TextInfoCellHolder(Object obj) {

FILE: app/src/main/java/com/my/televip/structs/DeletedMessageInfo.java
  class DeletedMessageInfo (line 5) | public class DeletedMessageInfo {
    method DeletedMessageInfo (line 12) | public DeletedMessageInfo(int selectedAccount, long channelID, ArrayLi...
    method DeletedMessageInfo (line 19) | public DeletedMessageInfo(int selectedAccount, long channelID, int mes...
    method getSelectedAccount (line 27) | public int getSelectedAccount() {
    method getChannelID (line 31) | public long getChannelID()
    method getMessageIds (line 37) | public ArrayList<Integer> getMessageIds() {
    method insertMessageId (line 41) | public void insertMessageId(Integer messageId) {

FILE: app/src/main/java/com/my/televip/ui/toolBar/MainToolBar.java
  class MainToolBar (line 17) | public class MainToolBar extends LinearLayout {
    method MainToolBar (line 23) | public MainToolBar(Context context){
    method getStatusBarHeight (line 29) | private int getStatusBarHeight(Context context) {
    method createToolbar (line 39) | public void createToolbar(){
    method setTextTitle (line 101) | public void setTextTitle(CharSequence title) {
    method setColorTitle (line 105) | public void setColorTitle(int colorTitle) {
    method setImageDrawable (line 109) | public void setImageDrawable(Drawable drawable){
    method setRippleColor (line 113) | public void setRippleColor(int color) {
    method getImage (line 122) | public ImageView getImage(){

FILE: app/src/main/java/com/my/televip/virtuals/ActionBar/ActionBarMenuItem.java
  class ActionBarMenuItem (line 7) | public class ActionBarMenuItem {
    method ActionBarMenuItem (line 11) | public ActionBarMenuItem(Object obj){
    method lazilyAddSubItem (line 15) | public void lazilyAddSubItem(int id, int resId, String name){
    method addSubItem (line 18) | public void addSubItem(int id, int resId, String name){
    method getActionBarMenuItem (line 22) | public Object getActionBarMenuItem(){

FILE: app/src/main/java/com/my/televip/virtuals/ActionBar/AlertDialog.java
  class AlertDialog (line 16) | public class AlertDialog {
    type OnClick (line 19) | @FunctionalInterface
      method onClick (line 21) | void onClick();
    method click (line 24) | public static Object click(OnClick lambda) {
    method AlertDialog (line 44) | public AlertDialog(Context context) {
    method setTitle (line 48) | public void setTitle(CharSequence title) {
    method setView (line 52) | public void setView(View view) {
    method setMessage (line 56) | public void setMessage(CharSequence message) {
    method setPositiveButton (line 60) | public void setPositiveButton(CharSequence text, Object obj) {
    method setNegativeButton (line 66) | public void setNegativeButton(CharSequence text, Object obj) {
    method setNeutralButton (line 72) | public void setNeutralButton(CharSequence text, Object obj) {
    method show (line 78) | public void show() {

FILE: app/src/main/java/com/my/televip/virtuals/ActionBar/SimpleTextView.java
  class SimpleTextView (line 9) | public class SimpleTextView {
    method SimpleTextView (line 13) | public SimpleTextView(Object textview){
    method getText (line 17) | public CharSequence getText(){
    method setText (line 21) | public void setText(CharSequence text){
    method getSimpleTextView (line 25) | public View getSimpleTextView(){

FILE: app/src/main/java/com/my/televip/virtuals/Adapters/DrawerLayoutAdapter.java
  class DrawerLayoutAdapter (line 9) | public class DrawerLayoutAdapter {
    method DrawerLayoutAdapter (line 13) | public DrawerLayoutAdapter(Object obj){
    method getItems (line 17) | public ArrayList<?> getItems(){

FILE: app/src/main/java/com/my/televip/virtuals/ChatMessageCellDefault.java
  class ChatMessageCellDefault (line 8) | public class ChatMessageCellDefault {
    method ChatMessageCellDefault (line 11) | protected ChatMessageCellDefault(Object instance)
    method getTimeTextWidth (line 16) | public int getTimeTextWidth()
    method getTimeWidth (line 21) | public int getTimeWidth()
    method setTimeTextWidth (line 26) | public void setTimeTextWidth(int width)
    method setTimeWidth (line 38) | public void setTimeWidth(int width)

FILE: app/src/main/java/com/my/televip/virtuals/OfficialChatMessageCell.java
  class OfficialChatMessageCell (line 8) | public class OfficialChatMessageCell extends ChatMessageCellDefault {
    method OfficialChatMessageCell (line 9) | public OfficialChatMessageCell(Object instance) {
    method getCurrentTimeString (line 13) | public CharSequence getCurrentTimeString()
    method setCurrentTimeString (line 18) | public void setCurrentTimeString(CharSequence currentTimeString)

FILE: app/src/main/java/com/my/televip/virtuals/SQLite/SQLiteCursor.java
  class SQLiteCursor (line 8) | public class SQLiteCursor {
    method SQLiteCursor (line 12) | public SQLiteCursor(Object obj){
    method next (line 16) | public boolean next(){
    method intValue (line 20) | public int intValue(int columnIndex) {
    method dispose (line 23) | public void dispose() {
    method byteBufferValue (line 27) | public NativeByteBuffer byteBufferValue(int columnIndex){

FILE: app/src/main/java/com/my/televip/virtuals/SQLite/SQLiteDatabase.java
  class SQLiteDatabase (line 7) | public class SQLiteDatabase {
    method SQLiteDatabase (line 11) | public SQLiteDatabase(Object obj){ sqLiteDatabase = obj; }
    method queryFinalized (line 13) | public SQLiteCursor queryFinalized(String s){

FILE: app/src/main/java/com/my/televip/virtuals/SettingsIconResolver.java
  class SettingsIconResolver (line 9) | public class SettingsIconResolver {
    method getIconSettings (line 13) | public static int getIconSettings() {

FILE: app/src/main/java/com/my/televip/virtuals/TeleVip/Bridge/Bridge.java
  class Bridge (line 26) | public class Bridge {
    method getLayoutManager (line 28) | public static Object getLayoutManager(Context context){
    method init (line 32) | public static void init(Context context, SettingsController settingsCo...

FILE: app/src/main/java/com/my/televip/virtuals/Theme.java
  class Theme (line 18) | public class Theme {
    method getTextPaint (line 20) | public static TextPaint getTextPaint(ClassLoader classLoader)
    method isLight (line 64) | public static boolean isLight(){
    method getBackgroundGrayColor (line 68) | public static int getBackgroundGrayColor(){
    method getBackgroundWhiteOrBlueColor (line 72) | public static int getBackgroundWhiteOrBlueColor(){
    method getToolBarColor (line 76) | public static int getToolBarColor(){
    method getToolBarRippleColor (line 80) | public static int getToolBarRippleColor(){
    method getTextToolBarColor (line 84) | public static int getTextToolBarColor(){
    method getTextColor (line 87) | public static int getTextColor(){
    method getTextBlueColor (line 91) | public static int getTextBlueColor(){
    method getTextGrayColor (line 94) | public static int getTextGrayColor(){
    method getArrowDrawableColor (line 98) | public static int getArrowDrawableColor(){

FILE: app/src/main/java/com/my/televip/virtuals/androidx/ViewHolder.java
  class ViewHolder (line 7) | public class ViewHolder {
    method ViewHolder (line 11) | public ViewHolder(Object view){
    method getItemView (line 15) | public View getItemView(){
    method getAdapterPosition (line 18) | public int getAdapterPosition(){

FILE: app/src/main/java/com/my/televip/virtuals/messenger/BaseController.java
  class BaseController (line 7) | public class BaseController {
    method BaseController (line 11) | public BaseController(Object obj){baseController = obj;}
    method getUserConfig (line 13) | public UserConfig getUserConfig(){

FILE: app/src/main/java/com/my/televip/virtuals/messenger/DispatchQueue.java
  class DispatchQueue (line 7) | public class DispatchQueue {
    method DispatchQueue (line 11) | public DispatchQueue(Object obj){
    method postRunnable (line 15) | public void postRunnable(Runnable runnable) {

FILE: app/src/main/java/com/my/televip/virtuals/messenger/FileLoadOperation.java
  class FileLoadOperation (line 7) | public class FileLoadOperation {
    method FileLoadOperation (line 11) | public FileLoadOperation(Object fileOperation){ this.fileOperation = f...
    method setDownloadChunkSizeBig (line 13) | public void setDownloadChunkSizeBig(int v){
    method setMaxDownloadRequests (line 17) | public void setMaxDownloadRequests(int v){
    method setMaxDownloadRequestsBig (line 21) | public void setMaxDownloadRequestsBig(int v){
    method setMaxCdnParts (line 25) | public void setMaxCdnParts(int v){

FILE: app/src/main/java/com/my/televip/virtuals/messenger/FileLoader.java
  class FileLoader (line 11) | public class FileLoader {
    method FileLoader (line 15) | public FileLoader(Object fileLoader){
    method getLocalFile (line 19) | public File getLocalFile(ImageLocation location) {
    method getInstance (line 23) | public static FileLoader getInstance(int num) {

FILE: app/src/main/java/com/my/televip/virtuals/messenger/ImageLocation.java
  class ImageLocation (line 3) | public class ImageLocation {
    method ImageLocation (line 7) | public ImageLocation(Object image){

FILE: app/src/main/java/com/my/televip/virtuals/messenger/ImageReceiver.java
  class ImageReceiver (line 7) | public class ImageReceiver {
    method ImageReceiver (line 11) | public ImageReceiver(Object imageReceiver){
    method getImageLocation (line 15) | public ImageLocation getImageLocation() {

FILE: app/src/main/java/com/my/televip/virtuals/messenger/LocaleController.java
  class LocaleController (line 11) | public class LocaleController {
    method LocaleController (line 15) | public LocaleController(){
    method getCurrentLocale (line 19) | public Locale getCurrentLocale() {

FILE: app/src/main/java/com/my/televip/virtuals/messenger/MessageObject.java
  class MessageObject (line 10) | public class MessageObject {
    method MessageObject (line 14) | public MessageObject(Object obj){
    method getMessageOwner (line 18) | public TLRPC.Message getMessageOwner(){
    method getDialogId (line 22) | public long getDialogId() {
    method getDialogId (line 26) | public static long getDialogId(TLRPC.Message message) {
    method getMessageObject (line 30) | public Object getMessageObject(){

FILE: app/src/main/java/com/my/televip/virtuals/messenger/MessagesController.java
  class MessagesController (line 12) | public class MessagesController {
    method MessagesController (line 15) | public MessagesController(Object instance)
    method processNewDifferenceParams (line 20) | public void processNewDifferenceParams(int seq, int pts, int date, int...
    method processNewDifferenceParams (line 24) | public void processNewDifferenceParams(int pts, int date, int pts_coun...
    method getInputChannel (line 29) | public static Object getInputChannel(TLRPC.InputPeer peer) {
    method getGlobalMainSettings (line 33) | public static SharedPreferences getGlobalMainSettings() {
    method getInputChannel (line 38) | public static Object getInputChannel(long id) {
    method getInstance (line 42) | public static MessagesController getInstance(int num){

FILE: app/src/main/java/com/my/televip/virtuals/messenger/MessagesStorage.java
  class MessagesStorage (line 10) | public class MessagesStorage {
    method MessagesStorage (line 14) | public MessagesStorage(Object obj) {
    method getDatabase (line 18) | public SQLiteDatabase getDatabase() {
    method getStorageQueue (line 23) | public DispatchQueue getStorageQueue() {
    method getInstance (line 28) | public static MessagesStorage getInstance(int num) {

FILE: app/src/main/java/com/my/televip/virtuals/messenger/NotificationCenter.java
  class NotificationCenter (line 9) | public class NotificationCenter {
    method getMessagesDeleted (line 16) | public static int getMessagesDeleted() {
    method getTlSchemeParseException (line 23) | public static int getTlSchemeParseException() {

FILE: app/src/main/java/com/my/televip/virtuals/messenger/UserConfig.java
  class UserConfig (line 10) | public class UserConfig {
    method UserConfig (line 14) | public UserConfig(Object obl){
    method getSelectedAccount (line 18) | public static int getSelectedAccount() {
    method getClientUserId (line 23) | public long getClientUserId(){
    method getCurrentUser (line 27) | public TLRPC.User getCurrentUser(){

FILE: app/src/main/java/com/my/televip/virtuals/messenger/Utilities.java
  class Utilities (line 9) | public class Utilities {
    method getStageQueue (line 11) | public static DispatchQueue getStageQueue(){

FILE: app/src/main/java/com/my/televip/virtuals/messenger/browser/Browser.java
  class Browser (line 10) | public class Browser {
    method openUrl (line 12) | public static void openUrl(Context context, String url){

FILE: app/src/main/java/com/my/televip/virtuals/tgnet/ConnectionsManager.java
  class ConnectionsManager (line 9) | public class ConnectionsManager {
    method ConnectionsManager (line 12) | public ConnectionsManager(Object instance)
    method sendRequest (line 17) | public void sendRequest(Object object, Object completionBlock) {
    method getInstance (line 21) | public static ConnectionsManager getInstance(int num){

FILE: app/src/main/java/com/my/televip/virtuals/tgnet/NativeByteBuffer.java
  class NativeByteBuffer (line 7) | public class NativeByteBuffer {
    method NativeByteBuffer (line 11) | public NativeByteBuffer(Object obj){
    method reuse (line 15) | public void reuse(){
    method readInt32 (line 19) | public int readInt32(boolean exception) {

FILE: app/src/main/java/com/my/televip/virtuals/tgnet/RequestDelegate.java
  class RequestDelegate (line 12) | public class RequestDelegate {
    method RequestDelegate (line 16) | public RequestDelegate(Object obj){
    method run (line 20) | public void run(Object response, Object error){
    type requestDelegate (line 25) | @FunctionalInterface
      method run (line 27) | void run(Object response, Object error);
    method run (line 30) | public static Object run(requestDelegate lambda) {

FILE: app/src/main/java/com/my/televip/virtuals/tgnet/TLRPC.java
  class TLRPC (line 13) | public class TLRPC {
    class Peer (line 14) | public static class Peer {
      method Peer (line 17) | public Peer(Object peer) {
      method getUser_id (line 20) | public long getUser_id(){
      method getChat_id (line 23) | public long getChat_id(){
      method getChannel_id (line 26) | public long getChannel_id(){
    class User (line 31) | public static class User {
      method User (line 34) | public User(Object user) {
      method getPhone (line 38) | public String getPhone() {
      method setPhone (line 42) | public void setPhone(String phone){
      method getUser (line 46) | public Object getUser(){
    class Message (line 52) | public static class Message {
      method Message (line 55) | public Message(Object message) {
      method getID (line 58) | public int getID(){
      method getMessage (line 65) | public String getMessage(){
      method getFrom_id (line 69) | public Peer getFrom_id(){
      method getFlags (line 73) | public int getFlags(){
      method setFlags (line 76) | public void setFlags(int flags){
      method getTtl (line 80) | public int getTtl(){
      method setTtl (line 83) | public void setTtl(Object ttl){
      method TLdeserialize (line 87) | public static Message TLdeserialize(NativeByteBuffer stream, int con...
      method readAttachPath (line 91) | public void readAttachPath(NativeByteBuffer stream, long currentUser...
    class InputPeer (line 95) | public static class InputPeer {
      method InputPeer (line 97) | public InputPeer(Object message) {
      method getUser_id (line 100) | public long getUser_id(){
      method getChat_id (line 103) | public long getChat_id(){
      method getChannel_id (line 106) | public long getChannel_id(){
    class messages_Messages (line 112) | public static class messages_Messages {
      method messages_Messages (line 115) | public messages_Messages(Object messages) {
      method getMessages (line 118) | public ArrayList<Object> getMessages(){
    class TL_updateDeleteChannelMessages (line 123) | public static class TL_updateDeleteChannelMessages {
      method TL_updateDeleteChannelMessages (line 126) | public TL_updateDeleteChannelMessages(Object instance)
      method getChannelID (line 131) | public long getChannelID()
      method getMessages (line 144) | public ArrayList<Integer> getMessages()
    class TL_updateDeleteMessages (line 159) | public static class TL_updateDeleteMessages {
      method TL_updateDeleteMessages (line 162) | public TL_updateDeleteMessages(Object instance)
      method getMessages (line 167) | public ArrayList<Integer> getMessages()
    class TL_messages_affectedMessages (line 182) | public static class TL_messages_affectedMessages {
      method TL_messages_affectedMessages (line 185) | public TL_messages_affectedMessages()
      method TL_messages_affectedMessages (line 189) | public TL_messages_affectedMessages(Object instance)
      method getPts (line 194) | public int getPts(){
      method getPtsCount (line 198) | public int getPtsCount(){
      method setPts (line 201) | public void setPts(int pts){
      method setPtsCount (line 205) | public void setPtsCount(int pts_count){
      method getTL_messages_affectedMessages (line 209) | public Object getTL_messages_affectedMessages(){
    class TL_channels_readHistory (line 215) | public static class TL_channels_readHistory {
      method TL_channels_readHistory (line 218) | public TL_channels_readHistory()
      method TL_channels_readHistory (line 222) | public TL_channels_readHistory(Object instance)
      method setChannel (line 227) | public void setChannel(Object channel){
      method setMax_id (line 231) | public void setMax_id(int max_id){
      method getTL_channels_readHistory (line 235) | public Object getTL_channels_readHistory(){
    class TL_messages_readHistory (line 240) | public static class TL_messages_readHistory {
      method TL_messages_readHistory (line 243) | public TL_messages_readHistory()
      method TL_messages_readHistory (line 248) | public TL_messages_readHistory(Object instance)
      method setPeer (line 253) | public void setPeer(InputPeer peer){
      method setMax_id (line 257) | public void setMax_id(int max_id){
      method getTL_messages_readHistory (line 261) | public Object getTL_messages_readHistory(){

FILE: app/src/main/java/com/my/televip/virtuals/ui/BaseFragment.java
  class BaseFragment (line 8) | public class BaseFragment {
    method BaseFragment (line 12) | public BaseFragment(Object obj){
    method getUserConfig (line 16) | public UserConfig getUserConfig(){

FILE: app/src/main/java/com/my/televip/virtuals/ui/Cells/ChatMessageCell.java
  class ChatMessageCell (line 27) | public class ChatMessageCell {
    method init (line 33) | public static void init() {
    method convertToStringBuilder (line 80) | public static SpannableStringBuilder convertToStringBuilder(CharSequen...
    method setSpannableStringBuilderText (line 87) | private static void setSpannableStringBuilderText(String text, Object ...
    method ChatMessageCell (line 108) | public ChatMessageCell(Object cell){ chatMessageCell = cell; }
    method getMessageObject (line 110) | public MessageObject getMessageObject() {
    method getChatMessageCell (line 114) | public Object getChatMessageCell(){

FILE: app/src/main/java/com/my/televip/virtuals/ui/Cells/HeaderCell.java
  class HeaderCell (line 11) | public class HeaderCell {
    method HeaderCell (line 15) | public HeaderCell(Context context){
    method HeaderCell (line 20) | public HeaderCell(Object obj){
    method getView (line 24) | public View getView(){
    method setText (line 28) | public void setText(CharSequence text){

FILE: app/src/main/java/com/my/televip/virtuals/ui/Cells/ShadowSectionCell.java
  class ShadowSectionCell (line 11) | public class ShadowSectionCell {
    method ShadowSectionCell (line 15) | public ShadowSectionCell(Context context){
    method getView (line 20) | public View getView(){

FILE: app/src/main/java/com/my/televip/virtuals/ui/Cells/TextCheckCell.java
  class TextCheckCell (line 12) | public class TextCheckCell {
    method TextCheckCell (line 16) | public TextCheckCell(Context context){
    method TextCheckCell (line 21) | public TextCheckCell(Object obj){
    method setTextAndValueAndCheck (line 25) | public void setTextAndValueAndCheck(CharSequence text, String value, b...
    method setTextAndCheck (line 29) | public void setTextAndCheck(CharSequence text, boolean checked, boolea...
    method setChecked (line 33) | public void setChecked(boolean checked){
    method isChecked (line 37) | public boolean isChecked(){
    method getTextView (line 41) | public TextView getTextView(){
    method getView (line 45) | public View getView(){

FILE: app/src/main/java/com/my/televip/virtuals/ui/Cells/TextInfoCell.java
  class TextInfoCell (line 13) | public class TextInfoCell extends FrameLayout {
    method TextInfoCell (line 17) | public TextInfoCell(Context context) {
    method onMeasure (line 28) | @Override
    method getTextView (line 33) | public TextView getTextView() {

FILE: app/src/main/java/com/my/televip/virtuals/ui/Cells/TextSettingsCell.java
  class TextSettingsCell (line 13) | public class TextSettingsCell {
    method TextSettingsCell (line 17) | public TextSettingsCell(Context context){
    method TextSettingsCell (line 21) | public TextSettingsCell(Object obj){
    method getView (line 25) | public View getView(){
    method setText (line 29) | public void setText(CharSequence text, boolean divider){
    method getTextView (line 33) | public TextView getTextView(){

FILE: app/src/main/java/com/my/televip/virtuals/ui/ChatActivity.java
  class ChatActivity (line 11) | public class ChatActivity {
    method ChatActivity (line 16) | public ChatActivity(Object obj){
    method getSelectedObject (line 20) | public MessageObject getSelectedObject(){
    method getHeaderItem (line 24) | public ActionBarMenuItem getHeaderItem(){
    method getPinnedMessageView (line 27) | public View getPinnedMessageView(){
    method scrollToMessageId (line 31) | public void scrollToMessageId(int id, int fromMessageId, boolean selec...

FILE: app/src/main/java/com/my/televip/virtuals/ui/Components/LayoutHelper.java
  class LayoutHelper (line 7) | public class LayoutHelper {
    method getSize (line 12) | private static int getSize(float size) {
    method createFrame (line 16) | public static FrameLayout.LayoutParams createFrame(int width, float he...

FILE: app/src/main/java/com/my/televip/virtuals/ui/Components/RecyclerListView.java
  class RecyclerListView (line 13) | public class RecyclerListView {
    method RecyclerListView (line 17) | public RecyclerListView(Context context){
    method setAdapter (line 21) | public void setAdapter(Object adapter) {
    method setBackgroundColor (line 25) | public void setBackgroundColor(int color) {
    method setVerticalScrollBarEnabled (line 29) | public void setVerticalScrollBarEnabled(boolean b) {
    method setLayoutManager (line 33) | public void setLayoutManager(Object layout) {
    method getRecyclerListView (line 37) | public View getRecyclerListView() {

FILE: app/src/main/java/com/my/televip/virtuals/ui/LaunchActivity.java
  class LaunchActivity (line 9) | public class LaunchActivity {
    method LaunchActivity (line 14) | public LaunchActivity(Object obj){

FILE: app/src/main/java/com/my/televip/virtuals/ui/PhotoViewer.java
  class PhotoViewer (line 13) | public class PhotoViewer {
    method PhotoViewer (line 17) | public PhotoViewer(Object photoViewer){
    method getInstance (line 21) | public static PhotoViewer getInstance(){
    method setParentActivity (line 25) | public void setParentActivity(Activity activity){
    method openPhoto (line 29) | public void openPhoto(MessageObject messageObject, long l, long l2, lo...
    class PhotoViewerProvider (line 33) | public static class PhotoViewerProvider {
      method PhotoViewerProvider (line 36) | public PhotoViewerProvider(Object photoViewer) {
      method getPlaceForPhoto (line 40) | public PlaceProviderObject getPlaceForPhoto(MessageObject messageObj...
      method getPhotoViewerProvider (line 44) | public Object getPhotoViewerProvider() {
    class PlaceProviderObject (line 50) | public static class PlaceProviderObject {
      method PlaceProviderObject (line 53) | public PlaceProviderObject(Object placeProvider) {
      method getImageReceiver (line 57) | public ImageReceiver getImageReceiver() {

FILE: app/src/main/java/com/my/televip/virtuals/ui/ProfileActivity.java
  class ProfileActivity (line 8) | public class ProfileActivity {
    method ProfileActivity (line 12) | public ProfileActivity(Object obj){
    method getChatId (line 16) | public long getChatId(){
    method getUserId (line 20) | public long getUserId(){
    method getNameTextView (line 24) | public Object[] getNameTextView(){
    method getOnlineTextView (line 27) | public Object[] getOnlineTextView(){
    method getOtherItem (line 31) | public ActionBarMenuItem getOtherItem(){
    method getBaseFragment (line 35) | public BaseFragment getBaseFragment(){

FILE: app/src/main/java/com/my/televip/virtuals/ui/SecretMediaViewer.java
  class SecretMediaViewer (line 18) | public class SecretMediaViewer {
    method openMedia (line 22) | public static void openMedia() {

FILE: app/src/test/java/com/my/televip/ExampleUnitTest.java
  class ExampleUnitTest (line 12) | public class ExampleUnitTest {
    method addition_isCorrect (line 13) | @Test

FILE: settingsadapter/src/main/java/com/televip/SettingsAdapter/Bridge.java
  class Bridge (line 3) | public class Bridge {
    method getRow (line 5) | public static int getRow(int pos){ return 0; }
    method getRowCount (line 6) | public static int getRowCount(){ return 0; }
    method onBindViewHolder (line 8) | public static void onBindViewHolder(Object holder, int position, int v...
    method log (line 10) | public static void log(String log){}

FILE: settingsadapter/src/main/java/com/televip/SettingsAdapter/SettingsAdapter.java
  class SettingsAdapter (line 15) | public class SettingsAdapter {
    method getLayoutManager (line 17) | public static LinearLayoutManager getLayoutManager(Context context){
    class RecyclerListView (line 21) | public static class RecyclerListView extends RecyclerView {
      method RecyclerListView (line 23) | public RecyclerListView(@NonNull Context context) {
    class ListAdapter (line 29) | public static class ListAdapter extends RecyclerView.Adapter<RecyclerV...
      method ListAdapter (line 33) | public ListAdapter(Context context) {
      method getItemViewType (line 37) | @Override
      method onBindViewHolder (line 43) | @Override
      method getItemCount (line 50) | @Override
      method onCreateViewHolder (line 55) | @NonNull
    class TextCheckCellHolder (line 76) | static class TextCheckCellHolder extends RecyclerView.ViewHolder {
      method TextCheckCellHolder (line 80) | public TextCheckCellHolder(View view, Object  textCheckCell) {
    class HeaderCellHolder (line 86) | static class HeaderCellHolder extends RecyclerView.ViewHolder {
      method HeaderCellHolder (line 90) | public HeaderCellHolder(View view, Object headerCell) {
    class TextSettingsCellHolder (line 96) | static class TextSettingsCellHolder extends RecyclerView.ViewHolder {
      method TextSettingsCellHolder (line 100) | public TextSettingsCellHolder(View view, Object textSettingsCell) {
    class ShadowSectionCellHolder (line 106) | static class ShadowSectionCellHolder extends RecyclerView.ViewHolder {
      method ShadowSectionCellHolder (line 110) | public ShadowSectionCellHolder(View view) {
    class TextInfoCellHolder (line 115) | static class TextInfoCellHolder extends RecyclerView.ViewHolder {
      method TextInfoCellHolder (line 119) | public TextInfoCellHolder(View view) {

FILE: settingsadapter/src/test/java/com/televip/settingsadapter/ExampleUnitTest.java
  class ExampleUnitTest (line 8) | public class ExampleUnitTest {
Condensed preview — 162 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (452K chars).
[
  {
    "path": ".gitignore",
    "chars": 726,
    "preview": "<<<<<<< HEAD\n*.iml\n.gradle\n/local.properties\n/.idea/caches\n/.idea/libraries\n/.idea/modules.xml\n/.idea/workspace.xml\n/.id"
  },
  {
    "path": "LICENSE",
    "chars": 35161,
    "preview": "                           GNU GENERAL PUBLIC LICENSE\n                            Version 3, 29 June 2007\n\n Copyright (C"
  },
  {
    "path": "README.md",
    "chars": 1988,
    "preview": "# TeleVip LSPosed\n\nA module for modifying Telegram with the following features:\n\n1. Hide \"Seen\" status for groups, chann"
  },
  {
    "path": "SUMMARY",
    "chars": 39,
    "preview": "TeleVip A module for modifying Telegram"
  },
  {
    "path": "app/.gitignore",
    "chars": 6,
    "preview": "/build"
  },
  {
    "path": "app/build.gradle",
    "chars": 2534,
    "preview": "apply plugin: 'com.android.application'\n\nandroid {\n    namespace 'com.my.televip'\n    compileSdk 36\n\n    defaultConfig {"
  },
  {
    "path": "app/proguard-rules.pro",
    "chars": 750,
    "preview": "# Add project specific ProGuard rules here.\n# You can control the set of applied configuration files using the\n# proguar"
  },
  {
    "path": "app/src/androidTest/java/com/my/televip/ExampleInstrumentedTest.java",
    "chars": 742,
    "preview": "package com.my.televip;\n\nimport android.content.Context;\n\nimport androidx.test.platform.app.InstrumentationRegistry;\nimp"
  },
  {
    "path": "app/src/main/AndroidManifest.xml",
    "chars": 885,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    xmlns:to"
  },
  {
    "path": "app/src/main/assets/lang/ar.json",
    "chars": 2511,
    "preview": "{\n  \"ToTheBeginning\": \"اذهب إلى أول رسالة\",\n  \"ToTheMessage\": \"إلى الرسالة\",\n  \"InputMessageId\": \"ادخل معرف الرسالة\",\n  "
  },
  {
    "path": "app/src/main/assets/lang/en.json",
    "chars": 2596,
    "preview": "{\n  \"ToTheBeginning\": \"Go to First Message\",\n  \"ToTheMessage\": \"To The Message\",\n  \"InputMessageId\": \"Input Message Id\","
  },
  {
    "path": "app/src/main/assets/lang/zh.json",
    "chars": 1747,
    "preview": "{\n  \"ToTheBeginning\": \"跳转到第一条消息\",\n  \"ToTheMessage\": \"跳转到消息\",\n  \"InputMessageId\": \"输入消息 ID\",\n  \"Done\": \"完成\",\n  \"NewName\":"
  },
  {
    "path": "app/src/main/assets/xposed_init",
    "chars": 24,
    "preview": "com.my.televip.MainHook\n"
  },
  {
    "path": "app/src/main/java/com/my/televip/Callback/IntCallback.java",
    "chars": 112,
    "preview": "package com.my.televip.Callback;\n\n@FunctionalInterface\npublic interface IntCallback {\n    void run(int param);\n}"
  },
  {
    "path": "app/src/main/java/com/my/televip/Class/ClassLoad.java",
    "chars": 2458,
    "preview": "package com.my.televip.Class;\n\nimport android.content.Context;\n\nimport com.my.televip.ClientChecker;\nimport com.my.telev"
  },
  {
    "path": "app/src/main/java/com/my/televip/Class/ClassNames.java",
    "chars": 4974,
    "preview": "package com.my.televip.Class;\n\npublic class ClassNames {\n\n    public static final String MESSAGE_OBJECT = \"org.telegram."
  },
  {
    "path": "app/src/main/java/com/my/televip/ClientChecker.java",
    "chars": 2703,
    "preview": "package com.my.televip;\n\nimport java.util.Arrays;\n\npublic class ClientChecker {\n    public static boolean check(ClientTy"
  },
  {
    "path": "app/src/main/java/com/my/televip/Clients/Momogram.java",
    "chars": 3715,
    "preview": "package com.my.televip.Clients;\n\nimport com.my.televip.Class.ClassLoad;\nimport com.my.televip.Class.ClassNames;\nimport c"
  },
  {
    "path": "app/src/main/java/com/my/televip/Clients/Nagram.java",
    "chars": 3650,
    "preview": "package com.my.televip.Clients;\n\nimport com.my.televip.Class.ClassNames;\nimport com.my.televip.Class.ClassLoad;\nimport c"
  },
  {
    "path": "app/src/main/java/com/my/televip/Clients/NagramX.java",
    "chars": 3225,
    "preview": "package com.my.televip.Clients;\n\nimport com.my.televip.obfuscate.struct.ClassInfo;\nimport com.my.televip.obfuscate.struc"
  },
  {
    "path": "app/src/main/java/com/my/televip/Clients/Nicegram.java",
    "chars": 3652,
    "preview": "package com.my.televip.Clients;\n\nimport android.view.View;\n\nimport com.my.televip.Class.ClassNames;\nimport com.my.televi"
  },
  {
    "path": "app/src/main/java/com/my/televip/Clients/TGConnect.java",
    "chars": 3230,
    "preview": "package com.my.televip.Clients;\n\nimport com.my.televip.obfuscate.struct.ClassInfo;\nimport com.my.televip.obfuscate.struc"
  },
  {
    "path": "app/src/main/java/com/my/televip/Clients/Telega.java",
    "chars": 3228,
    "preview": "package com.my.televip.Clients;\n\nimport com.my.televip.obfuscate.struct.ClassInfo;\nimport com.my.televip.obfuscate.struc"
  },
  {
    "path": "app/src/main/java/com/my/televip/Clients/Telegram.java",
    "chars": 3227,
    "preview": "package com.my.televip.Clients;\n\nimport com.my.televip.obfuscate.struct.ClassInfo;\nimport com.my.televip.obfuscate.struc"
  },
  {
    "path": "app/src/main/java/com/my/televip/Clients/TelegramBeta.java",
    "chars": 3230,
    "preview": "package com.my.televip.Clients;\n\nimport com.my.televip.obfuscate.struct.ClassInfo;\nimport com.my.televip.obfuscate.struc"
  },
  {
    "path": "app/src/main/java/com/my/televip/Clients/TelegramPlus.java",
    "chars": 3233,
    "preview": "package com.my.televip.Clients;\n\nimport com.my.televip.obfuscate.struct.ClassInfo;\nimport com.my.televip.obfuscate.struc"
  },
  {
    "path": "app/src/main/java/com/my/televip/Clients/TelegramWeb.java",
    "chars": 3233,
    "preview": "package com.my.televip.Clients;\n\nimport com.my.televip.obfuscate.struct.ClassInfo;\nimport com.my.televip.obfuscate.struc"
  },
  {
    "path": "app/src/main/java/com/my/televip/Clients/Telegraph.java",
    "chars": 15384,
    "preview": "package com.my.televip.Clients;\n\nimport com.my.televip.Class.ClassNames;\nimport com.my.televip.Class.ClassLoad;\nimport c"
  },
  {
    "path": "app/src/main/java/com/my/televip/Clients/XPlus.java",
    "chars": 3182,
    "preview": "package com.my.televip.Clients;\n\nimport com.my.televip.obfuscate.struct.ClassInfo;\nimport com.my.televip.obfuscate.struc"
  },
  {
    "path": "app/src/main/java/com/my/televip/Clients/forkgram.java",
    "chars": 3225,
    "preview": "package com.my.televip.Clients;\n\nimport com.my.televip.obfuscate.struct.ClassInfo;\nimport com.my.televip.obfuscate.struc"
  },
  {
    "path": "app/src/main/java/com/my/televip/Clients/forkgramBeta.java",
    "chars": 3229,
    "preview": "package com.my.televip.Clients;\n\nimport com.my.televip.obfuscate.struct.ClassInfo;\nimport com.my.televip.obfuscate.struc"
  },
  {
    "path": "app/src/main/java/com/my/televip/Clients/iMe.java",
    "chars": 3220,
    "preview": "package com.my.televip.Clients;\n\nimport com.my.televip.obfuscate.struct.ClassInfo;\nimport com.my.televip.obfuscate.struc"
  },
  {
    "path": "app/src/main/java/com/my/televip/Clients/iMeWeb.java",
    "chars": 3224,
    "preview": "package com.my.televip.Clients;\n\nimport com.my.televip.obfuscate.struct.ClassInfo;\nimport com.my.televip.obfuscate.struc"
  },
  {
    "path": "app/src/main/java/com/my/televip/Configs/ConfigItem.java",
    "chars": 1380,
    "preview": "package com.my.televip.Configs;\n\npublic class ConfigItem {\n\n    public static final int HEADER = 0,\n            SWITCH ="
  },
  {
    "path": "app/src/main/java/com/my/televip/Configs/ConfigManager.java",
    "chars": 11532,
    "preview": "package com.my.televip.Configs;\n\nimport android.content.Context;\n\nimport com.my.televip.ClientChecker;\nimport com.my.tel"
  },
  {
    "path": "app/src/main/java/com/my/televip/Configs/ConfigPreferences.java",
    "chars": 1658,
    "preview": "package com.my.televip.Configs;\n\nimport android.app.Activity;\nimport android.content.SharedPreferences;\n\nimport com.my.t"
  },
  {
    "path": "app/src/main/java/com/my/televip/Database/MessageDatabase.java",
    "chars": 7188,
    "preview": "package com.my.televip.Database;\n\nimport android.content.ContentValues;\nimport android.content.Context;\nimport android.d"
  },
  {
    "path": "app/src/main/java/com/my/televip/Drawable/ArrowDrawable.java",
    "chars": 1909,
    "preview": "package com.my.televip.Drawable;\n\nimport static android.view.View.LAYOUT_DIRECTION_RTL;\n\nimport android.graphics.Canvas;"
  },
  {
    "path": "app/src/main/java/com/my/televip/Drawable/GhostDrawable.java",
    "chars": 2938,
    "preview": "package com.my.televip.Drawable;\n\nimport static android.view.View.LAYOUT_DIRECTION_RTL;\n\nimport android.graphics.Canvas;"
  },
  {
    "path": "app/src/main/java/com/my/televip/MainHook.java",
    "chars": 1449,
    "preview": "package com.my.televip;\r\n\r\n\r\nimport android.app.Activity;\r\nimport android.os.Bundle;\r\n\r\nimport com.my.televip.Class.Clas"
  },
  {
    "path": "app/src/main/java/com/my/televip/TeleVip.java",
    "chars": 1206,
    "preview": "package com.my.televip;\n\nimport static com.my.televip.obfuscate.AutomationResolver.resolverRegistry;\n\nimport android.con"
  },
  {
    "path": "app/src/main/java/com/my/televip/Utils.java",
    "chars": 727,
    "preview": "package com.my.televip;\n\nimport java.util.ArrayList;\n\npublic class Utils {\n    public static String pkgName = null;\n    "
  },
  {
    "path": "app/src/main/java/com/my/televip/application/AndroidUtilities.java",
    "chars": 1311,
    "preview": "package com.my.televip.application;\n\nimport android.annotation.SuppressLint;\nimport android.content.Context;\nimport andr"
  },
  {
    "path": "app/src/main/java/com/my/televip/application/ApplicationLoaderHook.java",
    "chars": 1771,
    "preview": "package com.my.televip.application;\n\nimport android.app.Application;\nimport android.content.Context;\n\nimport com.my.tele"
  },
  {
    "path": "app/src/main/java/com/my/televip/audio.java",
    "chars": 1858,
    "preview": "package com.my.televip;\n\nimport android.media.AudioAttributes;\nimport android.media.AudioManager;\nimport android.media.M"
  },
  {
    "path": "app/src/main/java/com/my/televip/base/AbstractMethodHook.java",
    "chars": 885,
    "preview": "package com.my.televip.base;\n\nimport com.my.televip.logging.Logger;\n\nimport de.robv.android.xposed.XC_MethodHook;\n\npubli"
  },
  {
    "path": "app/src/main/java/com/my/televip/dex/DexInjector.java",
    "chars": 618,
    "preview": "package com.my.televip.dex;\n\nimport com.my.televip.logging.Logger;\n\nimport java.nio.ByteBuffer;\n\nimport dalvik.system.In"
  },
  {
    "path": "app/src/main/java/com/my/televip/features/DisableChannelSwipeBack.java",
    "chars": 1405,
    "preview": "package com.my.televip.features;\n\nimport android.view.MotionEvent;\n\nimport com.my.televip.Class.ClassNames;\nimport com.m"
  },
  {
    "path": "app/src/main/java/com/my/televip/features/DisableNumberRounding.java",
    "chars": 1808,
    "preview": "package com.my.televip.features;\n\nimport com.my.televip.Class.ClassNames;\nimport com.my.televip.Class.ClassLoad;\nimport "
  },
  {
    "path": "app/src/main/java/com/my/televip/features/DisableProfileSwipeBack.java",
    "chars": 1410,
    "preview": "package com.my.televip.features;\n\nimport android.view.MotionEvent;\n\nimport com.my.televip.Class.ClassNames;\nimport com.m"
  },
  {
    "path": "app/src/main/java/com/my/televip/features/DisableStories.java",
    "chars": 3309,
    "preview": "package com.my.televip.features;\n\nimport com.my.televip.Class.ClassNames;\nimport com.my.televip.Class.ClassLoad;\nimport "
  },
  {
    "path": "app/src/main/java/com/my/televip/features/DownloadSpeed.java",
    "chars": 2106,
    "preview": "package com.my.televip.features;\n\nimport com.my.televip.Class.ClassNames;\nimport com.my.televip.Class.ClassLoad;\nimport "
  },
  {
    "path": "app/src/main/java/com/my/televip/features/EnableSavingStories.java",
    "chars": 1318,
    "preview": "package com.my.televip.features;\n\nimport com.my.televip.Class.ClassNames;\nimport com.my.televip.Class.ClassLoad;\nimport "
  },
  {
    "path": "app/src/main/java/com/my/televip/features/FixTLError.java",
    "chars": 1518,
    "preview": "package com.my.televip.features;\n\nimport com.my.televip.Class.ClassNames;\nimport com.my.televip.Class.ClassLoad;\nimport "
  },
  {
    "path": "app/src/main/java/com/my/televip/features/GhostMode.java",
    "chars": 4246,
    "preview": "package com.my.televip.features;\n\nimport com.my.televip.Class.ClassLoad;\nimport com.my.televip.Class.ClassNames;\nimport "
  },
  {
    "path": "app/src/main/java/com/my/televip/features/HideOnline.java",
    "chars": 2772,
    "preview": "package com.my.televip.features;\n\n\nimport com.my.televip.Class.ClassNames;\nimport com.my.televip.Configs.ConfigManager;\n"
  },
  {
    "path": "app/src/main/java/com/my/televip/features/HidePhone.java",
    "chars": 1721,
    "preview": "package com.my.televip.features;\n\nimport com.my.televip.Class.ClassNames;\nimport com.my.televip.Configs.ConfigManager;\ni"
  },
  {
    "path": "app/src/main/java/com/my/televip/features/HidePinnedMessages.java",
    "chars": 2418,
    "preview": "package com.my.televip.features;\n\nimport android.view.View;\n\nimport com.my.televip.Class.ClassNames;\nimport com.my.telev"
  },
  {
    "path": "app/src/main/java/com/my/televip/features/HideProxySponsor.java",
    "chars": 552,
    "preview": "package com.my.televip.features;\n\nimport com.my.televip.virtuals.messenger.MessagesController;\n\npublic class HideProxySp"
  },
  {
    "path": "app/src/main/java/com/my/televip/features/HideSeen.java",
    "chars": 8336,
    "preview": "package com.my.televip.features;\n\nimport com.my.televip.Callback.IntCallback;\nimport com.my.televip.Class.ClassNames;\nim"
  },
  {
    "path": "app/src/main/java/com/my/televip/features/HideStoryRead.java",
    "chars": 304,
    "preview": "package com.my.televip.features;\n\npublic class HideStoryRead {\n\n    public static boolean isReadStoriesRequest(Object ob"
  },
  {
    "path": "app/src/main/java/com/my/televip/features/HideTyping.java",
    "chars": 295,
    "preview": "package com.my.televip.features;\n\npublic class HideTyping {\n\n    public static boolean isTypingRequest(Object object){\n "
  },
  {
    "path": "app/src/main/java/com/my/televip/features/HideUpdateApp.java",
    "chars": 2330,
    "preview": "package com.my.televip.features;\n\nimport android.app.Activity;\nimport android.content.SharedPreferences;\n\nimport com.my."
  },
  {
    "path": "app/src/main/java/com/my/televip/features/PreventMedia.java",
    "chars": 3058,
    "preview": "package com.my.televip.features;\n\nimport com.my.televip.Class.ClassNames;\nimport com.my.televip.Configs.ConfigManager;\ni"
  },
  {
    "path": "app/src/main/java/com/my/televip/features/RemovesContentSaving.java",
    "chars": 2604,
    "preview": "package com.my.televip.features;\n\n\nimport com.my.televip.Class.ClassNames;\nimport com.my.televip.Configs.ConfigManager;\n"
  },
  {
    "path": "app/src/main/java/com/my/televip/features/SaveEditsHistory.java",
    "chars": 16098,
    "preview": "package com.my.televip.features;\n\nimport android.content.Context;\nimport android.text.method.ScrollingMovementMethod;\nim"
  },
  {
    "path": "app/src/main/java/com/my/televip/features/SecretMediaSave.java",
    "chars": 5439,
    "preview": "package com.my.televip.features;\n\nimport android.app.Activity;\nimport android.content.Context;\nimport android.content.Co"
  },
  {
    "path": "app/src/main/java/com/my/televip/features/ShowDeletedMessages.java",
    "chars": 32836,
    "preview": "package com.my.televip.features;\n\nimport android.os.Handler;\nimport android.os.HandlerThread;\nimport android.os.Looper;\n"
  },
  {
    "path": "app/src/main/java/com/my/televip/features/TelePremium.java",
    "chars": 2155,
    "preview": "package com.my.televip.features;\n\nimport com.my.televip.Class.ClassNames;\nimport com.my.televip.ClientChecker;\nimport co"
  },
  {
    "path": "app/src/main/java/com/my/televip/features/otherFeatures/ChatHook.java",
    "chars": 5397,
    "preview": "package com.my.televip.features.otherFeatures;\n\nimport android.content.Context;\nimport android.text.InputType;\nimport an"
  },
  {
    "path": "app/src/main/java/com/my/televip/features/otherFeatures/CopyNameHook.java",
    "chars": 2499,
    "preview": "package com.my.televip.features.otherFeatures;\n\nimport android.content.ClipData;\nimport android.content.ClipboardManager"
  },
  {
    "path": "app/src/main/java/com/my/televip/features/otherFeatures/FeatureInitializer.java",
    "chars": 2356,
    "preview": "package com.my.televip.features.otherFeatures;\n\nimport android.content.Context;\n\nimport com.my.televip.ClientChecker;\nim"
  },
  {
    "path": "app/src/main/java/com/my/televip/features/otherFeatures/FeatureStateManager.java",
    "chars": 1542,
    "preview": "package com.my.televip.features.otherFeatures;\n\n\nimport android.content.Context;\n\nimport com.my.televip.Configs.ConfigPr"
  },
  {
    "path": "app/src/main/java/com/my/televip/features/otherFeatures/ProfileHook.java",
    "chars": 3285,
    "preview": "package com.my.televip.features.otherFeatures;\n\nimport android.content.ClipData;\nimport android.content.ClipboardManager"
  },
  {
    "path": "app/src/main/java/com/my/televip/hooks/HMethod.java",
    "chars": 767,
    "preview": "package com.my.televip.hooks;\n\nimport com.my.televip.logging.Logger;\n\nimport de.robv.android.xposed.XposedHelpers;\n\npubl"
  },
  {
    "path": "app/src/main/java/com/my/televip/language/Keys.java",
    "chars": 3287,
    "preview": "package com.my.televip.language;\n\npublic class Keys {\n\n    public static final String ToTheBeginning = \"ToTheBeginning\";"
  },
  {
    "path": "app/src/main/java/com/my/televip/language/Translator.java",
    "chars": 3882,
    "preview": "package com.my.televip.language;\n\nimport com.my.televip.Utils;\nimport com.my.televip.logging.Logger;\nimport com.my.telev"
  },
  {
    "path": "app/src/main/java/com/my/televip/logging/Logger.java",
    "chars": 2125,
    "preview": "package com.my.televip.logging;\n\nimport static com.my.televip.Utils.pkgName;\n\nimport android.content.pm.PackageInfo;\nimp"
  },
  {
    "path": "app/src/main/java/com/my/televip/obfuscate/AutomationResolver.java",
    "chars": 1744,
    "preview": "package com.my.televip.obfuscate;\n\n\nimport com.my.televip.obfuscate.struct.ResolverRegistry;\n\nimport de.robv.android.xpo"
  },
  {
    "path": "app/src/main/java/com/my/televip/obfuscate/struct/ClassInfo.java",
    "chars": 417,
    "preview": "package com.my.televip.obfuscate.struct;\n\npublic class ClassInfo {\n    private final String original;\n    private final "
  },
  {
    "path": "app/src/main/java/com/my/televip/obfuscate/struct/FieldInfo.java",
    "chars": 580,
    "preview": "package com.my.televip.obfuscate.struct;\n\npublic class FieldInfo {\n    private final String className;\n    private final"
  },
  {
    "path": "app/src/main/java/com/my/televip/obfuscate/struct/MethodInfo.java",
    "chars": 582,
    "preview": "package com.my.televip.obfuscate.struct;\n\npublic class MethodInfo {\n    private final String className;\n    private fina"
  },
  {
    "path": "app/src/main/java/com/my/televip/obfuscate/struct/ResolverRegistry.java",
    "chars": 3654,
    "preview": "package com.my.televip.obfuscate.struct;\n\nimport com.my.televip.ClientChecker;\nimport com.my.televip.Utils;\n\npublic clas"
  },
  {
    "path": "app/src/main/java/com/my/televip/settings/SettingsManager.java",
    "chars": 1280,
    "preview": "package com.my.televip.settings;\n\nimport com.my.televip.Utils;\nimport com.my.televip.obfuscate.AutomationResolver;\nimpor"
  },
  {
    "path": "app/src/main/java/com/my/televip/settings/controller/SettingsController.java",
    "chars": 3126,
    "preview": "package com.my.televip.settings.controller;\n\nimport android.content.Context;\nimport android.view.View;\nimport android.wi"
  },
  {
    "path": "app/src/main/java/com/my/televip/settings/hook/SettingsHook.java",
    "chars": 9587,
    "preview": "package com.my.televip.settings.hook;\n\n\nimport android.view.View;\nimport android.widget.ImageView;\n\nimport com.my.televi"
  },
  {
    "path": "app/src/main/java/com/my/televip/settings/ui/SettingsActivity.java",
    "chars": 4211,
    "preview": "package com.my.televip.settings.ui;\n\n\nimport android.content.Context;\nimport android.view.View;\nimport android.widget.Li"
  },
  {
    "path": "app/src/main/java/com/my/televip/settings/ui/SettingsAdapter.java",
    "chars": 7636,
    "preview": "package com.my.televip.settings.ui;\n\nimport android.app.Activity;\nimport android.content.Context;\nimport android.content"
  },
  {
    "path": "app/src/main/java/com/my/televip/structs/DeletedMessageInfo.java",
    "chars": 1108,
    "preview": "package com.my.televip.structs;\n\nimport java.util.ArrayList;\n\npublic class DeletedMessageInfo {\n    public static final "
  },
  {
    "path": "app/src/main/java/com/my/televip/ui/toolBar/MainToolBar.java",
    "chars": 3731,
    "preview": "package com.my.televip.ui.toolBar;\n\nimport android.annotation.SuppressLint;\nimport android.content.Context;\nimport andro"
  },
  {
    "path": "app/src/main/java/com/my/televip/virtuals/ActionBar/ActionBarMenuItem.java",
    "chars": 866,
    "preview": "package com.my.televip.virtuals.ActionBar;\n\nimport com.my.televip.obfuscate.AutomationResolver;\n\nimport de.robv.android."
  },
  {
    "path": "app/src/main/java/com/my/televip/virtuals/ActionBar/AlertDialog.java",
    "chars": 3037,
    "preview": "package com.my.televip.virtuals.ActionBar;\n\nimport android.content.Context;\nimport android.content.DialogInterface;\nimpo"
  },
  {
    "path": "app/src/main/java/com/my/televip/virtuals/ActionBar/SimpleTextView.java",
    "chars": 814,
    "preview": "package com.my.televip.virtuals.ActionBar;\n\nimport android.view.View;\n\nimport com.my.televip.obfuscate.AutomationResolve"
  },
  {
    "path": "app/src/main/java/com/my/televip/virtuals/Adapters/DrawerLayoutAdapter.java",
    "chars": 544,
    "preview": "package com.my.televip.virtuals.Adapters;\n\nimport com.my.televip.obfuscate.AutomationResolver;\n\nimport java.util.ArrayLi"
  },
  {
    "path": "app/src/main/java/com/my/televip/virtuals/ChatMessageCellDefault.java",
    "chars": 1399,
    "preview": "package com.my.televip.virtuals;\n\nimport com.my.televip.obfuscate.AutomationResolver;\nimport com.my.televip.logging.Logg"
  },
  {
    "path": "app/src/main/java/com/my/televip/virtuals/OfficialChatMessageCell.java",
    "chars": 1314,
    "preview": "package com.my.televip.virtuals;\n\nimport com.my.televip.obfuscate.AutomationResolver;\nimport com.my.televip.logging.Logg"
  },
  {
    "path": "app/src/main/java/com/my/televip/virtuals/SQLite/SQLiteCursor.java",
    "chars": 1174,
    "preview": "package com.my.televip.virtuals.SQLite;\n\nimport com.my.televip.obfuscate.AutomationResolver;\nimport com.my.televip.virtu"
  },
  {
    "path": "app/src/main/java/com/my/televip/virtuals/SQLite/SQLiteDatabase.java",
    "chars": 519,
    "preview": "package com.my.televip.virtuals.SQLite;\n\nimport com.my.televip.obfuscate.AutomationResolver;\n\nimport de.robv.android.xpo"
  },
  {
    "path": "app/src/main/java/com/my/televip/virtuals/SettingsIconResolver.java",
    "chars": 1058,
    "preview": "package com.my.televip.virtuals;\n\n\nimport com.my.televip.Class.ClassNames;\nimport com.my.televip.Class.ClassLoad;\n\nimpor"
  },
  {
    "path": "app/src/main/java/com/my/televip/virtuals/TeleVip/Bridge/Bridge.java",
    "chars": 6797,
    "preview": "package com.my.televip.virtuals.TeleVip.Bridge;\n\n\nimport android.content.Context;\nimport android.util.TypedValue;\nimport"
  },
  {
    "path": "app/src/main/java/com/my/televip/virtuals/Theme.java",
    "chars": 3449,
    "preview": "package com.my.televip.virtuals;\n\nimport android.graphics.Color;\nimport android.text.TextPaint;\n\nimport com.my.televip.C"
  },
  {
    "path": "app/src/main/java/com/my/televip/virtuals/androidx/ViewHolder.java",
    "chars": 476,
    "preview": "package com.my.televip.virtuals.androidx;\n\nimport android.view.View;\n\nimport de.robv.android.xposed.XposedHelpers;\n\npubl"
  },
  {
    "path": "app/src/main/java/com/my/televip/virtuals/messenger/BaseController.java",
    "chars": 488,
    "preview": "package com.my.televip.virtuals.messenger;\n\nimport com.my.televip.obfuscate.AutomationResolver;\n\nimport de.robv.android."
  },
  {
    "path": "app/src/main/java/com/my/televip/virtuals/messenger/DispatchQueue.java",
    "chars": 493,
    "preview": "package com.my.televip.virtuals.messenger;\n\nimport com.my.televip.obfuscate.AutomationResolver;\n\nimport de.robv.android."
  },
  {
    "path": "app/src/main/java/com/my/televip/virtuals/messenger/FileLoadOperation.java",
    "chars": 1175,
    "preview": "package com.my.televip.virtuals.messenger;\n\nimport com.my.televip.obfuscate.AutomationResolver;\n\nimport de.robv.android."
  },
  {
    "path": "app/src/main/java/com/my/televip/virtuals/messenger/FileLoader.java",
    "chars": 896,
    "preview": "package com.my.televip.virtuals.messenger;\n\nimport com.my.televip.Class.ClassNames;\nimport com.my.televip.Class.ClassLoa"
  },
  {
    "path": "app/src/main/java/com/my/televip/virtuals/messenger/ImageLocation.java",
    "chars": 188,
    "preview": "package com.my.televip.virtuals.messenger;\n\npublic class ImageLocation {\n\n    public Object imageLocation;\n\n    public I"
  },
  {
    "path": "app/src/main/java/com/my/televip/virtuals/messenger/ImageReceiver.java",
    "chars": 541,
    "preview": "package com.my.televip.virtuals.messenger;\n\nimport com.my.televip.obfuscate.AutomationResolver;\n\nimport de.robv.android."
  },
  {
    "path": "app/src/main/java/com/my/televip/virtuals/messenger/LocaleController.java",
    "chars": 785,
    "preview": "package com.my.televip.virtuals.messenger;\n\nimport com.my.televip.Class.ClassNames;\nimport com.my.televip.Class.ClassLoa"
  },
  {
    "path": "app/src/main/java/com/my/televip/virtuals/messenger/MessageObject.java",
    "chars": 1197,
    "preview": "package com.my.televip.virtuals.messenger;\n\nimport com.my.televip.Class.ClassNames;\nimport com.my.televip.Class.ClassLoa"
  },
  {
    "path": "app/src/main/java/com/my/televip/virtuals/messenger/MessagesController.java",
    "chars": 2161,
    "preview": "package com.my.televip.virtuals.messenger;\n\nimport android.content.SharedPreferences;\n\nimport com.my.televip.Class.Class"
  },
  {
    "path": "app/src/main/java/com/my/televip/virtuals/messenger/MessagesStorage.java",
    "chars": 1172,
    "preview": "package com.my.televip.virtuals.messenger;\n\nimport com.my.televip.Class.ClassNames;\nimport com.my.televip.Class.ClassLoa"
  },
  {
    "path": "app/src/main/java/com/my/televip/virtuals/messenger/NotificationCenter.java",
    "chars": 1101,
    "preview": "package com.my.televip.virtuals.messenger;\n\nimport com.my.televip.Class.ClassNames;\nimport com.my.televip.Class.ClassLoa"
  },
  {
    "path": "app/src/main/java/com/my/televip/virtuals/messenger/UserConfig.java",
    "chars": 1103,
    "preview": "package com.my.televip.virtuals.messenger;\n\nimport com.my.televip.Class.ClassNames;\nimport com.my.televip.Class.ClassLoa"
  },
  {
    "path": "app/src/main/java/com/my/televip/virtuals/messenger/Utilities.java",
    "chars": 511,
    "preview": "package com.my.televip.virtuals.messenger;\n\nimport com.my.televip.Class.ClassNames;\nimport com.my.televip.Class.ClassLoa"
  },
  {
    "path": "app/src/main/java/com/my/televip/virtuals/messenger/browser/Browser.java",
    "chars": 607,
    "preview": "package com.my.televip.virtuals.messenger.browser;\n\nimport android.content.Context;\n\nimport com.my.televip.Utils;\nimport"
  },
  {
    "path": "app/src/main/java/com/my/televip/virtuals/tgnet/ConnectionsManager.java",
    "chars": 954,
    "preview": "package com.my.televip.virtuals.tgnet;\n\nimport com.my.televip.Class.ClassNames;\nimport com.my.televip.Class.ClassLoad;\ni"
  },
  {
    "path": "app/src/main/java/com/my/televip/virtuals/tgnet/NativeByteBuffer.java",
    "chars": 707,
    "preview": "package com.my.televip.virtuals.tgnet;\n\nimport com.my.televip.obfuscate.AutomationResolver;\n\nimport de.robv.android.xpos"
  },
  {
    "path": "app/src/main/java/com/my/televip/virtuals/tgnet/RequestDelegate.java",
    "chars": 1477,
    "preview": "package com.my.televip.virtuals.tgnet;\n\nimport com.my.televip.Class.ClassNames;\nimport com.my.televip.Utils;\nimport com."
  },
  {
    "path": "app/src/main/java/com/my/televip/virtuals/tgnet/TLRPC.java",
    "chars": 7864,
    "preview": "package com.my.televip.virtuals.tgnet;\n\nimport com.my.televip.Class.ClassNames;\nimport com.my.televip.Utils;\nimport com."
  },
  {
    "path": "app/src/main/java/com/my/televip/virtuals/ui/BaseFragment.java",
    "chars": 536,
    "preview": "package com.my.televip.virtuals.ui;\n\nimport com.my.televip.obfuscate.AutomationResolver;\nimport com.my.televip.virtuals."
  },
  {
    "path": "app/src/main/java/com/my/televip/virtuals/ui/Cells/ChatMessageCell.java",
    "chars": 5858,
    "preview": "package com.my.televip.virtuals.ui.Cells;\n\nimport android.graphics.Color;\nimport android.text.SpannableStringBuilder;\nim"
  },
  {
    "path": "app/src/main/java/com/my/televip/virtuals/ui/Cells/HeaderCell.java",
    "chars": 892,
    "preview": "package com.my.televip.virtuals.ui.Cells;\n\nimport android.content.Context;\nimport android.view.View;\n\nimport com.my.tele"
  },
  {
    "path": "app/src/main/java/com/my/televip/virtuals/ui/Cells/ShadowSectionCell.java",
    "chars": 680,
    "preview": "package com.my.televip.virtuals.ui.Cells;\n\nimport android.content.Context;\nimport android.view.View;\n\nimport com.my.tele"
  },
  {
    "path": "app/src/main/java/com/my/televip/virtuals/ui/Cells/TextCheckCell.java",
    "chars": 1931,
    "preview": "package com.my.televip.virtuals.ui.Cells;\n\nimport android.content.Context;\nimport android.view.View;\nimport android.widg"
  },
  {
    "path": "app/src/main/java/com/my/televip/virtuals/ui/Cells/TextInfoCell.java",
    "chars": 1282,
    "preview": "package com.my.televip.virtuals.ui.Cells;\n\nimport android.content.Context;\nimport android.util.TypedValue;\nimport androi"
  },
  {
    "path": "app/src/main/java/com/my/televip/virtuals/ui/Cells/TextSettingsCell.java",
    "chars": 1151,
    "preview": "package com.my.televip.virtuals.ui.Cells;\n\nimport android.content.Context;\nimport android.view.View;\nimport android.widg"
  },
  {
    "path": "app/src/main/java/com/my/televip/virtuals/ui/ChatActivity.java",
    "chars": 1467,
    "preview": "package com.my.televip.virtuals.ui;\n\nimport android.view.View;\n\nimport com.my.televip.obfuscate.AutomationResolver;\nimpo"
  },
  {
    "path": "app/src/main/java/com/my/televip/virtuals/ui/Components/LayoutHelper.java",
    "chars": 875,
    "preview": "package com.my.televip.virtuals.ui.Components;\n\nimport android.widget.FrameLayout;\n\nimport com.my.televip.application.An"
  },
  {
    "path": "app/src/main/java/com/my/televip/virtuals/ui/Components/RecyclerListView.java",
    "chars": 1381,
    "preview": "package com.my.televip.virtuals.ui.Components;\n\nimport android.content.Context;\nimport android.view.View;\n\nimport com.my"
  },
  {
    "path": "app/src/main/java/com/my/televip/virtuals/ui/LaunchActivity.java",
    "chars": 513,
    "preview": "package com.my.televip.virtuals.ui;\n\nimport android.widget.FrameLayout;\n\nimport com.my.televip.obfuscate.AutomationResol"
  },
  {
    "path": "app/src/main/java/com/my/televip/virtuals/ui/PhotoViewer.java",
    "chars": 2581,
    "preview": "package com.my.televip.virtuals.ui;\n\nimport android.app.Activity;\n\nimport com.my.televip.Class.ClassNames;\nimport com.my"
  },
  {
    "path": "app/src/main/java/com/my/televip/virtuals/ui/ProfileActivity.java",
    "chars": 1503,
    "preview": "package com.my.televip.virtuals.ui;\n\nimport com.my.televip.obfuscate.AutomationResolver;\nimport com.my.televip.virtuals."
  },
  {
    "path": "app/src/main/java/com/my/televip/virtuals/ui/SecretMediaViewer.java",
    "chars": 3598,
    "preview": "package com.my.televip.virtuals.ui;\n\nimport com.my.televip.Class.ClassNames;\nimport com.my.televip.Configs.ConfigManager"
  },
  {
    "path": "app/src/main/res/drawable/baseline_arrow_back_24.xml",
    "chars": 370,
    "preview": "<vector android:autoMirrored=\"true\" android:height=\"24dp\"\n    android:tint=\"#FFFFFF\" android:viewportHeight=\"24\"\n    and"
  },
  {
    "path": "app/src/main/res/drawable/ic_launcher_background.xml",
    "chars": 5606,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:wi"
  },
  {
    "path": "app/src/main/res/drawable/ic_launcher_foreground.xml",
    "chars": 1702,
    "preview": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    xmlns:aapt=\"http://schemas.android.com/aapt\"\n    "
  },
  {
    "path": "app/src/main/res/drawable/messages.xml",
    "chars": 427,
    "preview": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"24dp\"\n    android:height=\"24dp\"\n  "
  },
  {
    "path": "app/src/main/res/drawable/sync.xml",
    "chars": 528,
    "preview": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"24dp\"\n    android:height=\"24dp\"\n  "
  },
  {
    "path": "app/src/main/res/mipmap-anydpi/ic_launcher.xml",
    "chars": 343,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<adaptive-icon xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <b"
  },
  {
    "path": "app/src/main/res/mipmap-anydpi/ic_launcher_round.xml",
    "chars": 343,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<adaptive-icon xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <b"
  },
  {
    "path": "app/src/main/res/values/arrays.xml",
    "chars": 876,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <string-array name=\"xposedscope\">\n        <item>org.telegram.mess"
  },
  {
    "path": "app/src/main/res/values/strings.xml",
    "chars": 69,
    "preview": "<resources>\n    <string name=\"app_name\">TeleVip</string>\n</resources>"
  },
  {
    "path": "app/src/main/res/values/themes.xml",
    "chars": 149,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n\n    <style name=\"Theme.TeleVip\" parent=\"android:Theme.Material.Light"
  },
  {
    "path": "app/src/main/res/xml/backup_rules.xml",
    "chars": 478,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?><!--\n   Sample backup rules file; uncomment and customize as necessary.\n   See htt"
  },
  {
    "path": "app/src/main/res/xml/data_extraction_rules.xml",
    "chars": 551,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?><!--\n   Sample data extraction rules file; uncomment and customize as necessary.\n "
  },
  {
    "path": "app/src/test/java/com/my/televip/ExampleUnitTest.java",
    "chars": 375,
    "preview": "package com.my.televip;\n\nimport org.junit.Test;\n\nimport static org.junit.Assert.*;\n\n/**\n * Example local unit test, whic"
  },
  {
    "path": "build.gradle",
    "chars": 614,
    "preview": "// Top-level build file where you can add configuration options common to all sub-projects/modules.\n\nbuildscript {\n    r"
  },
  {
    "path": "gradle/libs.versions.toml",
    "chars": 2461,
    "preview": "[versions]\nagp = \"8.12.1\"\napi = \"82\"\ngradle = \"8.2.2\"\ngson = \"2.13.1\"\njunit = \"4.13.2\"\njunitVersion = \"1.3.0\"\nespressoCo"
  },
  {
    "path": "gradle/wrapper/gradle-wrapper.properties",
    "chars": 230,
    "preview": "#Wed May 14 16:38:25 AST 2025\ndistributionBase=GRADLE_USER_HOME\ndistributionPath=wrapper/dists\ndistributionUrl=https\\://"
  },
  {
    "path": "gradle.properties",
    "chars": 1255,
    "preview": "# Project-wide Gradle settings.\n# IDE (e.g. Android Studio) users:\n# Gradle settings configured through the IDE *will ov"
  },
  {
    "path": "gradlew",
    "chars": 5766,
    "preview": "#!/usr/bin/env sh\n\n#\n# Copyright 2015 the original author or authors.\n#\n# Licensed under the Apache License, Version 2.0"
  },
  {
    "path": "gradlew.bat",
    "chars": 2763,
    "preview": "@rem\r\n@rem Copyright 2015 the original author or authors.\r\n@rem\r\n@rem Licensed under the Apache License, Version 2.0 (th"
  },
  {
    "path": "settings.gradle",
    "chars": 90,
    "preview": "rootProject.name = \"TeleVip\"\ninclude ':app'\ninclude ':settingsadapter'\ninclude ':TeleVip'\n"
  },
  {
    "path": "settingsadapter/.gitignore",
    "chars": 6,
    "preview": "/build"
  },
  {
    "path": "settingsadapter/build.gradle",
    "chars": 573,
    "preview": "plugins {\n    id 'com.android.application'\n}\n\nandroid {\n    namespace 'com.televip.SettingsAdapter'\n    compileSdk 36\n\n "
  },
  {
    "path": "settingsadapter/proguard-rules.pro",
    "chars": 750,
    "preview": "# Add project specific ProGuard rules here.\n# You can control the set of applied configuration files using the\n# proguar"
  },
  {
    "path": "settingsadapter/src/main/AndroidManifest.xml",
    "chars": 172,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    xmlns:to"
  },
  {
    "path": "settingsadapter/src/main/java/com/televip/SettingsAdapter/Bridge.java",
    "chars": 291,
    "preview": "package com.televip.SettingsAdapter;\n\npublic class Bridge {\n\n    public static int getRow(int pos){ return 0; }\n    publ"
  },
  {
    "path": "settingsadapter/src/main/java/com/televip/SettingsAdapter/SettingsAdapter.java",
    "chars": 3495,
    "preview": "package com.televip.SettingsAdapter;\n\nimport static com.televip.SettingsAdapter.Bridge.getRow;\nimport static com.televip"
  },
  {
    "path": "settingsadapter/src/test/java/com/televip/settingsadapter/ExampleUnitTest.java",
    "chars": 243,
    "preview": "package com.televip.settingsadapter;\n\n/**\n * Example local unit test, which will execute on the development machine (hos"
  }
]

// ... and 1 more files (download for full content)

About this extraction

This page contains the full source code of the mustafa1dev/TeleVip-Lsposed GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 162 files (412.1 KB), approximately 92.1k tokens, and a symbol index with 809 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!