Quantcast
Channel: xda-developers - Android Software and Hacking General [Developers Only]
Viewing all 3614 articles
Browse latest View live

Apk resource Protector: stop Apk edit tools


password protected pdf file on my htc one and i dont know where it came from

$
0
0
i was just browsing my files the other day and i found this pdf file on my phone that i cant access without a password, i dont know how it got there or where it came from but it is kinda driving me crazy and i have tried all the tutorials i can find to open it. nothing is working. please help me get into this file. my phone is the htc one and i am with verizon . thank you for your time.

Us t-mobile s7edge giveway to developer

$
0
0
I am giving away a new S7edge to a developer of my choice to work on and create root/unlock for the snapdragon version.
If you feel you are competent enough to provide root for this device then send me a PM.
If you feel you know a dev that can do it if they had the device in hand then post their name here in this thread or send me a PM. In the end I choose who gets it based on their background. I will pay for shipping, etc for the developer of choice. All I ask is for you to work diligently on this device.

This device is the future of locked, unrootable devices. The sooner we get through this barrier the better for the sake of all future devices. This isn't the end, only the beginning.



There will be no developer bashing in this thread and will have this thread closed immediately if it happens.

NoFrills CPU - Asking for Root on Rooted phone

$
0
0
Hi,

All other apps that require root seem to request it - NoFrills CPU doesn't and consequently offers me no option other than to close the app. Just says "...Root access requires..." - without the usual dialogue affording me the chance to grant it.

Anyone else seen this?

Trying to get a little more life out of my Galaxy S6 by trying a few tweaks.

Thanks...

Flash Red Kernel for BQ Aquaris E4.5

$
0
0


I'm Proud to present my first kernel for my mobile BQ Aquaris E4.5. I know that is a Spanish phone and maybe nobody of this forum have it :rolleyes:, but I think that I must share it! :fingers-crossed:

Features:


*-Compiled with the tool gcc v4.7
*-Upgraded to Linux kernel 3.4.95
*-GOVERNORS:
*ThunderX (Optimized governor for mtk procesors)
*Smartass V2
*Nightmare
*Pegasusq
*Sakuractive
*Zzmove
*lulzactiveq

*-SCHEULDERS:
*SIO
*fifo
*row
*fiops
*zen
*vr

*-Fix the vulnebarility CVE-2015-6640


Installation:
*-Download the .zip
*-Go to the recovery
*-Flash it!
*-Reboot and enjoy :fingers-crossed:

Downloads:

*.-Kernel Flash Red for the stock 1.5.2 bq rom: HERE

Sources:
BQ sources :p : https://github.com/Pablito2020/Aquar...e/aquaris-E4.5

XDA:DevDB Information
Flash Red Kernel , Kernel for BQ Aquaris E4.5 only

Contributors
Pablito2020
JBCDev
Version Information
Status: Stable
Current Stable Version: 2.0
Stable Release Date: 2016-05-27

Automates patcher tool

$
0
0
Hi,
I've been looking for a tool or script to replace hex sequence in binary file in Windows. Indeed, i found this script :
Code:

Imports System.Runtime.CompilerServices
Imports System.IO

Public Class FinduReplaceHex
Private Shared ReadOnly FindHex As Byte() = {&H75, &HF6, &HF3}
Private Shared ReadOnly ReplaceHex As Byte() = {&HA2, &HE3, &H4B}

<MethodImpl(MethodImplOptions.NoInlining)> Private Shared Function DP(sequence As Byte(), position As Integer) As Boolean
If position + FindHex.Length > sequence.Length Then
Return False
End If

For i As Integer = 0 To FindHex.Length - 1
If FindHex(i) <> sequence(position + i) Then
Return False
End If
Next
Return True
End Function

Private Sub Patch_Click(sender As Object, e As EventArgs) Handles Patch.Click

Dim DT As String = Environment.GetFolderPath(Environment.SpecialFolder.Desktop)
Dim FD As Byte() = File.ReadAllBytes(DT & "\App.dll")

For F As Integer = 0 To FD.Length - 1
If Not DP(FD, F) Then
Continue For
End If
For R As Integer = 0 To FindHex.Length - 1
FD(F + R) = ReplaceHex®
Next
Next

