HTC_IME (custom keyboard) for Tattoo. - Click General

the guys in this thread have put together an awesome keyboard replacement. however, because of Tattoo's small resolution, even the low-res version looks like this:
{
"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"
}
I don't know how to modify the keyboard so it would work on Tattoo, but maybe someone else can. please go to the original thread if you think you can help developing the app.

+1 would be cool!
I also posted in the original thread... I hope someone fixes it! =)

Same here. http://forum.xda-developers.com/showthread.php?t=655363
For a while I downloaded other keyboard....

Maver|ck said:
Same here. http://forum.xda-developers.com/showthread.php?t=655363
For a while I downloaded other keyboard....
Click to expand...
Click to collapse
I uploaded the files in that thread, in case you still need them.

shears said:
I uploaded the files in that thread, in case you still need them.
Click to expand...
Click to collapse
Hey Thank you. Let me see if that works

No, It doesnt work . I got this messege Failure [INSTALL_PARSE_FAILED_INCONSISTENT_CERTIFICATES]

How did you install it ?
You have to push it with ADB.

Im doing this:
Code:
adb remount
adb push HTC_IME.apk /system/app
adb push Clicker.apk /system/app
adb install -r HTC_IME.apk
adb install -r Clicker.apk
adb reboot

You don't have to install it ! Just reboot and it's done.

I did it. it keeps the huge keyboard

This is how my keyboard looks, its hard to tell but each letter is a little bit vague but it works ok... i would like to know if anyone else has this problem, its almost like each letter looks hand drawn with a pen !!!
..

fixed
ignore my last post !!
was on wrong track.. tattoo res unsupported, in process of fixing now..
.

some news from that thread:
It's not technically difficult to port the mod to Tatto. However, I don't think that I will ever do it given what I have to work with now. I don't have the time to keep several code bases up to date (spare time project after all) so I must be able to share code bases between the different resolution versions. The two current versions are from Desire and Legend. They are essentially the same from a code point of view so it's feasible for me to keep them both updated. The current Tattoo version is an older HTC_IME generation with several differences in the internal logic. It's possible to port my hack one by one manually to the Tattoo version, but I don't have the time. The source code is posted so anybody who want's to start working on it can do so...
Click to expand...
Click to collapse

JoOoSs said:
You don't have to install it ! Just reboot and it's done.
Click to expand...
Click to collapse
Done. But it's not jus doing that. We need go to Application option and uninstall Update of Touch Input app.
Thank You every one

terminal 7 said:
ignore my last post !!
was using old version, the new one seems all fixed
.
.
Click to expand...
Click to collapse
Can I make you post a link?

I get Install_Failed_dexopt when trying to install?!

Well I can try mess a bit around with it... but it's smali files which isn't my strongest site, sadly

Mod. edit: not dev related, moved to general
though it would best match t&a, let me know when it's solved and I will move it accordingly then

I checked again the thread and in the first post there is no longer a warning that the keyboard doesn't work on tattoo.
however when i did a quick search though the pages i didn't find anyone who would successfully install the keyboard on tattoo. someone mentioned that it doesn't work correctly, but only in landscape mode.
i will try to install the latest (27) version later today and will post screenshots afterwards.

I've tried the newest v27 and the keyboard is still too great. No Screenshots there because nothing changed.

Related

Is the Manila Interface posted here a joke or really works on some of your devices?

