Play Store Search Fails for My GoTheme - Android Q&A, Help & Troubleshooting

Does anyone have problems with their #gothemes not showing up in #playstore searches? Problem occurs in both web and device apps. Just search for "game of thrones" and my #gotheme doesn't show but if you search for "semper android" you will see it? Any thoughts?
Here is my manifest. I confirmed with Play Store that my device is eligable.
<?xml version="1.0" encoding="UTF-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:installLocation="auto" android:versionCode="8" android:versionName="2.0" package="com.semperandroid.go.got">
<uses-permission android:name="android.permission.CHANGE_COMPONENT_ENABLED_STATE"/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.VIBRATE"/>
<uses-sdk android:minSdkVersion="8"></uses-sdk>
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:label="@string/app_name" android:name=".NotificationActivity" android:theme="@android:style/Theme.Dialog">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<activity android:excludeFromRecents="true" android:label="@string/app_name" android:launchMode="singleInstance" android:name=".classic" android:theme="@android:style/Theme.Dialog">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<action android:name="com.gau.go.launcherex.theme"/>
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.INFO"/>
</intent-filter>
</activity>
<receiver android:name=".ComponentControlReceiver">
<intent-filter>
<action android:name="android.intent.action.PACKAGE_REMOVED"/>
<action android:name="android.intent.action.PACKAGE_REPLACED"/>
<action android:name="android.intent.action.PACKAGE_ADDED"/>
<data android:scheme="package"/>
</intent-filter>
<intent-filter>
<action android:name="com.gau.go.launcherex.action.hide_theme_icon"/>
</intent-filter>
</receiver>
<receiver android:name=".ThemeControlReceiver">
<intent-filter>
<action android:name="com.jiubang.intent.action.LAUNCHER_START"/>
</intent-filter>
<intent-filter>
<action android:name="com.gau.go.launcherex.action.inactive_apply_theme_flag"/>
</intent-filter>
</receiver>
<!-- service declare here -->
<service android:name=".GoDownloadService"/>
</application>
</manifest>
Sent from my Galaxy Nexus using xda premium
Bump... Need help but no one responded.

Please use the Q&A Forum for questions &
Read the Forum Rules Ref Posting
Moving to Q&A

Related

{MOD's}{How to's} Create a custom notification dropdown! Remove status bar clock!