If System.IO.File.Exists(DT & "\App.dll") Then
System.IO.File.Move(DT & "\App.dll", DT & "\App.dll.backup")
File.WriteAllBytes(DT & "\App Method 3.dll", FD)

Else
'Write Other Codes

End If

End Sub

End Class

The only problem is that I want to be able to use wildcards like this :
Search for F4 B3 ?? 12 and replace F4 BE 65 EA

Thanks in advance

Non Android Kernel

$
0
0
It's possible to replace the boot.img (that's the linux kernel) with any different arm compiled kernel?
I think that if something will go wrong can be anything restored from recovery because the recovery isn't integrated in the boot image.
Thanks in advance

INIT.D SUPPORT Kernel method *adds INIT.D folder*

$
0
0
HI guys

I just discovered a way to make init.d work on my rom and it should work on other roms as long as everything is followed down to the T

Basically there are 5 things you need to do

1: BootImageExtractor *links to follow* need to get it from my other laptop
2: Notepad++ *ask google*
3: Rashr *or any other apps that can flash kernels I just use this one*
4: Rooted Device
5: Rootexplorer *or any apps that let you dig deep into the root of THE android*

Ok lets start

First up is to unpack your boot.img and you should see your RAMDISK folder
now go ahead and look for init.rc and open it with notepad++ now add this code either at the very top or below the import scripts.

Code:

import /init.d.sh
You can use any name really as long as you have the same import script and name of the sh file

Now on to the next step which is to create a .sh file
Open up notepad++ and add this code in

Code:

#!/system/bin/sh

on property:sys.boot_completed=1
    start sysinit
   
service sysinit /sbin/sysinit.sh
    oneshot
    class late_start
    user root
    group root
    disabled

Now save as and use all types and name it init.d.sh and be sure its in the ramdisk folder

Having fun yet?

now last but not the least the sysinit.sh file!
same method as above but with a different code and is saved in the sbin folder

Code:

#!/system/bin/sh

mount -o remount,rw /;
mount -o rw,remount /system

# init.d support
if [ ! -e /system/etc/init.d ]; then
  mkdir /system/etc/init.d
  chown -R root.root /system/etc/init.d
  chmod -R 755 /system/etc/init.d
fi

