[MUST SEE]All Rom Settings of S4 Google Edition ROM - Galaxy S 4 i9505 Android Development

Check this out, I found this in GlobalConfig.jar, many many many switches to regulate the rom! Maybe we can fix sim this way
I'm currently playing around with the settings, but changing these bools can make serious rom changes!
If the settings make a difference we have tons of features to disable/enable as we like
To large to say in text. so attached the file, Really hope those bools really are affected by changing its value
example of some pin settings:
Code:
.field public static final GLOBALCONFIG_RIL_SIM_BLOCK_IMSI_CSIM:Z = false
.field public static final GLOBALCONFIG_RIL_SIM_BROADCAST_NO_SIM_NOTY:Z = false
.field public static final GLOBALCONFIG_RIL_SIM_DEVICEPIN:Z = false
.field public static final GLOBALCONFIG_RIL_SIM_EF_EXT5_ADF:Z = false
.field public static final GLOBALCONFIG_RIL_SIM_GET_CARD_STATUS:Z = true
.field public static final GLOBALCONFIG_RIL_SIM_HOT_SWAP:Z = false
.field public static final GLOBALCONFIG_RIL_SIM_ISPSERVICE:Z = false
.field public static final GLOBALCONFIG_RIL_SIM_KDDI_OTA:Z = false
.field public static final GLOBALCONFIG_RIL_SIM_MSISDN_SUPPORT_WILDCHAR:Z = false
.field public static final GLOBALCONFIG_RIL_SIM_PERMANENT_BLOCK:Z = false
.field public static final GLOBALCONFIG_RIL_SIM_PHONEBOOKAPI:Z = true
.field public static final GLOBALCONFIG_RIL_SIM_PLMNACTION_INTENT:Z = false
.field public static final GLOBALCONFIG_RIL_SIM_SUPPORT_3GPP_CDMA:Z = false
.field public static final GLOBALCONFIG_RIL_SIM_SUPPORT_ICCID_CDMA:Z = false
.field public static final GLOBALCONFIG_RIL_SIM_TYPE:Z = false
.field public static final GLOBALCONFIG_RIL_SIM_UPDATE_OTASP_USING_MIN:Z = false
.field public static final GLOBALCONFIG_RIL_SIM_USA_CDMA_ID_EXTENED:Z = false
.field public static final GLOBALCONFIG_RIL_SIM_USE_PHONEBOOK_CACHE:Z = true
or some other general settings, everything is there:
Code:
eld public static final GLOBALCONFIG_SETTINGS_ADD_GUIDED_TOURS_MENU_IN_HELPAPP:Z = false
.field public static final GLOBALCONFIG_SETTINGS_ALTERNATIVE_SMARTSWITCH_WIDGET:Z = false
.field public static final GLOBALCONFIG_SETTINGS_BLOCK_DISABLE_BUTTON_FOR_SOME_APPLICATIONS:Z = false
.field public static final GLOBALCONFIG_SETTINGS_CAMERA_ONLY_MODEL:Z = false
.field public static final GLOBALCONFIG_SETTINGS_DATA_ONLY_MODEL:Z = false
.field public static final GLOBALCONFIG_SETTINGS_DEFAULT_LOCKSCREEN_AS_PERSONAL_MESSAGE:Z = true
.field public static final GLOBALCONFIG_SETTINGS_DISABLE_ANIMATION_SCALE:Z = false
.field public static final GLOBALCONFIG_SETTINGS_DISABLE_APN_CHANGE_WHEN_TETHERING_ACTIVATED:Z = false
.field public static final GLOBALCONFIG_SETTINGS_DISABLE_AUDIO_APPLICATION:Z = true
.field public static final GLOBALCONFIG_SETTINGS_DISABLE_LOCK_SCREEN_RIPPLE_EFFECT:Z = false
.field public static final GLOBALCONFIG_SETTINGS_DISABLE_PSM_BROWSER:Z = false
Here some more in CustFeature.jar
Code:
.field public static final CUSTFEATURE_APPFW_DEFAULT_HARDWAREACCEL:Z = true
.field public static final CUSTFEATURE_APPFW_LOCKSCREEN_MEDIA_WIDGET:Z = true
.field public static final CUSTFEATURE_APPFW_LOCKSCREEN_TICKER:Z = true
.field public static final CUSTFEATURE_CALL_IMSVT_SUPPORT:Z = false
.field public static final CUSTFEATURE_CAMERA_DEFAULT_DESTINATION:Z = false
Settings hidden everywhere!
edit: just found the lamest most useless jar file of my life, called com.samsung.device.jar
this is only whats in it :')
Code:
.class public final Lcom/samsung/device/Features;
.super Ljava/lang/Object;
.source "Features.java"
# static fields
.field public static final VERSION:Ljava/lang/String; = "1.0"
# direct methods
.method public constructor <init>()V
.locals 0
invoke-direct {p0}, Ljava/lang/Object;-><init>()V
return-void
.end method
.method public static isSamsungDevice()Z
.locals 1
const/4 v0, 0x1
return v0
.end method
What would happen if you change it to 0 ? It would become AOSP ? XD

