Hey there, so I wasn't sure which forum exactly to post this in, but how would somebody go about building(compiling) an open source xposed module?
Download source code, import project in Exclipse/Android Studio and build your own version.
Related
My Question to the Dev's is is there a Guide on How to Build Single APP Packages eg Calculator from Source Without building the entire android from Source is possible to build eg libjpeg from source as a single module.
i have tried the mmm command all it did was spit out errors you fix one get ten more and so on
I also tried using NDK by inserting the open source libs into a jni folder and modifying Android.mk to look similar to the sample jni resulted in errors this is the only Guide i can't find as there many on building entire android but sometime one only needs specific modules and not entire build.
If above not possible is there a bare minimum version where it only builds android core frameworks and like one lib /app ?
i did not try this .
u can download the package like if u want trebucket launcher then download full android_packages_apps_trebuckhet.
recompile it to get the trebucket apk
once againg i did not try this out
defcomg said:
My Question to the Dev's is is there a Guide on How to Build Single APP Packages eg Calculator from Source Without building the entire android from Source is possible to build eg libjpeg from source as a single module.
i have tried the mmm command all it did was spit out errors you fix one get ten more and so on
I also tried using NDK by inserting the open source libs into a jni folder and modifying Android.mk to look similar to the sample jni resulted in errors this is the only Guide i can't find as there many on building entire android but sometime one only needs specific modules and not entire build.
If above not possible is there a bare minimum version where it only builds android core frameworks and like one lib /app ?
Click to expand...
Click to collapse
Mmm won't help as it needs to link against other parts of the system. That's why you need to do a full build before you can mmm
In theory you can take the app and try to import it into eclipse, and regard it just as an app project.
I already asked in the FirefdsKit thread, but there doesn't seem to be much activity going on there to be noticed.
I was wondering how I could compile FirefdsKit from the source.
I've already cloned the repo, imported into Android Studio, and added the dependencies.
However, I cannot figure out how I am supposed to resolve these two missing symbols:
Code:
import com.sec.android.app.CscFeature;
Code:
import com.samsung.android.multiwindow.MultiWindowStyle;
I've looked through the repo and I can't seem to find the libraries from which these come from.
Could someone please point me into the right direction?
Hey!!
Sorry, does anybody knows some way to develop XPosed modules in IntelliJ IDEA??
I've found the apsun/XposedPlugin repo on GitHub (Sorry, I can't post links) but it doesn't include any build file. Also, it doesn't seem to be actively developed.
Thank you,
Gabriel
Hello I´m trying to build an APP called zoomgesturetile from the authors GitHub. But when I want to build the APK, I get this Error:
Something wrong with the Maven Repository I guess. I never used Android Studio, so it would be nice if someone could help me out here, or may look into the code if he or she can compile it.
Thank you for your help
I am trying to make my own build of Lineage OS so that I can learn more about howto enable I2C devices so that they are available in SensorManager.
I browsed through the repos at https://github.com/lineage-rpi but could not find instructions on how to perform a build from scratch.
The repo looks like it is the right place to go and it seems like android_local_manifest/manifest_bcrm_rpi.xml has all the right links to the other repos (kernel source, proprietary and android_device). However I do not see any reference to the android source code. Or do I need to get the android source code from source.android.com?
Can someone share the "repo" commands so that I can pull all of the source code? I will work out howto build it form there.