From b7df06a0da266e34febef63a40a774467a310053 Mon Sep 17 00:00:00 2001 From: Muntashir Al-Islam Date: Sat, 1 Aug 2020 08:33:57 +0600 Subject: [PATCH] Initial commit --- .gitignore | 14 + .idea/codeStyles/Project.xml | 116 +++ .idea/gradle.xml | 22 + .idea/jarRepositories.xml | 25 + .idea/misc.xml | 48 ++ .idea/runConfigurations.xml | 12 + .idea/vcs.xml | 6 + LICENSE | 674 ++++++++++++++++++ README.md | 11 + app/.gitignore | 1 + app/CMakeLists.txt | 2 + app/build.gradle | 71 ++ app/dev_keystore.jks | Bin 0 -> 2142 bytes app/proguard-rules.pro | 21 + app/src/main/AndroidManifest.xml | 42 ++ app/src/main/cpp/native-lib.cpp | 86 +++ app/src/main/ic_launcher-playstore.png | Bin 0 -> 42936 bytes .../muntashirakon/setedit/EditorActivity.java | 261 +++++++ .../muntashirakon/setedit/EditorUtils.java | 31 + .../setedit/IEditorActivity.java | 9 + .../github/muntashirakon/setedit/Native.java | 58 ++ .../setedit/PropertyCallback.java | 5 + .../github/muntashirakon/setedit/SetEdit.java | 16 + .../setedit/adapter/AdapterProvider.java | 39 + .../setedit/adapter/DevicesAdapter.java | 60 ++ .../setedit/adapter/IAdapterProvider.java | 7 + .../setedit/adapters/AdapterUtils.java | 30 + .../adapters/AndroidPropertyListAdapter.java | 78 ++ .../adapters/JavaPropertyListAdapter.java | 76 ++ .../adapters/LinuxEnvironmentListAdapter.java | 76 ++ .../setedit/adapters/SettingsAdapter.java | 14 + .../adapters/SettingsCursorAdapter.java | 111 +++ .../setedit/cursor/CursorHelper.java | 15 + .../setedit/cursor/SettingsCursor.java | 221 ++++++ .../res/drawable/ic_launcher_foreground.xml | 41 ++ .../layout-television-v21/toolbar_editor.xml | 23 + app/src/main/res/layout/activity_editor.xml | 17 + app/src/main/res/layout/dialog_editor.xml | 21 + app/src/main/res/layout/dialog_menu.xml | 77 ++ app/src/main/res/layout/flavor_menu.xml | 2 + app/src/main/res/layout/item_list_header.xml | 7 + app/src/main/res/layout/item_setting.xml | 34 + app/src/main/res/layout/item_spinner.xml | 8 + app/src/main/res/layout/toolbar_editor.xml | 24 + .../main/res/mipmap-anydpi-v26/ic_banner.xml | 5 + .../res/mipmap-anydpi-v26/ic_launcher.xml | 5 + .../mipmap-anydpi-v26/ic_launcher_round.xml | 5 + app/src/main/res/mipmap-hdpi/ic_launcher.png | Bin 0 -> 3396 bytes .../res/mipmap-hdpi/ic_launcher_round.png | Bin 0 -> 5148 bytes app/src/main/res/mipmap-mdpi/ic_launcher.png | Bin 0 -> 2190 bytes .../res/mipmap-mdpi/ic_launcher_round.png | Bin 0 -> 3073 bytes app/src/main/res/mipmap-xhdpi/ic_banner.png | Bin 0 -> 5676 bytes .../res/mipmap-xhdpi/ic_banner_foreground.png | Bin 0 -> 5201 bytes app/src/main/res/mipmap-xhdpi/ic_launcher.png | Bin 0 -> 4702 bytes .../res/mipmap-xhdpi/ic_launcher_round.png | Bin 0 -> 7055 bytes .../main/res/mipmap-xxhdpi/ic_launcher.png | Bin 0 -> 7454 bytes .../res/mipmap-xxhdpi/ic_launcher_round.png | Bin 0 -> 11361 bytes .../main/res/mipmap-xxxhdpi/ic_launcher.png | Bin 0 -> 10353 bytes .../res/mipmap-xxxhdpi/ic_launcher_round.png | Bin 0 -> 16072 bytes .../main/res/values-television-v21/styles.xml | 7 + app/src/main/res/values-v21/styles.xml | 4 + app/src/main/res/values/arrays.xml | 11 + .../main/res/values/ic_banner_background.xml | 4 + .../res/values/ic_launcher_background.xml | 4 + app/src/main/res/values/strings.xml | 28 + app/src/main/res/values/styles.xml | 5 + build.gradle | 20 + gradle.properties | 19 + gradle/wrapper/gradle-wrapper.jar | Bin 0 -> 58910 bytes gradle/wrapper/gradle-wrapper.properties | 6 + gradlew | 185 +++++ gradlew.bat | 104 +++ settings.gradle | 2 + 73 files changed, 2926 insertions(+) create mode 100644 .gitignore create mode 100644 .idea/codeStyles/Project.xml create mode 100644 .idea/gradle.xml create mode 100644 .idea/jarRepositories.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/runConfigurations.xml create mode 100644 .idea/vcs.xml create mode 100644 LICENSE create mode 100644 README.md create mode 100644 app/.gitignore create mode 100644 app/CMakeLists.txt create mode 100644 app/build.gradle create mode 100644 app/dev_keystore.jks create mode 100644 app/proguard-rules.pro create mode 100644 app/src/main/AndroidManifest.xml create mode 100644 app/src/main/cpp/native-lib.cpp create mode 100644 app/src/main/ic_launcher-playstore.png create mode 100644 app/src/main/java/io/github/muntashirakon/setedit/EditorActivity.java create mode 100644 app/src/main/java/io/github/muntashirakon/setedit/EditorUtils.java create mode 100644 app/src/main/java/io/github/muntashirakon/setedit/IEditorActivity.java create mode 100644 app/src/main/java/io/github/muntashirakon/setedit/Native.java create mode 100644 app/src/main/java/io/github/muntashirakon/setedit/PropertyCallback.java create mode 100644 app/src/main/java/io/github/muntashirakon/setedit/SetEdit.java create mode 100644 app/src/main/java/io/github/muntashirakon/setedit/adapter/AdapterProvider.java create mode 100644 app/src/main/java/io/github/muntashirakon/setedit/adapter/DevicesAdapter.java create mode 100644 app/src/main/java/io/github/muntashirakon/setedit/adapter/IAdapterProvider.java create mode 100644 app/src/main/java/io/github/muntashirakon/setedit/adapters/AdapterUtils.java create mode 100644 app/src/main/java/io/github/muntashirakon/setedit/adapters/AndroidPropertyListAdapter.java create mode 100644 app/src/main/java/io/github/muntashirakon/setedit/adapters/JavaPropertyListAdapter.java create mode 100644 app/src/main/java/io/github/muntashirakon/setedit/adapters/LinuxEnvironmentListAdapter.java create mode 100644 app/src/main/java/io/github/muntashirakon/setedit/adapters/SettingsAdapter.java create mode 100644 app/src/main/java/io/github/muntashirakon/setedit/adapters/SettingsCursorAdapter.java create mode 100644 app/src/main/java/io/github/muntashirakon/setedit/cursor/CursorHelper.java create mode 100644 app/src/main/java/io/github/muntashirakon/setedit/cursor/SettingsCursor.java create mode 100644 app/src/main/res/drawable/ic_launcher_foreground.xml create mode 100644 app/src/main/res/layout-television-v21/toolbar_editor.xml create mode 100644 app/src/main/res/layout/activity_editor.xml create mode 100644 app/src/main/res/layout/dialog_editor.xml create mode 100644 app/src/main/res/layout/dialog_menu.xml create mode 100644 app/src/main/res/layout/flavor_menu.xml create mode 100644 app/src/main/res/layout/item_list_header.xml create mode 100644 app/src/main/res/layout/item_setting.xml create mode 100644 app/src/main/res/layout/item_spinner.xml create mode 100644 app/src/main/res/layout/toolbar_editor.xml create mode 100644 app/src/main/res/mipmap-anydpi-v26/ic_banner.xml create mode 100644 app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml create mode 100644 app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml create mode 100644 app/src/main/res/mipmap-hdpi/ic_launcher.png create mode 100644 app/src/main/res/mipmap-hdpi/ic_launcher_round.png create mode 100644 app/src/main/res/mipmap-mdpi/ic_launcher.png create mode 100644 app/src/main/res/mipmap-mdpi/ic_launcher_round.png create mode 100644 app/src/main/res/mipmap-xhdpi/ic_banner.png create mode 100644 app/src/main/res/mipmap-xhdpi/ic_banner_foreground.png create mode 100644 app/src/main/res/mipmap-xhdpi/ic_launcher.png create mode 100644 app/src/main/res/mipmap-xhdpi/ic_launcher_round.png create mode 100644 app/src/main/res/mipmap-xxhdpi/ic_launcher.png create mode 100644 app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png create mode 100644 app/src/main/res/mipmap-xxxhdpi/ic_launcher.png create mode 100644 app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png create mode 100644 app/src/main/res/values-television-v21/styles.xml create mode 100644 app/src/main/res/values-v21/styles.xml create mode 100644 app/src/main/res/values/arrays.xml create mode 100644 app/src/main/res/values/ic_banner_background.xml create mode 100644 app/src/main/res/values/ic_launcher_background.xml create mode 100644 app/src/main/res/values/strings.xml create mode 100644 app/src/main/res/values/styles.xml create mode 100644 build.gradle create mode 100644 gradle.properties create mode 100644 gradle/wrapper/gradle-wrapper.jar create mode 100644 gradle/wrapper/gradle-wrapper.properties create mode 100755 gradlew create mode 100644 gradlew.bat create mode 100644 settings.gradle diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..603b140 --- /dev/null +++ b/.gitignore @@ -0,0 +1,14 @@ +*.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 diff --git a/.idea/codeStyles/Project.xml b/.idea/codeStyles/Project.xml new file mode 100644 index 0000000..681f41a --- /dev/null +++ b/.idea/codeStyles/Project.xml @@ -0,0 +1,116 @@ + + + + + + + +
+ + + + xmlns:android + + ^$ + + + +
+
+ + + + xmlns:.* + + ^$ + + + BY_NAME + +
+
+ + + + .*:id + + http://schemas.android.com/apk/res/android + + + +
+
+ + + + .*:name + + http://schemas.android.com/apk/res/android + + + +
+
+ + + + name + + ^$ + + + +
+
+ + + + style + + ^$ + + + +
+
+ + + + .* + + ^$ + + + BY_NAME + +
+
+ + + + .* + + http://schemas.android.com/apk/res/android + + + ANDROID_ATTRIBUTE_ORDER + +
+
+ + + + .* + + .* + + + BY_NAME + +
+
+
+
+
+
\ No newline at end of file diff --git a/.idea/gradle.xml b/.idea/gradle.xml new file mode 100644 index 0000000..ab67c50 --- /dev/null +++ b/.idea/gradle.xml @@ -0,0 +1,22 @@ + + + + + + + \ No newline at end of file diff --git a/.idea/jarRepositories.xml b/.idea/jarRepositories.xml new file mode 100644 index 0000000..a5f05cd --- /dev/null +++ b/.idea/jarRepositories.xml @@ -0,0 +1,25 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..ced0f6f --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,48 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/runConfigurations.xml b/.idea/runConfigurations.xml new file mode 100644 index 0000000..7f68460 --- /dev/null +++ b/.idea/runConfigurations.xml @@ -0,0 +1,12 @@ + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..f288702 --- /dev/null +++ b/LICENSE @@ -0,0 +1,674 @@ + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + 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. + + + Copyright (C) + + 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 . + +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: + + Copyright (C) + 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 +. + + 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 +. diff --git a/README.md b/README.md new file mode 100644 index 0000000..f966dcb --- /dev/null +++ b/README.md @@ -0,0 +1,11 @@ +# SetEdit + +The open source version of **4A Settings Database Editor**. + +### License + +GNU General Public License v3.0 + +### Credits + +[SetEdit by 4A](https://play.google.com/store/apps/details?id=by4a.setedit22) diff --git a/app/.gitignore b/app/.gitignore new file mode 100644 index 0000000..42afabf --- /dev/null +++ b/app/.gitignore @@ -0,0 +1 @@ +/build \ No newline at end of file diff --git a/app/CMakeLists.txt b/app/CMakeLists.txt new file mode 100644 index 0000000..98ff594 --- /dev/null +++ b/app/CMakeLists.txt @@ -0,0 +1,2 @@ +cmake_minimum_required(VERSION 3.6.0) +add_library(native-lib SHARED src/main/cpp/native-lib.cpp) diff --git a/app/build.gradle b/app/build.gradle new file mode 100644 index 0000000..204c84f --- /dev/null +++ b/app/build.gradle @@ -0,0 +1,71 @@ +import com.android.build.OutputFile + +apply plugin: 'com.android.application' + +android { + compileSdkVersion 29 + buildToolsVersion "30.0.0" + + defaultConfig { + applicationId "io.github.muntashirakon.setedit" + minSdkVersion 14 + //noinspection ExpiredTargetSdkVersion + targetSdkVersion 22 + versionCode 2 + versionName "1.0" + } + + signingConfigs { + debug { + storeFile file('dev_keystore.jks') + storePassword 'kJCp!Bda#PBdN2RLK%yMK@hatq&69E' + keyPassword 'kJCp!Bda#PBdN2RLK%yMK@hatq&69E' + keyAlias 'key0' + } + } + + externalNativeBuild { + cmake { + path "CMakeLists.txt" + version "3.10.2" + } + } + + splits { + abi { + enable true + reset() + include 'armeabi-v7a', 'arm64-v8a', 'x86', 'x86_64' + universalApk true + } + } + + def archPrefix = ['armeabi-v7a':4, 'arm64-v8a':2, 'x86':3, 'x86_64':1] + + android.applicationVariants.all { variant -> + variant.outputs.each { output -> + int abiVersionCode = archPrefix.get(output.getFilter(OutputFile.ABI), 0) + output.versionCodeOverride = (abiVersionCode * 100000) + defaultConfig.versionCode + } + } + + buildTypes { + release { + minifyEnabled false + proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' + } + debug { + applicationIdSuffix '.debug' + signingConfig signingConfigs.debug + } + } + compileOptions { + sourceCompatibility JavaVersion.VERSION_1_8 + targetCompatibility JavaVersion.VERSION_1_8 + } +} + +dependencies { + implementation fileTree(dir: "libs", include: ["*.jar"]) +// implementation 'androidx.appcompat:appcompat:1.1.0' +} \ No newline at end of file diff --git a/app/dev_keystore.jks b/app/dev_keystore.jks new file mode 100644 index 0000000000000000000000000000000000000000..c2abe7bb892f17b8435abe94137566354a78b7c9 GIT binary patch literal 2142 zcmbu9X*AS}AI4|TSjI4#v5hjKjO}ONmn>1XA$um-X>4VwaKdClg|cKThDebuvW3Bw zLDtZC_$0LKuX z5`kX_f#48;3gZAM1h*Ul3& @acm??rWv7ZB|RFeF_Z$A z8>uCUk^>2{iUR9R1^2ga?#TxH;Z$u8L8r!z5 zMXt&#$h~xiTsyXvxk38`&{>q=;m0ODjKVzNtOu^?{+!CHF`+28r40a2#59Y(GcRUCB)E*8wJy$hDxfuVXt=HKOTXQm*;@BV3A~E#!{l?m zvgVNdWXEp_1s| zUL7HtkcYRuzl_UHaQ%KH0?p)RGS-In5~CYBjM|~Gs(DKJlZ&?Ld1!|?dA<+mudM7S|wErcQ) zqfkFiDfrf2Z<@`^6{{!{ZJTkGxe(dK|ArPeh@Dk@u!APRlBRQBlLw%wAyRn`#c?X- z!S7^QJ8=0qf2?*XJu+?eIj462VYHxAvF(ejTzTubM-3|VX$Gl&HKAem2PuWKx8xaA zXRlWmL(KeN=&@Po$#PyROE*_RJetRr0v^`tZ;h&wc}S`zl!Nj%5Y0|AtAh{K;y>Pv z3#*VLF%(X|+3G~=W^vM!XTN>`&$g=UiR*}c^p&_|?4ah+Mcx@OcogIxN{`82bka z(2>AQBAF36^{uel^i*MtppN^Hthc$?wjQ&#(>J#3!J${<5zS!t%f8~K)O-%7d#CMV zzOZgg5m%w6a!Gf z2XrU|41vHLrF;YcJ_M3@-{Srb9~jI72LU?DJOB~_b%Y@>5Mxti6u|p8oWQ_M13W37 z%3^@X-weeFT1SRNc!mcA-aLIiNa135kY_L;f#XvF08JGQKut|sS=|lCr>1_4!2j_7 zx=jTW{%!Sm$)Qv*Kj`=yZU_|&27Rsxm};@C(oDX6xS{wg7h{zNE#5x!jfTP_3wXX; zxJFy7E^4V~i=%X<=C$_pIGl= znWeX93SHcFPaqeVvo~!b`cCM8dgwd+5sxeJAPTk{dsjn!5@%FyjFW%64ahDIW@N(- zdPCPWMUu*joIzHxs&Bgt_6UM0TBTs1Bg>9uFC>9e0RFfjJPL+|3C%&mJAa%!qv0^@J{_f%P9~CL z#{M1Rao@)wfcXkUrF_;evP-ARq}csfC2~8Mbk0Y(wp`L>vg)}xZgNT|Kj>eM zc^)X%{1xG}l1eN8bMvpCI-=&&qZ6DX?3c74u zZE3C7m) + + + + + + + + + + + + + + + + + diff --git a/app/src/main/cpp/native-lib.cpp b/app/src/main/cpp/native-lib.cpp new file mode 100644 index 0000000..5f266fa --- /dev/null +++ b/app/src/main/cpp/native-lib.cpp @@ -0,0 +1,86 @@ +#include +#include +#include +#include + +static void* libc; +static int (*property_foreach)( + void (*callback)(const prop_info* pi, void* cookie), + void* cookie); +static int (*property_read)( + const prop_info* pi, + char* name, char* value); +static void (*property_read_callback)( + const prop_info* pi, + void (*callback)(void* cookie, const char* name, const char* value, uint32_t serial), + void* cookie); +static const prop_info* (*property_find_nth)(unsigned n); + +static void +get_from_libc(const char* fn_name, void* fn_ptr) { + void** fn_ptr_ptr = static_cast(fn_ptr); + if (*fn_ptr_ptr == nullptr) { + if (!libc) { + libc = dlopen("libc.so", RTLD_LAZY); + if (libc == nullptr) return; + } + *fn_ptr_ptr = dlsym(libc, fn_name); + } +} + +static char gName[PROP_NAME_MAX]; +static char gValue[PROP_VALUE_MAX]; + +struct JNICookie { + JNIEnv *env; + jclass clazz; + jobject callback; +}; + +static void +handle_property(void* cookie, const char* name, const char* value, uint32_t __unused serial) { + auto *jniCookie = static_cast(cookie); + JNIEnv *env = jniCookie->env; + jmethodID handleProperty = env->GetMethodID(jniCookie->clazz, + "handleProperty", + "(Ljava/lang/String;Ljava/lang/String;)V"); + env->CallVoidMethod(jniCookie->callback, + handleProperty, + env->NewStringUTF(name), + env->NewStringUTF(value)); +} + +static void +handle_property(const prop_info *propInfo, void *cookie) { + if (propInfo == nullptr) return; + get_from_libc("__system_property_read_callback", &property_read_callback); + if (property_read_callback == nullptr) return; + property_read_callback(propInfo, handle_property, cookie); +} + +extern "C" JNIEXPORT void JNICALL +Java_io_github_muntashirakon_setedit_Native_readAndroidPropertiesPost26(JNIEnv *env, jclass clazz, jobject property_callback) { + get_from_libc("__system_property_foreach", &property_foreach); + if (property_foreach == nullptr) return; + struct JNICookie jniCookie = { + .env = env, + .clazz = clazz, + .callback = property_callback + }; + while (property_foreach(handle_property, &jniCookie) == 1); +} + + +extern "C" JNIEXPORT jboolean JNICALL +Java_io_github_muntashirakon_setedit_Native_readAndroidPropertyPre26(JNIEnv *env, jclass __unused clazz, jint n, jobjectArray property) { + get_from_libc("__system_property_find_nth", &property_find_nth); + if (property_find_nth == nullptr) return 0; + const prop_info *propInfo = property_find_nth(n); + if (propInfo == nullptr) return 0; + get_from_libc("__system_property_read", &property_read); + if (property_read == nullptr) return 0; + property_read(propInfo, gName, gValue); + env->SetObjectArrayElement(property, 0, env->NewStringUTF(gName)); + env->SetObjectArrayElement(property, 1, env->NewStringUTF(gValue)); + return 1; // true +} diff --git a/app/src/main/ic_launcher-playstore.png b/app/src/main/ic_launcher-playstore.png new file mode 100644 index 0000000000000000000000000000000000000000..448f222ecaf6f1f6aefe90f58536e83ef362a7cd GIT binary patch literal 42936 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 JRM|4 { + if (!(adapter instanceof SettingsAdapter)) return; + SettingsAdapter settingsAdapter = (SettingsAdapter) adapter; + if (name == null) { + settingsAdapter.setName(editText.getText().toString()); + return; + } + settingsAdapter.updateValueForName(name, editText.getText().toString()); + })) + .setNegativeButton(android.R.string.cancel, null) + .show(); + } + + @Override + public void displayNewSettingEditor() { + displaySettingEditor(null, getString(R.string.empty_setting_name)); + } + + private void onClickDialogButton(int id) { + ClipData clipData = null; + switch (id) { + case R.id.button_copy_name: + String s = AdapterUtils.getName(view); + clipData = ClipData.newPlainText(s, s); + break; + case R.id.button_copy_value: + clipData = ClipData.newPlainText(AdapterUtils.getName(view), AdapterUtils.getValue(view)); + break; + case R.id.button_copy_both: + String s1 = AdapterUtils.getName(view); + clipData = ClipData.newPlainText(s1, s1 + "\t" + AdapterUtils.getValue(view)); + break; + case R.id.button_delete_row: + String s2 = AdapterUtils.getName(view); + if (adapter instanceof SettingsAdapter) { + SettingsAdapter settingsAdapter = (SettingsAdapter) adapter; + settingsAdapter.setMessage(s2); + } else setErrorMessage(); + break; + case R.id.button_edit_value: + if (adapter instanceof SettingsAdapter) { + ((SettingsAdapter) adapter).checkPermission(view, this.id); + } else setErrorMessage(); + break; + case R.id.button_help: + String str; + StringBuilder sb = new StringBuilder("https://www.google.com/search?q=android+"); + switch (spinnerTable.getSelectedItemPosition()) { + case 0: str = "settings put system \""; break; + case 1: str = "settings put secure \""; break; + case 2: str = "settings put global \""; break; + case 3: str = "setprop \""; break; + case 4: str = "java properties \""; break; + case 5: str = "environment \""; break; + default: str = "\""; break; + } + sb.append(str); + sb.append(Uri.encode(AdapterUtils.getName(view))); + sb.append('\"'); + try { + startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse(sb.toString()))); + } catch (Exception ignore) {} + break; + default: + return; + } + if (clipData != null) { + ClipboardManager clipboardManager = (ClipboardManager) getSystemService(Context.CLIPBOARD_SERVICE); + if (clipboardManager != null) { + clipboardManager.setPrimaryClip(clipData); + Toast.makeText(this, R.string.text_copied_to_clipboard, Toast.LENGTH_SHORT).show(); + } + } + if (alertDialog != null) alertDialog.dismiss(); + } + + public void setErrorMessage() { + setMessage(getString(R.string.error_no_support)); + } + + @Override + public void setMessage(CharSequence charSequence) { + dialogBuilder.setMessage(charSequence); + dialogBuilder.show(); + } + + @Override + public void onClick(View view) { + onClickDialogButton(view.getId()); + } + + @SuppressLint("InflateParams") + @Override + public void onCreate(Bundle bundle) { + Toolbar toolbar; + super.onCreate(bundle); + setContentView(R.layout.activity_editor); + // List view + listView = (ListView) findViewById(R.id.list_view); + listView.setOnItemClickListener(this); + // Add header (add new item) + View addNewItemView = getLayoutInflater().inflate(R.layout.item_list_header, null); + addNewItemView.setOnClickListener(v -> displaySettingEditor(null, null)); + listView.addHeaderView(addNewItemView); + // Set devices list + spinnerDevices = (Spinner) findViewById(R.id.spinner_devices); + spinnerDevices.setOnItemSelectedListener(this); + devicesAdapter = new DevicesAdapter(adapterProvider); + spinnerDevices.setAdapter(devicesAdapter); + spinnerTable = (Spinner) findViewById(R.id.spinner_table); + spinnerTable.setOnItemSelectedListener(this); + spinnerTable.setAdapter(ArrayAdapter.createFromResource(this, R.array.settings_table, R.layout.item_spinner)); + editorDialogBuilder = new AlertDialog.Builder(this); + editorDialogView = LayoutInflater.from(editorDialogBuilder.getContext()).inflate(R.layout.dialog_editor, null); + editText = (EditText) editorDialogView.findViewById(R.id.txt); + dialogBuilder = new AlertDialog.Builder(this); + contextDialog = new AlertDialog.Builder(this); + contextDialogView = LayoutInflater.from(contextDialog.getContext()).inflate(R.layout.dialog_menu, null); + setDialogText((ViewGroup) contextDialogView); + if (Build.VERSION.SDK_INT >= 21 && (toolbar = (Toolbar) findViewById(R.id.toolbar)) != null) { + setActionBar(toolbar); + } + final SharedPreferences defaultSharedPreferences = PreferenceManager.getDefaultSharedPreferences(this); + boolean hasWarned = defaultSharedPreferences.getBoolean("has_warned", false); + if (!hasWarned) { + oneTimeWarningDialog(defaultSharedPreferences, getString(R.string.startup_warning)); + } + } + + @Override + public void onItemClick(AdapterView adapterView, View view, int position, long id) { + if (adapterView == listView) { + this.view = view; + this.id = id; + if (id == -1) { + onClickDialogButton(R.id.button_edit_value); + return; + } + ViewGroup viewGroup = (ViewGroup) contextDialogView.getParent(); + if (viewGroup != null) viewGroup.removeView(contextDialogView); + nameView.setText(AdapterUtils.getName(view)); + contextDialog.setView(contextDialogView); + alertDialog = contextDialog.show(); + } + } + + @Override + public void onItemSelected(AdapterView adapterView, View view, int position, long id) { + if (adapterView == spinnerDevices) { + adapterProvider = devicesAdapter.getAdapterProvider(position); + adapter = adapterProvider.getAdapter(spinnerTable.getSelectedItemPosition()); + } else if (adapterView == spinnerTable && position != 6) { + adapter = adapterProvider.getAdapter(position); + } else return; + listView.setAdapter(adapter); + } + + @Override + public void onNothingSelected(AdapterView adapterView) {} + + @Override + public void onRestoreInstanceState(Bundle bundle) { + if (bundle != null && spinnerTable != null) + spinnerTable.setSelection(bundle.getInt(SELECTED_TABLE)); + } + + @Override + public void onSaveInstanceState(Bundle bundle) { + bundle.putInt(SELECTED_TABLE, spinnerTable.getSelectedItemPosition()); + } +} diff --git a/app/src/main/java/io/github/muntashirakon/setedit/EditorUtils.java b/app/src/main/java/io/github/muntashirakon/setedit/EditorUtils.java new file mode 100644 index 0000000..d493820 --- /dev/null +++ b/app/src/main/java/io/github/muntashirakon/setedit/EditorUtils.java @@ -0,0 +1,31 @@ +package io.github.muntashirakon.setedit; + +import android.content.Context; +import android.content.Intent; +import android.content.pm.PackageManager; +import android.net.Uri; +import android.os.Build; +import android.os.Process; +import android.provider.Settings; + +public class EditorUtils { + public static String checkPermission(Context context, String str) { + String permission = "system".equals(str) ? "android.permission.WRITE_SETTINGS" : "android.permission.WRITE_SECURE_SETTINGS"; + if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) { + if (!Settings.System.canWrite(context)) { + try { + Intent intent = new Intent(Settings.ACTION_MANAGE_WRITE_SETTINGS) + .setData(Uri.parse("package:" + BuildConfig.APPLICATION_ID)); + context.startActivity(intent); + return "c"; + } catch (Exception ignore) {} + } else if ("system".equals(str)) return "p"; + } + if (context.checkPermission(permission, Process.myPid(), Process.myUid()) == PackageManager.PERMISSION_GRANTED) { + return "p"; + } + return context.getString(R.string.error_no_support) + "\n\n" + "pm grant " + + BuildConfig.APPLICATION_ID + " " + permission + "\n\n" + + context.getString(R.string.dev_permission_message); + } +} diff --git a/app/src/main/java/io/github/muntashirakon/setedit/IEditorActivity.java b/app/src/main/java/io/github/muntashirakon/setedit/IEditorActivity.java new file mode 100644 index 0000000..821fbeb --- /dev/null +++ b/app/src/main/java/io/github/muntashirakon/setedit/IEditorActivity.java @@ -0,0 +1,9 @@ +package io.github.muntashirakon.setedit; + +public interface IEditorActivity { + void setMessage(CharSequence charSequence); + + void displaySettingEditor(String name, String value); + + void displayNewSettingEditor(); +} diff --git a/app/src/main/java/io/github/muntashirakon/setedit/Native.java b/app/src/main/java/io/github/muntashirakon/setedit/Native.java new file mode 100644 index 0000000..3e5c682 --- /dev/null +++ b/app/src/main/java/io/github/muntashirakon/setedit/Native.java @@ -0,0 +1,58 @@ +package io.github.muntashirakon.setedit; + +import android.os.Build; +import java.util.Collections; +import java.util.Comparator; +import java.util.List; + +public class Native implements PropertyCallback, Comparator { + private final List propertyList; + + static { + try { + System.loadLibrary("native-lib"); + } catch (Throwable th) { + th.printStackTrace(); + } + } + + private Native(List list) { + propertyList = list; + } + + public static void setPropertyList(List list) { + try { + Native nativeObj = new Native(list); + if (Build.VERSION.SDK_INT >= 26) { + readAndroidPropertiesPost26(nativeObj); + } else { + int i = 0; + while (true) { + String[] property = new String[2]; + if (!readAndroidPropertyPre26(i, property)) { + break; + } + list.add(property); + i++; + } + } + Collections.sort(list, nativeObj); + } catch (Throwable th) { + th.printStackTrace(); + } + } + + public static native void readAndroidPropertiesPost26(PropertyCallback propertyCallback); + + public static native boolean readAndroidPropertyPre26(int n, String[] property); + + @Override + public int compare(String[] prop1, String[] prop2) { + return prop1[0].compareToIgnoreCase(prop2[0]); + } + + @Override + public void handleProperty(String key, String value) { + this.propertyList.add(new String[]{key, value}); + } +} diff --git a/app/src/main/java/io/github/muntashirakon/setedit/PropertyCallback.java b/app/src/main/java/io/github/muntashirakon/setedit/PropertyCallback.java new file mode 100644 index 0000000..fc25c36 --- /dev/null +++ b/app/src/main/java/io/github/muntashirakon/setedit/PropertyCallback.java @@ -0,0 +1,5 @@ +package io.github.muntashirakon.setedit; + +public interface PropertyCallback { + void handleProperty(String key, String value); +} diff --git a/app/src/main/java/io/github/muntashirakon/setedit/SetEdit.java b/app/src/main/java/io/github/muntashirakon/setedit/SetEdit.java new file mode 100644 index 0000000..65dc327 --- /dev/null +++ b/app/src/main/java/io/github/muntashirakon/setedit/SetEdit.java @@ -0,0 +1,16 @@ +package io.github.muntashirakon.setedit; + +import android.app.Application; + +public class SetEdit extends Application { + private static SetEdit setEdit; + + public static SetEdit getInstance() { + return setEdit; + } + + public void onCreate() { + super.onCreate(); + setEdit = this; + } +} diff --git a/app/src/main/java/io/github/muntashirakon/setedit/adapter/AdapterProvider.java b/app/src/main/java/io/github/muntashirakon/setedit/adapter/AdapterProvider.java new file mode 100644 index 0000000..cd5ab34 --- /dev/null +++ b/app/src/main/java/io/github/muntashirakon/setedit/adapter/AdapterProvider.java @@ -0,0 +1,39 @@ +package io.github.muntashirakon.setedit.adapter; + +import android.content.Context; +import android.widget.ListAdapter; + +import io.github.muntashirakon.setedit.IEditorActivity; +import io.github.muntashirakon.setedit.adapters.AndroidPropertyListAdapter; +import io.github.muntashirakon.setedit.adapters.LinuxEnvironmentListAdapter; +import io.github.muntashirakon.setedit.adapters.JavaPropertyListAdapter; +import io.github.muntashirakon.setedit.adapters.SettingsCursorAdapter; + +public class AdapterProvider implements IAdapterProvider { + private Context context; + private IEditorActivity editorActivity; + + public AdapterProvider(Context context, IEditorActivity editorActivity) { + this.context = context; + this.editorActivity = editorActivity; + } + + public ListAdapter getAdapter(int position) { + switch (position) { + case 0: + return new SettingsCursorAdapter(context, editorActivity, "system"); + case 1: + return new SettingsCursorAdapter(context, editorActivity, "secure"); + case 2: + return new SettingsCursorAdapter(context, editorActivity, "global"); + case 3: + return new AndroidPropertyListAdapter(); + case 4: + return new JavaPropertyListAdapter(); + case 5: + return new LinuxEnvironmentListAdapter(); + default: + return null; + } + } +} diff --git a/app/src/main/java/io/github/muntashirakon/setedit/adapter/DevicesAdapter.java b/app/src/main/java/io/github/muntashirakon/setedit/adapter/DevicesAdapter.java new file mode 100644 index 0000000..495dc1b --- /dev/null +++ b/app/src/main/java/io/github/muntashirakon/setedit/adapter/DevicesAdapter.java @@ -0,0 +1,60 @@ +package io.github.muntashirakon.setedit.adapter; + +import android.view.LayoutInflater; +import android.view.View; +import android.view.ViewGroup; +import android.widget.BaseAdapter; +import android.widget.TextView; +import io.github.muntashirakon.setedit.SetEdit; +import io.github.muntashirakon.setedit.R; + +import java.util.ArrayList; +import java.util.List; + +public class DevicesAdapter extends BaseAdapter { + private final List list = new ArrayList<>(); + private final IAdapterProvider adapterProvider; + + public DevicesAdapter(IAdapterProvider adapterProvider) { + this.adapterProvider = adapterProvider; + } + + public IAdapterProvider getAdapterProvider(int i) { + if (i == 0) return adapterProvider; + return null; + } + + public boolean areAllItemsEnabled() { + return false; + } + + public int getCount() { + return list.size() + 1; + } + + public Object getItem(int i) { + return null; + } + + public long getItemId(int i) { + return i; + } + + public View getView(int i, View view, ViewGroup viewGroup) { + TextView textView; + if (view == null) { + textView = (TextView) LayoutInflater.from(viewGroup.getContext()).inflate(R.layout.item_spinner, viewGroup, false); + } else { + textView = (TextView) view; + textView.setEnabled(true); + } + if (i == 0) { + textView.setText(SetEdit.getInstance().getString(R.string.item_this_device)); + } + return textView; + } + + public boolean isEnabled(int i) { + return i != 1 || list.size() > 0; + } +} diff --git a/app/src/main/java/io/github/muntashirakon/setedit/adapter/IAdapterProvider.java b/app/src/main/java/io/github/muntashirakon/setedit/adapter/IAdapterProvider.java new file mode 100644 index 0000000..77f4b08 --- /dev/null +++ b/app/src/main/java/io/github/muntashirakon/setedit/adapter/IAdapterProvider.java @@ -0,0 +1,7 @@ +package io.github.muntashirakon.setedit.adapter; + +import android.widget.ListAdapter; + +public interface IAdapterProvider { + ListAdapter getAdapter(int position); +} diff --git a/app/src/main/java/io/github/muntashirakon/setedit/adapters/AdapterUtils.java b/app/src/main/java/io/github/muntashirakon/setedit/adapters/AdapterUtils.java new file mode 100644 index 0000000..55418f0 --- /dev/null +++ b/app/src/main/java/io/github/muntashirakon/setedit/adapters/AdapterUtils.java @@ -0,0 +1,30 @@ +package io.github.muntashirakon.setedit.adapters; + +import android.annotation.SuppressLint; +import android.content.Context; +import android.view.LayoutInflater; +import android.view.View; +import android.view.ViewGroup; +import android.widget.TextView; + +import io.github.muntashirakon.setedit.R; + +public class AdapterUtils { + public static View inflateSetting(Context context, ViewGroup viewGroup) { + return LayoutInflater.from(context).inflate(R.layout.item_setting, viewGroup, false); + } + + public static String getName(View view) { + return ((TextView) view.findViewById(R.id.txtName)).getText().toString(); + } + + @SuppressLint("SetTextI18n") + public static void setNameValue(View view, String name, String value) { + ((TextView) view.findViewById(R.id.txtName)).setText(name); + ((TextView) view.findViewById(R.id.txtValue)).setText(value); + } + + public static String getValue(View view) { + return ((TextView) view.findViewById(R.id.txtValue)).getText().toString(); + } +} diff --git a/app/src/main/java/io/github/muntashirakon/setedit/adapters/AndroidPropertyListAdapter.java b/app/src/main/java/io/github/muntashirakon/setedit/adapters/AndroidPropertyListAdapter.java new file mode 100644 index 0000000..09f1d0e --- /dev/null +++ b/app/src/main/java/io/github/muntashirakon/setedit/adapters/AndroidPropertyListAdapter.java @@ -0,0 +1,78 @@ +package io.github.muntashirakon.setedit.adapters; + +import android.database.DataSetObserver; +import android.view.View; +import android.view.ViewGroup; +import android.widget.ListAdapter; +import io.github.muntashirakon.setedit.Native; +import java.util.ArrayList; +import java.util.List; + +public class AndroidPropertyListAdapter implements ListAdapter { + private final List list = new ArrayList<>(); + + public AndroidPropertyListAdapter() { + Native.setPropertyList(list); + } + + @Override + public boolean areAllItemsEnabled() { + return true; + } + + @Override + public int getCount() { + return list.size(); + } + + @Override + public Object getItem(int i) { + return null; + } + + @Override + public long getItemId(int i) { + return i; + } + + @Override + public int getItemViewType(int i) { + return 0; + } + + @Override + public View getView(int i, View view, ViewGroup viewGroup) { + String[] property = list.get(i); + if (view == null) { + view = AdapterUtils.inflateSetting(viewGroup.getContext(), viewGroup); + } + AdapterUtils.setNameValue(view, property[0], property[1]); + return view; + } + + @Override + public int getViewTypeCount() { + return 1; + } + + @Override + public boolean hasStableIds() { + return true; + } + + @Override + public boolean isEmpty() { + return false; + } + + @Override + public boolean isEnabled(int i) { + return true; + } + + @Override + public void registerDataSetObserver(DataSetObserver dataSetObserver) {} + + @Override + public void unregisterDataSetObserver(DataSetObserver dataSetObserver) {} +} diff --git a/app/src/main/java/io/github/muntashirakon/setedit/adapters/JavaPropertyListAdapter.java b/app/src/main/java/io/github/muntashirakon/setedit/adapters/JavaPropertyListAdapter.java new file mode 100644 index 0000000..071bc4a --- /dev/null +++ b/app/src/main/java/io/github/muntashirakon/setedit/adapters/JavaPropertyListAdapter.java @@ -0,0 +1,76 @@ +package io.github.muntashirakon.setedit.adapters; + +import android.database.DataSetObserver; +import android.view.View; +import android.view.ViewGroup; +import android.widget.ListAdapter; +import java.util.Arrays; +import java.util.Iterator; +import java.util.Properties; +import java.util.Set; + +public class JavaPropertyListAdapter implements ListAdapter { + private Properties properties = System.getProperties(); + private String[] propertyNames; + + public JavaPropertyListAdapter() { + Set stringPropertyNames = properties.stringPropertyNames(); + int size = stringPropertyNames.size(); + propertyNames = new String[size]; + Iterator it = stringPropertyNames.iterator(); + for (int i = 0; i < size; i++) propertyNames[i] = it.next(); + Arrays.sort(propertyNames, String.CASE_INSENSITIVE_ORDER); + } + + public boolean areAllItemsEnabled() { + return true; + } + + public int getCount() { + return propertyNames.length; + } + + public Object getItem(int i) { + return null; + } + + public long getItemId(int i) { + return i; + } + + public int getItemViewType(int i) { + return 0; + } + + public View getView(int i, View view, ViewGroup viewGroup) { + String str = this.propertyNames[i]; + String property = properties.getProperty(str); + if (view == null) { + view = AdapterUtils.inflateSetting(viewGroup.getContext(), viewGroup); + } + AdapterUtils.setNameValue(view, str, property); + return view; + } + + public int getViewTypeCount() { + return 1; + } + + public boolean hasStableIds() { + return true; + } + + public boolean isEmpty() { + return false; + } + + public boolean isEnabled(int i) { + return true; + } + + public void registerDataSetObserver(DataSetObserver dataSetObserver) { + } + + public void unregisterDataSetObserver(DataSetObserver dataSetObserver) { + } +} diff --git a/app/src/main/java/io/github/muntashirakon/setedit/adapters/LinuxEnvironmentListAdapter.java b/app/src/main/java/io/github/muntashirakon/setedit/adapters/LinuxEnvironmentListAdapter.java new file mode 100644 index 0000000..cd93645 --- /dev/null +++ b/app/src/main/java/io/github/muntashirakon/setedit/adapters/LinuxEnvironmentListAdapter.java @@ -0,0 +1,76 @@ +package io.github.muntashirakon.setedit.adapters; + +import android.database.DataSetObserver; +import android.view.View; +import android.view.ViewGroup; +import android.widget.ListAdapter; +import java.util.Arrays; +import java.util.Iterator; +import java.util.Map; + +public class LinuxEnvironmentListAdapter implements ListAdapter { + private final Map a = System.getenv(); + private final String[] b; + + public LinuxEnvironmentListAdapter() { + int size = this.a.size(); + this.b = new String[size]; + Iterator it = this.a.keySet().iterator(); + for (int i = 0; i < size; i++) { + this.b[i] = it.next(); + } + Arrays.sort(this.b, String.CASE_INSENSITIVE_ORDER); + } + + public boolean areAllItemsEnabled() { + return true; + } + + public int getCount() { + return this.a.size(); + } + + public Object getItem(int i) { + return null; + } + + public long getItemId(int i) { + return (long) i; + } + + public int getItemViewType(int i) { + return 0; + } + + public View getView(int i, View view, ViewGroup viewGroup) { + String str = this.b[i]; + String str2 = this.a.get(str); + if (view == null) { + view = AdapterUtils.inflateSetting(viewGroup.getContext(), viewGroup); + } + AdapterUtils.setNameValue(view, str, str2); + return view; + } + + public int getViewTypeCount() { + return 1; + } + + public boolean hasStableIds() { + return true; + } + + public boolean isEmpty() { + return false; + } + + public boolean isEnabled(int i) { + return true; + } + + public void registerDataSetObserver(DataSetObserver dataSetObserver) { + } + + public void unregisterDataSetObserver(DataSetObserver dataSetObserver) { + } +} diff --git a/app/src/main/java/io/github/muntashirakon/setedit/adapters/SettingsAdapter.java b/app/src/main/java/io/github/muntashirakon/setedit/adapters/SettingsAdapter.java new file mode 100644 index 0000000..00cda70 --- /dev/null +++ b/app/src/main/java/io/github/muntashirakon/setedit/adapters/SettingsAdapter.java @@ -0,0 +1,14 @@ +package io.github.muntashirakon.setedit.adapters; + +import android.view.View; +import android.widget.ListAdapter; + +public interface SettingsAdapter extends ListAdapter { + void checkPermission(View view, long id); + + void setName(String name); + + void updateValueForName(String name, String value); + + void setMessage(String str); +} diff --git a/app/src/main/java/io/github/muntashirakon/setedit/adapters/SettingsCursorAdapter.java b/app/src/main/java/io/github/muntashirakon/setedit/adapters/SettingsCursorAdapter.java new file mode 100644 index 0000000..b567713 --- /dev/null +++ b/app/src/main/java/io/github/muntashirakon/setedit/adapters/SettingsCursorAdapter.java @@ -0,0 +1,111 @@ +package io.github.muntashirakon.setedit.adapters; + +import android.content.ContentResolver; +import android.content.ContentValues; +import android.content.Context; +import android.database.Cursor; +import android.database.MatrixCursor; +import android.net.Uri; +import android.util.Log; +import android.view.View; +import android.view.ViewGroup; +import android.widget.CursorAdapter; + +import io.github.muntashirakon.setedit.cursor.CursorHelper; +import io.github.muntashirakon.setedit.cursor.SettingsCursor; +import io.github.muntashirakon.setedit.SetEdit; +import io.github.muntashirakon.setedit.EditorUtils; +import io.github.muntashirakon.setedit.IEditorActivity; +import io.github.muntashirakon.setedit.R; + +public class SettingsCursorAdapter extends CursorAdapter implements SettingsAdapter { + public static final String[] columns = {"_id", "name", "value"}; + private String settingsType; + private Context context; + private IEditorActivity editorActivity; + + public SettingsCursorAdapter(Context context, IEditorActivity editorActivity, String settingsType) { + super(context, checkPermission(context, settingsType), 2); + this.settingsType = settingsType; + this.context = context; + this.editorActivity = editorActivity; + } + + private static Cursor checkPermission(Context context, String settingsType) { + try { + ContentResolver contentResolver = context.getContentResolver(); + Cursor query = contentResolver.query(Uri.parse("content://settings/" + settingsType), + columns, null, null, null); + SettingsCursor settingsCursor = new SettingsCursor(); + settingsCursor.setCursor(query); + settingsCursor.setCursorHelper(CursorHelper.getStringAtIndex(1), String.CASE_INSENSITIVE_ORDER); + return settingsCursor; + } catch (Throwable th) { + th.printStackTrace(); + return new MatrixCursor(columns); + } + } + + public void checkPermission(View view, long id) { + String permString = EditorUtils.checkPermission(context, settingsType); + if ("p".equals(permString)) { + if (id == -1) { + editorActivity.displayNewSettingEditor(); + return; + } + editorActivity.displaySettingEditor(AdapterUtils.getName(view), AdapterUtils.getValue(view)); + } else if (!"c".equals(permString)) { + editorActivity.setMessage(permString); + } + } + + public void setName(String name) { + editorActivity.displaySettingEditor(name, null); + } + + public void updateValueForName(String name, String value) { + ContentResolver contentResolver = context.getContentResolver(); + try { + ContentValues contentValues = new ContentValues(2); + contentValues.put("name", name); + contentValues.put("value", value); + contentResolver.insert(Uri.parse("content://settings/" + settingsType), contentValues); + onContentChanged(); + } catch (Throwable th) { + th.printStackTrace(); + editorActivity.setMessage(SetEdit.getInstance().getString(R.string.error_rejected)); + } + } + + public void setMessage(String str) { + String message = EditorUtils.checkPermission(context, settingsType); + if (!"c".equals(message)) { + if (!"p".equals(message)) { + editorActivity.setMessage(message); + return; + } + ContentResolver contentResolver = context.getContentResolver(); + try { + String[] strArr = {str}; + contentResolver.delete(Uri.parse("content://settings/" + settingsType), "name = ?", strArr); + onContentChanged(); + } catch (Throwable th) { + th.printStackTrace(); + editorActivity.setMessage(SetEdit.getInstance().getString(R.string.error_unexpected)); + } + } + } + + public void bindView(View view, Context context, Cursor cursor) { + AdapterUtils.setNameValue(view, cursor.getString(1), cursor.getString(2)); + } + + public View newView(Context context, Cursor cursor, ViewGroup viewGroup) { + return AdapterUtils.inflateSetting(context, viewGroup); + } + + public void onContentChanged() { + Log.e("onContentChanged", "changing cursor"); + changeCursor(checkPermission(context, settingsType)); + } +} diff --git a/app/src/main/java/io/github/muntashirakon/setedit/cursor/CursorHelper.java b/app/src/main/java/io/github/muntashirakon/setedit/cursor/CursorHelper.java new file mode 100644 index 0000000..21b5d8c --- /dev/null +++ b/app/src/main/java/io/github/muntashirakon/setedit/cursor/CursorHelper.java @@ -0,0 +1,15 @@ +package io.github.muntashirakon.setedit.cursor; + +import android.database.Cursor; + +public abstract class CursorHelper { + public static CursorHelper getStringAtIndex(final int index) { + return new CursorHelper() { + public String getStringAtIndex(Cursor cursor) { + return cursor.getString(index); + } + }; + } + + public abstract String getStringAtIndex(Cursor cursor); +} diff --git a/app/src/main/java/io/github/muntashirakon/setedit/cursor/SettingsCursor.java b/app/src/main/java/io/github/muntashirakon/setedit/cursor/SettingsCursor.java new file mode 100644 index 0000000..fd38c52 --- /dev/null +++ b/app/src/main/java/io/github/muntashirakon/setedit/cursor/SettingsCursor.java @@ -0,0 +1,221 @@ +package io.github.muntashirakon.setedit.cursor; + +import android.annotation.TargetApi; +import android.content.ContentResolver; +import android.database.CharArrayBuffer; +import android.database.ContentObserver; +import android.database.Cursor; +import android.database.DataSetObserver; +import android.net.Uri; +import android.os.Bundle; +import java.util.Arrays; +import java.util.Comparator; + +public class SettingsCursor implements Cursor { + private Cursor cursor; + private CursorHelper cursorHelper; + private Comparator comparator; + private String[] data; + private Integer[] integerData; + private int position = -1; + + private void sortValues() { + if (cursor != null && cursorHelper != null && comparator != null) { + int count = cursor.getCount(); + if (data == null || data.length != count) { + data = new String[count]; + } + for (int i = 0; i < count; i++) { + cursor.moveToPosition(i); + data[i] = cursorHelper.getStringAtIndex(cursor); + } + if (integerData == null || integerData.length != count) { + integerData = new Integer[count]; + } + for (int i2 = 0; i2 < count; i2++) integerData[i2] = i2; + Arrays.sort(integerData, (i1, i2) -> comparator.compare(data[i1], data[i2])); + moveToPosition(-1); + } + } + + public void setCursor(Cursor cursor) { + this.cursor = cursor; + sortValues(); + } + + public void setCursorHelper(CursorHelper cursorHelper, Comparator comparator) { + this.cursorHelper = cursorHelper; + this.comparator = comparator; + sortValues(); + } + + public void close() { + if (cursor != null) cursor.close(); + } + + public void copyStringToBuffer(int i, CharArrayBuffer charArrayBuffer) { + if (cursor == null) charArrayBuffer.sizeCopied = 0; + else cursor.copyStringToBuffer(i, charArrayBuffer); + } + + public void deactivate() { + if (cursor != null) cursor.deactivate(); + } + + public byte[] getBlob(int i) { + return cursor == null ? null : cursor.getBlob(i); + } + + public int getColumnCount() { + return cursor == null ? 0 : cursor.getColumnCount(); + } + + public int getColumnIndex(String str) { + return cursor == null ? -1 : cursor.getColumnIndex(str); + } + + public int getColumnIndexOrThrow(String str) { + if (cursor != null) return cursor.getColumnIndexOrThrow(str); + throw new IllegalArgumentException(); + } + + public String getColumnName(int i) { + return cursor == null ? "" : cursor.getColumnName(i); + } + + public String[] getColumnNames() { + return cursor == null ? new String[0] : cursor.getColumnNames(); + } + + public int getCount() { + return cursor == null ? 0 : cursor.getCount(); + } + + public double getDouble(int i) { + return cursor == null ? Double.NaN : cursor.getDouble(i); + } + + public Bundle getExtras() { + return cursor == null ? Bundle.EMPTY : cursor.getExtras(); + } + + public float getFloat(int i) { + return cursor == null ? Float.NaN : cursor.getFloat(i); + } + + public int getInt(int i) { + return cursor == null ? Integer.MIN_VALUE : cursor.getInt(i); + } + + public long getLong(int i) { + return cursor == null ? Long.MIN_VALUE : cursor.getLong(i); + } + + @TargetApi(19) + public Uri getNotificationUri() { + return cursor == null ? null : cursor.getNotificationUri(); + } + + public int getPosition() { + return position; + } + + public short getShort(int i) { + return cursor == null ? Short.MIN_VALUE : cursor.getShort(i); + } + + public String getString(int i) { + return cursor == null ? null : cursor.getString(i); + } + + public int getType(int i) { + return cursor == null ? 0 : cursor.getType(i); + } + + public boolean getWantsAllOnMoveCalls() { + return false; + } + + public boolean isAfterLast() { + return position >= integerData.length; + } + + public boolean isBeforeFirst() { + return position < 0; + } + + public boolean isClosed() { + return cursor != null && cursor.isClosed(); + } + + public boolean isFirst() { + return position == 0; + } + + public boolean isLast() { + return position + 1 == integerData.length; + } + + public boolean isNull(int i) { + return cursor == null || cursor.isNull(i); + } + + public boolean move(int i) { + return moveToPosition(position + i); + } + + public boolean moveToFirst() { + return moveToPosition(0); + } + + public boolean moveToLast() { + return moveToPosition(integerData.length - 1); + } + + public boolean moveToNext() { + return moveToPosition(position + 1); + } + + public boolean moveToPosition(int i) { + position = i; + if (i >= 0 && i < integerData.length) i = integerData[i]; + return cursor != null && cursor.moveToPosition(i); + } + + public boolean moveToPrevious() { + return moveToPosition(position - 1); + } + + public void registerContentObserver(ContentObserver contentObserver) { + if (cursor != null) cursor.registerContentObserver(contentObserver); + } + + public void registerDataSetObserver(DataSetObserver dataSetObserver) { + if (cursor != null) cursor.registerDataSetObserver(dataSetObserver); + } + + public boolean requery() { + return cursor == null || cursor.requery(); + } + + public Bundle respond(Bundle bundle) { + return cursor == null ? Bundle.EMPTY : cursor.respond(bundle); + } + + @TargetApi(23) + public void setExtras(Bundle bundle) { + if (cursor != null) cursor.setExtras(bundle); + } + + public void setNotificationUri(ContentResolver contentResolver, Uri uri) { + if (cursor != null) cursor.setNotificationUri(contentResolver, uri); + } + + public void unregisterContentObserver(ContentObserver contentObserver) { + if (cursor != null) cursor.unregisterContentObserver(contentObserver); + } + + public void unregisterDataSetObserver(DataSetObserver dataSetObserver) { + if (cursor != null) cursor.unregisterDataSetObserver(dataSetObserver); + } +} diff --git a/app/src/main/res/drawable/ic_launcher_foreground.xml b/app/src/main/res/drawable/ic_launcher_foreground.xml new file mode 100644 index 0000000..1f480c8 --- /dev/null +++ b/app/src/main/res/drawable/ic_launcher_foreground.xml @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + diff --git a/app/src/main/res/layout-television-v21/toolbar_editor.xml b/app/src/main/res/layout-television-v21/toolbar_editor.xml new file mode 100644 index 0000000..9b2a731 --- /dev/null +++ b/app/src/main/res/layout-television-v21/toolbar_editor.xml @@ -0,0 +1,23 @@ + + + + + diff --git a/app/src/main/res/layout/activity_editor.xml b/app/src/main/res/layout/activity_editor.xml new file mode 100644 index 0000000..bd45148 --- /dev/null +++ b/app/src/main/res/layout/activity_editor.xml @@ -0,0 +1,17 @@ + + + + + diff --git a/app/src/main/res/layout/dialog_editor.xml b/app/src/main/res/layout/dialog_editor.xml new file mode 100644 index 0000000..aee687c --- /dev/null +++ b/app/src/main/res/layout/dialog_editor.xml @@ -0,0 +1,21 @@ + + + + + + diff --git a/app/src/main/res/layout/dialog_menu.xml b/app/src/main/res/layout/dialog_menu.xml new file mode 100644 index 0000000..7f96d60 --- /dev/null +++ b/app/src/main/res/layout/dialog_menu.xml @@ -0,0 +1,77 @@ + + + + + + +