{
"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"
}
Create a custom background for your notification dropdown.
Assuming you already know how to decompile, edit and recompile apk's
Let's start by decompiling SystemUI.apk
Once decompiled find the values folder and open it. Now right click on the drawables.xml and open with notepad++ change the values as shown below save and exit.
<?xml version="1.0" encoding="utf-8"?>
<resources>
<item type="drawable" name="notification_tracking_bg">#00000000</item>
<item type="drawable" name="notification_number_text_color">#ffffffff</item>
<item type="drawable" name="notification_item_background_color">#00000000</item>
<item type="drawable" name="notification_item_background_color_pressed">#ff257390</item>
<item type="drawable" name="ticker_background_color">#00000000</item>
<item type="drawable" name="status_bar_recents_background_solid">#80000000</item>
<item type="drawable" name="status_bar_recents_app_thumbnail_background">#80000000</item>
<item type="drawable" name="status_bar_notification_row_background_color">#00000000</item>
<item type="drawable" name="notification_header_bg">#00000000</item>
<item type="drawable" name="recents_callout_line">#99ffffff</item>
<item type="drawable" name="notification_item_background_legacy_color">#00000000</item>
</resources>
***NOTE- The above can be hard coded to your desired color without having to add the custom image I'm about to describe below. You will still need to make the notificaton_tracking_bg.9 transparent so it will not stack with the coded color.
Now you need to make your custom background image. I named mine shade_bg (240x400) make sure the image is rgb or it will not show correctly, you can name what you like,
and add this image to res/drawable-xhdpi. Also while in that folder, find notification_tracking_bg.9, this image needs to be made transparent or your images will stack on top of one another.
The easiest way to do that is to open up Gimp, pull decompiled image into the window, select the rectangle tool and make a box around the image except for the patch lines.Go to edit then cut,
that will remove the background without breaking the patch. Now save the image in place of the old one.
Once thats done, navigate to res/layout folder and open it. Inside find status_bar_tracking.xml, right click and open with notepad++.
Add android:background="drawable/shade_bg" in line 2 as shown below.
<?xml version="1.0" encoding="utf-8"?>
<com.android.systemui.statusbar.phone.TrackingView androidrientation="vertical" android:background="@drawable/shade_bg" androidaddingLeft="0.0px" androidaddingRight="0.0px" androidaddingBottom="0.0px" android:focusable="true" android:visibility="gone" android:descendantFocusability="afterDescendants"
Once all this is done you can now recompile your SystemUI.apk sign, zipalign and install. You should now have the background you created as your dropdown.
Enjoy your new dropdown, get creative, and happy modding.
Here's another quick one.
Remove statusbar clock....
Navigate to res/layout and find status_bar.xml, right click and open with
notepad++ then just add the text in the entry you see below highlighted in red. Recompile, sign and zipalign. No more clock!
<?xml version="1.0" encoding="utf-8"?>
<com.android.systemui.statusbar.phone.PhoneStatusBarView androidrientation="vertical" android:background="@drawable/status_bar_background" android:focusable="true" android:descendantFocusability="afterDescendants"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:systemui="http://schemas.android.com/apk/res/com.android.systemui">
<LinearLayout androidrientation="horizontal" android:id="@id/icons" androidaddingLeft="6.0dip" androidaddingRight="6.0dip" android:layout_width="fill_parent" android:layout_height="fill_parent">
<LinearLayout androidrientation="horizontal" android:layout_width="0.0dip" android:layout_height="fill_parent" android:layout_weight="1.0">
<TextView android:textColor="@color/white" android:gravity="center_vertical" android:id="@id/plmnLabel" android:visibility="gone" android:layout_width="wrap_content" android:layout_height="fill_parent" android:singleLine="true" />
<com.android.systemui.statusbar.StatusBarIconView android:id="@id/moreIcon" android:visibility="gone" android:layout_width="@dimen/status_bar_icon_size" android:layout_height="fill_parent" android:src="@drawable/stat_notify_more" />
<TextView android:textColor="@color/white" android:gravity="center_vertical" android:id="@id/callTime" android:visibility="gone" android:layout_width="wrap_content" android:layout_height="fill_parent" android:singleLine="true" />
<com.android.systemui.statusbar.phone.IconMerger android:gravity="center_vertical" androidrientation="horizontal" android:id="@id/notificationIcons" android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_alignParentLeft="true" />
</LinearLayout>
<LinearLayout android:gravity="center_vertical" androidrientation="horizontal" android:id="@id/statusIcons" android:layout_width="wrap_content" android:layout_height="fill_parent" />
<LinearLayout android:gravity="center" androidrientation="horizontal" android:id="@id/signal_battery_cluster" androidaddingLeft="2.0dip" android:layout_width="wrap_content" android:layout_height="fill_parent">
<ImageView android:id="@id/battery" android:layout_width="wrap_content" android:layout_height="wrap_content" android:scaleType="center" />
</LinearLayout>
<com.android.systemui.statusbar.policy.Clock android:textAppearance="@android:style/TextAppearance.StatusBar.Icon" android:gravity="left|center" android:id="@id/clock" android:visibility="gone" androidaddingLeft="6.0dip" android:layout_width="wrap_content" android:layout_height="fill_parent" android:singleLine="true" />
</LinearLayout>
<LinearLayout androidrientation="horizontal" android:id="@id/ticker" androidaddingLeft="6.0dip" android:animationCache="false" android:layout_width="fill_parent" android:layout_height="fill_parent">
<ImageSwitcher android:id="@id/tickerIcon" android:layout_width="@dimen/status_bar_icon_size" android:layout_height="@dimen/status_bar_icon_size" android:layout_marginRight="4.0dip">
<com.android.systemui.statusbar.AnimatedImageView android:layout_width="@dimen/status_bar_icon_size" android:layout_height="@dimen/status_bar_icon_size" />
<com.android.systemui.statusbar.AnimatedImageView android:layout_width="@dimen/status_bar_icon_size" android:layout_height="@dimen/status_bar_icon_size" />
</ImageSwitcher>
<com.android.systemui.statusbar.phone.TickerView android:id="@id/tickerText" androidaddingTop="2.0dip" androidaddingRight="10.0dip" android:layout_width="0.0dip" android:layout_height="wrap_content" android:layout_weight="1.0">
<TextView android:textAppearance="@style/TextAppearance.StatusBar.PhoneTicker" android:layout_width="fill_parent" android:layout_height="wrap_content" android:singleLine="true" />
<TextView android:textAppearance="@style/TextAppearance.StatusBar.PhoneTicker" android:layout_width="fill_parent" android:layout_height="wrap_content" android:singleLine="true" />
</com.android.systemui.statusbar.phone.TickerView>
</LinearLayout>
<com.android.systemui.statusbar.policy.DateView android:textAppearance="@android:style/TextAppearance.StatusBar.Icon" android:textSize="16.0sp" android:gravity="left|center" android:id="@id/date" android:background="@drawable/status_bar_background" androidaddingLeft="6.0px" androidaddingRight="6.0px" android:layout_width="wrap_content" android:layout_height="fill_parent" android:singleLine="true" />
<include android:id="@id/glow" layout="@layout/status_bar_glow" />
</com.android.systemui.statusbar.phone.PhoneStatusBarView>
Thanks to my Bad Seed brothers for all that we accomplish together.
Reserved for more mods!
Nextup.....
Sent from LTEVO!
Working magic already, huh? How'd you get notification toggles, or you using an app for that?
Sent from my EVO using xda premium
scottspa74 said:
Working magic already, huh? How'd you get notification toggles, or you using an app for that?
Sent from my EVO using xda premium
Click to expand...
Click to collapse
I have quick settings but that is switchpro widgets from the market. Great app, you can put almost anything you want in there, re color, different backgrounds, even has reboot with recovery built in.
You at it again Jeff??? Nice work.
We need some cyan dragons.
Sent from El Tevo Pokemon style!!!!
jeffsanace said:
Reserved for more mods!
Nextup.....
Sent from LTEVO!
Click to expand...
Click to collapse
Care to share that app drawer image? Looks great
Sent from Mars on my EVO LTE
The app drawer image is mcluvn's, I hope to get a how to up for it soon. That one requires a lot more edits then just adding the image. The apps need to be aligned to fit the shelves. I'll ask him if he minds me sharing the image.
Sent from LTEVO!
Wow BadSeed customs must be the real deal. Thank you kind sir!
Sent from my EVO using xda premium
Uh oh who let you in here? ;-) there goes the neighborhood
Sent from my EVO using Tapatalk 2
Woohoooo! another class from the school of bad seed!
let me get my pen and paper...
thanx again jeff!!
Nice
This is awesome will it work on ICS roms? I can't tell what you're running
Saw this in the portal today. Good Job!
http://www.xda-developers.com/android/learn-to-add-your-own-picture-in-notification-drop-down/
Jeffsance its good to see ya here buddy. Here's to hoping you hook us up with one of your kickass themes bro.
Sent from my EVO using Tapatalk 2
reverepats said:
Jeffsance its good to see ya here buddy. Here's to hoping you hook us up with one of your kickass themes bro.
Sent from my EVO using Tapatalk 2
Click to expand...
Click to collapse
Nice to see you as well. Haven't had a lot of time for themes lately. I'll probably put something out at some point. I'm having fun finding mods for this beast of a phone right now.
Sent from LTEVO!
Slethen said:
This is awesome will it work on ICS roms? I can't tell what you're running
Click to expand...
Click to collapse
It's in the EVO lte development section so I hope it works on ICS. Lol
Sent from LTEVO!
jeffsanace said:
Nice to see you as well. Haven't had a lot of time for themes lately. I'll probably put something out at some point. I'm having fun finding mods for this beast of a phone right now.
Sent from LTEVO!
Click to expand...
Click to collapse
Yep. Understandable. Yeah its nice to be back with Sprint. Not the Network LOL (for noe of course). Nice to see the familiar faces again.
Sent from my EVO using Tapatalk 2
What would I need to change to make just the top notification bar transparent?
Sent from my SPH-D710 using XDA
tdunham said:
What would I need to change to make just the top notification bar transparent?
Sent from my SPH-D710 using XDA
Click to expand...
Click to collapse
Are you referring to where it says sprint and settings? If so, those are images in res/drawable- xhdpi. Not sure off the top of my head what the names are.
Sent from LTEVO!
jeffsanace said:
Are you referring to where it says sprint and settings? If so, those are images in res/drawable- xhdpi. Not sure off the top of my head what the names are.
Well sort of Jeff. I take it that the notification bar itself is an image then and the drawables.xml is exactly what it says and (in basic terms) does not control a stationary item like the notification bar?
BTW, I'm kinda jumping ship here, you can tell from my sig that I'm on a totally different phone but the base OS and principles are still the same. Thanks for your time, I've been trying to find an answer for this for a while. We're still waiting for the ICS OTA release here for the Sprint E4GT so there isn't a lot of support for it yet.
Click to expand...
Click to collapse
Click to expand...
Click to collapse
where did you get that circle blue battery from?

