Request TF300 (init.rc) SOLVED - Transformer TF300T General

Hi there!
can someone on 4.2.1 post the content of INIT.RC?
Location is: rootdir/init.rc
I'm looking for the BOOTCLASSPATH
Thanks!
Nevermind..
4.1.1
Code:
export BOOTCLASSPATH /system/framework/core.jar:/system/framework/core-junit.jar:/system/framework/bouncycastle.jar:/system/framework/ext.jar:/system/framework/framework.jar:/system/framework/framework2.jar:/system/framework/android.policy.jar:/system/framework/services.jar:/system/framework/apache-xml.jar
4.2.1
Code:
export BOOTCLASSPATH /system/framework/core.jar:/system/framework/core-junit.jar:/system/framework/bouncycastle.jar:/system/framework/ext.jar:/system/framework/framework.jar:/system/framework/telephony-common.jar:/system/framework/mms-common.jar:/system/framework/android.policy.jar:/system/framework/services.jar:/system/framework/apache-xml.jar

xXlAinXx said:
Hi there!
can someone on 4.2.1 post the content of INIT.RC?
Location is: rootdir/init.rc
I'm looking for the BOOTCLASSPATH
Thanks!
Nevermind..
4.1.1
Code:
export BOOTCLASSPATH /system/framework/core.jar:/system/framework/core-junit.jar:/system/framework/bouncycastle.jar:/system/framework/ext.jar:/system/framework/framework.jar:/system/framework/framework2.jar:/system/framework/android.policy.jar:/system/framework/services.jar:/system/framework/apache-xml.jar
4.2.1
Code:
export BOOTCLASSPATH /system/framework/core.jar:/system/framework/core-junit.jar:/system/framework/bouncycastle.jar:/system/framework/ext.jar:/system/framework/framework.jar:/system/framework/telephony-common.jar:/system/framework/mms-common.jar:/system/framework/android.policy.jar:/system/framework/services.jar:/system/framework/apache-xml.jar
Click to expand...
Click to collapse
Great everything worked out :good:
Can you add SOLVED to the thread title
Thx Josh

Related

Decompile and Compile Kernel ROM

Can anyone with a good heart here decompile the kernel attached below and edit the init.rc file in it..
please add the com.htc.framework before the framework.jar
and then recompile again and attach it here please..
Thanks You!..
anyone please!..
I think this is what you wanted. In init.rc, I replaced the line:
Code:
export BOOTCLASSPATH /system/framework/core.jar:/system/framework/ext.jar:/system/framework/framework.jar:/system/framework/android.policy.jar:/system/framework/services.jar
with:
Code:
export BOOTCLASSPATH /system/framework/core.jar:/system/framework/ext.jar:/system/framework/com.htc.framework.jar:/system/framework/framework.jar:/system/framework/android.policy.jar:/system/framework/services.jar
YES! thank you so much!..
how did you do that?..
would really appreciate if you can teach me how..
because there is missing that i forgot to add.. sorry
Code:
export BOOTCLASSPATH /system/framework/core.jar:/system/framework/ext.jar:/system/framework/framework.jar:/system/framework/android.policy.jar:/system/framework/services.jar:/system/framework/com.htc.framework.jar:/system/framework/com.htc.android.pimlib.jar:/system/framework/com.htc.android.easopen.jar:/system/framework/com.scalado.util.ScaladoUtil.jar
if you have sometime again that you can offer to me, please add/make my BOOTCLASSPATH like above.. i promise that it would be the last one.. THANKS!..
I assume English is not your native language. I'm not sure what you are asking. Do you want me to completely replace the BOOCLASSPATH in your boot.img with the one above?
As for how I did it, see this thread:
http://forum.xda-developers.com/showthread.php?t=551711
Gene Poole said:
I assume English is not your native language. I'm not sure what you are asking. Do you want me to completely replace the BOOCLASSPATH in your boot.img with the one above?
As for how I did it, see this thread:
http://forum.xda-developers.com/showthread.php?t=551711
Click to expand...
Click to collapse
Yes, thats what i want to do boss.. can you made it for me again?.. thats the last one.. i forgot the other framework to include..
thanks!..
GreatWizard said:
Yes, thats what i want to do boss.. can you made it for me again?.. thats the last one.. i forgot the other framework to include..
thanks!..
Click to expand...
Click to collapse
OK, here it is.
Gene Poole said:
OK, here it is.
Click to expand...
Click to collapse
oohh!!.. thank you boss!.. thanks for you time decompiling, editing and compiling just for me..
really appreciate what you did..
your the man!
Gene Poole said:
OK, here it is.
Click to expand...
Click to collapse
hi, i dont speak english, but i find this thread for google, man really need add etc/inidt.d to mi stock kernel but dont know how! i have only windows, and the other guide not work for me, can u help me?

