• 1 Post
  • 26 Comments
Joined 1 year ago
cake
Cake day: June 18th, 2023

help-circle
  • https://orbitbymozilla.com/terms

    4. Content

    A. Content You Share

    By using the Services, you represent that you will only share material (including Inputs) that you own and/or have the legal right to share and sublicense to others, including without limitation, content and data contained in any web-page shared through the Services to generate Outputs. When you submit your own content through the Services, you continue to own the rights to that content. You grant Mozilla a worldwide, royalty-free, perpetual, irrevocable, non-exclusive, transferable license to use, copy, modify, adapt, sub-license, prepare derivative works from, distribute, perform, and display the Inputs for the purpose of operating the Services.















  • I'm also looking into it right now.

    The code of android apps is compiled to dalvik bytecode which is contained in the *.dex files in the apk. You will not be able to read it. You need to decompile it to something human readable. One of those formats is smali. The xml files (manifest, ressources) are also compiled and need to be decompiled.

    One of the best tools to decompile apks is apktool. It works on pc and there is an unofficial android version. The android version includes an editor and is a gui.

    Smali is not that easy to read for beginners so on some apps you can try converting it to java using jadx (standalone on pc and included in apktool mobile). The java code will be full of mistakes and will only be partial but will be readable more easily and will give you a general idea of what the code does. This works well only if the code is not completly obfuscated or was written in kotlin.

    I suggest learning about android apps before trying to mod them. Learn Java (and or Kotlin) for android. Learn about activities and other things that are specific to android. If you don't understand the concepts used in an android app you will probably not be able to mod apps.