Controlling galaxy s2

Hi,
Does anyone know how I can control and record my galaxy s2 from my computer/ Mac. I currently use lazydroid which has a very bad recording quality, however, I have seen people post video tutorials of their phones with a good quality recording. As said previously how do I also control my phone from the laptop or from the Internet.
Control the phone here means somehow control it without getting in touch with the phone e.g. controlling the screen over the web. Any ideas guys, as to what app I can use to do this.
Cheers
Sparta!
{
"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"
}
A bomb Sent from my GT-I9100 using xda premium
Download an app called airdroid, then enter your code on the internet and there should be an option to control your phone
Sent from my GT-I9100 using xda premium
UltimateAnas said:
Download an app called airdroid, then enter your code on the internet and there should be an option to control your phone
Sent from my GT-I9100 using xda premium
Click to expand...
Click to collapse
I want to control the phone as I see it on my screen, like you do when you use lazy droid. I can understand why you suggested that app because you thought that I want to control the contents of the phone. No, I want to control the screen of the phone from my Pc. If unsure then please google lazy droid.
Sparta hopes someone can name a good app which can do what I ask for.
300 spartans Sent from my GT-I9100 using xda premium
Ahoo ahoo
Well you can also try kies air seeing as you have an i9100?
Sent from my GT-I9100 using xda premium
thisisuzair said:
Hi,
Does anyone know how I can control and record my galaxy s2 from my computer/ Mac. I currently use lazydroid which has a very bad recording quality, however, I have seen people post video tutorials of their phones with a good quality recording. As said previously how do I also control my phone from the laptop or from the Internet.
Control the phone here means somehow control it without getting in touch with the phone e.g. controlling the screen over the web. Any ideas guys, as to what app I can use to do this.
Cheers
Sparta!
A bomb Sent from my GT-I9100 using xda premium
Click to expand...
Click to collapse
I think you're looking for a vnc viewer . Just search vnc on play store and you'll get many options. Choose the one that you like
Sent from my GT-I9100 using Tapatalk 2
Krishnadusad said:
I think you're looking for a vnc viewer . Just search vnc on play store and you'll get many options. Choose the one that you like
Internet Sent from my GT-I9100 using Tapatalk 2
Click to expand...
Click to collapse
See you were very close, its the other way around. As you can use teamviewer a vnc to control your Pc/Mac from your phone I want to be able to do the same, but, its the other way around. In other words I want to see my screen of the phone and be able to control the phone from a Pc. So, its the other way around. Comeon Spartans what do you think it is.
Glorious chips sent from my GT-I9100 using xda premium
_--------- update---------_
https://www.youtube.com/watch?v=fowcT__m6ns&feature=youtube_gdata_player
This video did the trick, however, very slow fresh rate, is there any good app which runs smoother and better.
Cheers.
Originally Posted by Krishnadusad<br />
I think you're looking for a vnc viewer . Just search vnc on play store and you'll get many options. Choose the one that you like <br />
<br />
Internet Sent from my GT-I9100 using Tapatalk 2
Click to expand...
Click to collapse
<br />
<br />
See you were very close, its the other way around. As you can use teamviewer a vnc to control your Pc/Mac from your phone I want to be able to do the same, but, its the other way around. In other words I want to see my screen of the phone and be able to control the phone from a Pc. So, its the other way around. Comeon Spartans what do you think it is.<br />
<br />
Glorious chips sent from my GT-I9100 using xda premium<br />
<br />
<br />
_--------- update---------_ <br />
https://www.youtube.com/watch?v=fowcT__m6ns&feature=youtube_gdata_player<br />
<br />
This video did the trick, however, very slow fresh rate, is there any good app which runs smoother and better.<br />
<br />
Cheers.
Click to expand...
Click to collapse
Awsome
Here is the Google Play link for Droid VNC Server:
https://play.google.com/store/apps/details?id=org.onaips.vnc
ruan
Try vmlite vnc server, works very well on S2, rooting is not required.
https://play.google.com/store/apps/details?id=com.vmlite.vncserver&hl=en
Appreciate the support guys, hopefully this will be helpfull to everyone.
Sent from my GT-I9100 using xda premium