[Q] Repack boot.img

working on my port for the galaxy 10.1 and get this error while repacking: No such file or directory at repack-bootimg.pl line 13
and using this in command: perl repack-bootimg.pl ../path to kernel ../path to ramdisk directory ../path to outfile
and using this perl script:https://www.dropbox.com/s/aqv22sdrhzd86f7/repack-bootimg.pl
any help would be greatly appreciated, BTW im using ubuntu 12.04
------i have tried to put in the path to kernal ect in the command line:/path to kernel
----or better yet, pm me and i will give ou the files if you can repack them and send them back to me
Use the kitchen.
civato said:
Use the kitchen.
Click to expand...
Click to collapse
can you link it thanks, big fan civato
jnktechstuff said:
can you link it thanks, big fan civato
Click to expand...
Click to collapse
http://forum.xda-developers.com/showthread.php?t=633246

Help needed in creating a simple build. prop editor

Hello guys
I was thinking to create a simple build.prop editor. someone can help me where should I start. it's a simple project so I want to work myself to get some experience in android app development. As I know I have to provide root permission in android manifest. Xml but how the activity can read build.prop file
Thank you
Sent from my GT-I9100 using Tapatalk 2
Deleted
Root commands need to be executed the command line way.
You can get the content of a file using
Code:
cat <filepath>
For executing these commands I recommend using the RootTools library.
First of all get basic Linux command line knowledge.
nikwen said:
Root commands need to be executed the command line way.
You can get the content of a file using
Code:
cat <filepath>
For executing these commands I recommend using the RootTools library.
First of all get basic Linux command line knowledge.
Click to expand...
Click to collapse
So it means I should use Ubuntu
Sent from my GT-I9100 using Tapatalk 2
saif kazi said:
So it means I should use Ubuntu
Sent from my GT-I9100 using Tapatalk 2
Click to expand...
Click to collapse
No, it does not mean that.
If you want to do anything which needs SU permission, you need to do it without the Android API. You run a command on the built-in command line on your phone from your app. Now in Java you are able to read the output of the command and parse it to get the required information.
There is no other way of doing it because Android was not designed to be rooted.
saif kazi said:
Hello guys
I was thinking to create a simple build.prop editor. someone can help me where should I start. it's a simple project so I want to work myself to get some experience in android app development. As I know I have to provide root permission in android manifest. Xml but how the activity can read build.prop file
Thank you
Sent from my GT-I9100 using Tapatalk 2
Click to expand...
Click to collapse
I used this repo as a base for mine, see if it can be any use to you and try altering it as much as you can so you can see what your able todo
https://github.com/nathanpc/Build.prop-Editor
Nx Biotic said:
I used this repo as a base for mine, see if it can be any use to you and try altering it as much as you can so you can see what your able todo
https://github.com/nathanpc/Build.prop-Editor
Click to expand...
Click to collapse
Looks like he has already forked it.
https://github.com/saifkazi/Build.prop-Editor
If you want to release your version, have a look at the original license: https://github.com/nathanpc/Build.prop-Editor/blob/master/LICENSE
Nx Biotic said:
I used this repo as a base for mine, see if it can be any use to you and try altering it as much as you can so you can see what your able todo
https://github.com/nathanpc/Build.prop-Editor
Click to expand...
Click to collapse
Haha, I was about to suggest my project when I saw the Google Alerts email, but looks like you already did.
Thanks very much!
nathanpc said:
Haha, I was about to suggest my project when I saw the Google Alerts email, but looks like you already did.
Thanks very much!
Click to expand...
Click to collapse
No problem man!

[SOURCES] [DevXchange] Android Sources Highly Compressed & Developer Exchange