There is more! An CPU Profile inside an codeauora jar file.
Code:
package org.codeaurora;
public class Performance
{
public static final int ALL_CPUS_FREQ_NONTURBO_MAX = 2314;
public static final int ALL_CPUS_FREQ_TURBO_MAX = 2319;
public static final int ALL_CPUS_PWR_CLPS_DIS = 256;
public static final int CPU0_FREQ_NONTURBO_MAX = 522;
public static final int CPU0_FREQ_TURBO_MAX = 527;
public static final int CPU1_FREQ_NONTURBO_MAX = 778;
public static final int CPU1_FREQ_TURBO_MAX = 783;
public static final int CPU2_FREQ_NONTURBO_MAX = 1034;
public static final int CPU2_FREQ_TURBO_MAX = 1039;
public static final int CPU3_FREQ_NONTURBO_MAX = 1290;
public static final int CPU3_FREQ_TURBO_MAX = 1295;
public static final int CPUOPT_CPU0_FREQMIN = 2;
public static final int CPUOPT_CPU0_PWRCLSP = 1;
public static final int CPUOPT_CPU1_FREQMIN = 3;
public static final int CPUS_ON_2 = 1794;
public static final int CPUS_ON_3 = 1795;
public static final int CPUS_ON_MAX = 1796;
public static final int REQUEST_FAILED = -1;
public static final int REQUEST_SUCCEEDED = 0;
private static final String TAG = "Perf";
private int handle = 0;
private native int native_cpu_setoptions(int paramInt1, int paramInt2);
private native void native_deinit();
private native int native_perf_lock_acq(int paramInt1, int paramInt2, int[] paramArrayOfInt);
private native int native_perf_lock_rel(int paramInt);
public int cpuSetOptions(int paramInt1, int paramInt2)
{
return native_cpu_setoptions(paramInt1, paramInt2);
}
protected void finalize()
{
native_deinit();
}
public int perfLockAcquire(int paramInt, int[] paramArrayOfInt)
{
this.handle = native_perf_lock_acq(this.handle, paramInt, paramArrayOfInt);
int i = this.handle;
int j = 0;
if (i == 0)
j = -1;
return j;
}
public int perfLockRelease()
I will soon post whole framework/apps decompiled as best as possible (in java sources but not directly compilable)

Amazing!
Good Work as always

nolinuxnoparty said:
Amazing!
Good Work as always
Click to expand...
Click to collapse
Thanks, I'm looking through all sources, and what I find kinda weird is that samsung implemented all their extra's in the framework but there are no options to turn it off or on, or even use it all all XD
Soon I will start posting mods, just hate the fact that we have to code smali now instead of precious java code -.- I hate smali

Could this end the confusion whether this is really 4.3 or not. Is it possible that they've just hidden it on purpose?
Sent from my GT-I9505G using Tapatalk 4 Beta

wessel596 said:
Could this end the confusion whether this is really 4.3 or not. Is it possible that they've just hidden it on purpose?
Sent from my GT-I9505G using Tapatalk 4 Beta
Click to expand...
Click to collapse
the sources I took it from is from the 4.2.2 google edition not from the 4.3 one. and you can search through them I also did it but after a while you see so many lines that you :silly::silly::silly::silly: Just think of a keyword that includes what you want to change and you will probably find things, I also searched for "hidden" for example or enabled/disabled

Wow, amazing! It is clear that you are well-deserving of your titles.
Would be nice to eventually see a BroodROM with a lot of tweaks.

Theshawty said:
Wow, amazing! It is clear that you are well-deserving of your titles.
Would be nice to eventually see a BroodROM with a lot of tweaks.
Click to expand...
Click to collapse
Thank you I worked hard for them I have many many products, the i9001 users know this the best. I will also help to make an uber informative wiki page, just as the i9001 one, check it out, its perfect: http://forum.xda-developers.com/wiki/Samsung_Galaxy_S_Plus/GT-I9001 (everything you can think of is in there, its on the 2nd most viewed place on the WHOLE XDA wiki. http://forum.xda-developers.com/wiki/Special:PopularPages
So expect many many content from me, this may be scripts, tutorials, mods, apps, roms, kernels and even more :laugh:
broodROM and broodKernel have prio for me at the i9505, but I first want to explore the i9505 as much as needed, so I will never release crap that doesn't work because I hate that lol

Interesting findings...

broodplank1337 said:
Thank you I worked hard for them I have many many products, the i9001 users know this the best. I will also help to make an uber informative wiki page, just as the i9001 one, check it out, its perfect: http://forum.xda-developers.com/wiki/Samsung_Galaxy_S_Plus/GT-I9001 (everything you can think of is in there, its on the 2nd most viewed place on the WHOLE XDA wiki. http://forum.xda-developers.com/wiki/Special:PopularPages
So expect many many content from me, this may be scripts, tutorials, mods, apps, roms, kernels and even more :laugh:
broodROM and broodKernel have prio for me at the i9505, but I first want to explore the i9505 as much as needed, so I will never release crap that doesn't work because I hate that lol
Click to expand...
Click to collapse
Can't wait to see your work :good:

Found something in /system/bin that can be intresting, I think the S4 can be used as a webcam.
As there is V4L2 support, I came across this:
v4l2-qcamera-app
Please select camera(0-back, 1-front):
0
===========================================
Camera is in preview/video mode now
===========================================
A. Stop preview/video and exit camera.
B. Preview/Video Resolution: SQCIF/QCIF/QVGA/CIF/VGA/WVGA... Default WVGA.
C. Set white balance mode: Auto/Off/Daylight/Incandescent/Fluorescent. Default
Auto.
D. Set exposure metering mode: FrameAverage/CenterWeighted/SpotMetering. Defaul
t CenterWeighted
E. Get control value menu
F. Toggle auto frame rate. Default fixed frame rate
G. ISO changes.
H. Brightness changes.
I. Contrast changes.
J. EV changes.
K. Saturation changes.
L. Set Digital Zoom.
M. Set Sharpness.
N. Take a YUV 420 snapshot
O. Set Anti Flicker in sequence: Off/50Hz/60Hz. Default Off.
P. Toggle special effect mode. Default Off.
Q. HJR changes:
R. LUMA Enable/Disable.
S. Set auto focus
T. Set best-shot mode
U. Set backlight/snow detection mode
V. Take Raw snapshot
W. Toggle strobe flash mode OFF/ON... Default OFF.
X. Toggle LED mode(Off/Auto/On/Torch). Default Off.
Y. Take a snapshot in YUV422 format.
Z. Take Inline Snapshot.
1. Set HDR mode.
Click to expand...
Click to collapse
But it didn't do anything and shut down, but its probably possible in some way, I'm exploring the whole system ^^

broodplank1337 said:
Thank you I worked hard for them I have many many products, the i9001 users know this the best. I will also help to make an uber informative wiki page, just as the i9001 one, check it out, its perfect: http://forum.xda-developers.com/wiki/Samsung_Galaxy_S_Plus/GT-I9001 (everything you can think of is in there, its on the 2nd most viewed place on the WHOLE XDA wiki. http://forum.xda-developers.com/wiki/Special:PopularPages
So expect many many content from me, this may be scripts, tutorials, mods, apps, roms, kernels and even more :laugh:
broodROM and broodKernel have prio for me at the i9505, but I first want to explore the i9505 as much as needed, so I will never release crap that doesn't work because I hate that lol
Click to expand...
Click to collapse
Wow, that is awesome!
My findings here might be of help for you, then.

Theshawty said:
Wow, that is awesome!
My findings here might be of help for you, then.
Click to expand...
Click to collapse
Thank you, thats a better list then "cat proc/partitions"
Code:
cat proc/partitions
major minor #blocks name
7 0 4190 loop0
179 0 15388672 mmcblk0
179 1 12772 mmcblk0p1
179 2 52764 mmcblk0p2
179 3 128 mmcblk0p3
179 4 256 mmcblk0p4
179 5 512 mmcblk0p5
179 6 2048 mmcblk0p6
179 7 512 mmcblk0p7
179 8 512 mmcblk0p8
179 9 16896 mmcblk0p9
179 10 13952 mmcblk0p10
179 11 3072 mmcblk0p11
179 12 3072 mmcblk0p12
179 13 780 mmcblk0p13
179 14 780 mmcblk0p14
179 15 780 mmcblk0p15
179 16 2826240 mmcblk0p16
179 17 8192 mmcblk0p17
179 18 2119680 mmcblk0p18
179 19 6144 mmcblk0p19
179 20 10240 mmcblk0p20
179 21 10240 mmcblk0p21
179 22 10240 mmcblk0p22
179 23 6144 mmcblk0p23
179 24 3072 mmcblk0p24
179 25 8 mmcblk0p25
179 26 9216 mmcblk0p26
179 27 512000 mmcblk0p27
179 28 20480 mmcblk0p28
179 29 9728000 mmcblk0p29
179 32 7879680 mmcblk1
179 33 7878656 mmcblk1p1
254 0 4189 dm-0
Btw lol I just found Kiosk mode launcher, inside framework-res.apk XD
It's for stores to represent their phones (you can only toggle the homescreens, thats all)
This time I found temperatures inside the framework, and what to do with them:
Code:
<ThermistorObserverAP>
<TemperatureTable scenario="default">
<step level="0" temp="470" />
<step level="1" temp="490" />
<step level="2" temp="510" />
<step level="3" temp="530" />
<step level="4" temp="550" />
<step level="5" temp="570" />
<step level="6" temp="590" />
<step level="7" temp="660" />
<step level="8" temp="710" />
</TemperatureTable>
<Action>
<step level="0">
</step>
<step level="1">
<type name="ACL" value="on" />
</step>
<step level="2">
<type name="ARMFreq" value="1400000" />
<type name="ACL" value="on" />
<type name="LCDBrightness" value="250" />
</step>
<step level="3">
<type name="ARMFreq" value="1200000" />
<type name="ChargeCurrent" value="50" />
<type name="ACL" value="on" />
<type name="LCDBrightness" value="230" />
</step>
<step level="4">
<type name="ARMFreq" value="1000000" />
<type name="ChargeCurrent" value="30" />
<type name="ACL" value="on" />
<type name="LCDBrightness" value="200" />
</step>
<step level="5">
<type name="ARMFreq" value="600000" />
<type name="ChargeCurrent" value="30" />
<type name="ACL" value="on" />
<type name="LCDBrightness" value="200" />
</step>
<step level="6">
<type name="ARMFreq" value="600000" />
<type name="ChargeCurrent" value="0" />
<type name="ACL" value="on" />
<type name="LCDBrightness" value="200" />
<type name="Flash" value="off" />
</step>
<step level="7">
<type name="ARMFreq" value="600000" />
<type name="ChargeCurrent" value="0" />
<type name="ACL" value="on" />
<type name="LCDBrightness" value="200" />
<type name="Flash" value="off" />
</step>
<step level="8">
<type name="ARMFreq" value="600000" />
<type name="ChargeCurrent" value="0" />
<type name="ACL" value="on" />
<type name="LCDBrightness" value="200" />
<type name="Flash" value="off" />
<type name="RecordingStop" value="on" />
</step>
</Action>
<TemperatureTable scenario="BenchmarkBooster">
<step level="0" temp="470" />
<step level="1" temp="490" />
<step level="2" temp="510" />
<step level="3" temp="530" />
<step level="4" temp="550" />
<step level="5" temp="570" />
<step level="6" temp="590" />
<step level="7" temp="660" />
<step level="8" temp="710" />
</TemperatureTable>
<Action>
<step level="0">
</step>
<step level="1">
<type name="ACL" value="on" />
</step>
<step level="2">
<type name="ACL" value="on" />
<type name="LCDBrightness" value="250" />
</step>
<step level="3">
<type name="ChargeCurrent" value="50" />
<type name="ACL" value="on" />
<type name="LCDBrightness" value="230" />
</step>
<step level="4">
<type name="ChargeCurrent" value="30" />
<type name="ACL" value="on" />
<type name="LCDBrightness" value="200" />
</step>
<step level="5">
<type name="ChargeCurrent" value="30" />
<type name="ACL" value="on" />
<type name="LCDBrightness" value="200" />
</step>
<step level="6">
<type name="ChargeCurrent" value="0" />
<type name="ACL" value="on" />
<type name="LCDBrightness" value="200" />
<type name="Flash" value="off" />
</step>
<step level="7">
<type name="ARMFreq" value="600000" />
<type name="ChargeCurrent" value="0" />
<type name="ACL" value="on" />
<type name="LCDBrightness" value="200" />
<type name="Flash" value="off" />
</step>
<step level="8">
<type name="ARMFreq" value="600000" />
<type name="ChargeCurrent" value="0" />
<type name="ACL" value="on" />
<type name="LCDBrightness" value="200" />
<type name="Flash" value="off" />
<type name="RecordingStop" value="on" />
</step>
</Action>
</ThermistorObserverAP>

Not as much of a finding as you guys but on 4.3 roms and 4.2.2 GE roms I found when you go into *#0*# in the dialer a test screen pops up. And you can actually do the hover test. I wonder if it can be implimented in some roms
Sent from my SGH-M919 using xda premium

ktetreault14 said:
Not as much of a finding as you guys but on 4.3 roms and 4.2.2 GE roms I found when you go into *#0*# in the dialer a test screen pops up. And you can actually do the hover test. I wonder if it can be implimented in some roms
Sent from my SGH-M919 using xda premium
Click to expand...
Click to collapse
Thanks A hidden menu is always nice ^^

broodplank1337 said:
Thanks A hidden menu is always nice ^^
Click to expand...
Click to collapse
Thanks I don't know if it means anything but I know it all worked
Sent from my SGH-M919 using xda premium

ktetreault14 said:
Thanks I don't know if it means anything but I know it all worked
Sent from my SGH-M919 using xda premium
Click to expand...
Click to collapse
Every small bits help Soon I will be constructing the wiki page , ill grab the template from my previous phones wiki (i9001) which comes at #2 after most visits of the mainpage rofl. I have seen so many incomplete minimal wiki's... (atleast if you're used to the most crowded wiki xd)
I think the wiki is required since then we have a database of usefull information, not everybody will have to ask the same things over and over. you get my point

broodplank1337 said:
Every small bits help Soon I will be constructing the wiki page , ill grab the template from my previous phones wiki (i9001) which comes at #2 after most visits of the mainpage rofl. I have seen so many incomplete minimal wiki's... (atleast if you're used to the most crowded wiki xd)
I think the wiki is required since then we have a database of usefull information, not everybody will have to ask the same things over and over. you get my point
Click to expand...
Click to collapse
Yes that would be amazing
Sent from my SGH-M919 using xda premium

Call recorder integrated in Google Edition ROM
Hello, the mod for recording phone calls?

ktetreault14 said:
Not as much of a finding as you guys but on 4.3 roms and 4.2.2 GE roms I found when you go into *#0*# in the dialer a test screen pops up. And you can actually do the hover test. I wonder if it can be implimented in some roms
Sent from my SGH-M919 using xda premium
Click to expand...
Click to collapse
your findings works on stock rom (MF8)

Related

downloading bar color from stock orange to lite blue, any idea?

What do I need to do to change the downloading bar color from stock orange to lite blue?
thanks
Sent from my Mytouch3g cm6rc2 using XDA App
framework-res.apk
progress_horizontal.xml
thanks, im use to switching drawables .png using ninjamorph. now that i found horizontal progress.xml, how do i change the color? do i have to look for the xml file online? or do u have some that u can upload?
thanks
Sent from my HTC Magic using XDA App
Don't quote me on this, but I believe there's just a numerical value to change in the XML file. I haven't looked myself, but it shouldn't be too hard to find. Open it up in Notepad and take a look around.
...or I could be very wrong if so, sorry
this is the contents of progress_horizontal.xml
If you try to open the xml file from the rom it may not come up.
Grab the one from source and it will display something like this:
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2008 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:id="@android:id/background">
<shape>
<corners android:radius="5dip" />
<gradient
android:startColor="#ff9d9e9d"
android:centerColor="#ff5a5d5a"
android:centerY="0.75"
android:endColor="#ff747674"
android:angle="270"
/>
</shape>
</item>
<item android:id="@android:id/secondaryProgress">
<clip>
<shape>
<corners android:radius="5dip" />
<gradient
android:startColor="#80ffd300"
android:centerColor="#80ffb600"
android:centerY="0.75"
android:endColor="#a0ffcb00"
android:angle="270"
/>
</shape>
</clip>
</item>
<item android:id="@android:id/progress">
<clip>
<shape>
<corners android:radius="5dip" />
<gradient
android:startColor="#ffffd300"
android:centerColor="#ffffb600"
android:centerY="0.75"
android:endColor="#ffffcb00"
android:angle="270"
/>
</shape>
</clip>
</item>
</layer-list>
Click to expand...
Click to collapse
Once you have made your adjustments then rebuild the rom from source and it should work just fine.
You can use this online tool (amongst the dozens of others) to find your appropriate color.
http://www.2createawebsite.com/build/hex-colors.html
thanks, i will keep these informations for future reference. as for now, i will hold back on this project, thanks again. guess we can close this thread
Sent from my HTC Magic using XDA App
kompheak said:
thanks, i will keep these informations for future reference. as for now, i will hold back on this project, thanks again. guess we can close this thread
Sent from my HTC Magic using XDA App
Click to expand...
Click to collapse
okie dokie

[Q] Help: Samsung epic not viewing apps in android market

So I recently made an android app and published it to the market. However, when i search for my app on my Samsung epic 4g it doesnt show up. I know the app is there and it says that i have published it, but it doesnt appear on my epic. Any ideas why this is? In the manifest of the app i set the minSdkVersion to 5 so it shouldnt filter it out right? is there something special i have to add to the manifest for it to see my app? I would appreciate any help. my current manifest looks like this:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android=----
package="send.text.fast"
android:versionCode="2"
android:versionName="1.0" >
<uses-sdk android:minSdkVersion="5" />
<uses-permission android:name="android.permission.SEND_SMS"> </uses-permission>
<uses-permission android:name="android.permission.READ_CONTACTS"> </uses-permission>
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<supports-screens android:smallScreens="true"
android:normalScreens="true" android:largeScreens="true"
android:anyDensity="true">
</supports-screens>
<activity
android:name=".Main"
android:label="@string/app_name"
android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
android:label="@string/app_name"
app_name = don't you have to put the name of the app there? i know html is different, but usually when you didn't do something simple like that, i would get that kind of problem with a webpage. what if you tried doing that?

[MOD][HOW TO]Enable Tegra 4 Graphics on Dead Trigger 2

Instructions
1. First force stop Dead Trigger 2 App in Application settings
2. UNZIP and Just push the attached file to /data/data/com.madfingergames.deadtrigger2/shared_prefs/
3. Done! Enjoy! :laugh:
The Manually method(Reccomended)
1. Force Stop Dead Trigger 2 in settings.
2. Just open up the shared_prefs folder and find the com.madfingergames.deadtrigger2.xml.
3. Next change makes this code the same as this. Just change one value.
Change
Code:
< int name=”UnityGraphicsQuality” value=”[COLOR="Red"][B]3[/B][/COLOR]″ / >
Change
Code:
< int name=”OptionsGraphicDetail” value=”[B][COLOR="Red"]3[/COLOR][/B]″ / >.
4. Save and relaunch, now you have Tegra Graphics for your Non-Tegra Device
You may experience frame drops at times but that's to be expected. These graphics are intense. But, S800 handles it very well!
Works on any device, must be rooted
Thank you, works great on my N9005
What isthe meaning of 0440?
I can enable 044 doing read group and others, but 0440 can't with any combination.
kersh said:
What isthe meaning of 0440?
I can enable 044 doing read group and others, but 0440 can't with any combination.
Click to expand...
Click to collapse
The 0 to the far left is Used to set setuid, setgid, or sticky bit, you may not see it in your file browser but 0440 or 440 is okay
As long as the permission looks like the photo your good.
Sent from my SM-N900T using Tapatalk 2
Going to add a link to this in the Sprint thread as well. Thanks again!
nolimit06 said:
Going to add a link to this in the Sprint thread as well. Thanks again!
Click to expand...
Click to collapse
Alright, you and anyone else are more than welcome to.
Sent from my SM-N900T using Tapatalk 2
lm that guy said:
1. First force stop Dead Trigger 2 App in Application settings
2. UNZIP and Just push the attached file to /data/data/com.madfingergames.deadtrigger2/shared_prefs/
3. Then change permission to 440
4. Done! Enjoy! :laugh:
You will experience a tad bit of frame drops at times but that's to be expected since the graphics were optimized for only Tegra 4. BUT, S800 handles it very well!
Works on any device, must be rooted
Click to expand...
Click to collapse
Do you see ultra high in settings? I see only low and high even after mod
Sent from my Nexus 7 using Tapatalk
gautampw said:
Do you see ultra high in settings? I see only low and high even after mod
Sent from my Nexus 7 using Tapatalk
Click to expand...
Click to collapse
That's just how it is but max graphics are enabled. Just make sure you don't touch those or you will have to reapply the mod.
Sent from my SM-N900T using Tapatalk 2
DEAD TRIGGER 2 Ultra High Graphics
Google "DEAD TRIGGER 2 [Ultra High Graphics] v0.02.1 APK" for Ultra High Graphics on any device
No root required!
I love
that a 3kb file was compressed into a 1kb zip!
I know this is a noob question but how do you change the permissions please?
Smash41 said:
I know this is a noob question but how do you change the permissions please?
Click to expand...
Click to collapse
Download Root explorer. inside root explorer tap on the file you want to change the permissions you will see list of options>>>> select permissions. then you will know what to do from there.
---------- Post added at 03:12 PM ---------- Previous post was at 03:01 PM ----------
please how would my Motorola droid Razr XT912 handle this game on ultra high settings. I play dead trigger1 on ultra with mod. its plays at 30fps-40fps it can dip low to 19fps in a twinkle of an eye. and rerurns back to 30fps. overall gameplay is smooth but i want to know how dead trigger2 will perform. on my razr
infinitycane said:
Download Root explorer. inside root explorer tap on the file you want to change the permissions you will see list of options>>>> select permissions. then you will know what to do from there.
---------- Post added at 03:12 PM ---------- Previous post was at 03:01 PM ----------
please how would my Motorola droid Razr XT912 handle this game on ultra high settings. I play dead trigger1 on ultra with mod. its plays at 30fps-40fps it can dip low to 19fps in a twinkle of an eye. and rerurns back to 30fps. overall gameplay is smooth but i want to know how dead trigger2 will perform. on my razr
Click to expand...
Click to collapse
You might be in for a lag fest If your rooted you can try and revert back easily by changing the in app graphic settings.
Sent from my SM-N900T using Tapatalk 2
Cool nice thread lets see how my tegra 3 handles it
Thanks
Sent from my HTC One X using Tapatalk 2
works well on my nexus 4, thanks !
That made difference
Thanks
peteyboy24 said:
works well on my nexus 4, thanks !
Click to expand...
Click to collapse
where did you find the permission in the text?
[ <?xml version='1.0' encoding='utf-8' standalone='yes' ?>
<map>
<int name="OptionsMute" value="1" />
<float name="OptionsReloadButtonY" value="0.0" />
<float name="OptionsMusicVolume" value="1.0" />
<float name="OptionsSensitivity" value="0.7" />
<float name="OptionsGadgetButtonX4" value="0.0" />
<int name="OptionsInvertYAxis" value="0" />
<float name="OptionsWeaponButtonX" value="0.0" />
<float name="OptionsWeaponButtonY" value="0.0" />
<float name="OptionsReloadButtonX" value="0.0" />
<int name="UnityGraphicsQuality" value="3" />
<float name="OptionsGadgetButtonX3" value="0.0" />
<float name="OptionsAimButtonX" value="0.0" />
<float name="OptionsGadgetButtonX2" value="0.0" />
<float name="OptionsGadgetButtonX1" value="0.0" />
<float name="OptionsGadgetButtonX0" value="0.0" />
<int name="OptionsLeftHandControlsNeedUpdate" value="0" />
<float name="OptionsMoveStickY" value="0.0" />
<float name="OptionsMeleeButtonY" value="0.0" />
<float name="OptionsMeleeButtonX" value="0.0" />
<string name="PUNCloudBestRegion">US</string>
<int name="OptionsLeftHandAiming" value="0" />
<int name="ShowBlood" value="1" />
<int name="FirstRun" value="2" />
<float name="OptionsMoveStickX" value="0.0" />
<float name="OptionsSoundVolume" value="1.0" />
<int name="OptionsControlScheme" value="0" />
<float name="OptionsAimButtonY" value="0.0" />
<int name="OptionsLanguage" value="1" />
<int name="OptionsSubtitles" value="1" />
<int name="Screenmanager Is Fullscreen mode" value="0" />
<float name="OptionsPauseButtonX" value="0.0" />
<int name="Screenmanager Resolution Width" value="1920" />
<float name="OptionsPauseButtonY" value="0.0" />
<int name="OptionsGraphicDetail" value="2" />
<int name="OptionsControlStyle" value="1" />
<float name="OptionsFireButtonX" value="0.0" />
<float name="OptionsFireButtonY" value="0.0" />
<int name="Screenmanager Resolution Height" value="1080" />
<float name="OptionsGadgetButtonY0" value="0.0" />
<int name="Intro" value="1" />
<float name="OptionsGadgetButtonY2" value="0.0" />
<float name="OptionsGadgetButtonY1" value="0.0" />
<float name="OptionsGadgetButtonY4" value="0.0" />
<float name="OptionsGadgetButtonY3" value="0.0" />
</map>]
that was all what i get! so tell me please where is it? or where i should put the value in?
Sent from my Nexus 4 using xda app-developers app
nexuses said:
where did you find the permission in the text?
that was all what i get! so tell me please where is it? or where i should put the value in?
Sent from my Nexus 4 using xda app-developers app
Click to expand...
Click to collapse
change this line:
Code:
<int name="OptionsGraphicDetail" value="2" />
to this:
Code:
<int name="OptionsGraphicDetail" value="[B][COLOR="Red"]3[/COLOR][/B]" />
nexuses said:
where did you find the permission in the text?
[ <?xml version='1.0' encoding='utf-8' standalone='yes' ?>
<map>
<int name="OptionsMute" value="1" />
<float name="OptionsReloadButtonY" value="0.0" />
<float name="OptionsMusicVolume" value="1.0" />
<float name="OptionsSensitivity" value="0.7" />
<float name="OptionsGadgetButtonX4" value="0.0" />
<int name="OptionsInvertYAxis" value="0" />
<float name="OptionsWeaponButtonX" value="0.0" />
<float name="OptionsWeaponButtonY" value="0.0" />
<float name="OptionsReloadButtonX" value="0.0" />
<int name="UnityGraphicsQuality" value="3" />
<float name="OptionsGadgetButtonX3" value="0.0" />
<float name="OptionsAimButtonX" value="0.0" />
<float name="OptionsGadgetButtonX2" value="0.0" />
<float name="OptionsGadgetButtonX1" value="0.0" />
<float name="OptionsGadgetButtonX0" value="0.0" />
<int name="OptionsLeftHandControlsNeedUpdate" value="0" />
<float name="OptionsMoveStickY" value="0.0" />
<float name="OptionsMeleeButtonY" value="0.0" />
<float name="OptionsMeleeButtonX" value="0.0" />
<string name="PUNCloudBestRegion">US</string>
<int name="OptionsLeftHandAiming" value="0" />
<int name="ShowBlood" value="1" />
<int name="FirstRun" value="2" />
<float name="OptionsMoveStickX" value="0.0" />
<float name="OptionsSoundVolume" value="1.0" />
<int name="OptionsControlScheme" value="0" />
<float name="OptionsAimButtonY" value="0.0" />
<int name="OptionsLanguage" value="1" />
<int name="OptionsSubtitles" value="1" />
<int name="Screenmanager Is Fullscreen mode" value="0" />
<float name="OptionsPauseButtonX" value="0.0" />
<int name="Screenmanager Resolution Width" value="1920" />
<float name="OptionsPauseButtonY" value="0.0" />
<int name="OptionsGraphicDetail" value="2" />
<int name="OptionsControlStyle" value="1" />
<float name="OptionsFireButtonX" value="0.0" />
<float name="OptionsFireButtonY" value="0.0" />
<int name="Screenmanager Resolution Height" value="1080" />
<float name="OptionsGadgetButtonY0" value="0.0" />
<int name="Intro" value="1" />
<float name="OptionsGadgetButtonY2" value="0.0" />
<float name="OptionsGadgetButtonY1" value="0.0" />
<float name="OptionsGadgetButtonY4" value="0.0" />
<float name="OptionsGadgetButtonY3" value="0.0" />
</map>]
that was all what i get! so tell me please where is it? or where i should put the value in?
Sent from my Nexus 4 using xda app-developers app
Click to expand...
Click to collapse
that's okay.. but this is the permissions which I saw.. and I don't know how to set them to that value!
Sent from my Nexus 4 using xda app-developers app
lm that guy said:
change this line:
Code:
<int name="OptionsGraphicDetail" value="2" />
to this:
Code:
<int name="OptionsGraphicDetail" value="[B][COLOR="Red"]3[/COLOR][/B]" />
Click to expand...
Click to collapse
I just tried it, there has been a observed improvement in the quality of graphics.. thanks
Sent from my Nexus 4 using xda app-developers app

HCE Implementation question

hi,
I developed and HCE service in kitkat and I put in the manifest this -
<service
android:name="com.bimo.verifonewallet.service.MyHostApduService"
android:exported="true"
androidermission="android.permission.BIND_NFC_SERVICE" >
<intent-filter>
<action android:name="android.nfc.cardemulation.action.HOST_APDU_SERVICE" />
</intent-filter>
<meta-data
android:name="android.nfc.cardemulation.host_apdu_service"
android:resource="@xml/apduservice" />
</service>
when the phone has NFC field (in A technology) then the service is triggered and the func onCreate() is executed and after the transaction is finished the func onDestroy() is invoked.
therefore when I do startService() and stopService() it has no effect.
can I control if the service be invoked or not ?
thanks a lot,
Nir

The latest system update malware prei stalled

im going crazy digging for the cause of my problems.first i love one plus .and its probably not there fault.. everything is being hacked ..spied on.so im find interesting things as i dig .and i apologize im in a hurry im at work...let me know<?xml version='1.0' encoding='utf-8' standalone='yes' ?>
<p att="wns.heartbeat" />
<p att="agoo_action_heart" />
<p att="agoo_action_re_connect" />
<p att="com.xiaomi.push.PING_TIMER" />
<p att="com.netease.pushservice.core.PushLMessageService_V2" />
<p att="com.sina.heartbeat.action.1004" />
<p att="com.sohu.push.action.HEARTBEAT_WAKEUP" />
<p att="com.sohu.push.action.HEARTBEAT" />
<p att="com.youku.pushsdk.pushservice.ALARM_TICK" />
<p att="action_keep_alive_after_send_end" />
<p att="com.eg.android.AlipayGphone.push.action.AMNET_ALARMTIMER" />
<p att="ctrip.android.viewushsdk.action.response_timeout" />
<p att="com.baidu.android.push.intent.KEEP_ALIVE" />
<p att="AlarmTaskSchedule.com.sdu.didi.psnger" />
<p att="com.taobao.accs.intent.action.COMMAND" />
<p att="alarm.push.timer.action" />
<p att="push_heart_beat" />
<p att="anetwork.channel.intent.action.COMMAND" />
<p att="com.dianping.push.KEEP_ALIVE" />
<p att="com.baidu.news.action.heartbeart" />
<p att="com.android.eguan.drivermonitor" />
<p att="com.jingdong.jdpush.msgcenter.action" />
<p att="com.tencent.android.tpush.service.channel.heartbeatIntent" />
<p att="com.xunlei.xlkdemo.timer.action_" />
<p att="com.xunlei.acc.sdk.vip.keepLiveTimerAlarm.40.1471910163480" />
<p att="com.tencent.mtt.service.ACTION_HEARTBEAT" />
<p att="com.android.coll" />
<p att="com.skynet.push.message.send.return" />
<p att="ctrip.android.viewushsdk.action.reconnect" />
<p att="ctrip.android.pushsdk.heartbeat" />
<p att="com.eg.android.AlipayGphone.push.action.CHECK" />
<p att="com.dianping.push.RECONNECT" />
<p att="com.sankuai.mtmp.keepalive.send" />
<p att="iQiyiPushService.SCHEDULE_CONNECT" />
<p att="com.taobao.taobao.intent.action.COCKROACH" />
<p att="action_ping" />
<p att="com.ifeng.news2.action.HEART_BEAT" />
<p att="netease.pomelo.push.dl.new.messageservice_V1" />
<p att="com.baidu.news.action.push_start" />
<p att="com.roger.alarm" />
<p att="com.baidu.kspush.homework.action.check_service" />
<p att="com.youku.pushsdk.pushservice.ALARM_DATA_COLLECT" />
<p att="com.gieseckedevrient.android.intent.PING.com.cmbchina.ccd.pluto.cmbActivity" />
<p att="io.rong.push.intent.action.HEART_BEAT" />
thetes a couple of strings there youll find it
theres slot more ill post later
Ouch.. Someone explain I do hope this is not true.
sorry im still working...and theres a possibility it might not be pre installed..but if you all recall the time i posted about all builds from factory had malware spyware pre installed...and few months later they finally announced that there were pre installed malware and spyware ...its just how everything is these days .every app you name it .i spend hours upon hours a week digging and looking.. weird hobby i know ....ill try to post the rest when i get off
by the way if you are as crazy about whats coming or going .the a really bad ass app from the market ..?.? connects..?? download and watch
borisbwhacking said:
by the way if you are as crazy about whats coming or going .the a really bad ass app from the market ..?.? connects..?? download and watch
Click to expand...
Click to collapse
There are alot of things that raise many questions like this
att="com.xiaomi.push.PING_TIMER
This is completely different OEM all together.
This is another reason why I will personally never trust/use their stock software
zelendel said:
There are alot of things that raise many questions like this
att="com.xiaomi.push.PING_TIMER
This is completely different OEM all together.
This is another reason why I will personally never trust/use their stock software
Click to expand...
Click to collapse
yes your right .it came through ota...im finding major issues keylogger snapshots .theres alot ...ive been watching every connection i can and trace it back..its a weird hobby i know.but if there peeping at me .then uts my turn to watch them.lol
i flashed kali over it after i found these .i have it on all my devices.kali that is .. everything has a virus or spyware.its almost you can't avoid it anymore
well then, since you like this stuff, i encourage you brother to release a debloater script :good:
So good of you to post about spyware without any proof or technical details whatsoever. This is so helpful to everyone.
P.S. I recently found that OnePlus comes pre-installed with system app which can be triggered to wait for the user to grab their phone (uses accelerometers, prox sensor and generic facial recognition) and then overloads the battery to explode the phone. Holy **** did you know this?!!!!111 I am at work right now so I can't post details but I definitely, definitely will later!
This thread is bad and you should feel bad.
Keep hacking the Gibson champ.
look what i found...https://www.engadget.com/2017/10/11/oneplus-oxygenos-data-anonymity/
Darkje said:
Ouch.. Someone explain I do hope this is not true.
Click to expand...
Click to collapse
its true look here https://www.engadget.com/2017/10/11/oneplus-oxygenos-data-anonymity/.im very disappointed in them ..and im not crazy...
borisbwhacking said:
its true look here https://www.engadget.com/2017/10/11/oneplus-oxygenos-data-anonymity/.im very disappointed in them ..and im not crazy...
Click to expand...
Click to collapse
That's not malware.
Puddi_Puddin said:
That's not malware.
Click to expand...
Click to collapse
That depends on your definition of it. Something like this without disclosure upfront can be see as Malware depending on security requirements.
It seems the Notification activity name of Chinese App…As we know,the GCM(Google Cloud Message) push service is not available in China.So many of Chinese App have their own push service.Like the xiaomi.push,is a push service which maintained by Xiaomi, used by many Chinese Apps.
delude101 said:
Keep hacking the Gibson champ.
Click to expand...
Click to collapse
ahh we have a smart ass in the crowd ..theres always one if not several.hiding behind the screen talking **** .its the only place you can hide and be talking ****...

Categories

Resources