Change Lockscreen Background - Sliding Tab

Hi Guys,
I want to change the Sliding Tab Lockscreen Background. It is somewhat transparent in my rom and I want to change it to a wallpaper 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"
}
Does anyone know how to do it?
MORE INFO :
I decompiled lidroid-res.apk and edited keyguard_screen_tab_unlock.xml.
I changed android:background="#7000000" to android:background="@drawable/lockwall" and I inserted the wallpaper in drawable-hdpi named lockwall.jpg.
I recompiled and pushed in system but it didn't work. It made the lockscreen fullt transparent
Please Help Me!!!
And NOOBS Stay Away...
Re: [Q] Change Lockscreen Background - Sliding Tab
Wrong section
Btw check alins thread i dont know but check posts someone posted it
NOTHING TO SEE HERE
Re: [Q] Change Lockscreen Background - Sliding Tab
Change wallpaper from settings display not working?
Sent from my GT-S5360 using Tapatalk 2
@d3cka
Settings>Display>Screen_Display is only for Samsung Lockscreen and I need to change Sliding Tab Lockscreen...
btw, I received your pm and can you please explain me a bit...
maybe u did something wrong cos mine is working perfectly. here my ss
what i did:
1. decompile lidroid-res.apk
2. edit apktool.yml
add - 2 under - 1, save and close
3. edit keyguard_screen_tab_unlock.xml
<RelativeLayout android:gravity="center_horizontal" android:id="@id/root" android:background="@drawable/d3cka" android:layout_width="fill_parent" android:layout_height="fill_parent"
4. add picture d3cka.png to drawable-hdpi folder
5. compile.
Re: [Q] Change Lockscreen Background - Sliding Tab
just go to gallery or quickpic then choose a pic click set as then click lockscreen wallpaper. haha too easy.
Sent from my GT-S5360 using xda premium
Re: [Q] Change Lockscreen Background - Sliding Tab
markmellarpes said:
just go to gallery or quickpic then choose a pic click set as then click lockscreen wallpaper. haha too easy.
Sent from my GT-S5360 using xda premium
Click to expand...
Click to collapse
Thats not changing aosp lockscreen wallpaper, thats changing system wallpaper
Sent from my GT-S5360 using Tapatalk 2
Re: [Q] Change Lockscreen Background - Sliding Tab
d3cka said:
maybe u did something wrong cos mine is working perfectly. here my ss
what i did:
1. decompile lidroid-res.apk
2. edit apktool.yml
add - 2 under - 1, save and close
3. edit keyguard_screen_tab_unlock.xml
<RelativeLayout android:gravity="center_horizontal" android:id="@id/root" android:background="@drawable/d3cka" android:layout_width="fill_parent" android:layout_height="fill_parent"
4. add picture d3cka.png to drawable-hdpi folder
5. compile.
Click to expand...
Click to collapse
I added a jpg instead of png...
Is that a problem???
Sent from my GT-S5360 using Tapatalk 2
Re: [Q] Change Lockscreen Background - Sliding Tab
markmellarpes said:
just go to gallery or quickpic then choose a pic click set as then click lockscreen wallpaper. haha too easy.
Sent from my GT-S5360 using xda premium
Click to expand...
Click to collapse
Please read op its says noobs stay away
Sent from my GT-S5360 using Tapatalk 2
Re: [Q] Change Lockscreen Background - Sliding Tab
d3cka said:
maybe u did something wrong cos mine is working perfectly. here my ss
what i did:
1. decompile lidroid-res.apk
2. edit apktool.yml
add - 2 under - 1, save and close
3. edit keyguard_screen_tab_unlock.xml
<RelativeLayout android:gravity="center_horizontal" android:id="@id/root" android:background="@drawable/d3cka" android:layout_width="fill_parent" android:layout_height="fill_parent"
4. add picture d3cka.png to drawable-hdpi folder
5. compile.
Click to expand...
Click to collapse
This is the right one
-.-
Re: [Q] Change Lockscreen Background - Sliding Tab
Thnks guys, especially d3cka for helping me....!!!
Sent from my GT-S5360 using Tapatalk 2
sorry for posting here but can anyone patch the image i ve attatched into 9.png image for me and upload it
Thanks in advance.
Ganesh A said:
Thnks guys, especially d3cka for helping me....!!!
Sent from my GT-S5360 using Tapatalk 2
Click to expand...
Click to collapse
is it solved?
i think this lock screen is from framework-res.apk
keyguard_screen_tab_unlock.xml
i've ever make it transparent. try open those xml or if you're not find the background color on those xml try guide by marcussmith2626

