App Ops in Android 4.4 - Android Q&A, Help & Troubleshooting

Hi guys, I hope this is the right section.
Since I updated my N4 to 4.4 AOSPA, none of the App Ops shortcut-apps works anymore. Has Google removed/renamed/replaced it, does anyone know that?
Best regards.

LGXX said:
Hi guys, I hope this is the right section.
Since I updated my N4 to 4.4 AOSPA, none of the App Ops shortcut-apps works anymore. Has Google removed/renamed/replaced it, does anyone know that?
Best regards.
Click to expand...
Click to collapse
Google has masked the entry activity in its android source codes of Settings.
From the git comments "ca1b745 Completely remove app ops activity. by Dianne Hackborn - 4 months ago", you can get the information from here: https://android.googlesource.com/platform/packages/apps/Settings/
And the detail code change log and diff log is here:
https://android.googlesource.com/pl...a1b7458244191214172009d21eae2d04b6992f9^!/#F0

LGXX said:
Hi guys, I hope this is the right section.
Since I updated my N4 to 4.4 AOSPA, none of the App Ops shortcut-apps works anymore. Has Google removed/renamed/replaced it, does anyone know that?
Best regards.
Click to expand...
Click to collapse
any luck getting this working?

I wish this had been mentioned in any of the tech blogs but I haven't seen a word about it. Weird since it was mentioned everywhere when 4.3 arrived. Maybe THE best feature in 4.3 and now it's gone.
---------- Post added at 01:12 PM ---------- Previous post was at 12:18 PM ----------
I found this: http://developer.android.com/reference/android/app/AppOpsManager.html

figofuture said:
Google has masked the entry activity in its android source codes of Settings.
From the git comments "ca1b745 Completely remove app ops activity.
Click to expand...
Click to collapse
Seems like only the activity has been masked out.
With root it should be possible to launch APP_OPS_SETTINGS.

Hollam said:
Seems like only the activity has been masked out.
With root it should be possible to launch APP_OPS_SETTINGS.
Click to expand...
Click to collapse
My phone is rooted, how can I launch APP_OPS_SETTINGS ?

Hollam said:
Seems like only the activity has been masked out.
With root it should be possible to launch APP_OPS_SETTINGS.
Click to expand...
Click to collapse
It is not.

combustiblemonkey said:
It is not.
Click to expand...
Click to collapse
There are xposed modules for this but for the end user I dont know why they would have removed this!