# start init.d
for FILE in /system/etc/init.d/*; do
  sh $FILE >/dev/null
done;

And there you have it folks!
I would like to credit where I got the idea from but alas the guy who gave me the boot.img says he got it from another site and got it randomly.... so would like to thank my buddy Car *actually a human not a machine*

I already tried using the 00test script by Ryuinferno to see if it works and after two reboots I found the test log file in /data

I am new at this so please be gentle and I am still working on this because I want to integrate the scripts of Ryuinferno into the kernel *scripts being the 00test and the 00setperm* he will allow me to use them.

Again thanks XDA! my new home

Feedback please ^_^

5 Coins

$
0
0
Collect 5 coins in this twisted mind boggling game, to unlock and advance to the next level.
Each level promises new gameplay with moving platforms and objects to prevent you from advancing to the next level.

Watch out for the axes and gears. These hard objects will break your ball with one touch.

Avoid hitting the edges and bottom of the screen, this too spells death.

High Quality Graphics & Special Effects
100 Insane Levels

Download for free on Google Play - https://play.google.com/store/apps/d...arts.fivecoins


1
2

Does anyone have a Facedancer21? Want to test something out (LG G5 Possible Root)

$
0
0
Hi! If anyone has the Facedancer21, please let me know. I am have USB Redirector installed and would be able to emulate it on my computer.
I would like to try using CVE-2016-2384 to root the LG G5, but I do not own the Facedancer21 which is required for this to work.

Please let me know! skype: honestly.annoying

List of my tutorials (updated to 01/06/2016)

$
0
0
Hello guys al my tuts are for all cm based and stock roms :p

I would like to list my tutorials at one place... that helps me and every one to find :p



Guide Tut basics

[Guide Dev][Smali DIY] How to Switch, Checkbox, Seekbar,ListPreferences Preferences

[Guide][tut] New Seekbar preferences for new mods

[Guide]Add seekbar preferences code to settings

[Tut][Mod] How to remove album as default from Camera and Photos/video widget



Navigation Bar

[Guide][tut] [Enable/Disable] Navigation bar Tint ( depends on app material )

[Guide][tut][MM] Navigation bar resize ( height and width )

[Guide][tut]Navigation Bar Resize (resize only portrait/landscape)

[Guide][tut] Enable/Disable Navigation Bar Swipe to sleep/Lock

[Guide][tut][Updated 21/JAN/15] Show/Hide 3 Dot Menu (on nav bar)



Status Bar /Lock screen/ Qs panel

[Guide][tut] [MM] Clock and Date mods (align,font and more)

[guide][tut] Clock and Date mods for 5.x + (font,color,alignment,format & more )

[Guide][tut] Weather on Lockscreen ( RR prop )

[Guide][tut][Updated 21/JAN/15] Show/Hide Brightness Slider on notification Quick settings

[Guide][tut][Updated 21/JAN/15] Show/Hide Album art

[Guide][MOD] Network Traffic 4.x to 5.x (turn on/off, color, Display unit and more)

[Guide][tut] HeadsUp timeOut settings

[APP][No xposed / No root] HeadsUp Mods for sony devices



Animations

[Guide][tut] AOKP System animations (Xperia devices ) 5.x +

[Guide][tut] Animations Speed (Transition/windows/duration) control



Framework mods

[Guide][tut] Volume keys move cursor control

[Guide][tut] Add logo and info at upgrading dialog box

[Guide/Tut]Adding 5 way reboot menu lollipop



Settings

[Guide][tut]Add switches for dashboard items (wifi/bluetooth/mobile network)

[Guide][tut] SystemApp remover (from 2.x to 5.x and above )

[Guide][tut] Add changelog to your settings of your own rom



I will try to add 2 tuts every week (depend on my free time)

Help How to Remove safely Webview chromium from (Kitkat) framework

$
0
0
Hello,

My phone S4 mini i9195 (stock rom gt 9195) Rooted / supersu)

How to remove safely webview chromium from Android kitkat 4.4.2 framework.

and / or

How to remove webview from k9-mail and other APK.


I have apk editor, xml editor, lucky patcher, titanium backup... but i dont know what line remove for disable webview of apk.


Thanks you very much for your participation.
Sorry for bad english. I am french.

Android Fake API Level

$
0
0
Hi Guys

I want to speed up games at my phone,
I have an Oneplus One 64GB and on Windows Bluestacks
I have found GLTools 2.0, it give some more speed, but BlueStacks is more faster with loading,
THen a compared the screens and saw that my phone has lots of more objects/effects at screen, BlueStacks has most of them.
Bluestacks has API 19 with 4.4.2
OnePLus One has API 22 with 5.1.1
Now i search a tool that can help me to speedUp games, like a FAKE API , FAKE CPU, FAKE GPU
maybe you can help me here?

here are 2 screens, 1x Phone, 1x BlueStacks

[APP] [ROOT] [Android 4.1+] [v1.1] nMAC - Nil MAC Changer

$
0
0
What is nMAC?
nMAC(Nil MAC Changer) is a root application that can change your Android device's MAC address.

Why?
There are a lot of privacy concerns regarding Android's static MAC addresses. The possibility of being tracked everywhere is just one of the problems involved. This app aims to solve this issue by giving you, the user, control over your device's wireless identity. nMAC is intended to be used only for legal, non-malicious purposes, which do not involve unfairly abusing various wireless services. If you do not comply with these terms, please do not use this app.

Features:
  • Asynchronous, non-blocking & responsive design
  • Safe backup and restore of original MAC address
  • MAC randomization functionality
  • Ability to set custom MAC address
  • Persistent change
  • No reboot required
  • A generic device support approach

Officially supported devices:
  • Google:
    Nexus 5X
    Nexus 5
  • Samsung:
    Samsung Galaxy S3 Neo
    Samsung Galaxy S3 Mini
    Samsung Galaxy S5 Mini

    Samsung layout provided by @Thargorsson

FAQ - 2nd post
Change log - 3rd post



If I helped with your privacy, please consider any donation to my PayPal.


Thank you!


Download: Releases
Source: GitHub

As usual, please report any bugs you may encounter.
Enjoy!

How to determine date of last Android system update?

$
0
0
Hi,
Is there a way to programmatically obtain the date when the last Android system update was installed on the device? I know the build time can be obtained either from reading Build.TIME or ro.build.date, but this isn't when the update was actually installed. I also tried looking in my Nexus 5 for system file timestamps, but they all seem to be from 2009 or 1970.

Thanks.

Returning to Stock help please

$
0
0
I have a HTC One M9 which I managed to root a while back but now I want to unroot and go back to stock. I have been doing research but can't find exactly what I need. I am in the UK and my carrier is o2. I am also currently s-on and not sure if I have to be s-off or not to achieve this. Can somebody please help me with instructions etc. If there are any other bits of information you need please ask and I will get it for you. TIA

Lollifox 4.4.2 for Tecno F5 bug

$
0
0
After installing lollifox (4.4.2) 191-20150317-BETA ROM on my tecno F5 I found some bugs which I wish to fix like dialler call button and the Notification drawer.

after typing a ussd code or phone number of the call button doesn't work.
and
when the notification is draged down for the first time after boot notifications will be visible then if I drag down again for settings and switches if shows. when I drag up to return to notification I can't anymore I just closes fully till I reboot again.

Doogee x6 pro mtk 6375 bootloader unlock MM

$
0
0
Greetings

I received a cheap android MTK 6735 (shipped with MM android 6)
I have searched high and low and found nothing regarding unlocking the bootloader.
I assume the bootloader is locked. If I try to oem unlock I get to the yes/no option but phone freezes and I am unable to choose yes option.
All adb drivers etc installed correctly. I cannot root or flash custom recovery using sp tools
Any pointers? May device specific bootloader unlock code.
Any help appreciated

samsung e7 5.1.1 samsung account/google account bypass

$
0
0
as we all know samsung as blocked frp and reactivation reset on newer samsung with latest firmware
1) first things first you need to have the samsung e7 or any other samsung you want to bypass
2)try activate till you get the emergency call menu
3)dial your country emergency number wait for them to pick up click on the option button, then click on message it takes you to where you can type message
4)since you are on message click on attach, click on video, it will ask you to select the app you want to use click on photos, click on the option buttons the you will see help,click on help,select random words from it and click on search, search for settings then you are in..
5)if you phone as google account protection just do factory reset but if its samsung account then proceed
6)repeat process but this time instead of settings type playstore, download shortcut master and nova launcher open nova launcher after download then you phone will go to the home menu there you can download kingroot
7)root your phone with kingroot, open shortcut master app from the app drawer, click on options,click on search, select system app
8)search for samsung account, click on the one with samsungaccount.********.signin it will take you to the sign in page signin your samsung account and do factory reset

Wakelock Blocker for Official 2016, Nightly CM11 (and many more...wip)

$
0
0
Wakelock Blocker for Official 2016, Nightly CM11 (and many more...wip)

All thanks to
@faust93 : BASE.diff http://review.cyanogenmod.org/#/c/109898/ SETTINGS.diff http://review.cyanogenmod.org/#/c/109897/ (official rejections for CM12)
@scott.hart.bti (Beanstalk_base) @Cristiano Matos (crDroid_settings) for Github sources.
If you fell donate then it should be to @maxwen, which seems to be the real ghost creator of wakelockblocker (Nov 2013) https://github.com/scotthartbti/andr...c0ca1391c6dc50

While mixing all this (cherry-picked from github) together, I finally succeed a 2x patch diff
to implement a working Wakelock Blocker in cm-11-2016xxx-NIGHTLY under Parameter/Performance/System.
I check the efficiency OK, on LGp880 & ASUStf700t with @chamonix ‘s BetterBatteryStats.

The base diff include inverted broken xposed & SELinuxModeChanger from zygote d8130142.diff http://review.cyanogenmod.org/#/c/118800/


Since there are 19 devices + 26 samsung on official 2016 KK nightly run, I hope some will patch theses 2 diff WITH 100% compatible:

- mar-V-in fake signature for nogapp microG https://github.com/microg/android_pa...se-KK-LP.patch

That edition will keep same CVE as the official one and will stay untouched apart +3 above.
If you’re baking a KK cm11-based rom , it should also be compatible. You tell me.

Viewing all 3614 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>