[KK] XTREME SOUND MOD [clear audio stereo+] & ( volume boost speakers-headphones )

[KK] XTREME SOUND MOD [clear audio stereo+] & ( volume boost speakers-headphones )
I'M NOT RESPONSIBLE FOR ANY DAMAGE MADE TO YOUR DEVICE OR HEARING
WARNING!!!!! the sound is too loud!!!​
{
"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"
}
for better quality use ViPER4Android
http://forum.xda-developers.com/showthread.php?t=2191223
Doesn't works on:
-Xperia Z ultra GPE
this mod release the true audio power on your device, speakers and headphone
requeriments:
-root
-root explorer
-bakup
mixer_paths.xml
Unpack zip file and just move the file to System/etc with the next permissions:
reboot and ready!
you can experiment yourself!!!!
Method
-Use any root explorer and go to
system/ etc/ mixer_paths.xml
-search for <path name="speaker"> then edit <ctl name=RX7 Digital Volume" value = "83" />
change 83 to 89 or any digit below 93 (just to be on the safer side)
-tha same way for headseat
-search:
<path name="headphones">
<ctl name="RX1 Digital Volume" value="82" /> (max 93)
<!--66 % of 124 (rounded) register: 0x2BF-->
<ctl name="RX2 Digital Volume" value="82" /> (max 93)
and this:
<path name="speaker-and-headphones">
<path name="speaker" />
<path name="headphones" />
<ctl name="RX1 Digital Volume" value="64" /> (max 93)
<ctl name="RX2 Digital Volume" value="64" /> (max 93)
</path>
you can try with another parameters who include the next names but is your responsability!!!
<ctl name="RX1 Digital Volume" value="??" />
<ctl name="RX2 Digital Volume" value="??" />
<ctl name="RX3 Digital Volume" value="??" /> )
<ctl name="RX4 Digital Volume" value="??" />
<ctl name="RX5 Digital Volume" value="??" />
<ctl name="RX6 Digital Volume" value="??" /> )
<ctl name="RX7 Digital Volume" value="??" /> )
special thanks to:
olokos and Pannam​
Wheres the file?
hasablack said:
this mod release the true audio power in your device, speakers and headphone
Click to expand...
Click to collapse
How is this any different than http://forum.xda-developers.com/showthread.php?t=2478666? Not trying to sound like a ****, but without any indication of what this does, you just sound like a salesman. I'd be willing to try just about anything regarding making the sound on the ZU better, but I want to know what I'm doing to my phone. Starting off with a huge bolded "I'm not responsible" line and than not following it up with any description isn't a good recipe for public acceptance.
Based on the number of replies in this thread (none), I'm sure that's what others are thinking too. /rant
Firts that all... Did you tasted it? Then the post that you show me, for me it is a placebo (fake mod), and the advertisement is only a warning.
taste the mod and then, you Will know the reasson of the advertisement
This mod increase considerably the volume of the speaker and headphone (50% to 100%)
Sorry for my english
^^ Many thanks hasablack, sound is FAR louder! Turning it any more than 30% is TOO loud.
For those songs/videos in which have low/poor volume are now VERY loud & distortion free.
This is by far the BEST sound mod I've ever used.
Excellent work hasablack. :laugh:
Hi... Please add Bluetooth volume Boost... KK 4.4.2 is Tragedy... Very Very Quiet... Please fix it... Many Many Thanks
Wysłane z mojego C6833 przy użyciu Tapatalka
Anyone got stock xml? It is too loud for me and i would like to roll back
Sent from my C6833 using XDA Premium 4 mobile app
maxld said:
It is too loud for me and i would like to roll back
Sent from my C6833 using XDA Premium 4 mobile app
Click to expand...
Click to collapse
Just lower the volume.
kanej2006 said:
Just lower the volume.
Click to expand...
Click to collapse
Yeah. Just did it
Sent from my C6833 using XDA Premium 4 mobile app
Thanx mate, did you get viper4android working on kk?
Pannam said:
Thanx mate, did you get viper4android working on kk?
Click to expand...
Click to collapse
It is working without any problem
Sent from my C6833 using XDA Premium 4 mobile app
dziara76 said:
Hi... Please add Bluetooth volume Boost... KK 4.4.2 is Tragedy... Very Very Quiet... Please fix it... Many Many Thanks
Wysłane z mojego C6833 przy użyciu Tapatalka
Click to expand...
Click to collapse
+1 for bluetooth boost. Please
Oooh, very nice mod! Since KK didnt get the sweetness of Ac!d mod,this works. Thank you so much dude ^^
Will this work on 4.3? Does anyone know?
Sent from my C6802 using XDA Premium 4 mobile app
Sadman Khan said:
Will this work on 4.3? Does anyone know?
Sent from my C6802 using XDA Premium 4 mobile app
Click to expand...
Click to collapse
Nope.
Sadman Khan said:
Will this work on 4.3? Does anyone know?
Sent from my C6802 using XDA Premium 4 mobile app
Click to expand...
Click to collapse
Yes, it will work with ANY version including 4.3. All you require is root access and a root explorer to extract the file to. :laugh:
wickedninjalo said:
+1 for bluetooth boost. Please
Click to expand...
Click to collapse
+1 need bluetooth boost pls… Missing purex mod on XZ
is zeroinfinity quit xda?:crying:
This work for both Sony and GPe?
Does anybody have the original file ?
Before the patch
and yes
we NEED BLUETOOTH value pls!
v2.0
I made a new ver.
maybe could works with bluetooth