{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Project abandoned, please do not submit pull requests.
Disclaimer: The wordings in the thread are meant to be noob-friendly and for newer developers that have just dipped their feet into Android platform development. Hence, they won't be accurate in many places for the 'geek'. Also, we had started distributing shallow cloned sources with a depth of '1' instead of non-repo sources (as they are more or less of the same size). So this should not be a problem for the ROM developers in our opinion as they can be fetched by syncing.
Hello!
We, Android Developers, have many problems. One such of them is "SLOW INTERNET" or even "LOW BANDWIDTH".
Due to these problems, we are unable to sync the BIG chunk of Android source codes from the respective repositories.
Hence, most of the new and learning developers just fail at the first step: Downloading The Source Code!
So, here I present you with a thread, which contains links to download "HIGHLY COMPRESSED", untouched (unmodified) and full Android source codes of many different ROMs!
The links to the highly compressed source codes you will find here are not uploaded by me alone. There are many other people that have contributed.
Some of them are: @DigiGoon @MSF Jarvis and @regalstreak (me)
So, Let's begin!
First things first.
You should know what a repo is.
I quote XDA:
What is Repo?
Repo is a repository management tool built on top of Git.
It’s first purpose is to downloads files from multiple git repositories into your local working directory (aka the source tree). That means that you won’t have to manually download or fetch the latest changes from about 300+ projects (depending on if you are downloading AOSP, CM or AOKP for example), repo will do it for you.
The second purpose of repo is to made it easy to submit your code contributions for review to a Gerrit server.
Click to expand...
Click to collapse
When you download a source code with repo, you get a folder named .repo in your working directory. It contains all the compressed .git format files that need to be in the source code.
After the source has been downloaded, the repo tool decompresses the files from the ".repo" folder and you get the source code in the working directory itself!
This project will give you a highly compressed shallow cloned and full tarball of the sources (for those who can't download it via repo or have limited speeds on github/aosp servers). More information is given in the FAQ section. It is must-read. Without it, you won't understand how to use these.
Note: You cannot go from CM12 source to CM12.1 or going CM12 to CM13 as these are different branches on the CyanogenMod repo. No way doing that. You will have to manually download the new source.
So, We are done with the information!
Now, The interesting part. The sources!
Note: All links on this thread are tap friendly! They open in new tabs
I have divided this into several sections for ease of reading and getting the sources. They are:
Links Of All Source Currently Uploaded
How To Request For A Source
FAQ
Announcements and General Stuff
Reserved 2
As you know that we have been using the Skadoosh script recently, which is made by me (@regalstreak), @MSF Jarvis and @DigiGoon, all our sources are being uploaded to one common folder on AndroidFileHost.
This is an automated process in which you submit a Pull Request on the Skadoosh's git and the required source will be available to you soon after it.
More information regarding the process is on Post 3 by @MSF Jarvis
The link to the folder where all the sources are uploaded is Here.
The old upload afh folder can be found Here
If you have any other issues regarding the sources, please mention us here. We will be happy to help you. Please read the FAQ before doing stuff.
Originally, we have had a "Ask on the thread, we'll try" approach to how things work. This is changing now.
While this worked good enough for those asking for the sources, the people who did the actual work were overburdened. Frankly, the process was pretty sketchy. I personally faced the burden part when there were about 6 or 7 ROMs to do! I actually forgot about one guy who made the request earliest, which kinda sucked.
Going forward, this won't happen now. We have a script up on @regalstreak's Github. Updates to it are synced to my server and executed.
The process for requesting sources is now something like this :
Go to the Github repo and edit the compress.bash script
Start a Pull Request
Wait for it to be merged
Wait for even more time to let it upload and one of us to send the confirmation here.
Do whatever the heck you want with those sources!
NOTE: The compress.bash looks like this in a classic example of how to do it WRONG.
Code:
name=AOSP
manifest=[url]https://android.googlesource.com/platform/manifest[/url] -b android-4.0.1_r1
branch=android-6.0.1_r55
./skadoo.sh $name $manifest $branch
This was after This PR was merged and is being shown as the perfect way to mess it up. You are ALREADY passing the branch parameter separately, so adding '-b android-4.0.1_r1' looks like a shining example of blind copy paste. Don't do that. Change the name, manifest and branch with some general application of the faculty of common sense.
Interested users are also suggested to read this strongly worded post.
FAQ
Q1> How should I extract the source?
Ans:
First you will have to join the archive parts into one big archive. Download all the parts. Then put all parts in one folder. Verify md5sum by
Code:
md5sum -c *.md5sum
Then do
Code:
cat *.tar.* > yourbigarchivename.tar.xz
Just quote me if you don't understand this. I'll help you out.
If your archive is in .tar.xz format, do this:
Open Terminal
Now cd to the drive where you have downloaded the sources
Extract it
Code:
tar -xvJf (file name here).tar.xz
If your archive is in .tar.gz format, so do this:
Open Terminal
Now cd to the drive where you have downloaded the sources
Extract it
Code:
tar -xvzf (file name here).tar.gz
Now you have extracted the source.
Q2> I am not able to extract the source. What should I do?
Ans: You cannot extract source with GUI on the Archive Extractor. So, try the method I mentioned.
Q3> Is the size of all files 2GB? I saw the size 2GB on AndroidFileHost!
Ans: The mentioned size on AFH is incorrect. AndroidFileHost has some problems while showing file sizes for files above 2GB. You need to click on Download once to view the correct size!
Q4> How do you compress them? I mean, I need the command so that I can help you out!
Ans: Our script is open source. You can view it here: https://github.com/regalstreak/skadoosh
Q5> What are shallow and full sources?
Ans: Shallow sources are the ones that just have the latest or the HEAD commits in each subproject. You can read more about it from here. Full are the ones that have all the bits from the starting of the subprojects and hence the archives have a large file size.
Q6> How do I use these sources?
Ans: First, you will have to extract them as mentioned above. You should get a .repo folder. In the same folder itself (not inside .repo but the folder that contains .repo), you will have to update the local work tree. You can update it by using
Code:
repo sync -c -f --force-sync --no-clone-bundle --no-tags -j8
This command will help you to use minimum data/internet as it does not download extra tags or clone bundles.
If you do not want to use data at all, you can use this:
Code:
repo sync -c -f --force-sync --no-clone-bundle --no-tags -j8 --local-only
This will not fetch anything from the internet. Happy compiling!
Please press the "Thanks Button" if we helped you and quote us if you have a problem!
Announcements and General Stuff
Automation also has been made opensource now. You can view the source of the automation stuff at https://github.com/regalstreak/skadhook.git
All status of the sources is here: https://github.com/regalstreak/skadoosh/pulls?q=is:pr+is:closed
Reserved
Reserved for stuff.
Lovely
Thanks mate..... :laugh:
What if it's in tar.xz @regalstreak, most people including @DigiGoon use it for its extreme compression.
Sent from a Cool Phone stuck with crappy KingUser
Replies.. Replies only!
FireLord said:
Thanks mate..... :laugh:
Click to expand...
Click to collapse
No problemo bruh!
MSF Jarvis said:
What if it's in tar.xz @regalstreak, most people including @DigiGoon use it for its extreme compression.
Sent from a Cool Phone stuck with crappy KingUser
Click to expand...
Click to collapse
I have mentioned the steps in the FAQ! Please see it
Wow amazing work!
AsadP2013 said:
Wow amazing work!
Click to expand...
Click to collapse
Thanks!
Hope it helps!
MSF Jarvis said:
What if it's in tar.xz @regalstreak, most people including @DigiGoon use it for its extreme compression.
Sent from a Cool Phone stuck with crappy KingUser
Click to expand...
Click to collapse
Use tar -xJf file_name.tar.xz to extract *tar.xz....:good:
---------- Post added at 11:48 PM ---------- Previous post was at 11:44 PM ----------
regalstreak said:
FAQ
Q1> How should I extract the source?
Ans: If your archive is in .7z format, do this:
Open Terminal
Download 7zip if not done before (sudo apt-get install p7zip-full)
Now cd to the drive where you have downloaded the sources
7z x (file name here).7z
If your archive is in .tar.gz format, do this:
Open Terminal
Now cd to the drive where you have downloaded the sources
tar -xvzf (file name here).tar.gz
Now you have extracted the source.
Q2> I am not able to extract the source. What should I do?
Ans: You cannot extract source with GUI on the Archive Extractor. So, try the method I mentioned.
Q3> Is the size of all files 2GB? I saw the size 2GB on Androidfilehost!
Ans: The mentioned size on the thread is correct. AndroidFileHost has some problems while showing file sizes for files above 2GB.
Please press the "Thanks Button" if I helped you and quote me if you have a problem!
Click to expand...
Click to collapse
Hey, first of all....A BIG Thanks to you guys, you guys are awesome and keeping the spirit of xda to help your friends......
A request, Add the method to extract *.tar.xz as "tar -xJf file_name.tar.xz"
sumit yadav said:
Use tar -xJf file_name.tar.xz to extract *tar.xz....:good:
---------- Post added at 11:48 PM ---------- Previous post was at 11:44 PM ----------
Hey, first of all....A BIG Thanks to you guys, you guys are awesome and keeping the spirit of xda to help your friends......
A request, Add the method to extract *.tar.xz as "tar -xJf file_name.tar.xz"
Click to expand...
Click to collapse
Im glad that this index is helping youll alot! Yea sure.. Ill add that now!
Wow thanks man I'm really eager to get started but my internet speed had always let me down. But thanks to you guys I can finally start to build my own ROM. Thanks again guys much appreciated.
adil089 said:
Wow thanks man I'm really eager to get started but my internet speed had always let me down. But thanks to you guys I can finally start to build my own ROM. Thanks again guys much appreciated.
Click to expand...
Click to collapse
Me faced the same problems! But now i have managed to get a better isp [emoji14] happy this helped you!
(One req: Please spread this thread so people may know that highly compressed sources exist and they can even start with a bad internet connection!) [emoji1]
regalstreak said:
Me faced the same problems! But now i have managed to get a better isp [emoji14] happy this helped you!
(One req: Please spread this thread so people may know that highly compressed sources exist and they can even start with a bad internet connection!) [emoji1]
Click to expand...
Click to collapse
I will definitely spread this thread because I know a few people who may need it. It's the least that I can do. Thanks.
@Perseus should this thread be moved to Misc android development? So more people can see it? Or is it fine here...
The thread will be updated from nov6th.. Got exams [emoji14] Please hold on!
regalstreak said:
The thread will be updated from nov6th.. Got exams [emoji14] Please hold on!
Click to expand...
Click to collapse
Thanks man. Good look on your exams.
Thank you very much!
I always wanted to build a ROM but 18GB downloads always stopped me to do so. This is amazing!
However it could have been a little better if the archives were broken into parts so that they could be downloaded on two or more systems and on FAT32 SDcards (4GB max file limit).
Well done!

NEED help: Trying to make oreo systemui color light

hey guys
Im trying to change systemui color in android oreo to the default color by google which is light/white
im using this thread for guidance:
https://forum.xda-developers.com/cr...-light-color-systemui-xperia-oreo-fw-t3715197
but Im not able to recompile framework-res.apk
im getting some errors and it dosent matter if i make changes or not
im not a pro in terms of compiling/recompiling
if anyone was successful please help me out!
thanks!
btw i have posted the errors in that topic
Kianush said:
hey guys
Im trying to change systemui color in android oreo to the default color by google which is light/white
im using this thread for guidance:
https://forum.xda-developers.com/cr...-light-color-systemui-xperia-oreo-fw-t3715197
but Im not able to recompile framework-res.apk
im getting some errors and it dosent matter if i make changes or not
im not a pro in terms of compiling/recompiling
if anyone was successful please help me out!
thanks!
btw i have posted the errors in that topic
Click to expand...
Click to collapse
I encountered a similar problem where I couldn't recompile. It was because the referenced package I was referencing (in framework-res.apk) was missing from the compile command. I had to use the -I command to reference the framework-res.apk package for compilation.
Code:
aapt package -S res/ -M AndroidManifest.xml -f -v -F framework-res-overlay.apk -I ~/Documents/framework-res-overlay/framework-res.apk
Additional resources I used:
-Framework Hacking General
Damn i dont know anything about this stuff...i hope i can do this
Thank you
Kianush said:
Damn i dont know anything about this stuff...i hope i can do this
Thank you
Click to expand...
Click to collapse
It certainly takes a little time investment. Make sure you download the android SDK. That will give you the ability to download the build tools. I personally haven't had luck with apktool for making overlays. Anecdotal, I know but the official dev tools are just as easy to use once you understand how to use them properly.

Categories

Resources