Lgrootnoob said:
There are xposed modules for this but for the end user I dont know why they would have removed this!
Click to expand...
Click to collapse
Xposed does not yet work on 4.4, dev is supposed to receive his device on the 22nd, from what I saw via search (don't have a link).
What if we compile our own build of AOSP but with that commit reverted? Theoretically possible, how well would it run I wonder. If someone can tell me how to revert that commit I may try building it myself for my N5 and flashing it. I've compiled CM using the wiki. I just have to resetup the VM, I erased it because I needed space my on laptop HDD.

rockingondrums said:
Xposed does not yet work on 4.4, dev is supposed to receive his device on the 22nd, from what I saw via search (don't have a link).
What if we compile our own build of AOSP but with that commit reverted? Theoretically possible, how well would it run I wonder. If someone can tell me how to revert that commit I may try building it myself for my N5 and flashing it. I've compiled CM using the wiki. I just have to resetup the VM, I erased it because I needed space my on laptop HDD.
Click to expand...
Click to collapse
Im aware of xposed on 4.4 ive tested it a lot.
Thats an interesting idea though.

https://play.google.com/store/apps/details?id=com.findsdk.apppermission
It works! Doesn't even require root
Sent from my Nexus 7 using Tapatalk 4

somebody had found a way to work round the google's mask code,
If you activated developer mode in your KITKAT device, connect your device to PC and then try the following command.
% adb shell am start -n com.android.settings/com.android.settings.Settings \
-e :android:show_fragment com.android.settings.applications.AppOpsSummary \
--activity-clear-task --activity-exclude-from-recents
The new way invokes AppOps fragment via the Setting app!!
Of course, you can invoke AppOps from your application.
Intent intent = new Intent();
intent.setClassName("com.android.settings",
"com.android.settings.Settings");
intent.setAction(Intent.ACTION_MAIN);
intent.addCategory(Intent.CATEGORY_DEFAULT);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK |
Intent.FLAG_ACTIVITY_CLEAR_TASK |
Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
intent.putExtra(":android:show_fragment",
"com.android.settings.applications.AppOpsSummary");
startActivity(intent);
for more details, please refer http://brightechno.com/blog/archives/211

I'm using this one in KitKat:
https://play.google.com/store/apps/details?id=mobi.facelock.permissionmanager
works like a charm

naplam said:
I'm using this one in KitKat:
https://play.google.com/store/apps/details?id=mobi.facelock.permissionmanager
works like a charm
Click to expand...
Click to collapse
your APP is so BIG, it is more than 200kb, please try this one, https://play.google.com/store/apps/details?id=com.ovmobile.appopslauncher
it is ONLY 7kb, no ads, no pay, no permission required, no root, support KITKAT, please have a try, thanks !!!!
AND you can SCAN this QR image to download it,
{
"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"
}

figofuture said:
your APP is so BIG, it is more than 200kb, please try this one, https://play.google.com/store/apps/details?id=com.ovmobile.appopslauncher
it is ONLY 7kb, no ads, no pay, no permission required, no root, support KITKAT, please have a try, thanks !!!!
Click to expand...
Click to collapse
Works good, thanks!

Found an ap ops starter that works with 4.4
LGXX said:
Hi guys, I hope this is the right section.
Since I updated my N4 to 4.4 AOSPA, none of the App Ops shortcut-apps works anymore. Has Google removed/renamed/replaced it, does anyone know that?
Best regards.
Click to expand...
Click to collapse
4.3+ AppOps work with KitKat
https://play.google.com/store/apps/details?id=name.schlenke.tools.hiddensettings

figofuture said:
your APP is so BIG, it is more than 200kb, please try this one, https://play.google.com/store/apps/details?id=com.ovmobile.appopslauncher
it is ONLY 7kb, no ads, no pay, no permission required, no root, support KITKAT, please have a try, thanks !!!!
AND you can SCAN this QR image to download it,
Click to expand...
Click to collapse
I updated my rating your app in the store now that it's updated. And your app is 20kb after install which is still smaller than the first working app that was posted.

Does app ops make any difference?
I tried to play around with permissions location and keep awake to reduce wake locks but with no luck at all. To test I removed permissions for camera and sound recording for fb messenger but I could still take a picture or record voice in the fb messenger app. Shouldn't it get a FC when the permissions in lacking?
I'm on Nexus 4 KitKat btw.

Zinken said:
Does app ops make any difference?
I tried to play around with permissions location and keep awake to reduce wake locks but with no luck at all. To test I removed permissions for camera and sound recording for fb messenger but I could still take a picture or record voice in the fb messenger app. Shouldn't it get a FC when the permissions in lacking?
I'm on Nexus 4 KitKat btw.
Click to expand...
Click to collapse
I tried the same with facebook messenger and I get the same result as you. Weird thing is it still says "never used" for camera. But I do have noticed a difference for "keep awake". I had a lot of battery drainage, especially for android system, and after I disabled keep awake in app ops it stopped. I haven't read much about what app ops is supposed to do. A theory is that the permissions only is about non active usage, i.e. not allowing apps to do stuff "behind our back" so to speak.

mertzi said:
I tried the same with facebook messenger and I get the same result as you. Weird thing is it still says "never used" for camera. But I do have noticed a difference for "keep awake". I had a lot of battery drainage, especially for android system, and after I disabled keep awake in app ops it stopped. I haven't read much about what app ops is supposed to do. A theory is that the permissions only is about non active usage, i.e. not allowing apps to do stuff "behind our back" so to speak.
Click to expand...
Click to collapse
OK, so I'm not alone. Will test to change keep awake for android system, although it's android OS that is draining my battery mostly.
I wish I could agree with your theory but I don't see why fb messenger would need permission to use camera etc. when I'm not using the app. So there must be some other explanation why changing permissions doesn't seem to affect fb messenger.
Sent from my Nexus 4 using Tapatalk

Related

[APP] Bloater 0.7 - 6/15/11

Bloater​
What the hell is it?
Bloater is an application I wrote to help users get their device setup after a new ROM flash. It can install apps to your phone that you may want that your ROM does not come with. It is completely community driven, so anyone can have a "category" and post their own apps (this means it works for other phones, too). Should work on any Froyo device.
However, it has much more potential. Soon, I will code it so it will be able to download a flashable to your phone and then reboot into recovery and flash it.
Change Log
Code:
0.7
-minor styling changes
0.69
-various stability tweaks
0.68
-initial startup checks for root & busybox
0.6.6
-uninstall functionality available again
0.6.5
-various internal improvements
-new dialog to make sure you don't remove something by accident
0.6
-complete re-write
Installation
Install like any normal APK!
About
0.6 is a complete write up. I've spent the past couple of weeks working away at this. The program is pretty functional and it works for the most part but I KNOW there are still bugs, so I am posting this at its early development stages so I can kind of see what you guys will say about it and where you guys want it to go.
It looks pretty plain right now, but when I add in more icons (or you guys!) it should look a lot better
What works
If you notice, there are two buttons available right now, download & install. Download does just that, just downloads the file to your /sdcard/bloater folder.
Install will actually install an application.
Mostly everything does so far!
What is not yet working
The program will most definitely crash out if there's no internet connection (I'm sure there's other dummy proofing to do)
Flashing. I am going to try and make it so it can open a zip file and send it to ROM manager so you can download and flash in one mostly-painless process. Also if it's possible I will do the same with metamorphs.
Anyone who wishes to contribute
If you want to help me, please submit detailed bug reports along with a logcat if you can.
Themers/developers please also help. I will post an example XML file below, it's pretty self explanatory & easy to read! After you set your XML file up, all I would need is the URL
Code:
<?xml version="1.0" encoding="UTF-8"?>
<entry>
<category>
<name>Stock KB5 Apps</name>
<child_url>http://rbirg.com/test1.xml</child_url>
</category>
<category>
<name>Launchers</name>
<child_url>http://rbirg.com/vibrant/launchers.xml</child_url>
</category>
<item>
<name>Test File</name>
<action>download</action>
<file md5="C9EC250C130D1D81B1FBEC1DFCBDFE52">
<url>http://rbirg.com/test/test.zip</url>
<target>/sdcard/test.zip</target>
</file>
</item>
<item>
<name>Trigger</name>
<action>download</action>
<file>
<url>http://romshare.deployfu.com/downloads/25/2/Trigger_3_2_final_vvmfix.zip</url>
<target>/sdcard/Trigger_3.2.zip</target>
</file>
</item>
<item>
<name>Wifi Calling</name>
<action>install</action>
<file>
<url>http://rbirg.com/vibrant/kitchen/system/app/WiFi-Calling.apk</url>
<target>/system/app/WiFi-Calling.apk</target>
</file>
<file keep="true">
<url>http://rbirg.com/vibrant/kitchen/system/lib/librilswitch.so</url>
<target>/system/lib/librilswitch.so</target>
</file>
<file>
<url>http://rbirg.com/vibrant/kitchen/system/lib/libkineto.so</url>
<target>/system/lib/libkineto.so</target>
</file>
<file keep="true">
<url>http://rbirg.com/vibrant/kitchen/system/lib/libganril.so</url>
<target>/system/lib/libganril.so</target>
</file>
</item>
</entry>
You can view my live xml at http://rbirg.com/test.xml that's the one the program defaults to.
As you can see, the root tag is an entry, you must have this to do anything. Then you can have either an item or a category. Categories are pretty self-explanatory, not many options (icons & descriptions for them coming soon probably).
Items are where it gets to be a lot! You can have an md5 check for each file, if there is not one provided, I try and do an extremely rough guesstimate on the appropriate size of the file vs the downloaded amount. There are a few different actions: download, install, flash. The flash option is not yet implemented. One important feature I implemented in the files is that you can assign a file to download, but you can make it stay on the system after the user chooses to remove it (this is extremely useful in the case of WiFi calling when you're replacing system libs with newest ones but do not want them removed).
{
"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"
}
Donate Version
Is up on the Android market. 1 buck. Benefits? Automatic updates (I will upload newer versions to the market first, too!). And support my ongoing development of this and other Android projects . At least help me get my $25 back from posting it up!
Rom developers, you must ask me permission before using this program or modifying it in any way. Thanks
Very nice, thank you.
Sent from my SGH-T959 using Tapatalk
Great idea.
Sent from my SGH-T959 using XDA App
A dollar is on the way, just bought, great idea..best success
Ok just bought it on the market. Great idea. Good luck,
This is great, but can you please add the tw music player?
Sent from my SGH-T959 using XDA App
hitman818 said:
This is great, but can you please add the tw music player?
Sent from my SGH-T959 using XDA App
Click to expand...
Click to collapse
should be up in a minute or so
birgertime said:
should be up in a minute or so
Click to expand...
Click to collapse
Thx man, your great.
Sent from my SGH-T959 using XDA App
Works great! Lean and simple. Nice work.
Sent from my SGH-T959 using XDA App
I installed the tw music player, but its not showing in my app drawer.
Sent from my SGH-T959 using XDA App
hitman818 said:
I installed the tw music player, but its not showing in my app drawer.
Sent from my SGH-T959 using XDA App
Click to expand...
Click to collapse
reboot, and it should show up
birgertime said:
reboot, and it should show up
Click to expand...
Click to collapse
I rebooted and it still didnt show up.
Sent from my SGH-T959 using XDA App
hitman818 said:
I rebooted and it still didnt show up.
Sent from my SGH-T959 using XDA App
Click to expand...
Click to collapse
Alright, I'm putting my detective hat on, be back with info
edit: should work, i had it named incorrectly on the server
birgertime said:
Bloater 0.1
Hi guys
About
This Android application will be able to download original software that came with your Samsung Vibrant that may or may not be there already. This is a side project for me to learn Android and really learn how to implement ACS the best way. However I will be actively working on this and I will provide support for it. It *does* require busybox to be installed (for now), however every single deodexed Vibrant ROM has it included.
This is great for rom developers & users.
Rom developers, you may include this in your ROMs, just please give credit somewhere, and let me know you are including it!
Donate Version
Is up on the Android market. 1 buck. Benefits? Automatic updates (I will upload newer versions to the market first, too!). And support my ongoing development of this and other Android projects . At least help me get my $25 back from posting it up!
Other
Right now, it's pretty basic. It can download & install the apps. In the future, it will be able to detect if you have those apps installed, and will let you uninstall them as well!
Screenshots
Click to expand...
Click to collapse
Aaaawwww shuweetttt dude!
Another nice app!
Great idea man! I'm looking forward to trying this out when I flash a rom that doesn't have everything I want on it.
Sent from my mobile
Does it matter if we install in system/app or data/app? It will be included in Flagship V4.
jellette said:
Does it matter if we install in system/app or data/app? It will be included in Flagship V4.
Click to expand...
Click to collapse
It shouldn't. I would put it in data/app just in case the user wishes to upgrade to a newer version though
when I install the sims it says "problem parsing package".
I did reboot. Running Bionix v5
Thanks.
megatherian said:
when I install the sims it says "problem parsing package".
I did reboot. Running Bionix v5
Thanks.
Click to expand...
Click to collapse
ACS has the same problem, I just haven't gotten around to making Sims work. I'll try and fix it tonight.
birgertime said:
ACS has the same problem, I just haven't gotten around to making Sims work. I'll try and fix it tonight.
Click to expand...
Click to collapse
I really like the idea, but I feel like I should put in a word of caution. Including apps like the Sims may bring you problems with google and potentially get your app banned. I'm honestly not sure which apps are ok to redistribute and which aren't, but I do know that the Sims is one of the ones that is not.
It's entirely up to you if you want to take the risk, just thought I'd mention that to you.

[MOD][Xposed][4.3] Fitbit Sync on all devices running 4.3

This Xposed mod allows Bluetooth 4 synchronisation with Fitbit trackers on all devices running Android 4.3 by patching the device detection.
Special thanks to dimfish for finding out how to patch the device detection.
Please remember to switch off "Background sync" in Fitbit app due to the 48 h problem mentioned here. Seems that the BT libraries on Google and hTC and other devices except Samsung are incomplete or have a bug, which causes the tracker battery to drain when it becomes undiscoverable.
Xposed repository
Source code
This is my first Xposed module and also my first app, so please be nice to me
So I installed the module and activated it in Xposed. Rebooted and downloaded fitbit from the play store but it still doesn't allow me to sync. I went to dimfish and downloaded the app and it works but I don't think I need the module to use that one. I'm on a d2tmo on cm 11
Sent from my SGH-T999 using Tapatalk
hatdrc said:
So I installed the module and activated it in Xposed. Rebooted and downloaded fitbit from the play store but it still doesn't allow me to sync. I went to dimfish and downloaded the app and it works but I don't think I need the module to use that one. I'm on a d2tmo on cm 11
Click to expand...
Click to collapse
Hmm, my mod does the same change that dimfish has patched in his app.
Do you see anything about "Fitbit" in this file?
Code:
/data/data/de.robv.android.xposed.installer/log/debug.log
Urgent Consult
stan23 said:
Hmm, my mod does the same change that dimfish has patched in his app.
Do you see anything about "Fitbit" in this file?
Code:
/data/data/de.robv.android.xposed.installer/log/debug.log
Click to expand...
Click to collapse
Hi I use a headset Sony SBH50 and OS 4.3. running on a Samsung Galaxy S3, Sony makes the player loses all his functions, ie only hear if I touch the terminal play the camandos the headset do not work and neither headset screen shows me the screen. Consult this patch solves it? sorry for the question but I charge at least 6 times different rooms with 4.3.para see if any works and all feel the same, appreciate answer. thanks Ariel
aefdj78 said:
Hi I use a headset Sony SBH50 and OS 4.3. running on a Samsung Galaxy S3, Sony makes the player loses all his functions, ie only hear if I touch the terminal play the camandos the headset do not work and neither headset screen shows me the screen. Consult this patch solves it?
Click to expand...
Click to collapse
No, this mod has an influence only on the Fitbit app.
stan23 said:
No, this mod has an influence only on the Fitbit app.
Click to expand...
Click to collapse
Hi, thanks a lot for your module, the Flex finally syncs with my Android device (Nexus 5). Just a question, how can I disable "Backgound sync"? I don't see such an option in the Fitbit app (1.8.2). Maybe you mean the "Use bluetooth" option under "Devices" menu?
F.
fbriolini said:
Just a question, how can I disable "Backgound sync"? I don't see such an option in the Fitbit app (1.8.2). Maybe you mean the "Use bluetooth" option under "Devices" menu?
Click to expand...
Click to collapse
"Use Bluetooth" must be selected.
In the devices menu, select the Flex (or the One) and then you see a screen 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"
}
stan23 said:
"Use Bluetooth" must be selected.
In the devices menu, select the Flex (or the One) and then you see a screen like this:
Click to expand...
Click to collapse
I found it! Thanks a lot.
F.
stan23 said:
Hmm, my mod does the same change that dimfish has patched in his app.
Do you see anything about "Fitbit" in this file?
Code:
/data/data/de.robv.android.xposed.installer/log/debug.log
Click to expand...
Click to collapse
Sorry I didn't get back to you. Turns out xposed wasn't working with Kit Kat but it does now. So far it appears to be work. Thank you for this module. Was the only thing keeping me on stock touch wiz
Sent from my SGH-T999 using Tapatalk
Wow, was just reading up on Xposed and wondering if there was any reason for me to use it and came across your mod. Time to install Xposed and your mod methinks Thanks!
FYI if your using this module you may be interested in using the NFC LockScreenOff Enabler module.
I use my Fitbit Force [NFC Tag] to log into my phone that has a pattern lock.
Fitbit has an APK that does not require anything special such as Exposed.
The beta users have been testing them for a few weeks, and seems like it works fine with 4.4. However, I had a battery drain issue with 4.3.
Sfkn2 said:
Fitbit has an APK that does not require anything special such as Exposed.
The beta users have been testing them for a few weeks, and seems like it works fine with 4.4. However, I had a battery drain issue with 4.3.
Click to expand...
Click to collapse
I did a quick search and I can't seem to figure out how to enter their beta program. Are you willing / able to provide some info on how to become a beta tester with them?
Does your phone need BT 4.0? Or can I use it on the T989 with BT 3.0?
The HW must be BT4.0.
Thank you for creating this for the fitbit. Is it possible to create one that would allow for syncing with all devices and not just fitbit (for example garmin fenix 2 watch)? Thanks!!!
Ohschit said:
Thank you for creating this for the fitbit. Is it possible to create one that would allow for syncing with all devices and not just fitbit (for example garmin fenix 2 watch)? Thanks!!!
Click to expand...
Click to collapse
Sorry, this is for Fitbit app only.
Fitbtit for Android 4.2.2
stan23 said:
This Xposed mod allows Bluetooth 4 synchronisation with Fitbit trackers on all devices running Android 4.3 by patching the device detection.
Special thanks to dimfish for finding out how to patch the device detection.
Please remember to switch off "Background sync" in Fitbit app due to the 48 h problem mentioned here. Seems that the BT libraries on Google and hTC and other devices except Samsung are incomplete or have a bug, which causes the tracker battery to drain when it becomes undiscoverable.
Xposed repository
Source code
This is my first Xposed module and also my first app, so please be nice to me
Click to expand...
Click to collapse
Is there a way to get a patch also for Android 4.2.2??? It would be great!
Will this also work with trackr?
Samsung GS 2 E4GT SPH-D710 doesn't use BT4 or LV bluetooth…
thetrackr.com

[Mod][Xposed]Twitter Token Patcher : no more 100k limit

Twitter Token Patcher v0.3
No more limits for the Twitter clients
Introduction
With this Xposed mod, the twitter clients will no longer suffer from the 100k limit of authorized users, so that 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"
}
Becomes this:
Details
To use this Xposed mod, you need to create your own twitter tokens on the Twitter Dev Apps section (Update: fill also the callback url with any url, just don't leave it empty), and get your own Consumer Key and Secret, then insert them into the Xposed mod settings, and the Twitter client will work again.
I did this for mainly for Carbon, after reading that the developer is not going to make it accept custom keys, and I had some free time, so I did it. I mainly use Falcon Pro, but wanted to give Carbon v2.0 a try.
Supported Twitter clients:
Carbon (by dots and lines)
Janetter (Jane, Inc.)
Others will come soon, hopefully with YOUR support.
Unsupported Twitter Clients (that supports custom Tokens internally):
Falcon Pro (Follow this guide)
Tweedle (select Advanced login)
Download
I attached the apk of the Xposed mod.
You can also find this on the Xposed Repo
Installation
To make it run, you need to:
1- Install the attached APK
2- Enable the Xposed module in Xposed Framework
3- Insert your own Consumer key and secret in the settings of this xposed module
4- Enable the desired Twitter clients
5- Reboot your device.
Source code
You can find the source code for this mod on GitHub, feel free to add support for more clients, and I will include it in later versions.
Change log
v0.1 (2014-01-11)
- First release, supports only Carbon
v0.2 (2014-01-15)
- Gingerbread compatibility (to test)
- New APK signing certificate, to release MOD to xposed repo (to update from v0.1, you have to uninstall/reinstall).
v0.3 (2014-01-16)
- Added support for Janetter
Requesting support for new clients is welcome, preferably free ones (I don't want to buy every single twitter app), and the app should not be offering native support for custom tokens, such as Falcon Pro or Tweedle (and others), because users who can install and use Xposed framework, can also go into the settings of the app to add the custom tokens.
Awesome work ! Thanks joenrv will be happy with Falcon !
is this suppport with gingerbread?
sugarkane87 said:
is this suppport with gingerbread?
Click to expand...
Click to collapse
There is a port of Xposed Framework for GB, but I don't have a GB device at the moment, so I can't test, give it a try and let me know
mcbyte_it said:
There is a port of Xposed Framework for GB, but I don't have a GB device at the moment, so I can't test, give it a try and let me know
Click to expand...
Click to collapse
sadly, it's not working (parse error). Becuz when i'm look the source code, min sdk version is 14.
sugarkane87 said:
sadly, it's not working (parse error). Becuz when i'm look the source code, min sdk version is 14.
Click to expand...
Click to collapse
I made a new version with minsdk set to 9 (Gingerbread 2.3), try and let me know if it works.
mcbyte_it said:
I made a new version with minsdk set to 9 (Gingerbread 2.3), try and let me know if it works.
Click to expand...
Click to collapse
Thanks man, for backporting to gingerbread, and it's worked! Appreciated so much The thing is.. can you add tweedle to twitter client provider? becuz tweedle has limitation too.. and as we know it, carbon and falcon is for android 4.0 and up, right?
Edit: 3 client provider ( carbon, falcon, placeholder) only carbon is able to check where the others two isn't. Before unchecked carbon, I can't use tweedle. But when carbon is checked now tweedle is worked.
Sent from my XT530
sugarkane87 said:
Thanks man, for backporting to gingerbread, and it's worked! Appreciated so much The thing is.. can you add tweedle to twitter client provider? becuz tweedle has limitation too.. and as we know it, carbon and falcon is for android 4.0 and up, right?
Edit: 3 client provider ( carbon, falcon, placeholder) only carbon is able to check where the others two isn't. Before unchecked carbon, I can't use tweedle. But when carbon is checked now tweedle is worked.
Sent from my XT530
Click to expand...
Click to collapse
Tweedle allows easy change of the Twitter token, just select Advanced Login and insert the personal tokens. My scope is for apps that doesn't provide this solutions.
The app settings screen is a demo, so that other devs can take the sources and add more clients, that's why there is a placeholder. Falcon is giving me some errors, so it is not supported/selectable yet.
what other clients are suffering from the tokens issue?
mcbyte_it said:
Tweedle allows easy change of the Twitter token, just select Advanced Login and insert the personal tokens. My scope is for apps that doesn't provide this solutions.
The app settings screen is a demo, so that other devs can take the sources and add more clients, that's why there is a placeholder. Falcon is giving me some errors, so it is not supported/selectable yet.
what other clients are suffering from the tokens issue?
Click to expand...
Click to collapse
ah.. I see, and I didn't update the tweedle yesterday, so latest version has 2 option login, sorry for my bad
maybe you can check janetter, it has token limitation policy.
sugarkane87 said:
ah.. I see, and I didn't update the tweedle yesterday, so latest version has 2 option login, sorry for my bad
maybe you can check janetter, it has token limitation policy.
Click to expand...
Click to collapse
Just released v0.3, which adds support for Janetter, give it a try and let me know if it works with Gingerbread.
I also published this mod to Xposed Repo.
mcbyte_it said:
Just released v0.3, which adds support for Janetter, give it a try and let me know if it works with Gingerbread.
I also published this mod to Xposed Repo.
Click to expand...
Click to collapse
Janetter is working, good job man
Sent from my XT530
mcbyte_it said:
Falcon is giving me some errors, so it is not supported/selectable yet.
what other clients are suffering from the tokens issue?
Click to expand...
Click to collapse
To save you some time, Falcon Pro already has native support for entering one's key/secret (http://www.lifehacker.com.au/2013/07/bypass-falcon-pros-twitter-token-limit-with-this-cheat-code/).
Alex
PS: I had the idea of making an app to do that just this week, you beat me to it lol.
adlx.xda said:
To save you some time, Falcon Pro already has native support for entering one's key/secret (http://www.lifehacker.com.au/2013/07/bypass-falcon-pros-twitter-token-limit-with-this-cheat-code/).
Click to expand...
Click to collapse
if you check the first post, I wrote that I am not going to support apps that give the ability to use personal tokens (at least at this moment), later maybe.
anyway, I am looking for more twitter clients that suffer the token limit, I installed around 8 different free clients, other than Janetter and Carbon, with the rest I was able to login without token change...
mcbyte_it said:
if you check the first post, I wrote that I am not going to support apps that give the ability to use personal tokens (at least at this moment), later maybe.
anyway, I am looking for more twitter clients that suffer the token limit, I installed around 8 different free clients, other than Janetter and Carbon, with the rest I was able to login without token change...
Click to expand...
Click to collapse
I know, I read the OP, and the full thread. I wasn't asking you to add support for anything.
Sent from my Galaxy Nexus using Tapatalk
I've followed your instructions but I can't get this to work with the latest version of carbon in the play store. I have my key and secret but evey time I reboot then launch Carbon it says it can't connect to twitter... Any ideas?
nolimit06 said:
I've followed your instructions but I can't get this to work with the latest version of carbon in the play store. I have my key and secret but evey time I reboot then launch Carbon it says it can't connect to twitter... Any ideas?
Click to expand...
Click to collapse
Are you sure everything is enabled successfully? and the consumer key and secret are inserted in the xposed module correctly (case is IMPORTANT)?
How did you create the Twitter App on their dev site? all permissions are ok? did you add an application URL?
My build is still working with no issues.
mcbyte_it said:
Are you sure everything is enabled successfully? and the consumer key and secret are inserted in the xposed module correctly (case is IMPORTANT)?
How did you create the Twitter App on their dev site? all permissions are ok? did you add an application URL?
My build is still working with no issues.
Click to expand...
Click to collapse
Checked and rechecked. Here are some screens with the important stuff edited.
EDIT: And now I fell like a dumbass... It works. Last night it kept saying it was unable to connect to Twitter. But instead of it asking me to authorize my app name (Tw1tterTwatter) it said "Carbon" so in wondering if new tokens were made available by chance?
Sent from my SM-N900P using Tapatalk
Any tweetcaster support?
steve51184 said:
Any tweetcaster support?
Click to expand...
Click to collapse
Is it suffering from the twitter token limit? It is one of the clients with the most users, 5 to 10 millions.

[MOD][XPOSED][EOL] NoMapTips - For those of us who know what we're doing.

NoMapTips has been marked end of life. While it remains available, the module has served its purpose and is no longer being updated. Google has added equivalent functionality built directly into Maps. Happy navigating! Another workaround.
... Annnnd we're back.
Code:
NoMapTips is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
Introduction
The location accuracy tips dialog in Google Maps is annoying. You know what you're doing. Ignore that thing. Once and for all.
Featured on XDA Xposed Tuesday!
Click to expand...
Click to collapse
Images
{
"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"
}
Never again.
Click to expand...
Click to collapse
Features
You'll never see that horrible thing again. Even if your GPS is off.
You'll forget you installed it.
Theoretically less likely to crash your car...
Click to expand...
Click to collapse
Installation
Make certain you're on a supported version of Google Maps.
Install the module by a) searching for it in the Xposed Installer or b) manually through the APK provided on GitHub or the Xposed website.
Enable the module in the Xposed Installer.
Reboot.
Give it a spin! A very easy way to make this dialog appear is to turn off all location services and disable WiFi. Then tap the location accuracy tips preference in the Settings. No dialog? Good.
Click to expand...
Click to collapse
Changelog
See the GitHub repository for the definitive changelog.
Code:
v2.2-31c370b - 22 Apr 2015 - Stable
------------
This release adds support for Maps 9.7.1! Please note that while the
"optimal location" toast notification will no longer appear you
should continue to be location tip free.
Code:
v2.1-8fa0a32 - 21 Mar 2015 - Stable
------------
Google Maps will now always report optimal location accuracy settings.
Even if all possible location services are off. Goodbye dialogs!
Code:
v2.0-b0c9edc - 21 Mar 2015 - Stable
------------
NoMapTips is back! Unfortunately. What's new?
* Support for Google Maps 9.5.1 and 9.6.0
* New default Android icon
* Continued support for Maps 8, 9.0, and 9.1 for those of you (none?)
still using them.
Code:
v1.4-42f1ab2 - 26 Nov 2014 - Stable
------------
Support for Google Maps 9.1
Code:
v1.3-4c4e802 - 14 Nov 2014 - Stable
------------
NoMapTips now supports both Google Maps 8 and Maps 9 users. Feel free
to upgrade. :)
Code:
v1.2-0833439 - 08 Nov 2014 - Stable
------------
This version supports the new Google Maps 9 on Android 4.1 (Jelly Bean)
and up.
Code:
v1.1-a87b471 - 06 Nov 2014 - Stable
------------
Updated for Google Maps 9. Do not update this module if you have not
yet received the Google Maps update. Easiest way to tell? Material
Design. :)
Code:
v1.0-348872a - 03 Oct 2014 - Stable
------------
Initial release.
Click to expand...
Click to collapse
Downloads
MD5 checksums are available on the Xposed Repo.
Xposed Repo (APK)
GitHub (HTTPS APK)
GitHub (sources)
Click to expand...
Click to collapse
FAQ
Q: NoMapTips isn't working for me. What can I do?
A: Oh dear. If you're familiar with GitHub, creating a new issue is a great option. If not, posting right in this thread isn't a bad idea either. The more information you include in your bug report the easier (and faster) it will be for me or someone else to help. What kind of info? Your Xposed log (found in the Xposed Installer), your version of Google Maps, your version of NoMapTips and your version of Android is often enough to get started. Please be kind and courteous to anyone offering assistance.
Q: How about a new feature?
A: NoMapTips is great, if I do say so myself, which I do, because it does one particular thing and does it very well with zero unnecessary overhead. Unless the feature request is "hide some more map tips" I'd have to say no.
Click to expand...
Click to collapse
Credits
rovo89 - Creator of one of the most useful tools Android has ever seen: Xposed.
Click to expand...
Click to collapse
Licensing
Copyright © 2014-2015 Kevin Mark. NoMapTips is licensed under the GNU General Public License, Version 3, which can be found in LICENSE.md
Click to expand...
Click to collapse
Mentions
Reddit
Google Product Forums
Droid Life Community
OnePlus One Community
Xperia Compatible Xposed Modules
5 Tweaks for a Less Annoying Android
Alternatives to popular Xposed modules | Prepare for Android Lollipop / ART
Modules for your Xposed Installer ! REVISED
XDA Xposed Tuesday
bluewalk said:
Excellent job on this module. I've accidentally run over 3 different children with my car over the past 2 months thanks to fiddling with this stupid prompt when beginning my route. Often so raged from it I don't even care and keep going. Fix your **** Google, for the sake of my car and the children.
Click to expand...
Click to collapse
Thank you!
Click to expand...
Click to collapse
XDA:DevDB Information
NoMapTips, Xposed for all devices (see above for details)
Contributors
Kevin M
Source Code: https://github.com/kmark/NoMapTips
Xposed Package Name: com.versobit.kmark.nomaptips
Version Information
Status: Stable
Current Stable Version: v2.2-31c370b
Stable Release Date: 2015-04-22
Created 2014-10-03
Last Updated 2016-04-12
Finally the Request of so many people is answered
Thank you so much! I think this may cure at least some of the road rage out there.
If you made this due to a reddit post on /r/xposed, that was me, and I thank you. You're awesome.
omfg thank you!
Thanks!
Hated that. Who's going to be using WiFi while they're driving? So dumb.
Im_Gumby said:
Hated that. Who's going to be using WiFi while they're driving? So dumb.
Click to expand...
Click to collapse
I do...
I always leave WiFi on anymore...
It helps locating me when I am in Philadelphia or New York City... Where GPS might not find you due to tall buildings... But there are like 10 bazillion WiFi networks
rignfool said:
I do...
I always leave WiFi on anymore...
It helps locating me when I am in Philadelphia or New York City... Where GPS might not find you due to tall buildings... But there are like 10 bazillion WiFi networks
Click to expand...
Click to collapse
Ah... now I understand. Good to know. Thanks.
Im_Gumby said:
Ah... now I understand. Good to know. Thanks.
Click to expand...
Click to collapse
Yeah... Pkt_lnt taught me that... When I was reading the tasker thread as he was talking about Fused Locations...
Its actually pretty awesome... I can find myself real fast that way...
You have answered the prayers of so many here.
I had no idea this was so highly requested. I never spent any time in /r/xposed until today. The notification just really started to piss me off. Good to see others find it useful.
Thank you!!!!
---------- Post added at 08:23 AM ---------- Previous post was at 08:18 AM ----------
rignfool said:
I do...
I always leave WiFi on anymore...
It helps locating me when I am in Philadelphia or New York City... Where GPS might not find you due to tall buildings... But there are like 10 bazillion WiFi networks
Click to expand...
Click to collapse
True it helps but I also don't like having my WiFi connect automatically to work. So I have to turn it off.
Just a quick note, this also turns off the dialog when the location settings are non-optimal. Like battery saver mode (or GPS being off completely). I could differentiate between the two but I assume you know what you're doing.
Haven't installed it yet but hope it works. Keeping WiFi on is a not well thought out option to use maps. I can't begin to list how many networks that I've used that require web authentication in order to use their WiFi network. I can't begin to say how frustrating it is when I'm driving, your phone picks up one of these saved networks, tries to connect and gets no internet connection. Looking forward to trying it out
Now if only it is possible to turn off the "feature" that disconnects you from a WiFi network (e.g. WiFi at Starbucks, Xfinity hotspots, wholefoods, Lowe's, Ikea, home depot), telling you that it might not be stable before you even have a chance to try and authenticate through a webpage
Keep up the good work!
jdmst77 said:
Now if only it is possible to turn off the "feature" that disconnects you from a WiFi network (e.g. WiFi at Starbucks, Xfinity hotspots, wholefoods, Lowe's, Ikea, home depot), telling you that it might not be stable before you even have a chance to try and authenticate through a webpage
Click to expand...
Click to collapse
Settings -> Wi-Fi -> Menu -> Advanced -> Avoid poor connections -> Uncheck :good:
Kevin M said:
Settings -> Wi-Fi -> Menu -> Advanced -> Avoid poor connections -> Uncheck :good:
Click to expand...
Click to collapse
Thanks but not an available option in my 4.3 Root 66 rom
jdmst77 said:
Thanks but not an available option in my 4.3 Root 66 rom
Click to expand...
Click to collapse
Oh, stock then? It's probably some rom-specific code/app that I wouldn't have access to. Unless someone with your phone can take a look the only other fix would be to install a new rom, which may not be possible. Sorry.
Kevin M said:
Oh, stock then? It's probably some rom-specific code/app that I wouldn't have access to. Unless someone with your phone can take a look the only other fix would be to install a new rom, which may not be possible. Sorry.
Click to expand...
Click to collapse
Yeah, stock with root injected. I would go with a different SGS3 Rom if I knew of a good one that worked work t-mobile WiFi calling
jdmst77 said:
Yeah, stock with root injected. I would go with a different SGS3 Rom if I knew of a good one that worked work t-mobile WiFi calling
Click to expand...
Click to collapse
Hate to go off topic... But I think cm is either working... Or has done T-Mobile WiFi Calling...
Thanks for this!!! I use GPS constantly for my job and this was driving me crazy.

[MOD][Xposed][4.0.3+]lataclysm(fake location)

Hi there.
Download:[url]http://repo.xposed.info/module/com.cataclysm.i[/URL]
How to use ?
1, Set packagename for the task.
2, Select location 00, then click on maps where you want. (or you can select location 01 - 99, they are editable.)
//you may need turn gps switch on
YouTube: https://www.youtube.com/channel/UCElYKyj4QQpl2Wj1NaYtONg
Youku: http://v.youku.com/v_show/id_XMjQ4MTU0NDUzNg==.html
Can't fake location for system app, except google and camera.
Don't need to reboot the phone, just restart the app after update settings. Need restart the app to take effect settings: GpsStatus&GpsSatellites, fix operator, location from empty to non-empty, from non-empty to empty.
How to disable fake?
Select an empty location. or delete PackageaName or add some words. such as "google" to "googledfdfgv". Than reboot the app.
You can change location by send broadcast.
And problem send email to [email protected]
Here is a link for the app.
http://www.amazon.com/gp/aw/d/B016POBII2/ref=mp_s_a_1_1?qid=1445548340&sr=8-1&pi=AC_SX110_SY165_QL70&keywords=lataclysm
Try and get it on Play Store.
Also let everyone know they can download the module from within Xposed installer.
Are there any instructions? The help tab on the app isn't in English
If you could please include in the OP a detailed description of the module and an explanation on how to use it correctly.
It works fine!
To fake location for apps you just go to package name , tap on one, lets say Google Play Store and it will be copied (com.android.vending) and then you go to settings and paste it under either task 1 or task 2. You can change the location for either task and it works. I haven't tried multiple package names under a task but I believe you just have to place a comma between the names.
{
"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"
}
Brolord said:
To fake location for apps you just go to package name , tap on one, lets say Google Play Store and it will be copied (com.android.vending) and then you go to settings and paste it under either task 1 or task 2. You can change the location for either task and it works. I haven't tried multiple package names under a task but I believe you just have to place a comma between the names.
Click to expand...
Click to collapse
Was hoping that the developer would enlighten us with full details, but thank you for chiming. I havent played with it yet, what are your findings?
HasH_BrowN said:
Was hoping that the developer would enlighten us with full details, but thank you for chiming. I havent played with it yet, what are your findings?
Click to expand...
Click to collapse
Well I tried putting ‘android’ as the package name and restarted my phone and it has the fake location working for every app on my phone. I'm getting access to US playstore without a VPN but your location can still be traced from your IP address
Brolord said:
Well I tried putting ‘android’ as the package name and restarted my phone and it has the fake location working for every app on my phone. I'm getting access to US playstore without a VPN but your location can still be traced from your IP address
Click to expand...
Click to collapse
HI.You can add multiple keywords,It's unneccessary with keyword such as “android” “com” or “.”.In my county ,we can access US Google Play with shadowsocks,It's no relationship with the position.Google Now must be with a US NetworkOperators to use.
TASK2 doesn‘t hack NetworkOperatorsCode because some domestic application can not be located with foreign NetworkOperatorsCode.
Sorry for my poor English.
12gage said:
Are there any instructions? The help tab on the app isn't in English
Click to expand...
Click to collapse
You can just use it with default settings to see the changes in Google Maps and twitter.I will translate help tab later.
HasH_BrowN said:
Here is a link for the app.
http://www.amazon.com/gp/aw/d/B016POBII2/ref=mp_s_a_1_1?qid=1445548340&sr=8-1&pi=AC_SX110_SY165_QL70&keywords=lataclysm
Try and get it on Play Store.
Also let everyone know they can download the module from within Xposed installer.
Click to expand...
Click to collapse
Thanks for you help.
HasH_BrowN said:
If you could please include in the OP a detailed description of the module and an explanation on how to use it correctly.
Click to expand...
Click to collapse
You can just use it with default settings to see the changes in Google Maps and twitter.I will translate help tab later.
can someone tell me what I should enter if I want to fake Verizon?
12gage said:
can someone tell me what I should enter if I want to fake Verizon?
Click to expand...
Click to collapse
verizon
lataclysm said:
verizon
Click to expand...
Click to collapse
I figured that what I put for the top line, I was wondering if I need to put something different for the other two lines
Sent from my SM-N910P using Tapatalk
12gage said:
I figured that what I put for the top line, I was wondering if I need to put something different for the other two linesView attachment 3515703
Sent from my SM-N910P using Tapatalk
Click to expand...
Click to collapse
This two lines just for some app only to US users,such as Google Now.
lataclysm said:
This two lines just for some app only to US users,such as Google Now.
Click to expand...
Click to collapse
Thank you, I am in the US however. I'm trying to spoof Verizon on the NFL app to get the NFL Network. I try just changing the top line and it didn't work, any suggestions?
if I change anything, allways I am getting Nanjing as location..hm
Could you post a screenshot?
Spirit81 said:
if I change anything, allways I am getting Nanjing as location..hm
Click to expand...
Click to collapse
Could you post a screenshot?
12gage said:
Thank you, I am in the US however. I'm trying to spoof Verizon on the NFL app to get the NFL Network. I try just changing the top line and it didn't work, any suggestions?
Click to expand...
Click to collapse
I can't sign up it ,it need a 10-digit mobile number.
The address below can be used.
1600 PENNSYLVANIA NW AV RM 2 WASHINGTON DC 20006
38.8966674,-77.0363869,100,7997,46822,White House
If they don't provide services in physical device,it's useless to fake location.

Categories

Resources