Post your tasker profiles

I realize this type of thread is peppered throughout device specific forums, but I didn't see a general tasker thread and thought this might make it easier for people starting to use tasker to find
Here is my first relevant tasked profile. It is a modification of one I found that reads the first event for tomorrow. The changes I made:
1. Change to search for the earliest event of the current day that has not passed already
2. Changed goto statements to a for loop to increase efficiency
3. Tailored responses to greet based on the time of day
I have this set up to execute once I connect to my work WiFi. If you want to use this be sure and change the name. You can safely remove the variable search replace actions. They are there to aid in the say action to correctly speak my event entries.
Any improvements are welcome and I love to see what others add on or change.
<TaskerData sr="" dvi="1" tv="4.3u4m">
<Task sr="task30">
<cdate>1381336077561</cdate>
<edate>1402071350312</edate>
<id>30</id>
<nme>Announce First Event Today</nme>
<pri>10</pri>
<Action sr="act0" ve="5">
<code>547</code>
<Str sr="arg0" ve="3">%now</Str>
<Str sr="arg1" ve="3">%TIME</Str>
<Int sr="arg2" val="1"/>
<Int sr="arg3" val="0"/>
</Action>
<Action sr="act1" ve="5">
<code>590</code>
<Str sr="arg0" ve="3">%now</Str>
<Str sr="arg1" ve="3">.</Str>
<Int sr="arg2" val="0"/>
</Action>
<Action sr="act10" ve="5">
<code>547</code>
<Str sr="arg0" ve="3">%querytime</Str>
<Str sr="arg1" ve="3">%TIMES + (23 - %now1)*60*60 + (60-%now2)*60 - 86400 + (%hour*60*60)</Str>
<Int sr="arg2" val="1"/>
<Int sr="arg3" val="0"/>
</Action>
<Action sr="act11" ve="5">
<code>115</code>
<se>false</se>
<Int sr="arg0" val="13"/>
<Str sr="arg1" ve="3">%querytime</Str>
<Str sr="arg2" ve="3">%caltitle</Str>
</Action>
<Action sr="act12" ve="5">
<code>115</code>
<se>false</se>
<Int sr="arg0" val="15"/>
<Str sr="arg1" ve="3">%querytime</Str>
<Str sr="arg2" ve="3">%calloc</Str>
</Action>
<Action sr="act13" ve="5">
<code>37</code>
<ConditionList sr="if">
<bool0>And</bool0>
<Condition sr="c0" ve="2">
<lhs>%caltitle(#)</lhs>
<op>0</op>
<rhs>1</rhs>
</Condition>
<Condition sr="c1" ve="2">
<lhs>%querytime</lhs>
<op>3</op>
<rhs>%TIMES</rhs>
</Condition>
</ConditionList>
</Action>
<Action sr="act14" ve="5">
<code>115</code>
<se>false</se>
<Int sr="arg0" val="16"/>
<Str sr="arg1" ve="3">%querytime</Str>
<Str sr="arg2" ve="3">%caltime</Str>
</Action>
<Action sr="act15" ve="5">
<code>596</code>
<Str sr="arg0" ve="3">%caltime1</Str>
<Int sr="arg1" val="4"/>
<Str sr="arg2" ve="3"/>
</Action>
<Action sr="act16" ve="5">
<code>597</code>
<Str sr="arg0" ve="3">%caltime1</Str>
<Int sr="arg1" val="11"/>
<Int sr="arg2" val="6"/>
<Int sr="arg3" val="0"/>
<Str sr="arg4" ve="3"/>
</Action>
<Action sr="act17" ve="5">
<code>590</code>
<Str sr="arg0" ve="3">%caltime1</Str>
<Str sr="arg1" ve="3">.</Str>
<Int sr="arg2" val="0"/>
</Action>
<Action sr="act18" ve="5">
<code>598</code>
<Str sr="arg0" ve="3">%calloc1</Str>
<Str sr="arg1" ve="3">PAC</Str>
<Int sr="arg2" val="0"/>
<Int sr="arg3" val="0"/>
<Int sr="arg4" val="0"/>
<Str sr="arg5" ve="3"/>
<Int sr="arg6" val="1"/>
<Str sr="arg7" ve="3"> pack</Str>
</Action>
<Action sr="act19" ve="5">
<code>598</code>
<Str sr="arg0" ve="3">%caltitle1</Str>
<Str sr="arg1" ve="3">-</Str>
<Int sr="arg2" val="0"/>
<Int sr="arg3" val="0"/>
<Int sr="arg4" val="0"/>
<Str sr="arg5" ve="3"/>
<Int sr="arg6" val="1"/>
<Str sr="arg7" ve="3"> </Str>
</Action>
<Action sr="act2" ve="5">
<code>37</code>
<ConditionList sr="if">
<Condition sr="c0" ve="2">
<lhs>%now1</lhs>
<op>2</op>
<rhs>12</rhs>
</Condition>
</ConditionList>
</Action>
<Action sr="act20" ve="5">
<code>598</code>
<Str sr="arg0" ve="3">%calloc1</Str>
<Str sr="arg1" ve="3">-</Str>
<Int sr="arg2" val="0"/>
<Int sr="arg3" val="0"/>
<Int sr="arg4" val="0"/>
<Str sr="arg5" ve="3"/>
<Int sr="arg6" val="1"/>
<Str sr="arg7" ve="3"> </Str>
</Action>
<Action sr="act21" ve="5">
<code>559</code>
<Str sr="arg0" ve="3">%greeting Bryan. You have an event at %caltime11 %caltime12. %caltitle1 located at the %calloc1</Str>
<Str sr="arg1" ve="3">default:default</Str>
<Int sr="arg2" val="3"/>
<Int sr="arg3" val="5"/>
<Int sr="arg4" val="5"/>
<Int sr="arg5" val="0"/>
<Int sr="arg6" val="0"/>
<Int sr="arg7" val="0"/>
</Action>
<Action sr="act22" ve="5">
<code>137</code>
<Int sr="arg0" val="0"/>
<Str sr="arg1" ve="3"/>
</Action>
<Action sr="act23" ve="5">
<code>38</code>
</Action>
<Action sr="act24" ve="5">
<code>40</code>
</Action>
<Action sr="act25" ve="5">
<code>559</code>
<Str sr="arg0" ve="3">You have no events today. Create something.</Str>
<Str sr="arg1" ve="3">default:default</Str>
<Int sr="arg2" val="3"/>
<Int sr="arg3" val="3"/>
<Int sr="arg4" val="5"/>
<Int sr="arg5" val="0"/>
<Int sr="arg6" val="0"/>
<Int sr="arg7" val="0"/>
</Action>
<Action sr="act26" ve="5">
<code>137</code>
<Int sr="arg0" val="0"/>
<Str sr="arg1" ve="3"/>
</Action>
<Action sr="act3" ve="5">
<code>547</code>
<Str sr="arg0" ve="3">%greeting</Str>
<Str sr="arg1" ve="3">Good morning</Str>
<Int sr="arg2" val="0"/>
<Int sr="arg3" val="0"/>
</Action>
<Action sr="act4" ve="5">
<code>43</code>
<ConditionList sr="if">
<Condition sr="c0" ve="2">
<lhs>%now1</lhs>
<op>2</op>
<rhs>16</rhs>
</Condition>
</ConditionList>
</Action>
<Action sr="act5" ve="5">
<code>547</code>
<Str sr="arg0" ve="3">%greeting</Str>
<Str sr="arg1" ve="3">Good afternoon</Str>
<Int sr="arg2" val="0"/>
<Int sr="arg3" val="0"/>
</Action>
<Action sr="act6" ve="5">
<code>43</code>
</Action>
<Action sr="act7" ve="5">
<code>547</code>
<Str sr="arg0" ve="3">%greeting</Str>
<Str sr="arg1" ve="3">Good evening</Str>
<Int sr="arg2" val="0"/>
<Int sr="arg3" val="0"/>
</Action>
<Action sr="act8" ve="5">
<code>38</code>
</Action>
<Action sr="act9" ve="5">
<code>39</code>
<Str sr="arg0" ve="3">%hour</Str>
<Str sr="arg1" ve="3">0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22</Str>
</Action>
</Task>
</TaskerData>
Sent from my SM-G900V using Tapatalk
I've set up a task, using the wiki as help, to turn Wi-Fi on/off automatically when coming/leaving home.
There's a notification in the pull down that can't be dismissed. Is there a way?
VZW G2 (VS980)
As far as I have experienced no. As I understand it taker needs to be running in the foreground ie the task bar when monitoring profile states or your profile will never trigger. I may be wrong and hope I am. Even setting the icon to transparent doesn't get rid of it.
Sent from my SM-G900V using Tapatalk
I am working on one that will display the most recent texts of up to 3 recipients up to 10 messages max for use with voice. IE "reply to recent message" pulls up last three senders to choose from and "read recent messages". Let me know if anyone is interested.
Sent from my SM-G900V using Tapatalk
Please go here for this...http://forum.xda-developers.com/showthread.php?t=1110775

Categories

Resources