Hi everybody
looking around to find out what is the status of HTC concerning a probably new drivers release for the devices with Qualcomm 7200 chipset and i've found the file below, which should contain a new User Interface code name MANILA.
I'm sure most of you hear about it.
Well, i've been trying to install the file, but in some way i don't get it, even if I edit the cab and write a new setup.xml. May be because I have the Original O2 ROM on my Orbit 2, i'm not sure at all
Could some of you try if the install works on your cooked HTC Roms ??
Download link:
http://rapidshare.com/files/87585343/manila.1.0.0103.0.release.zip.html
Click to expand...
Click to collapse
THX in advance
Metanol
{
"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"
}
Updated...!!!!
Link Invalid
please re-upload the link as its invalid
wrong url adres
go it ..the link is http://rapidshare.com/files/87504139/manila.1.0.0103.0.release.zip
Try this link.
http://www.megaupload.com/?d=G5X13UZF
Can someone provide more screenshots?
Thx
wellthe m9 files in the HTC directory looks like xml + code (LUA perhaps?). In the manila\manila.xml file it has this line 'Mode9Path="HTC\home.m9?testParam=1" ' but there is no testParam in home.m9... could try removing that and trying again. Did you remove all today items before running this? I'm at work so just looking through the files, havent had a chance to test yet.
There's a cab here:
http://htcinsider.blogspot.com/2008/01/manila-arrives.html
YMMV
Vinny75 said:
wellthe m9 files in the HTC directory looks like xml + code (LUA perhaps?). In the manila\manila.xml file it has this line 'Mode9Path="HTC\home.m9?testParam=1" ' but there is no testParam in home.m9... could try removing that and trying again. Did you remove all today items before running this? I'm at work so just looking through the files, havent had a chance to test yet.
Click to expand...
Click to collapse
exactly LUA language is inside, e.g.:
-- Adapted from class function at http://lua-users.org/wiki/SimpleLuaClasses
function __class_ctor(class_tbl, ...)
local obj = {};
setmetatable(obj, class_tbl);
if (class_tbl.__init) then
class_tbl.__init(obj, ...);
else
if class_tbl._base and class_tbl._base.__init then
class_tbl._base.__init(obj, ...);
end
end
return obj;
end
function class(base)
local c = {};
if type(base) == 'table' then
-- Shallow copy of base, including all functions and properties.
for i,v in pairs(base) do
c = v;
end
c._base = base;
end
c.__index = c;
local mt = {};
mt.__call = __class_ctor;
setmetatable(c, mt);
return c;
end
Click to expand...
Click to collapse
I was trying to remove some files too during the pause, but I'm in the office too.
it tells me that htc home has been closed unexpectedly
also discussed here
i think they are already dissecting and mutating the cab file (from the link above: htcinsider) to be used on our devices..
http://forum.xda-developers.com/showthread.php?t=363500
wish there would be more screenies for this..
also, that's a cool name.. coz, i'm from MANILA.. hehehe..
When I first read the thread title.. I thought.. WTF?!
Oh.. so it's a new interface.. I thought it was something from here.
I live in Manila too.
Could somebody post some screenies? I'm getting really curious here.
DaVince said:
When I first read the thread title.. I thought.. WTF?!
Oh.. so it's a new interface.. I thought it was something from here.
I live in Manila too.
Could somebody post some screenies? I'm getting really curious here.
Click to expand...
Click to collapse
Just look better, I already posted some screenshots in the topic mentioned.
http://forum.xda-developers.com/showpost.php?p=1864343&postcount=15
http://forum.xda-developers.com/showpost.php?p=1864344&postcount=16
iruja said:
Just look better, I already posted some screenshots in the topic mentioned.
http://forum.xda-developers.com/showpost.php?p=1864343&postcount=15
http://forum.xda-developers.com/showpost.php?p=1864344&postcount=16
Click to expand...
Click to collapse
Yeah.. I already saw them after I posted.. I just didn't bother editing them anymore.
Too bad it's slow and works only on VGA. I guess it's for those future "video-centric" HTC devices (that I'm not going to buy). Maybe Eten will make better devices by then.
4 those who cant get it off rapidshare
Non RapidShare Link
good but not usable (to slow)
it seems to be a good application but very very very very slow.
it a vga compatible with libGLES_CM.dll in manila directories
manila youtube vid
http://msmobiles.com/news.php/7064.html
DaVince said:
Yeah.. I already saw them after I posted.. I just didn't bother editing them anymore.
Too bad it's slow and works only on VGA. I guess it's for those future "video-centric" HTC devices (that I'm not going to buy). Maybe Eten will make better devices by then.
Click to expand...
Click to collapse
if somebody who hv made it to work post all the sceenshot here, well i bet someone can make at least a flash ver of it
cruzzmz said:
if somebody who hv made it to work post all the sceenshot here, well i bet someone can make at least a flash ver of it
Click to expand...
Click to collapse
It doesn't work in my Universal (Ivan's 3.9 rom).
Not compatible with VGA?

[DEMO] 7 OpenGL ES demos for Diamond

After spending 2 days of work, the TyphoonLabs tutorials (http://www.khronos.org/developers/resources/opengles/) are successfully compiled & run on my Diamond.
{
"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"
}
Installation
Simply unzip the content to any folder, but the /resources folder and underneath files must be copied to root.
Instructions
After startup, click the top right corner cross or press the DPAD to quit.
Some demos will have different effect when tap the screen, just try it.
Enjoy!
Will try it out immediately!
As you can see in my sign I'm currently using Panosha ShineOn 1.6 ROM on my Diamond. I don't know if he changed any drivers or so in his ROM, but I can only initiate tutorial 1 + 2.
EDIT: ok, yeah... misread the instructions. Had to put it on the root on the storage card, not the internal memory.
Only 1 and 2 work.
Some do Nothing at all
Some give openGL ES init error.
Riel said:
Only 1 and 2 work.
Some do Nothing at all
Some give openGL ES init error.
Click to expand...
Click to collapse
I have the same effect
same here...
all seven worked out fine for me
i got stock 1.93 ROM
Just 1 & 2 For me, Stock 1.93 ROM
@ALL
If you can only run 1 & 2, make sure you have copied the folder \resources including the underneath files to root.
Amazing work.. Looks great. The resource should be on the root of the device and not the storage card.
Really nice, great work
Interesting,
on the last test (7) (as pictured in your first post) I get a FPS rating of 74/75
Nice work !
Only 1 and 2 work on my stock uk tmobile rom too?
A_C said:
Simply unzip the content to any folder, but the /resources folder and underneath files must be copied to root.
Click to expand...
Click to collapse
Had the same when I built them ages ago, couldn't seem to get relative filepaths working
Still having no joy with that ".\" is always root ?!?
Nice work A_C, I really hope you will be implementing this into your S2 applications, that would be amazing!
Very nice,
great work, looks real good.
PS.: At the last Tutorial, I have also over 70FPS.
greets doena
Magilla said:
Had the same when I built them ages ago, couldn't seem to get relative filepaths working
Still having no joy with that ".\" is always root ?!?
Click to expand...
Click to collapse
Windows Mobile does not seem to have a concept of "current working directory" when launching an application. It's pretty annoying.
I work around this using the following:
public static string CurrentWorkingDirectory
{
get
{
return Path.DirectoryName(Assembly.GetExecutingAssembliy().GetName().CodeBase);
}
}
Then use that directory to build relative directories...
Koush said:
Windows Mobile does not seem to have a concept of "current working directory" when launching an application. It's pretty annoying.
I work around this using the following:
public static string CurrentWorkingDirectory
{
get
{
return Path.DirectoryName(Assembly.GetExecutingAssembliy().GetName().CodeBase);
}
}
Then use that directory to build relative directories...
Click to expand...
Click to collapse
Thanks loads... much appreciated!
impressive!!!!
All work fine in root \
psc001 said:
Interesting,
on the last test (7) (as pictured in your first post) I get a FPS rating of 74/75
Nice work !
Click to expand...
Click to collapse
doena said:
Very nice,
great work, looks real good.
PS.: At the last Tutorial, I have also over 70FPS.
greets doena
Click to expand...
Click to collapse
I got that FPS too. The screenshot shows a lower no. because it's running a screen-capture program in the background.
Jin187 said:
Nice work A_C, I really hope you will be implementing this into your S2 applications, that would be amazing!
Click to expand...
Click to collapse
That's my dream.
Nice work A_C.
Thanks
I try to compile and execute these tutos. There's no pb to execute on emulator.
But when I try on my phone (HTC Touch Pro), it doesn't work.
When I try your .exe, A_C, there is no pb. Maybe I have a pb when I create the exe.
Could you help me ?
Thanks

Gingerbread Keyboard Signed Flashable Zip

This is the Gingerbread keyboard apk and appropriate libs to make it work on any Froyo rom on Eris (probably).
Please report back with feedback.
EDIT: PLEASE! If you're not in the mood to have to wipe and reflash in case this doesn't work, do a Nandroid Backup before flashing. (Duh.)
Thanks to Workshed, I've got everything sorted out.
Mind you I'm devving while on vacation in Hawaii sipping on a Kirin Ichiban.
downloading and flashing
got
E: cant find update script
installation abortion
im running froshedyo v7
Sweet. I really hope this works lol.
I did test the two files on my phone, but I'm not sure how my update.zip will work. I'm not entirely sure how to make the updater-script. I kinda just lifted one from another update.zip >.<
Retrogress said:
downloading and flashing
got
E: cant find update script
installation abortion
im running froshedyo v7
Click to expand...
Click to collapse
You might want to redownload and try again. He just pulled original download link and redone it.
Thanks. Re-writing the script right now. I'll have it up in the next 5 minutes or so.
Edit: Posted updated version. Please report back with results.
Installed with no problems on KaosFroyo V38 with clockwork but on reboot i dont have the new keyboard. all i get is HTC IME MOD and Multitouch
Agh. Trying to figure this out.
flashed successfully, but my phone wouldn't boot
doing a nandroid restore
Retrogress said:
flashed successfully, but my phone wouldn't boot
doing a nandroid restore
Click to expand...
Click to collapse
So very glad you backed up... I need to figure out what's up with this.
Edit: Tenzo tells me I don't need the line to set permissions, and I need to add lines to remove the previous versions of the files that are being replaced. Currently working on that.
when i flashed i got syntax error in update script any ideas
aw shoot. I'll fix it tomorrow hopefully.
i did a manual install this way:
http://forum.xda-developers.com/showthread.php?t=764021
and it repeatedly crashes every 2 sec.s
Here you go Agent, replaced update-script with the newer updater-script... should work fine now. You can use this dload link for your main dload link on the OP if you'd like.
Stock Gingerbread Keyboard: GingerbreadKB-STOCK-5thAgent.zip
Flash in recovery...
You can also grab a nice blue themed GB keyboard by Macrodroid in my thread.
workshed said:
Here you go Agent, replaced update-script with the newer updater-script... should work fine now. You can use this dload link for your main dload link on the OP if you'd like.
Stock Gingerbread Keyboard: GingerbreadKB-STOCK-5thAgent.zip
Flash in recovery...
You can also grab a nice blue themed GB keyboard by Macrodroid in my thread.
Click to expand...
Click to collapse
flashed on KaosFroyo v38 and worked great! Many thanks!
Thanks, Workshed!
5thAgent said:
Thanks, Workshed!
Click to expand...
Click to collapse
Not a problem, you're most welcome.
Thanks to you & Macrodroid!
Thanks for kickin ass guys for real
Sent from my Sinister eris using xda app.
Can someone post pictures? What's the difference with the old keyboard?
yanger said:
Can someone post pictures? What's the difference with the old keyboard?
Click to expand...
Click to collapse
This is the Gingerbread KB... this one is skinned blue, the stock is the same, just gray and black.
{
"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"
}
You can grab this blue one here if you'd like - http://forum.xda-developers.com/showthread.php?t=824160&page=120
workshed said:
This is the Gingerbread KB... this one is skinned blue, the stock is the same, just gray and black.
You can grab this blue one here if you'd like - http://forum.xda-developers.com/showthread.php?t=824160&page=120
Click to expand...
Click to collapse
Damn, sure wish I would have seen this kb before I spent the time to skin my own.
Sent from my nonsensikal froyo

[Project][HTC SENSE ZERO PORTING]Help requried!!

Hi dear Wildfire developers,
Most of you know about the new HTC Sense 3.5 and the light edition called Sense Zero its based for low-end devices like our wildfire.
This new Sense was ported successfully to HTC Hero and HTC Magic. its taken from the new HTC Explorer (Pico) RUU.
{
"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"
}
Thread for the rom in Hero section
Thread in magic section
MY IDEA: We will try to port the Zero sense to the wildfire.
What about merging the new sense zero to SFM 1.1 instead of Sense 2.1?? will it work?
Will the best thing is to discover by ourselves.
The problem in my opinion is the lack of GPU at wildfire. but will it affect the porting?
and if it worked still needs the resizing to fit to Wildfire display.
all opinions will be appreciated.
I have started this thread here in devs section to gather efforts to make this possible if we can.
Waiting for your replies.
for my self am on 3 days off from work, i will give some tries.
**************
Here is the RUU for HTC explorer (Pico) to play with if you want to try:
download
Instructions:
- dsixda kitchen will need to be installed prior to starting.
1. Run RUU and leave open
2. Type %TEMP% in your computers start menu search bar.
3. Search through the folders in there with the long names with numbers and letters, you'll find a zip file named "rom.zip" in there.
4. Place the rom.zip in the original_update folder located in the "kitchen" directory
5. From there follow the steps on the kitchen menu to setup the rom.
6. Then proceed to porting .
Looks interesting to say the least. Maybe I will have a look once I finish SenseOnFire?
Good luck with Sense on fire Vigidroid
and waiting for your help with this rom.
I will give some tries this weekend and tell you about the results.
It's ported to the Eris also Ur more than welcome to try that also
Sent from my ADR6400L using XDA Premium App
I will try to help this project
Looks really nice.
Solar_ said:
I will try to help this project
Looks really nice.
Click to expand...
Click to collapse
Thanks a lot Solar
you try and i will try and results will be posted here.
Damn. The dsixda kitchen github won't let me download the v0.179 zip..
'Problem loading page'
Unable to connect.
Anyone has it for me? Otherwise I can't do something
if this rom is working on the wildfire iam going to use it i was waiting for this rom maby i can help?
Solar
the link now is working
Kaassaus
all helps are appriciated.
Post the results here so we can exchange information about it.
who going to develop this rom?
Now installing the kitchen. When done -> look into the files
Solar_ said:
Now installing the kitchen. When done -> look into the files
Click to expand...
Click to collapse
Solar are you going to port this rom?
Installed the kitchen succesfully, followed every step and now getting this when trying to build the ROM.
(see attachment)
kaassaus said:
Solar are you going to port this rom?
Click to expand...
Click to collapse
Maybe. I will try it.
I'll do what I can to help and test. The only problem so far is the wildfire being GPU-less. I think that sense zero is quite a lightweight rom, considering the latest HTC sense zero device has only got 90MB rom available to the user.
looks gr8.. even I can help if required..
if someone port this rom to wildfire i will maby help with resize
kaassaus said:
if someone port this rom to wildfire i will maby help with resize
Click to expand...
Click to collapse
I would too, I'd try and help out with development too!
please put this on wildfire,its look great
iam going to try this sunday to port this rom.

[WIP] MaxxAudio From Oxygen OS 2.1 Port for OnePlus 2 [Help Needed]

Hey guys!
I'm kinda new to XDA, so I don't know if this the right place to post for a help request. If it is not, apologize me. Anyway, let's get back to the main topic.
Remember the good old days when we used to have MaxxAudio for our device in the early days of the OnePlus 2. Some of you might remember it due the awesome sound quality it produced. Some of you might dislike due to the fact that it is not working or crashing at certain times. Well know, MaxxAudio is gone and replaced by DiracHD. Personally, I prefer MaxxAudio over DiracHD because I get to personalize the sound the way I like. Some of you might be like 'Dirac is better, f*ck MaxxAudio'. Well, it's personal opinion, I won't dudge you.
Well today is the day, I will bring back MaxxAudio to life and back to our beloved device. I have successfully ported the MaxxAudio app and libs from Oxygen OS 2.1 to CypherOs 3.5.1 based on Android 7.1.1. Want proof, well check the screenshots out in the attachments!!
Now don't get too excited yet Based on the screenshots, right after I open the app, the 'unfortunately, audio tuner service has stopped' pop-ups. The logcat told me I am missing a lib/framework file that I can't seem to find anywhere in the /system directory. I'm really confused right now. If we can get this app to work, we might be able to port a fully working MaxxAudio for our OnePlus 2. So, I am requesting all devs and people out there who are reading this to help me with this situation. I'm not begging you, just help me when you have time
That's all from me right now. Hope someone can find a solution and port our beloved MaxxAudio to our device. Any help would be greatly appreciated. (If you have a possible solution, or you're kind enough to port the app for me , please post it in the thread or PM me.)
I'll update to you guys when progress has been made. Keep your fingers crossed
P.S - I've attached the apk files below for further inspection. These are taken from a deoxed Oxygen OS 2.1 rom. Last but not least, please don't spam the thread with MaxxAudio vs other sound mods fight. Moderators hate that kind of thing
View attachment AudioTuner.apk
View attachment AudioTunerService.apk
View attachment 2017-02-12-14-56-02.txt
{
"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"
}
i'm not able even install your provided apks, package installer says corrupted package
chxei said:
i'm not able even install your provided apks, package installer says corrupted package
Click to expand...
Click to collapse
You have to push the apps to /system/priv-app manually. Hope that helps
Kezatic said:
You have to push the apps to /system/priv-app manually. Hope that helps
Click to expand...
Click to collapse
Do you really expect that someone will push unknown packages into priv-app? I'm sorry but it doesn't seem like very good idea.
Try this https://forum.xda-developers.com/oneplus-2/themes-apps/app-maxxaudiofx-oneplus-2-oos-3-1-0-t3510037
NeoVsk said:
Do you really expect that someone will push unknown packages into priv-app? I'm sorry but it doesn't seem like very good idea.
Click to expand...
Click to collapse
I'm sorry, I should have though of that before. Sorry for being such a complete noob here. I know it's not safe to install unknown apps into the system, although I can promise you the app is completely safe and doesn't contain any malicious things in it. You can decompile the apk file and check for yourself. It doesn't even have a proper lib file for the app to work.
Also, sad to say this, but I'm abandoning the project because I simply don't know, or at least don't have enough knowledge to port an app. So, I'm leaving it here, for now. I might continue it in the future, I don't know.....we'll have to see about it. Sorry for letting you guys down (if there's any). If you want to continue my work, just grab the logcat and help me find what's wrong with the app. That's all you can do for now. May we see again soon...
Kezatic said:
You have to push the apps to /system/priv-app manually. Hope that helps
Click to expand...
Click to collapse
and i did that too, but no luck
Actually, you need to back up /system/lib/soundfx /system/etc/audio_effects.conf and /system/vendor/etc/audio_effects.conf then put them into your new rom. Not just apks. Though I'm new here, I do sound effects mods in other forms. I hope that my reply will help you

Categories

Resources